* src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
[fw/sdcc] / ChangeLog
1 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
4           (genSend): bugfix, do not allocate and free twice,
5           (shiftRLong): handle partially overlapping aops
6         * support/regression/tests/bitopcse.c: fixed warning redefined idata
7
8 2006-03-08 Borut Razem <borut.razem AT siol.net>
9
10         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
11           for pic16
12
13 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
14
15         * support/regression/tests/bug1409955.c: new, added
16         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
17         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
18           (aopForSym, aopOp): increment asmop.allocated if reused,
19           (freeAsmop): decrement asmop.allocated and check for zero instead of
20           using asmop.freed,
21           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
22           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
23            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
24            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
25            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
26            genSignedRightShift, genRightShift, genDataPointerGet,
27            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
28            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
29             in reverse order from allocation,
30           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
31             added swappedLR to keep track
32         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
33           pdata & code for GCC, z80, gbz80 & hc08
34         * support/regression/tests/zeropad.c: moved defines to testfwk.h
35
36 2006-03-08 Raphael Neider <rneider AT web.de>
37
38         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
39
40 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
41
42         * device/include/mcs51/c8051f410.h: new SiLabs mcu
43         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
44         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
45
46 2006-03-06 Borut Razem <borut.razem AT siol.net>
47
48         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
49           made the linker quiet
50
51 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
52
53         * src/pic16/gen.c (genPcall): fixed bug #1443644
54         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
55         which dumps before the function entry point a data byte which represents
56         the number of the local variables used by the specified function, added
57         'xinst' for initial support for Extended Instruction Support,
58         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
59         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
60         port->fun_prefix anymore (may change later),
61         (genFunction, genEndFunction): do not store/restore local registers for
62         _main (this should take care the --main-return command line option in
63         the future),
64         (genOr): removed some legacy pic-port instructions,
65         * src/pic16/genarith.c (genAddLit): re-enabled old code because
66         performing operations with SFR's causes data to be written more than
67         once to each SFR. Perhaps SFRs should be handled in special cases...
68         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
69         pcode.h
70         * src/pic16/main.c (_process_pragma): stack bound checking did not take
71         into account for stack starting position,
72         (struct OPTIONS pic16_optionsTable): added command line argument
73         --extended or -y for Extended Instruction Support,
74         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
75         (deassignLRs): *** perhaps the most important change, old 'for' code
76         (commented out for reference), didn't account for some registers which
77         were left marked 'not free' after a pointer operation. The change
78         reduces register usage a lot in some cases
79
80 2006-03-04 Borut Razem <borut.razem AT siol.net>
81
82         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
83           _clean
84         * support/regression/tests/bug-524697.c: decreased array size for
85           mcs51 to fit into the internal RAM
86         * support/regression/Makefile.in: a little bit more verbose
87
88 2006-03-03 Borut Razem <borut.razem AT siol.net>
89
90         * support/regression/fwk/lib/testfwk.c,
91           support/regression/fwk/include/testfwk.h: introduced function
92           _prints(), nonrecursive _printn(), call _initEmu() from main()
93         * support/regression/ports/gbz80/support.asm,
94           support/regression/ports/ucz80/support.asm,
95           support/regression/ports/z80/support.asm,
96           support/regression/ports/ds390/support.c,
97           support/regression/ports/hc08/support.c,
98           support/regression/ports/host/support.c,
99           support/regression/ports/mcs51/support.c,
100           support/regression/ports/xa51/support.c: added empty _initEmu()
101           function
102         * support/regression/ports/pic16/gpsim.cmd,
103           support/regression/ports/pic16/spec.mk,
104           support/regression/ports/pic16/support.c,
105           support/regression/Makefile.in: added pic16 regression test
106
107 2006-03-01 Raphael Neider <rneider AT web.de>
108
109         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
110           genConstPointerGet): use safe way of generating MOVFF to cover
111             literals as well as registers, fixes bug #1440527
112         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
113             dereference
114           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
115             more correctly, fixes bug #1232186
116           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
117         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
118             gplink guess the correct processor in more cases, applied patch
119             from Till Riedel attached to and fixing bug #1436552
120
121 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
122
123         * support/regression/tests/array.c: added, contains check for #1434401
124         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
125
126 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
127
128         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
129         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
130         * device/include/mcs51/c8051f326.h,
131         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
132         * device/include/mcs51/c8051f000.h,
133         * device/include/mcs51/c8051f018.h,
134         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
135           PCON_IDLE,PCON_STOP and added sfr16 definitions
136
137 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
138
139         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
140           genGetWord): fixed bug 1409955
141
142 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
143
144         * device/include/hc08/mc68hc908gp32.h,
145         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
146
147 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
148
149         * src/SDCCast.c (constExprValue): return NULL if not a value
150         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
151         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
152         * support/regression/tests/bitfields.c: enabled signed bitfield for all
153
154 2006-02-13 Borut Razem <borut.razem AT siol.net>
155
156         * src/regression/ptrarg.c: added, fails due to bug #1430967
157         * src/regression/Makefile: ptrarg.c added, ...
158
159 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
160
161         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
162         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
163
164 2006-02-11 Borut Razem <borut.razem AT siol.net>
165
166         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
167           print "Processor: xxx" message to stdout only if --verbose
168
169 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
170
171         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
172         * support/regression/tests/bug1426356.c: added
173         * support/regression/tests/bitfields.c: removed 2 tests
174
175 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
176
177         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
178         * device/include/mcs51/c8051f330.h,
179         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
180           PCON_IDLE,PCON_STOP and added sfr16 definitions
181         * device/lib/_divsint.c,
182         * device/lib/_divuint.c,
183         * device/lib/_divulong.c,
184         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
185           register bank bug for small stackauto
186
187 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
188
189         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
190
191 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
192
193         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
194         * all.dsp: corrected several bin paths
195         * device/include/mcs51/c8051f120.h,
196         * device/include/mcs51/c8051f300.h,
197         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
198           to PCON_IDLE,PCON_STOP
199         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
200         * device/lib/printf_large.c (output_float): fixed bug 1388703
201         * support/regression/tests/bug1057979.c: added test for bug 1388703
202
203 2006-02-08 Raphael Neider <rneider AT web.de>
204
205         * src/pic/pcode.c (pciTRIS): fixed typo,
206           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
207           (LinkFlow): fixed handling of flows that end in a call,
208           (ReuseReg): perform safety check earlier
209         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
210             to work with flows at the beginning of a pBlock,
211             fixes #1426557 (Symbol not previously defined),
212           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
213             usage information
214           (RemoveUnusedRegisters): update register usage info
215         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
216             created, reuse existing ones instead
217         * src/pic/gen.c (genPcall): fixed #1424719
218
219 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
220
221         * link/z80/lkmain.c,
222         * link/z80/lklex.c,
223         * link/z80/lkdata.c,
224         * link/z80/aslink.h: fixed build on current cygwin:
225         replaced getline() by lk_getline()
226
227 2006-02-01 Borut Razem <borut.razem AT siol.net>
228
229         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
230           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
231           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
232           src/regression/bool1.c, src/regression/bool2.c,
233           src/regression/bool3.c, src/regression/call1.c,
234           src/regression/compare.c, src/regression/compare10.c,
235           src/regression/compare2.c, src/regression/compare3.c,
236           src/regression/compare4.c, src/regression/compare5.c,
237           src/regression/compare6.c, src/regression/compare7.c,
238           src/regression/compare8.c, src/regression/compare9.c,
239           src/regression/configword.c, src/regression/for.c,
240           src/regression/inline.c, src/regression/mult1.c,
241           src/regression/nestfor.c, src/regression/or1.c,
242           src/regression/pointer1.c, src/regression/ptrfunc.c,
243           src/regression/rotate1.c, src/regression/rotate2.c,
244           src/regression/rotate3.c, src/regression/rotate4.c,
245           src/regression/rotate5.c, src/regression/rotate6.c,
246           src/regression/rotate7.c, src/regression/string1.c,
247           src/regression/struct1.c, src/regression/sub.c,
248           src/regression/sub2.c, src/regression/switch1.c,
249           src/regression/while.c, src/regression/xor.c,
250           src/regression/create_stc, src/regression/simulate,
251           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
252           regression tests
253         * src/regression/gpsim_assert.h: added
254
255 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
256
257         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
258         ((void (code *) (void)) 0) ();
259         * as/hc08/aslex.c,
260         * as/hc08/aslink.h,
261         * as/hc08/asm.h,
262         * as/hc08/asmain.c,
263         * as/hc08/lkdata.c,
264         * as/hc08/lklex.c,
265         * as/hc08/lkmain.c,
266         * as/mcs51/aslex.c,
267         * as/mcs51/aslink.h,
268         * as/mcs51/asm.h,
269         * as/mcs51/asmain.c,
270         * as/mcs51/lkdata.c,
271         * as/mcs51/lklex.c,
272         * as/mcs51/lkmain.c,
273         * as/z80/aslex.c,
274         * as/z80/asm.h,
275         * as/z80/asmain.c: fixed build on current cygwin:
276         replaced getline() by as_getline()
277
278 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
279
280         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
281         declarator in the symbol chain
282         * src/SDCCsymt.h,
283         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
284         parameter list for function pointers
285         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
286         * support/regression/tests/bug-716242.c: added
287
288 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
289
290         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
291         offset if possible
292         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
293
294 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
295
296         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
297         inifinitely recurseable, added static
298         * support/regression/tests/bug-1408066.c: added
299
300 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
301
302         * src/SDCCicode.h,
303         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
304         renamed, added possibility to create "postLoopLbl"-labels
305         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
306         newiTempLoopHeaderLabel
307         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
308         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
309         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
310         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
311         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
312         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
313         (basicInduction): fixed bug #136564, made static,
314         (loopInduction): changed parameter of basicInduction, made static,
315         (addPostLoopBlock): added
316         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
317         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
318         findLoopEndSeq
319         * support/regression/tests/bug-136564.c: added
320         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
321         --std-sdcc99 to LIBSDCCFLAGS
322
323 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
324
325         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
326         while loop
327         * support/regression/tests/bug-1406131.c: added
328
329 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
330
331         * src/SDCCast.c (decorateType): fix promotion of unary minus
332         * src/SDCCsymt.c (computeType): beautified
333         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
334         (valUnaryPM, valComplement): fix sign and promotion,
335         (valNot): ANSI: result type is int (SDCC: unsigned char)
336         * support/regression/tests/uminus.c: speedup by removing superflous
337         test case 'int'
338         * support/regression/tests/onebyte.c: added promotion and signedness
339         tests for unary minus
340         * support/regressions/tests/bug-477927.c: disable warning about
341         uninitialized variables
342         * support/regression/tests/not.c: added
343
344 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
345
346         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
347         * src/mcs51/gen.c (gen51Code): show final register usage after
348         fillGaps in asm with --i-code-in-asm
349         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
350         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
351         incUsed, rliveClear, adjustIChain): made static,
352         (setFromRange): excluded because it's unused,
353         (findPrevUseSym, markWholeLoop): added,
354         (findPrevUse): rewritten; fixes bug 895992; now a complete search
355         through all branches of predecessors enables sdcc to emit the warning
356         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
357         (rlivePoint): made static, added parameter emitWarnings which is only
358         true during the first run out of two,
359         (findRecursiveSucc, findRecursivePred): removed,
360         (computeLiveRanges): made static, added parameter emitWarnings,
361         (dumpIcRlive): added for debugging only
362         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
363         removed prototype of setFromRange()
364         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
365         in call of computeLiveRanges()
366         * support/regression/tests/bug-895992.c: added
367         * support/regression/tests/bug-971834.c: added
368         * support/valdiag/tests/bug-895992.c: added
369         * support/valdiag/tests/bug-971834.c: added
370
371 2005-12-18 Raphael Neider <rneider AT web.de>
372
373         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
374           (genUnpackBits): improved code for direct operands,
375           (genPackBits): improved code for literal assignment to bitfields
376             and for direct destination operands (no FSR indirection),
377             prevented redundant AND, fixes #1362800,
378           (AccLsh): added parameter to disable masking of the result
379         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
380           skip instructions with side-effects (like incfsz),
381           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
382         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
383         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
384           fixes #1375263
385
386 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
387
388         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
389         volatile variables as spill location
390
391 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
392
393         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
394         replacing literals
395         * support/regression/tests/bug-1376320.c: added
396
397 2005-12-08 Raphael Neider <rneider AT web.de>
398
399         * src/pic/device.c: renamed is_shared to pic14_is_shared
400         * src/pic/gen.c (genIfx): re-enabled handling of sbits
401         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
402           (is_valid_identifier): added for above workaround
403
404 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
405
406         * device/lib/Makefile.in: fixed to enable port-specific-objects
407         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
408           char, thanks Hubert Sack
409         * doc/sdccman.lyx: documented --xstack-loc,
410           elaborated a bit more on interrupts and pitfalls,
411           removed "setjmp/longjmp unsupported",
412           documented some unsupported C99 features
413         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
414         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
415           if, thanks Hubert Sack
416         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
417         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
418           make make_library
419         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
420           regression tests can report resource usage (rfe 700441)
421         * support/regression/collate-results.py: report resource usage
422         * support/regression/ports/ds390/spec.mk,
423         * support/regression/ports/hc08/spec.mk,
424         * support/regression/ports/mcs51/spec.mk,
425         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
426         * support/regression/ports/ds390/uCsim.cmd,
427         * support/regression/ports/hc08/uCsim.cmd,
428         * support/regression/ports/mcs51/uCsim.cmd,
429         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
430         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
431           library, use the default one
432         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
433           building the library
434
435 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
436
437         * config.dsp: added dependency on .version and configure_vc.awk
438         * device/include/setjmp.h: updated for --stack-auto and --xstack
439         * device/include/mcs51/at89c51snd1c.h: corrected line endings
440         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
441         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
442         * device/lib/libsdcc.lib: added _setjmp
443         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
444           (decorateType): fixed bug 1372851,
445           (optimizeGetHbit): fixed warning
446         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
447           array initialisation
448         * support/regression/tests/bug1057979.c: added test for bug 1358192
449         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
450
451 2005-12-03 Borut Razem <borut.razem AT siol.net>
452
453         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
454           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
455
456 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
457
458         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
459         createIval): implement symbol independant "flexible array member",
460         (createIvalCharPtr): implemented flexible array initialisation with a
461         string
462         * src/SDCCsymt.c (copyStruct): removed,
463         (getSize): fixed misleading comment,
464         (getAllocSize): removed, the additional allocation size is now in
465         sym->flexArrayLength,
466         (checkStructFlexArray): new, syntax checks for flexible array members,
467         (compStructSize): added syntax checks for "flexible array members"
468         (copyStruct): removed,
469         (copyLinkChain): removed inefficient fix for bug 770487
470         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
471         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
472         symbol->flexArrayLength
473         * src/SDCCerr.c,
474         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
475         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
476         * support/regression/tests/structflexarray.c: added
477         * support/valdiag/tests/structflexiblearray.c: added
478
479 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
480
481         * src/SDCCast.c (decorateType): fixed bug 1368489
482         * support/Util/SDCCerr.c,
483         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
484
485 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
486
487         * device/include/mcs51/at89c51snd1c.h: added file submitted by
488           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
489
490 2005-11-27 Borut Razem <borut.razem AT siol.net>
491
492         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
493           support/cpp2/mkdeps.h: added command line option
494           -obj-ext=<extension> to SDCPP to define object file externion, used
495           for generation of make dependencies (-M)
496         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
497
498 2005-11-26 Borut Razem <borut.razem AT siol.net>
499
500         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
501           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
502           added pic and pic16 libraries
503
504 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
505
506         * device/include/float.h: Corrected typo in prototype of __fsgt
507
508 2005-11-25 Borut Razem <borut.razem AT siol.net>
509
510         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
511           added creation of model-mcs51-stack-auto libraries
512
513 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
514
515         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
516         and fields-list too
517         * src/SDCCast.c (createIvalArray): removed obsolete comment
518
519 2005-11-24 Borut Razem <borut.razem AT siol.net>
520
521         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
522           added missing device/lib/mcs51/crt*.asm sources
523
524 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
525
526         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
527
528 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
529
530         * device/lib/_fs2schar.c,
531         * device/lib/_fs2sint.c,
532         * device/lib/_fs2slong.c: optimized inline asm
533
534 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
535
536         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
537           Better handling of floats between -1.0 and 0.0.
538
539 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
540
541         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
542           (the missing "if"s prohibited removal of redundant labels)
543
544 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
545
546         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
547           Properly convert floats between -1.0 and 0.0 to long, int, and char
548           types (max integer value of negative floats tends to zero).
549         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
550           Removed changes made so to work properly with floats between
551           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
552           and _fs2char.c
553
554 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
555
556         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
557         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
558         (genCast) cosmetic change
559         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
560         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
561         from mcs51
562         * support/regression/tests/bitfields (testSignedBitfields): added
563
564 2005-11-18 Borut Razem <borut.razem AT siol.net>
565
566         * sdcc/device/lib/Makefile.in: remove all unnecessary files
567         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
568           introduced SILENT option to make building of pic16 libraries less
569
570 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
571
572         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
573           Now they work properly with floats between -1.0 and 0.0
574         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
575
576 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
577
578         * src/SDCCicode.c (printOperand): added missing else
579
580 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
581
582         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
583         reformatted for better readability
584         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
585         signed bitfields
586
587 2005-11-17 Borut Razem <borut.razem AT siol.net>
588
589         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
590           introduced SILENT option to make building of pic16 libraries less
591           verbose - used for nightly snapshot build
592         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
593           available on Win32 platforms.
594         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
595           medium, large, pic and pic16
596
597 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
598
599         * device/lib/printf_large.c: Temporary patch for bug 1358192:
600           printf("%f"...) sets fraction to zero.
601
602 2005-11-16 Raphael Neider <rneider AT web.de>
603
604         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
605           fixes #1357221
606         * src/pic/gen.c (genIfx): implemented for CARRY bit
607         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
608           to generic pointers, fixes #1357332,
609           (pic16_movLit2f): NEW,
610           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
611
612 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
613
614         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
615
616 2005-11-11 Raphael Neider <rneider AT web.de>
617
618         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
619         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
620           compute pointer's type from operand,
621           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
622           improved single bit reads, fixes bug #1353379
623
624 2005-11-09 Borut Razem <borut.razem AT siol.net>
625
626         * support/scripts/sdcc.nsi: added lib/pic to the package
627
628 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
629
630         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
631
632 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
633
634         * support/regression/tests/bug1348008.c: added
635         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
636         * support/regression/tests/bug1337835.c: updated comment
637
638 2005-11-06 Borut Razem <borut.razem AT siol.net>
639
640         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
641           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
642           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
643           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
644           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
645           dynamic construction of cl_error_class and derivates - 2.nd try
646
647 2005-11-05 Borut Razem <borut.razem AT siol.net>
648
649         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
650           bug, which caused Bus Errors on sparc solaris
651
652 2005-11-04 Borut Razem <borut.razem AT siol.net>
653
654         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
655           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
656           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
657           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
658           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
659           and derivates to resolve the initialization problem on OSX
660
661 2005-11-02 Borut Razem <borut.razem AT siol.net>
662
663         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
664           corrected typo - #include <winsock2.h>
665
666 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
667
668         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
669           (_asxxxx_mapping): added org directive for future enhancements
670
671 2005-11-01 Borut Razem <borut.razem AT siol.net>
672
673         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
674           enabled sockets on WIN32
675         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
676
677 2005-10-31 Borut Razem <borut.razem AT siol.net>
678
679         * support/regression/generate-cases.py: escape backslashes in {testcase}:
680           WIN32 backslash path delimiters should be escaped when used in C strings
681         * support/regression/tests/bitfields.c: exclude failing assertions for
682           __CYGWIN32__ and __MINGW32__ hosts
683
684 2005-10-30 Borut Razem <borut.razem AT siol.net>
685
686         * src/SDCCutil.c: corrected double comparison typo
687
688 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
689
690         * device/lib/medium/Makefile: added for new memory model medium
691         * device/include/asm/mcs51/features.h: updated for medium/pdata
692         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
693           added Multiply & Accumulate sbit's and MAC0_PAGE define
694         * device/include/mcs51/c8051f300.h: added sfr16 definitions
695         * device/include/mcs51/c8051f310.h: added sfr16 definitions
696         * device/lib/_mullong.c: update for medium model
697         * device/lib/incl.mk: added medium model
698         * doc/sdccman.lyx: documented medium model
699         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
700         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
701         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
702         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
703           (allocParms): set SCLS and OCLS to pdata for medium model
704         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
705           for pdata,
706           (powof2): return <0 if not power of 2
707         * src/avr/gen.c (genBitWise): use updated powof2
708         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
709           (shiftR2Left2Result): small optimization in setup, save acc when storing,
710           (shiftLLeftOrResult): use B if necessary
711         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
712         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
713         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
714         * support/regression/Makefile.in: added test-mcs51-medium
715         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
716
717 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
718
719         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
720         specifier unsigned
721         * device/lib/time.c (mktime): fixed bug 1334315
722
723 2005-10-28 Raphael Neider <rneider AT web.de>
724
725         * device/include/pic/p16f_common.inc: added common declarations
726         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
727
728 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
729
730         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
731           (aopPutUsesAcc): added to predict accumulator use,
732           (assignResultValue): save acc if necessary,
733           (genMinusDec): store result if indirectly addressed,
734           (genDivOneByte):  save acc if necessary,
735           (movLeft2Result): bugfix if left already in acc,
736           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
737             attention to accumulator use (esp. pdata),
738           (genReceive): receive pdata correctly
739         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
740         * src/SDCCicode.h: added isOperandInPagedSpace prototype
741
742 2005-10-27 Raphael Neider <rneider AT web.de>
743
744         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
745
746 2005-10-27 Raphael Neider <rneider AT web.de>
747
748         * .version: changed version to 2.5.4
749         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
750         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
751           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
752             arithmetics support routines
753         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
754         * device/lib/Makefile.in: also create installdir for pic
755
756         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
757           pic14 port as well
758         * src/pic/device.c (dump_sfr): rewritten to delegate register
759           placement to the linker (use `extern sym' rather than sym EQU addr),
760           (validAddress): fixed to check last specified address
761         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
762           (popGetLit): truncate literal value to 8 bit,
763           (popGet): moved assert to more appropriate place
764           (popGetExternal): create pCode operand from and mark the according
765             symbol as being `extern'
766           (popGetAddr): added sanity check on immediate's offset, provide
767             GPOINTER tag on demand
768           (aopPut): fixed for immediates,
769           (mov2w_op): move operand's address or contents to WREG (depending on
770             operand type), safer variant of mov2w,
771           (movwf,call_libraryfunc): NEW, handy abbreviations,
772           (get_argument_pcop,get_return_val_pcop,pass_argument,
773           get_returnvalue): interface for accessing function parameters and
774             return values,
775           (assignResultValuei,genRet): use new parameter/return value interface
776           (pic14_getDataSize): back to old version handling generic pointers,
777           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
778             provided implementation and/or fixed old one,
779           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
780             calls, removed legacy 8051 reference code
781           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
782           (loadSignToC): NEW, move the operands sign bit to CARRY,
783           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
784             genRightShiftSigned, accepts negative shift counts,
785           (setup_fsr): load FSR and adjust IRP (indirect memory access),
786           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
787             generic pointers, __data pointers and __code pointers,
788           (genUnpackBits,genPackBits): rewritten to work with generic pointers
789             and signed bitfields, limit bitfields to 8 bit,
790           (genDataPointerGet): fixed number of bytes read,
791           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
792           (genPointerGet,genPointerSet): fixed handling of __code pointers,
793             pointers to constant data are no longer assumed to point to __code
794             space, removed invalid pointer types,
795           (bitpatternFromVal): retrieve the PICs representation of an integer
796             or float literal,
797           (genDataPointerSet): fixed assigning to po_immediate operands,
798           (genGenPointerSet): implemented as library call,
799           (genIfx): fixed incorrect condition,
800           (genAddrOf): limit generic pointers' addresses to 2 bytes,
801             provide GPOINTER tag according to destination's storage class,
802           (genCast): added code to handle casting to generic pointers, added
803             sign-/zero extension of the result
804           (aop_isLitLike,op_isLitLike): fixed handling of immediates
805         * src/pic/gen.h: added macros to access IRP bit in STATUS register
806         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
807           extend the result
808         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
809           address/register resides in the shared banks
810           (emitSymbolToFile): improved to handle global and `pinned' symbols,
811             put all variables into separate sections (have the linker arrange
812             them)
813           (picglue): put init code and interrupt handlers in separate sections
814         * src/pic/main.c: added port specific options table, modified to PORT
815           structure to make GPOINTERs 3 byte, added pic14_options
816           (_pic14_do_link): private linking routine (update paths to libraries,
817             add libsdcc.lib by default)
818         * src/pic/main.h: declare pic14_options
819         * src/pic/pcode.c: fixed instructions i/o relations,
820           (RegCond): reverted to correct version,
821           (newpCodeOpLit): truncate literals to 8 bit,
822           (genericPrint): added debug output,
823           (getRegFromInstruction): fixed for various operand types, simplified
824           (BuildFlow): fixed broken handling of isntructions with labels
825           (LinkFlow): start at last instruction in flow (skip trailing comments),
826             pass the flow on to the next instruction after CALL
827           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
828           (insertPCodeInstruction): fixed inserting after a skip instruction,
829           (DoBankSelect): fixed for labeled instructions
830           (OptimizepBlock): honor --nopeep switch
831           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
832         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
833         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
834           (pCodeOptime2pCodes): allow disabling this optimization via
835             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
836             but is still buggy), started implementation of a dataflow based
837             pCode optimization (CSE + dead code elimination)
838           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
839         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
840           names are independant of the stack location and therefore portable across
841           devices
842
843 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
844
845         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
846           (selectSpil): fixed bug 1337835 by not spilling bit variables
847         * support/regression/tests/bug1337835.c: added test for this bug
848         * src/mcs51/peeph.def: restart after rule 3.c,
849           addded rules 263.x to optimize loading constants
850
851 2005-10-26 Raphael Neider <rneider AT web.de>
852
853         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
854         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
855           (genAssign): emit warning when casting literals to generic pointer
856             type, also applies when taking the address of a fixed variable,
857           (genCast): improved casting to generic pointers
858         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
859           extern variables, added verbose error message
860         * device/include/pic16/{string.h,errno.h}: added #pragma library c
861
862 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
863
864         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
865         carry must be complemented too
866         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
867         could be emitted by genMinus
868         * src/SDCCval.c (constVal): fixed bug 1305065
869
870 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
871
872         * src/SDCCast.c (addCast): added promotion for bit variables
873         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
874         promotion casts + optimisation
875         (optimizeGetWord): fix warning 'i' might be used uninitialized
876         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
877         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
878
879 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
880
881         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
882         all chars are promoted to int; promotion should be handled in SDCCast.c
883
884 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
885
886         * device/lib/_strcmp.c: Fixed bug 1326457
887
888 2005-10-11 Raphael Neider <rneider AT web.de>
889
890         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
891         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
892
893 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
894
895         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
896         * support/regression/tests/sfr16.c: added test for the sfr32 bug
897
898 2005-10-04 Raphael Neider <rneider AT web.de>
899
900         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
901           device/lib/pic16/pics.all: added pic18f1320
902         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
903
904 2005-09-30 Raphael Neider <rneider AT web.de>
905
906         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
907         * src/pic16/devices.inc: NEW, provides device descriptions
908         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
909
910 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
911
912         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
913           GETHBIT
914
915 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
916
917         * doc/sdccman.lyx: updated Highest Order Bit documentation,
918           documented Any Order Bit, Higher Order Byte and Higher Order Word
919         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
920         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
921           (optimizeGetAbit): new, to get any bit, not only the high bit,
922           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
923           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
924           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
925           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
926             RIGHT_OP: also try GETBYTE, GETWORD optimization,
927             GETABIT, GETBYTE, GETWORD: decorate them,
928           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
929           (ast_print): added GETABIT, GETBYTE, GETWORD
930         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
931         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
932           (geniCodeBinary): new generic binary icode,
933           (ast2iCode): added GETABIT, GETBYTE, GETWORD
934         * src/port.h: updated comment for PORT.hasExtBitOp
935         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
936           (genGetByte): new, to get a single byte,
937           (genGetWord): new, to get a word from a long,
938           (gen51Code): added GETABIT, GETBYTE, GETWORD
939         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
940
941 2005-09-23 Raphael Neider <rneider AT web.de>
942
943         * configure.in, configure: have device/lib/pic configured
944         * device/lib/Makefile.in: added model-pic14
945         * device/lib/clean.mk: added pic/ to clean rule
946         * device/lib/pic: added rudimentary pic14 library providing support
947           functions for multiplication/division/generic pointer access
948         * src/SDCCopt.c (convilong): mark support functions as extern
949           for pic14 port as well
950         * src/pic/gen.c (genMult): added assertions,
951           (genpic14Code): emit warning on unhandled iCodes
952         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
953         * src/pic/pcode.c (pCodeOpCopy),
954         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
955           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
956           SFR_REGISTER}), made safe for future extensions
957         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
958           instructions even if preceeded by SKIP instructions (also remove
959           them); removed unused code
960         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
961           prevents leaving parts of the structure uninitialized after copying
962
963 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
964
965         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
966           ago by me
967         * support/regression/tests/addsub.c: added test for the bug
968
969 2005-09-21 Raphael Neider <rneider AT web.de>
970
971         * device/include/pic16/pic18f1220.h,
972           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
973         * device/lib/pic16/Makefile.rules: added missing opening paren
974         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
975           are provided in genutils.c,
976           (genUminusFloat,genUminus,genCmpEq): added asserts on different
977           operand/result sizes,
978           (genCmp): assert on NULL pointers first, then check deref'ed values
979         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
980           result size
981
982 2005-09-18 Raphael Neider <rneider AT web.de>
983
984         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
985           as these are now unused,
986           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
987         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
988           local, avoids uninitialized pointer dereference on r->name
989         * src/pic16/ralloc.c (newReg): fixed indentation
990
991 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
992
993         * src/SDCCval.c (constVal): fixed bug 730366
994         * support/Util/SDCCerr.c,
995         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
996
997 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
998
999         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1000
1001 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1002
1003         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1004
1005 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1006
1007         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1008           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1009         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1010           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1011         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1012         * packihx/packihx.c (hexDigit): made c unsigned char
1013         * as/mcs51/lklibr.c (fndsym),
1014         * link/z80/lkgb.c (gb),
1015         * link/z80/lklibr.c (fndsym),
1016         * link/z80/lkrloc.c (relr),
1017         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1018         * src/SDCC.lex (checkCurrFile, process_pragma),
1019         * src/SDCCglue.c (spacesToUnderscores),
1020         * src/SDCCmain.c (setParseWithComma, processFile),
1021         * src/asm.c (tvsprintf, printCLine),
1022         * src/avr/gen.c (emitcode, aopPut),
1023         * src/ds390/gen.c (emitcode),
1024         * src/hc08/gen.c (emitcode, emitinline),
1025         * src/mcs51/gen.c (emitcode, genInline),
1026         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1027           tokenizeLineNode),
1028         * src/pic/ralloc.c (debugLog),
1029         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1030           tokenizeLineNode),
1031         * src/pic16/ralloc.c (debugLog),
1032         * src/z80/main.c (_process_pragma):
1033            made all ctype.h function calls safe
1034         * src/SDCCopt.c: include math.h for fabs
1035         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1036           and used them throughout the code to make ctype.h function calls safe
1037         * src/ds390/main.c (asmLineNodeFromLineNode),
1038         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1039         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1040            unsigned char*
1041         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1042           (newpCodeAsmDir): made ctype.h function calls safe
1043         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1044           pic16_emitcode):  made lbp unsigned char*
1045         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1046           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1047         * src/xa51/gen.c (emitcode),
1048         * src/z80/gen.c (_emit2): made lbp unsigned char*
1049         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1050            char*
1051
1052 2005-09-05 Raphael Neider <rneider AT web.de>
1053
1054         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1055           access bank splitpoint
1056
1057 2005-09-05 Raphael Neider <rneider AT web.de>
1058
1059         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1060
1061 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1062
1063         * .version: changed to version 2.5.3
1064         * doc/sdccman.lyx: changed version to 2.5.3,
1065           documented --codeseg and --constseg and pragma codeseg and constseg,
1066           documented bit parameters (reentrant) and bit returning
1067         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1068            currFunc->recvSize, but is this ok for all ports?
1069           (ast2iCode): result of ~ on unsigned char must be cast to int for
1070            bool to work
1071         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1072           function pointers in bit space
1073         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1074           (processFuncArgs): call port.reg_parm() with reentrancy info
1075         * src/port.h,
1076         * src/avr/main.c,
1077         * src/ds390/main.c,
1078         * src/hc08/main.c,
1079         * src/pic/main.c,
1080         * src/pic16/main.c,
1081         * src/xa51/main.c,
1082         * src/z80/main.c: port.reg_parm prototype extended with
1083           "bool reentrant" parameter
1084         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1085           options.stackAuto for allocating bit register parameters
1086         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1087           (genSend): set BitBankUsed if it is,
1088           (selectRegBank): factored out of genCall for use in genPcall,
1089           (genCall): removed redundant dtype assignmen, use selectRegBank,
1090           (genPcall): handle returning in Carry properly, save in F0 if needed,
1091           (genReceive): handle bit register parameters
1092         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1093           (mcs51_assignRegisters): enable bit registers for all reentrant
1094            functions and don't set BitBankUsed unconditionally
1095         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1096         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1097         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1098
1099 2005-08-27 Borut Razem <borut.razem AT siol.net>
1100
1101         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1102         ppc-osx (Darwin) does not support -u option. It seems that it is
1103         supported only on Linux - GNU cp
1104
1105 2005-08-25 Borut Razem <borut.razem AT siol.net>
1106
1107         * sim/ucsim/gui.src/serio.src/Makefile.in,
1108           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1109           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1110           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1111           install and strip, since the strip at /usr/ccs/bin should be used
1112           on solaris
1113
1114 2005-08-24 Borut Razem <borut.razem AT siol.net>
1115
1116         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1117
1118 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1119
1120         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1121         ffffffffu
1122
1123 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1124
1125         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1126         * as/mcs51/lkmain.c (link_main): fixed warning
1127         * device/include/stdbool.h: ds390 has no advanced bit support yet
1128         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1129         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1130         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1131           and updated their macros
1132         * src/SDCCval.c (constVal): updated comment for renamed b_long
1133
1134 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1135
1136         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1137         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1138           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1139           (oprio): set priority for '['
1140         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1141            and adb_24_bit
1142         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1143         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1144         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1145         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1146           added overlayable BIT_BANK area
1147         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1148           (summary2): explain 'T' in legenda
1149         * as/mcs51/lkrloc.c: replaced old K&R style,
1150           (relr): added R_BIT processing,
1151           (errmsg): added "Bit-addressable relocation error",
1152           (adb_bit): added for converting from byte- to bit-addressable space,
1153           (adb_24_bit): added for converting from byte- to bit-addressable space
1154         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1155            used in reentrant functions now even as return value
1156         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1157         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1158           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1159         * src/SDCCglobl.h: added indicator BitBankUsed
1160         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1161            the bit registers b0-b7
1162         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1163           (geniCodeCast): fixed bug 1263853,
1164           (geniCodeLogicAndOr): put result in bool or char,
1165           (geniCodeReceive): added parameter func for accessing the return type,
1166           (geniCodeFunctionBody): pass func to geniCodeReceive
1167         * src/SDCCmain.c: added indicator BitBankUsed
1168         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1169         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1170           (checkSClass): don't put automatic bool/bit on stack,
1171           (checkFunction): removed check on function cannot return bit
1172         * src/SDCCsymt.h: added newBoolLink prototype
1173         * src/mcs51/gen.c (rb1regs): added bit registers,
1174           (movc): created for assigning to carry,
1175           (pushReg, popReg): created for pushing registers,
1176           (sameRegs): check both AOP_REG and AOP_CRY types,
1177           (aopOp): handle bit registers,
1178           (aopPut): optimization no self-assign,
1179           (saveRegisters): push reg->base (bits) only once for bit registers,
1180            and use pushReg,
1181           (unsaveRegisters): pop reg->base only once and use popReg,
1182           (assignResultValue): added parameter func and return in carry for bits,
1183           (genIpush): optimization no reload in A if not changed,
1184           (genSend): bit parameters in reentrant functions are passed in bit
1185            registers by first assigning to bits in B, then save registers and
1186            copy B to bits,
1187           (genCall): handle returning in Carry properly, save it in F0 if needed,
1188           (genPcall): updated assignResultValue call, this is not safe yet for bit
1189            returning function !!!
1190           (genFunction): don't generate equ's for bit registers and use pushReg,
1191           (genEndFunction): take care of bit returning functions and use popReg,
1192           (genRet): return bit in Carry,
1193           (genIfx): optimize bit registers and other directly addressable bits,
1194           (genReceive): updated assignResultValue call
1195         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1196           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1197            registers when using stack-auto
1198         * src/mcs51/ralloc.c (_G): added allBitregs,
1199           (regs8051): added the bit registers,
1200           (createStackSpil): use macro IS_BIT,
1201           (getRegBit): added to allocate a bit register, else spill,
1202           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1203           (updateRegUsage): factored out to ease stepping while debugging,
1204           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1205            also allocate bit registers,
1206           (fillGaps): handle bit registers,
1207           (findAllBitregs): added to create bit vector with all bit registers,
1208           (mcs51_allBitregs): returns this bit vector,
1209           (mcs51_assignRegisters): when using stack-auto use bit registers for
1210            passing parameters and creating local variables
1211         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1212
1213 2005-08-22 Borut Razem <borut.razem AT siol.net>
1214
1215         * device/lib/Makefile.in: replaced find option -or with -o
1216           to make it run on solaris
1217
1218 2005-08-22 Raphael Neider <rneider AT web.de>
1219
1220         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1221           fixes #1265442 (crash on Solaris)
1222
1223 2005-08-20 Borut Razem <borut.razem AT siol.net>
1224
1225         * configure, configure.in: added tests for libsocket and libnsl libraries,
1226           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1227           from support/regression/Makefile.in
1228         * support/regression/Makefile.in: added
1229         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1230         * sim/ucsim/libtool: regenerated on sparc-solaris
1231         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1232           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1233           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1234           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1235           sparc-solaris, which doesn't use GNU ld linker
1236         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1237         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1238
1239 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1240
1241         * src/mcs51/peeph.def: updated comments
1242
1243 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1244
1245         * device/lib/_gptrget.c,
1246         * device/lib/_gptrput.c: slightly shorter
1247         * doc/sdccman.lyx: incremented version
1248         * src/mcs51/peeph.def: moved peephole comments to the line of first
1249           change to better keep line correlation, reanimated 186.e
1250         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1251
1252 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1253
1254         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1255           David Saxton with quotes around file name.
1256
1257 2005-08-15 Borut Razem <borut.razem AT siol.net>
1258
1259         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1260           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1261           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1262           make tests run on x86_64 platform
1263
1264 2005-08-13 Raphael Neider <rneider AT web.de>
1265
1266         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1267           as it might be executed DURING a build (parallel make is wonderful)
1268
1269 2005-08-13 Raphael Neider <rneider AT web.de>
1270
1271         * device/lib/Makefile.in (port-specific-objects-pic16):
1272           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1273         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1274           dependency
1275         * device/lib/pic16/Makefile.rules: build subdirs before creating
1276           the library, removed builddir rule, create $(builddir) early in
1277           recurse rule, use empty recurse rule for leaf directories
1278         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1279           mkdir errors (race condition), removed duplicate suffix "hex"
1280           from clean rules
1281         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1282         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1283           prevents mkdir -p from aborting on Alpha
1284
1285 2005-08-12 Raphael Neider <rneider AT web.de>
1286
1287         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1288           db-statements in order to allow for arrays of pointers in code
1289           sections to be placed without interspersed 0-padding, fixes
1290           bug #1256215
1291         * (emitStatistics): fixed division by zero for pic18f1220
1292         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1293           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1294         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1295         * (pic16_pCodeConstString): keep track of already emitted string
1296           literals to prevent "duplicate definitions of symbol _str_NR"
1297         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1298           debug message
1299         * device/lib/Makefile.in: ignore failing PIC16 library builds
1300         * device/lib/pic16/Makefile: do not build if gputils are missing
1301         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1302
1303 2005-08-10 Raphael Neider <rneider AT web.de>
1304
1305         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1306           my last commit)
1307
1308 2005-08-10 Raphael Neider <rneider AT web.de>
1309
1310         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1311           Rokas' patch to add the new fixed point type "__fixed16x16"
1312         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1313           functions for __fixed16x16 arithmetics
1314         * device/lib/pic16: reimplemented the build system to support
1315           a separate build directory, better handling of libio (create
1316           the library in a separate subdir for each architecture) and
1317           easier configuration (centralized in Makefile.common)
1318
1319 2005-08-07 Raphael Neider <rneider AT web.de>
1320
1321         * src/pic16/gen.c (genrshTwo): fixed sign extension
1322         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1323         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1324           added T0CONbits
1325         * device/include/pic16/pic18f4220.h: NEW, header for
1326           pic18f4220 and pic18f4320
1327         * device/include/pic16/pic18fregs.h: added new devices,
1328           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1329         * device/include/pic16/signal.h: resolved name clashes
1330           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1331           to also allow testing for interrupt enable bits, added
1332           comments on how to use the macros
1333         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1334         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1335           register definitions for the devices
1336         * device/lib/pic16/pics.all: added new devices
1337         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1338           allocated memory
1339         * device/lib/pic16/libc/stdlib/memfree: do not count
1340           the block header as free memory
1341         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1342           simplified and added missing end-of-blocklist-marker
1343           (reported by Peter Onion, fixes #1252814)
1344         * (_mergeHeapBlock): fixed loop condition
1345         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1346           len==0, restructured code
1347         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1348           up a bit, reduced bitfield accesses, prevent endless loops
1349           in case of heap corruption
1350         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1351           "unreferenced arguments/must return a value" warnings
1352         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1353           replaced BAUDREG with SPBRG
1354         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1355           device/lib/pic16/debug/gstack/gstack.c: replaced
1356           _naked, _asm, _endasm with __naked, __asm, __endasm
1357
1358 2005-08-05 Raphael Neider <rneider AT web.de>
1359
1360         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1361           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1362
1363 2005-08-05 Borut Razem <borut.razem AT siol.net>
1364
1365         * device/lib/Makefile.in: added missing ';'
1366         * configure: removed ^M characters
1367
1368 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1369
1370         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1371           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1372           License
1373
1374 2005-08-04 Borut Razem <borut.razem AT siol.net>
1375
1376         * configure.in: pic16 libraries build 2nd try - enable running
1377           configure in device/lib/pic16
1378         * configure: regenerated from configure.in
1379         * device/lib/Makefile.in: create $(PORT)/bin directory
1380
1381 2005-08-03 Raphael Neider <rneider AT web.de>
1382
1383         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1384           to get/set values via pointers
1385         * (genUnpackBits,genPackBits): changed detection of
1386           ptr->bitfield vs. sym.bitfield, fixed access via generic
1387           pointers, removed dead (wrong) code for multibyte bitfields
1388         * (genNearPointerGet, genGenPointerGet): removed useless code,
1389           fixed bitfield detection, fixes #1250594
1390         * (genNearPointerSet): removed useless code
1391         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1392           and introduced macro pic16_emitpcode that conditionally emits
1393           the origin of the following pCode (useful for debugging SDCC)
1394         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1395         * (createDefmap): fixed handling of LFSR for --optimize-df
1396
1397 2005-08-02 Borut Razem <borut.razem AT siol.net>
1398
1399         * device/lib/Makefile.in: pic16 libraries build enabled since
1400           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1401
1402 2005-08-02 Raphael Neider <rneider AT web.de>
1403
1404         * src/pic16/gen.c (genPackBits): removed deprecated warning
1405         * (genGenPointerSet): fixed bitfield detection
1406
1407 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1408
1409         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1410
1411 2005-07-31 Raphael Neider <rneider AT web.de>
1412
1413         * device/lib/pic16/libdev/pic18f458.c,
1414           device/include/pic16/pic18f458.h: added missing T0CONbits
1415
1416 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1417
1418         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1419
1420 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1421
1422         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1423
1424 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1425
1426         * device/include/mcs51/at89c51ed2.h: added.
1427
1428 2005-07-23 Raphael Neider <rneider AT web.de>
1429
1430         * src/pic/gen.h: added emitpcode macro for debugging
1431         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1432           and replace by macro adding debug information on demand
1433         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1434         * (gencjne): tried to fix; replaced with correct (slower) code
1435         * (gen{Unp,P}ackBits): fixed single bit access
1436         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1437         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1438           previous instruction
1439         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1440           register has to be handled with care (forbidding movement
1441           of assignments/uses, removing assignments completely, ...)
1442         * (pCodeOptime2pCodes): make use of regIsSpecial
1443         * added lots of debugging output (commented out)
1444         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1445           from being reused as result UNLESS it is known to work
1446
1447 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1448
1449         * support/Util/dbuf.h: include <stddef.h> for size_t
1450         * .version: changed to version 2.5.2
1451
1452 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1453
1454         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1455
1456 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1457
1458         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1459           (genModOneByte): removed needless psha/pula
1460
1461 2005-07-22 Raphael Neider <rneider AT web.de>
1462
1463         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1464           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1465         * src/pic/gen.c (resolveIfx): do not "invent" labels
1466         * (genSkipc): changed to positive logic
1467         * (genSkipCond): removed as no longer needed
1468         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1469           backport from PIC16
1470         * (genLeftShift): check operands are in different registers
1471         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1472           INCF does not update CARRY...
1473         * src/pic/main.c: fixed _linkCmd
1474         * src/pic/pcode.c (unlinkpCode): added inactive code
1475         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1476           alive (do not assign result and operand overlapping registers)
1477
1478 2005-07-22 Raphael Neider <rneider AT web.de>
1479
1480         * src/pic/device.c (dump_sfr): replaced register declaration with
1481           call to emitSymbolToFile() to avoid duplicate symbols
1482         * (assignRelocatableRegisters): do not declare external symbols
1483         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1484           right (take size of type, not etype)
1485         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1486         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1487         * (packRegsForAccUse): disabled assignment of WREG as
1488           the result reg to prevent occurence of just fixed #1235003,
1489           fixes #1242954
1490         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1491           symbols (avoids duplicate symbols in .asm file)
1492         * (pic14emitRegularMap): use emitSymbolToFile()
1493         * src/pic/gen.c (aopOp): fixed spillLocation handling
1494         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1495         * (genDataPointerSet): removed unneccessary variables/output
1496
1497 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1498
1499         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1500         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1501
1502 2005-07-21 Raphael Neider <rneider AT web.de>
1503
1504         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1505           architecture cannot handle them efficiently, fixes bug #1235003
1506         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1507           check for empty sets before using them (fixes bug #1232190)
1508
1509 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1510
1511         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1512           (lnksect2): generate warnings for memory overlap
1513         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1514           constseg to set the name of these segments so you can instruct the linker
1515           to place them in banks
1516         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1517         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1518           added code_seg and const_seg to options
1519         * src/SDCCglue.c (emitMaps): use options.const_seg,
1520           (createInterruptVect): put interrupt vectors in segment HOME,
1521           (glue): put HOME before static segment and put the main glue in HOME,
1522           (glue): use options.code_seg
1523         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1524         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1525           these segments so you can instruct the linker to place them in banks
1526           (linkEdit): use code_loc for HOME segment which should be the first
1527           segment in code memory now
1528         * src/SDCCmem.c: fixed more stuff like bug 1238386
1529         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1530           (changePointer): don't change function pointers to code pointers for
1531           banked functions,
1532           (compareType): added exceptional check for banked function pointers
1533         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1534         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1535           after static in code memory
1536         * src/mcs51/gen.c: added aopLiteralLong prototype,
1537           (aopForSym): use getSize for functions,
1538           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1539           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1540           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1541           the segment,
1542           (genPcall): use call for literal function pointers and generate banked
1543           calls over the one trampoline so there's only one place for the user to
1544           modify according to his/hers hardware,
1545           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1546           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1547         * src/mcs51/main.c: added keyword banked,
1548           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1549         * support/Util/SDCCerr.c,
1550         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1551           needed for passing the bank and address to the trampoline
1552         * device/lib/mcs51/crtbank.asm: added for bankswitching
1553         * device/lib/mcs51/Makefile: added crtbank
1554
1555 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1556
1557         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1558           for fields at offset 0 of a struct or union as reported
1559           on 2005-07-07 in the developer mailing list.
1560
1561 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1562
1563         * src/SDCCmem.c: fixed bug 1238386
1564
1565 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1566
1567         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1568           (patch #1144962), added peephole 300, enabled 259.x
1569         * doc/sdccman.lyx: removed screenshot and provided link instead
1570
1571 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1572
1573         * doc/sdccman.lyx: added section about debugging with ddd
1574         * doc/figures/ddd_example.eps: screenshot of debugging session
1575
1576 2005-07-04 Raphael Neider <rneider AT web.de>
1577
1578         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1579           like CODE pointers, fixes #1115683
1580         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1581           call, fixes bugs #1232211, #1228110,
1582           fixed wrong casts to pCodeFlow from pCodeInstructions
1583
1584 2005-07-04 Raphael Neider <rneider AT web.de>
1585
1586         * src/pic/gen.c (popGet): changed assert to allow for
1587           bit operands
1588         * (popGetAddr): changed signature to provide
1589           an additional index, patched all call sites
1590         * (genCmpEq): handle literal-like operands correctly
1591         * (genAddrOf): added sanity checks on __code/__data pointers
1592         * (genAssign): added handling of symbols from __code section
1593         * (gencjne): do not generate code for comparisons whose result
1594           is neither stored nor used, fixes bug #1171114
1595         * (AccLsh, AccRsh): operate on operand instead of WREG
1596         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1597           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1598           by known count
1599         * rewrote complete shift-by-literal logic, commented unused
1600           functions out
1601         * (genConstPointerGet): get multiple bytes (if result size > 1),
1602           fixed handling of non-immediate addresses
1603         * (genPointerGet): handle CODE pointers like CONST pointers
1604         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1605         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1606           operand is to be treated as a literal or not
1607         * (mov2w,genPcall,genCmpEq),
1608           src/pic/genarith.c: use aop_isLitLike() to decide between
1609           literal/register contents
1610         * (addSign): added missing offset
1611         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1612           only emit comment in debug-mode,
1613           use {aop,op}_isLitLike throughout the file
1614         * src/pic/glue.c: fix initializers for pointers (work in progress)
1615         * src/pic/pcode.c (get_op): honor index on _const symbols
1616         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1617         * (dumppBlock): added pCode size estimation
1618         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1619           check for IS_SYMOP before OP_SYMBOL'ing
1620         * fixed indentation, compacted switch-statements
1621         * (allocReg): find free register and allocate it instead of
1622           allocating new registers all the time
1623         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1624           registers as its operands (necessary only for multibyte GETs)
1625
1626 2005-07-01 Raphael Neider <rneider AT web.de>
1627
1628         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1629           debugging .asm-output macros FENTRY + FEXIT
1630         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1631           way... I wonder...
1632         * (emitpComment): NEW, printf to pCode
1633         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1634           offset handling
1635         * (popGetAddr): NEW, variant of popGet to access an immediates
1636           high(er) bytes instead of the n'th byte of memory they reference,
1637           replaced popGet with popGetAddr where neccessary
1638         * (genDataPointerGet): reactivated and fixed implementation
1639         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1640           accesses
1641         * (genDataPointerSet): fixed multibyte assignments
1642         * (genpic14Code): fixed --i-code-in-asm handling
1643         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1644         * (genPlus): fixed index-out-of-bounds error
1645         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1646         * src/pic/ralloc.c: added debugging output macro FENTRY2
1647         * (spillThis): fixed indentation, enbraced for-body for clarity
1648         * (rematStr): commented out as now unused
1649         * (regTypeNum): commented out special spill case (overwrites
1650           arbitrary values)
1651         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1652
1653 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1654
1655         * doc/sdccman.lyx: documented sfr16/sfr32,
1656           added example for using storage class with function pointers
1657         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1658
1659 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1660
1661         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1662         * device/lib/_itoa.c,
1663         * device/lib/_ltoa.c: optimized codesize
1664         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1665           but don't know how to suppress the double warning.
1666         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1667         * support/Util/SDCCerr.c,
1668         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1669
1670 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1671
1672         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1673           fixed old K&R prototypes
1674         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1675         * device/lib/_gptrget.c,
1676         * device/lib/_gptrgetc.c,
1677         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1678           also new versions for small generic pointers and banked generic pointers
1679         * src/port.h: added const_name
1680         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1681         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1682         * src/SDCCcse.c (findPrevIc): check all associative operators
1683         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1684         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1685         * src/SDCCmem.c: updated comments,
1686           set far-space to 0 for pdata, results in optimized code
1687         * src/SDCCmem.h: added macro CONST_NAME
1688         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1689           moving the info into the highest bits, see also gptrget/gptrput
1690         * src/src.dsp: added sdcc.ico to project files
1691         * src/avr/gen.c (genCast): fixed bug 0x%d
1692         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1693         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1694           relation between ptr_type and DCL_TYPE,
1695           (genCast): fixed bug 0x%d
1696         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1697           (CODE)" for const_name
1698         * src/hc08/gen.c (genCast): fixed bug 0x%d
1699         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1700           (hc08_port): added "CONST (CODE)" for const_name
1701         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1702           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1703           between ptr_type and DCL_TYPE,
1704           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1705           operand* and took AOP() inside function so sfr-ness can be checked,
1706           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1707           new prototype,
1708           (genFunction, genEndFunction): optimized stack setup,
1709           (genMinus): optimized for literals with ending zeroes (in bytes),
1710           (genCast): fixed bug 0x%d
1711         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1712           (mcs51_port): added "CONST (CODE)" for const_name
1713         * src/mcs51/peeph.def: made rule 226 more generic
1714         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1715         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1716         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1717         * src/z80/main.c (z80_port): added NULL for const_name,
1718           (gbz80_port): added NULL for const_name
1719         * support/regression/tests/bug663539.c,
1720         * support/regression/tests/sfr16.c: new tests
1721
1722 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1723
1724         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1725
1726 2005-06-24 Raphael Neider <rneider AT web.de>
1727
1728         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1729           corrected typos...
1730         * device/include/pic16/signal.h: added USBIF
1731           and SIG_USB
1732
1733 2005-06-24 Raphael Neider <rneider AT web.de>
1734
1735         * device/lib/pic16/libdev/pic18f2455.c,
1736           device/include/pic16/pic18f2455.h: NEW
1737         * device/include/pic16/pic18fregs.h,
1738           device/lib/pic16/pics.all,
1739           src/pic16/device.c: added 18f2455
1740         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1741           device/include/pic16/{pic18f[68][567].h,usart.h}:
1742           replaced MULTIPLE_USARTS define with more relaible
1743           compatibility sfrs (for USART access)
1744
1745 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1746
1747         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1748           and the output asm file line is printed on two lines.
1749
1750 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1751
1752         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1753           BGT, BLE, BHI, and BLS instructions
1754         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1755           genCmpEq): removed
1756         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1757           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1758           fixes bug #1216342
1759         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1760
1761 2005-06-15 Raphael Neider <rneider AT web.de>
1762
1763         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1764         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1765         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1766           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1767           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1768
1769 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1770
1771         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1772           Marcel Telka in bug #1215704
1773
1774 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1775
1776         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1777           located in shared memory bank.
1778
1779 2005-05-31 Raphael Neider <rneider AT web.de>
1780
1781         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1782           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1783           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1784
1785 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1786
1787         * device/lib/_strncpy.c: fixed the fix
1788
1789 2005-05-26 Raphael Neider <rneider AT web.de>
1790
1791         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1792           initializers with \0, bug #1208187
1793         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1794           intializers with \0, bug #1208187
1795
1796 2005-05-26 Raphael Neider <rneider AT web.de>
1797
1798         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1799           initializers with \0, bug #1208187
1800         * src/pic16/main.c (_process_pragma): added sanity checks
1801           for stack position and size, emit warnings when appropriate
1802
1803 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1804
1805         * device/lib/_strncpy.c: fixed not filling with \0
1806
1807 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1808
1809         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1810           createFunction),
1811         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1812           compound_statement),
1813         * src/SDCCsymt.h,
1814         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1815
1816 2005-05-24 Raphael Neider <rneider AT web.de>
1817
1818         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1819
1820 2005-05-24 Raphael Neider <rneider AT web.de>
1821
1822         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1823           TRISE definitions, closes bug #1162453
1824
1825 2005-05-22 Raphael Neider <rneider AT web.de>
1826
1827         * src/pic16/main.c (_process_pragma): check for missing
1828           arguments to pragmas code and udata
1829         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1830           consistency fixes to match other headers (thanks to Jim Paris)
1831         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1832
1833 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1834
1835         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1836
1837 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1838
1839         * support/regression/tests/bug1198642.c: new test
1840         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1841         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1842         * support/scripts/resource.h,
1843         * support/scripts/resource.rc,
1844         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1845         * support/scripts/sdcc.ico: added 32x32 icon
1846
1847 2005-05-18 Raphael Neider <rneider AT web.de>
1848
1849         * device/lib/pic16/libdev/pic18f*.c,
1850         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1851           keywords to "__sfr" and "__at (X)"
1852         * device/include/pic16/pic18fregs.h: added pic18f4520
1853         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1854           #1203088 (MPLAB compatibility)
1855
1856 2005-05-17 Raphael Neider <rneider AT web.de>
1857
1858         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1859         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1860         * device/lib/pic16/pics.all: added new devices
1861         * src/pic16/device.c: added support for pic18f4520
1862
1863 2005-05-16 Raphael Neider <rneider AT web.de>
1864         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1865         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1866         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1867           convenience function for bit access
1868
1869 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1870
1871         * device/lib/printf_large.c: fixed bug 1193299
1872         * support/regression/tests/bug1057979.c: added test %3.3s
1873
1874 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1875
1876         * device/include/mcs51/8051.h,
1877         * device/include/mcs51/8052.h: made parseable with lint
1878         * device/include/mcs51/lint.h: added include file for (sp)lint
1879         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1880         * doc/cdbfileformat.lyx,
1881         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1882
1883 2005-05-14 Raphael Neider <rneider AT web.de>
1884
1885         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1886         * device/lib/pic16/libc/stdlib/itoa.c (new)
1887         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1888         * device/lib/pic16/libio/Makefile: exclude subdir according to
1889           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1890         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1891         * src/pic16/gen.c (genFunction): prevent annoying warning
1892         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1893           nameclashes on BeOS
1894         * support/cpp2/cppmain.c (cpp_output_string): new
1895         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1896           fixes bug 1116802
1897
1898 2005-05-13 Borut Razem <borut.razem AT siol.net>
1899
1900         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1901
1902 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1903
1904         * .version: changed to version 2.5.1; back to bleeding edge development
1905
1906 2005-05-11 Borut Razem <borut.razem AT siol.net>
1907
1908         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1909           generate PDF version 1.3 documents
1910
1911 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1912
1913         * .version: changed to version 2.5.0
1914
1915 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1916
1917         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1918
1919 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1920
1921         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1922         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1923         well as many smaller updates.
1924         * .version: changed to version 2.5.0-pre1
1925
1926 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1927
1928         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1929
1930 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1931
1932         * support/regression/tests/bug1185672.c: added
1933         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1934           bug 1185672
1935         * src/mcs51/gen.c (genCall): added comments, made it look safer
1936         * src/mcs51/gen.c (genEndFunction): simplified
1937
1938 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1939
1940         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1941
1942 2005-04-14 Borut Razem <borut.razem AT siol.net>
1943
1944         * fixed bug 1045046 - SIGSEGV with really simple code?:
1945           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1946           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1947
1948 2005-04-14 Borut Razem <borut.razem AT siol.net>
1949
1950         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1951           src/pic16/device.h: temporarily disabled experimental #inline pragma
1952           for 2.5.0 release
1953
1954 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1955
1956         * device/include/z80/stdio.h,
1957         * device/include/z80/string.h: removed these highly incomplete files so
1958           SDCC can use the default ones in device/include/
1959
1960 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1961
1962         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1963         gcc warning.
1964         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1965         fix sdcpp warnings.
1966
1967 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1968
1969         * device/include/malloc.h: removed redundant __reentrant prototypes
1970         * device/lib/_mullong.c: added working xstack variant in asm (C version
1971           doesn't pass regression tests)
1972         * device/lib/bpx.c: used __data and made bpx char for mcs51
1973         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1974           (createFunction): fixed bug with xstackPtr
1975         * src/SDCCcse.c: corrected comments
1976         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1977           (killDeadCode, eBBlockFromiCode): removed unused code
1978         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1979           corrected comments
1980         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1981           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1982           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1983           (genModOneByte): fixed warning in MSVC
1984         * src/mcs51/main.c (): added comments
1985         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1986
1987 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1988
1989         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1990
1991 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1992
1993         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1994
1995 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1996
1997         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1998         characters arrays of larger size than the declared one.
1999
2000 2005-04-10 Borut Razem <borut.razem AT siol.net>
2001
2002         * src/pic/gen.c (genInline),
2003           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2004           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2005           (findNextInstruction), (findPrevInstruction),
2006           (findInstructionUsingLabel),
2007           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2008         * src/pic/pcode.c (findLabel): added missing '\n'
2009         * src/src.dsp: added SDCCdwarf2.c to the project
2010
2011 2005-04-09 Borut Razem <borut.razem AT siol.net>
2012
2013         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2014
2015 2005-04-08 Raphael Neider <rneider AT web.de>
2016
2017         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2018           into the chain after a given one) and mergeDefmapSymbols (combine
2019           defmap entries for each symbol per pcode)
2020         * (createDefmap): have defmap entries merged in the end
2021         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2022           a symbol before replacing one access type's symbol, merge symbols in
2023           the end (replacement symbol might already have an entry)
2024         * (assignValnums): keep reference to written WREG intact
2025
2026 2005-04-08 Raphael Neider <rneider AT web.de>
2027
2028         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2029           Alpha)
2030
2031 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2032
2033         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2034         bytes
2035
2036 2005-04-07 Raphael Neider <rneider AT web.de>
2037
2038         * device/include/pic16/usart.h: added compatibility defines for
2039           devices with more than one USART
2040         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2041
2042 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2043
2044         * device/lib/Makefile.in: updated for port specific include
2045
2046 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2047
2048         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2049
2050 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2051
2052         * device/include/8051.h,
2053         * device/include/8052.h,
2054         * device/include/at89S8252.h,
2055         * device/include/at89c55.h,
2056         * device/include/at89x051.h,
2057         * device/include/at89x51.h,
2058         * device/include/at89x52.h,
2059         * device/include/mcs51reg.h,
2060         * device/include/reg51.h,
2061         * device/include/reg764.h,
2062         * device/include/regc515c.h,
2063         * device/include/sab80515.h: (re)moved these 12 files
2064         * device/include/mcs51/8051.h,
2065         * device/include/mcs51/8052.h,
2066         * device/include/mcs51/at89S8252.h,
2067         * device/include/mcs51/at89c55.h,
2068         * device/include/mcs51/at89x051.h,
2069         * device/include/mcs51/at89x51.h,
2070         * device/include/mcs51/at89x52.h,
2071         * device/include/mcs51/mcs51reg.h,
2072         * device/include/mcs51/reg51.h,
2073         * device/include/mcs51/reg764.h,
2074         * device/include/mcs51/regc515c.h,
2075         * device/include/mcs51/sab80515.h: and added them here
2076
2077 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2078
2079         * device/include/stdarg.h: changed SDCC specific keywords to double
2080           underlined form.
2081         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2082           mcs51 and ds390.
2083         * device/include/hc08/mc68hc908gp32.h,
2084         * device/include/hc08/mc68hc908jb8.h,
2085         * device/include/hc08/mc68hc908jkjl.h,
2086         * device/include/hc08/mc68hc908qy.h: fixed comments
2087         * device/include/mcs51/README: updated
2088         * device/include/mcs51/c8051f120.h: added PINRSF
2089         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2090         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2091           amidst code. Also inline is not supported.
2092
2093 2005-04-06 Raphael Neider <rneider AT web.de>
2094
2095         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2096         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2097           callers stack/frame pointers
2098
2099 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2100
2101         * device/include/pic16/usart.h: added, missing in previous commit,
2102         * device/include/pic16/adc.h: fixed typo,
2103         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2104         commit,
2105         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2106         <p18fxxx.inc>
2107         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2108         uninitialized because a bug appears with gplink
2109         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2110         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2111         complains for unrecognised option
2112
2113 2005-04-05 Raphael Neider <rneider AT web.de>
2114
2115         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2116           structs as well (using memcpy)
2117         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2118           on ISRs (GOTO has no label)
2119         * src/pic16/device.h: added OF_OPTIMIZE_DF
2120         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2121           new data flow analysis/optimization
2122         * src/pic16/pcode.c: added (prototypes for and implementation of)
2123           dataflow analysis functions, fixed pCodeInstructions' inCond and
2124           outCond values, made RCALL a branch instruction
2125         * (pic16_unlinkpCode): keep C line if possible
2126         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2127           C line moved if possible
2128         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2129         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2130           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2131         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2132           new flow)
2133         * (pic16_getJumptabpCode): NEW, needed in...
2134         * (LinkFlow): fixed handling of jumptables, calls and conditional
2135           branches
2136         * (pic16_InsertCommentAfter): NEW
2137         * (pic16_pCodeReplace): made verbose and flow preserving
2138         * (AnalyzeFlow): added call to data flow analysis
2139         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2140         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2141         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2142
2143 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2144
2145         * src/SDCCast.c (decorateType): fixed bug #1105626
2146
2147 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2148
2149         * device/include/asm/pic16/features.h,
2150         * pic18f*.h headers,
2151         * device/include/pic16/adc.h,
2152         * device/include/pic16/delay.h,
2153         * device/include/pic16/i2c.h,
2154         * device/include/pic16/malloc.h,
2155         * device/include/pic16/stdio.h,
2156         * device/include/pic16/stdlib.h,
2157         * device/include/pic16/string.h,
2158         * device/lib/pic16/libc/stdio/printf_tiny.c,
2159         * device/lib/pic16/libc/stdio/printf_small.c,
2160         * device/lib/pic16/libc/stdio/strmgpsim.c,
2161         * device/lib/pic16/libc/stdio/strmmssp.c,
2162         * device/lib/pic16/libc/stdio/strmusart.c,
2163         * device/lib/pic16/libc/stdio/vfprintf.c,
2164         * device/lib/pic16/libc/stdlib/ltoa.c,
2165         * device/lib/pic16/libc/stdlib/putchar.c,
2166         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2167         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2168         * device/lib/pic16/libc/stdlib/memchrram.c,
2169         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2170         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2171         * device/lib/pic16/libio/adc/adcbusy.c,
2172         * device/lib/pic16/libio/adc/adcread.c,
2173         * device/lib/pic16/libio/adc/adcsetch.c,
2174         * device/lib/pic16/libio/usart/ubaud.c,
2175         * device/lib/pic16/libio/usart/ubusy.c,
2176         * device/lib/pic16/libio/usart/udrdy.c,
2177         * device/lib/pic16/libio/usart/uopen.c,
2178         * device/lib/pic16/libio/usart/uputc.c,
2179         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2180         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2181         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2182         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2183         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2184         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2185         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2186         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2187         specific keywords to double underlined form,
2188         * device/lib/pic16/libc/Makefile.rules,
2189         * device/lib/pic16/libsdcc/Makefile.rules,
2190         * device/lib/pic16/libm/Makefile,
2191         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2192         to compile with C standard set in Makefile.common
2193         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2194         rand.c and crc.c in compilation process,
2195         * device/lib/pic16/libsdcc/int/divuint.c,
2196         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2197         `c' from signed to unsigned,
2198         * device/lib/pic16/startup/crt0.c,
2199         * device/lib/pic16/startup/crt0i.c,
2200         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2201         keywords to double underlined form, bug fixes in _do_cinit function
2202         which prevented the correct initialization of the .idata segment,
2203         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2204         core to enter a infinite loop
2205         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2206
2207 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2208
2209         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2210
2211 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2212
2213         * device/include/Makefile.in: add support for hc08 subdirectory
2214         * device/include/hc08/: new subdirectory
2215         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2216         Lucas Loizaga, thanks!
2217         * device/include/hc08/mc68hc908qy.h,
2218         * device/include/hc08/mc68hc908gp32.h,
2219         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2220         their own directory. Changed internal macro names to use the compiler
2221         reserved namespace. Changed SDCC specific keywords to double
2222         underlined form.
2223         * device/include/math.h,
2224         * device/include/malloc.h,
2225         * device/include/stdarg.h,
2226         * device/include/stdbool.h
2227         * device/include/string.h,
2228         * device/include/tinibios.h,
2229         * device/include/ds400rom.h,
2230         * device/include/8051.h,
2231         * device/include/8052.h,
2232         * device/include/80c51xa.h,
2233         * device/include/at89c55.h,
2234         * device/include/at89S8252.h,
2235         * device/include/at89x51.h,
2236         * device/include/at89x52.h,
2237         * device/include/ds80c390.h,
2238         * device/include/reg764.h,
2239         * device/include/regc515c.h,
2240         * device/include/sab80515.h,
2241         * device/include/mcs51/c8051f000.h,
2242         * device/include/mcs51/c8051f018.h,
2243         * device/include/mcs51/c8051f020.h,
2244         * device/include/mcs51/c8051f040.h,
2245         * device/include/mcs51/c8051f060.h,
2246         * device/include/mcs51/c8051f120.h,
2247         * device/include/mcs51/c8051f300.h,
2248         * device/include/mcs51/c8051f310.h,
2249         * device/include/mcs51/c8051f320.h,
2250         * device/include/mcs51/c8051f330.h,
2251         * device/include/mcs51/c8051f350.h,
2252         * device/include/z180.h: Changed SDCC specific keywords to double
2253         underlined form.
2254
2255 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2256
2257         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2258         18F4455,
2259         * (pic16_assignConfigWordValue): disable testing of configuration
2260         register value with config mask,
2261         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2262         function with port->fun_prefix,
2263         * (genFunction): when generating a naked interrupt function never
2264         create an absolute segment placed in interrupt vector address, place
2265         the actual interrupt function at IVA instead, when an interrupt
2266         function is generated with unspecified interrupt then do not create
2267         the absolute section,
2268         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2269         code for generating a call to generic pointer get/put function with
2270         a call to function pic16_callGenericPointer(),
2271         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2272         the call to the generic pointer get/put functions with prefixing the
2273         function name with port->fun_prefix,
2274         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2275         * src/pic16/main.c (_process_pragma): prefix function with
2276         port->fun_prefix,
2277         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2278         calling assembler, old 18Fxxxx macro is deprecated,
2279         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2280         PC_ASMDIR in while condition,
2281         * (findInstruction): add PC_ASMDIR in while condition,
2282         * (buildCallTree): prefix main with port->fun_prefix,
2283         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2284         identifier for variable with banked access in instructions BTFSS,
2285         BTFSC, BCF, BSF, BTG
2286         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2287         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2288         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2289         perform optimization when enviroment variable NO_REG_OPT is set,
2290         * (insideLRBlock): NEW, return 1 if register is inside an
2291         INF_LOCALREGS block,
2292         * (RemoveRegFromLRBlock): remove a register that is completely
2293         eliminated by register optimization, but it is still left in local
2294         register store/restore in/from stack block,
2295         * (Remove2pcodes): after removing register, check to see if it
2296         should be removed from local register store/restore in/from stack
2297         block,
2298         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2299         DUMMY_READ_VOLATILE,
2300
2301         * device/include/pic16/adc.h: minor prototype modifications and
2302         update,
2303         * device/include/pic16/malloc.h: added GPL notice various
2304         modifications,
2305         * device/include/pic16/stdint.h: NEW, standard header for ints
2306         * device/include/pic16/delay.h: NEW, header for delay functions,
2307         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2308         delay1mtcy,
2309         * device/include/pic16/signal.h: NEW, header providing helper macros
2310         for implementing signal handlers,
2311         * device/include/pic16/stdio.h: added prototypes for functions,
2312         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2313         prototypes for stdin and stdout, added macro PUTCHAR to
2314         automatically implement putchar function prototype,
2315         * device/include/pic16/usart.h: modified and updated USART library,
2316         * device/lib/pic16/libio/adc/,
2317         * device/lib/pic16/libio/i2c: some modifications to improve library
2318         performance,
2319         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2320         family of functions,
2321         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2322         family of functions and other sources,
2323         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2324         of the PIC18Fxx[28] devices,
2325         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2326         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2327         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2328         _do_cinit function, because the previous failed when local variables
2329         where not placed in the same memory bank,
2330         * device/lib/pic16/libsdcc/char/: various modifications to improve
2331         library performance,
2332         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2333         information on the new functions of the c library and more...
2334
2335 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2336
2337         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2338
2339 2005-03-26 Raphael Neider <rneider AT web.de>
2340
2341         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2342           if condition == CARRY)
2343         * (genCmp): adapted to new genSkipc semantics
2344         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2345           on rIfx (genCmp was broken)
2346
2347 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2348
2349         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2350         * src/z80/main.c (_keywords[]),
2351         * src/SDCCglobal.h (struct options),
2352         * src/SDCC.y,
2353         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2354         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2355         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2356         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2357         always available in leading double underscore form. The C99 support is
2358         mostly missing, but it's a start.
2359         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2360         reserved identifier "__data".
2361
2362 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2363
2364         * src/mcs51/peeph.def: fixed bug 1170013
2365
2366 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2367
2368         * device/include/mcs51reg.h: fixed bug 842007
2369
2370 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2371
2372         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2373         last time.
2374
2375 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2376
2377         * src/port.h (struct PORT),
2378         * src/avr/ralloc.c (avr_assignRegisters),
2379         * src/avr/main.c,
2380         * src/ds390/ralloc.c (ds390_assignRegisters),
2381         * src/ds390/main.c,
2382         * src/hc08/ralloc.c (hc08_assignRegisters),
2383         * src/hc08/main.c,
2384         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2385         * src/mcs51/main.c,
2386         * src/pic/ralloc.c (pic14_assignRegisters),
2387         * src/pic/main.c,
2388         * src/pic16/ralloc.c (pic16_assignRegisters),
2389         * src/pic16/main.c,
2390         * src/xa51/ralloc.c (xa51_assignRegisters),
2391         * src/xa51/main.c,
2392         * src/z80/ralloc.c (z80_assignRegisters),
2393         * src/z80/ralloc.h,
2394         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2395         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2396         * src/SDCCcse.h,
2397         * src/SDCCdflow.c (computeDataFlow),
2398         * src/SDCCdflow.h,
2399         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2400         * src/SDCCloop.h,
2401         * src/SDCCcflow.c (*),
2402         * src/SDCCcflow.h,
2403         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2404         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2405         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2406         immedDom() returning wrong block; probably fixes bug #1160833)
2407
2408 2005-03-20 Borut Razem <borut.razem AT siol.net>
2409
2410         * support/scripts/inc2h.pl: WIN32 port
2411
2412 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2413
2414         * device/lib/makefile.in: added abs.c and labs.c
2415
2416 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2417
2418         * device/include/stdint.h: added
2419         * device/lib/abs.c: added
2420         * device/lib/labs.c: added
2421         * device/include/stdlib.h: added abs() and labs() prototypes
2422         * device/lib/libsdcc.lib: added abs and labs
2423         * device/include/float.h,
2424         * device/lib/_fsmul.c,
2425         * device/lib/printf_fast.c,
2426         * device/lib/printf_tiny.c: updated comments
2427
2428 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2429
2430         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2431         bug #1164313
2432
2433 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2434
2435         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2436         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2437
2438 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2439
2440         * device/lib/printf_large.c: removed inline assembly for portability and
2441           readability. Use printf_fast if speed or size are more important.
2442         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2443         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2444
2445 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2446
2447         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2448         prevent compiler warning
2449
2450 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2451
2452         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2453         moved to level 0 and declared as static. Also they are explicit
2454         placed in access bank. This was necessery because some times they
2455         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2456         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2457         optimizations. Currently only compare to unsigned char is implemented,
2458         * src/pic16/gen.c: added fReturnIdx array,
2459         * (struct resolvedIfx) is moved to gen.h and made public,
2460         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2461         * (aopForSym): added an optimization to directly store in stack of
2462         the operand of a SEND iCode,
2463         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2464         but as registers instead (AOP_REG) using the fReturnIdx array,
2465         * (pic16_freeAsmop): remove the freed register from the
2466         _G.sregsAlloc field,
2467         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2468         a compare of 'WREG',
2469         * (pic16_popGetTempRegCond): changed function prototype, now
2470         function takes also a bitVector argument v which holds the current
2471         set of registers that are allocated for stack access by aopForSym,
2472         registers allocated in aopForSym for accessing stack symbols are not
2473         any more part of the functions usedRegs field,
2474         * (genCall): some times aopOp is called for a stack variable to be
2475         send, aopForSym might perform the push, if this is true make sure
2476         that genCall doesn't push the variable twice by testing _G.resDirect,
2477         * (genFunction): changed testing for unspecified interrupt number
2478         from 256 to INTNO_UNSPEC,
2479         * modified selection scheme of frame pointer generation. Previously
2480         if function did use local registers a frame pointer was generated,
2481         now a frame pointer is generated only if function has arguments
2482         (that need PLUSW2 register access), or has stack arguments, or the
2483         compiler is not instructed to omit the frame pointer,
2484         * (genEndFunction): before restoring local registers that were saved
2485         in the function preamble, also restore the registers that *might*
2486         have been allocated for stack access,
2487         * (genRet): removed some old comments,
2488         * (genCmp, the active (RN's) version): added a call to the
2489         pic16_genCmp_special function to perform the compare with a more
2490         robust and optimized way,
2491         * (genInline): a feature has been added in inline code generation,
2492         which allows a wildcard variable substitution when writing inline
2493         assembly. Code is incomplete and experimental therefore undocumented,
2494         * (genCast): changed order of aopOp for result and right to allow
2495         aopForSym to directly load the result if possible,
2496         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2497         perform an optimized compare on some selected special occasions,
2498         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2499         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2500         generate an IVT any more,
2501         * src/pic16/main.c (pic16_optionsTable): added command line option
2502         --optimize-cmp,
2503         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2504         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2505         macros,
2506         * src/pic16/NOTES: Raphael Neider added in list of active developers
2507         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2508         jumptable_end to prevent bug #,
2509         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2510         inCond and outCond fields,
2511         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2512         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2513         turn off register spilling,
2514         * (packRegsForOneUse): synced with other ports' versions although it
2515         is not used currently,
2516         * (pic16_packRegisters): added an optimization while reading
2517         structure bitfields, some registers may be saved (malloc code is
2518         decreased by 80 bytes)
2519
2520 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2521
2522         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2523         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2524         this can be optimized more?
2525
2526 2005-03-10 Raphael Neider <rneider AT web.de>
2527
2528         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2529           genNearPointerGet): (hopefully) fixed access to bitfields via
2530           pointers (p->bitN = x; and x = p->bitN; failed)
2531
2532 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2533
2534         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2535
2536 2005-03-09 Raphael Neider <rneider AT web.de>
2537
2538         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2539
2540 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2541
2542         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2543         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2544           (regTypeNum): set REG_BIT type if necessary
2545         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2546         * support/regression/tests/critical.c: check bug 1144613
2547
2548 2005-03-02 Raphael Neider <rneider AT web.de>
2549
2550         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2551
2552 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2553
2554         * src/avr/ralloc.c (serialRegAssign),
2555         * src/ds390/ralloc.c (serialRegAssign),
2556         * src/hc08/ralloc.c (serialRegAssign),
2557         * src/mcs51/ralloc.c (serialRegAssign),
2558         * src/pic/ralloc.c (serialRegAssign),
2559         * src/pic16/ralloc.c (serialRegAssign),
2560         * src/xa51/ralloc.c (serialRegAssign),
2561         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2562
2563 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2564
2565         * src/SDCCast.c (decorateType): fixed bug 1124787
2566
2567 2005-02-20 Hubert Sack <sack AT digiplan.de>
2568         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2569
2570         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2571         patch #1121755
2572
2573 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2574
2575         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2576         to keep the correct label reference count when adding/removing references
2577         to labels. A peephole file using this is appended to patch #1144962.
2578
2579 2005-02-14 Raphael Neider <rneider AT web.de>
2580
2581         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2582         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2583         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2584           retrievals of result operand's value on assignment
2585
2586 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2587
2588         * device/include/pic16/string.h: modified prototype for memccpy()
2589         to memccpy(void *, void *, char, size_t)
2590         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2591         check whether to omit frame pointer or not,
2592         * (genInline): convert all occurences of "\n" to LF in inline
2593         assembler blocks, this helps formatting the inline text,
2594         * (pic16_loadFSR0): modified prototype,
2595         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2596         removed some 8051 legacy code,
2597         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2598         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2599         before allocating temporary registers in functions,
2600
2601 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2602
2603         * support/regression/tests/bitvars.c: corrected the "fix"
2604
2605 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2606
2607         * support/regression/tests/bitvars.c,
2608         * support/regression/tests/bitwise.c,
2609         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2610
2611 2005-02-10 Raphael Neider <rneider AT web.de>
2612
2613         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2614           different size for Alpha
2615         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2616
2617 2005-02-09 Raphael Neider <rneider AT web.de>
2618
2619         * src/SDCC.lex(doPragma) : save and restore warning options as well
2620           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2621         * have #pragma less_pedantic set the errorlevel to WARNING
2622           (fixes #1117001)
2623         * (cloneOptimize) : fixed wrong malloc's size
2624         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2625           facilitate correct handling of #pragma (save|restore)
2626
2627 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2628
2629         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2630
2631 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2632
2633         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2634
2635 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2636
2637         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2638
2639 2005-02-02 Raphael Neider <rneider AT web.de>
2640
2641         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2642         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2643         * (pic16_storeForReturn): fixed to allow returning function pointers
2644         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2645         * device/include/pic16/{stddef.h,stdbool.h}: added
2646
2647 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2648
2649         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2650
2651 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2652
2653         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2654         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2655          appeared to be required
2656
2657 2005-01-31 Borut Razem <borut.razem AT siol.net>
2658
2659         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2660           include/mcs51 and include/z80 directories to the package
2661
2662 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2663
2664         * src/hc08/gen.c (genFunction): fixed bug #1112752
2665
2666 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2667
2668         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2669
2670 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2671
2672         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2673
2674 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2675
2676         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2677
2678 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2679
2680         * device/include/c8051fxxx.h: removed these 6 files
2681         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2682
2683 2005-01-26 Raphael Neider <rneider AT web.de>
2684
2685         * src/pic16/gen.c (genAssign): fixed assignment from longs
2686           in codespace (were cut to three bytes)
2687         * (genDummyRead): implemented (except for CODESPACE...),
2688           fixed bug #1108575
2689         * src/pic16/glue.c (emitStatistics): beautified
2690         * device/lib/pic16/libm/Makefile: added include path
2691
2692 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2693
2694         * src/z80/gen.c (aopPut): fixed bug #1103902
2695
2696 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2697
2698         * device/lib/expf.c: fixed bug #1095792
2699
2700 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2701
2702         * device/lib/pic16/libm: added Math library sources
2703
2704 2005-01-24 Raphael Neider <rneider AT web.de>
2705
2706         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2707           to enable upcast to pCodeOpReg2 (there is no type tag to
2708           differenciate the two and pic16_popGet2p cast into PCOR2)
2709         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2710           (sizeof(sectNames) changed to sizeof(sectName))
2711           Both patches fix segfaults under MinGW.
2712
2713 2005-01-23 Raphael Neider <rneider AT web.de>
2714
2715         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2716           Safe_[mc]?alloc()'ed variables
2717         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2718           of (byte sized) temporaries (assign them to WREG for now)
2719         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2720           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2721           this might fix SIGSEGVs on MinGW...
2722         * src/SDCCopt.c (killDeadCode): restored original behaviour
2723           (volatile operands might get thrown away though)
2724
2725 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2726
2727         * src/pic16/gen.c: fixed bug #1106975,
2728         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2729         pointer update, INTCON is saved, global interrupts are disabled and
2730         restored after updateing TOS.
2731         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2732         * added function attribute 'shadowregs' to take advantage of shadow
2733         registers,
2734         * added function attribute 'wparam' as an alternative to the wparam
2735         pragma,
2736         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2737         user declares a non-ISR function as 'shadowregs',
2738         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2739
2740 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2741
2742         * .version: bumped version number to 2.4.8
2743         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2744         pic16 port,
2745         * device/lib/pic16/libio/i2c/: I2C module support library,
2746         * device/include/pic16/i2c.h: I2C support library header,
2747         * device/lib/pic16/libc/stdio/: standard IO support sources,
2748         * (printf_small.c): printf_small() source, supports float print,
2749         * (printf_tiny.c): printf_tiny() source, does not support floats,
2750         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2751         enable global optimizations for entire library source, other
2752         Makefiles in the source tree are also modified to reflect this,
2753         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2754         function,
2755         * doc/sdccman.lyx: updated to reflect new changes,
2756         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2757         sym->onStack if-case,
2758         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2759         sbit, idata, _idata, xdata, _xdata,
2760         * added pragma library, to link an external library, (see doc),
2761         * removed command line options, --pomit-config-words, --pomit-ivt,
2762         --pleave-reset-vector,
2763         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2764         when calling assembler to reflect memory model used, also define
2765         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2766         reflect stack model used,
2767         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2768         on stack return NULL,
2769
2770 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2771
2772         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2773           of the operands is volatile. Fixes #1020220
2774
2775 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2776
2777         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2778         * (OptimizeRegUsage): make sure that there is really no other flow where
2779           the first pCode is used
2780
2781 2005-01-22 Raphael Neider <rneider AT web.de>
2782
2783         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2784           to fix #1106967 (pCode->seq are not set up correctly)
2785
2786 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2787
2788         * src/SDCCglue.c (glue): make sure code area is declared before the
2789         static initialization area.
2790
2791 2005-01-21 Raphael Neider <rneider AT web.de>
2792
2793         * device/lib/Makefile.in: fixed test for pic16 install dir
2794         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2795           optimizations
2796         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2797           added --optimize-goto compiler switch and pragma wparam documentation
2798         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2799         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2800           and PRODH closing bug #1071770 (peephole optimizer)
2801
2802 2005-01-19 Raphael Neider <rneider AT web.de>
2803
2804         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2805           cmdLine buffers (used when calling sdcpp...) are large enough
2806           (MAX_PATH=256 truncates arguments leading to system halts when
2807           used in MinGW...)
2808         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2809         * (genUminus): rewritten to for efficiency
2810         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2811           used uninitialized in some cases)
2812         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2813           copy the third byte from the int -- now assumes 0x80 (data memory)
2814         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2815           operands (genAddLit expects the iCode's operands to swapped as
2816           well), fixed leftover bytes (crashed for short left operands)
2817         * (pic16_genMinusDec): performance improvements, removed false
2818           PIC14 emitSKPNCs
2819         * (pic16_genMinus): fixed to cope with differently sized operands
2820         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2821           for --obanksel > 1
2822         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2823         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2824           new banksel optimization
2825         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2826           analysis for temporary registers (segfaults...)
2827         * src/pic16/peeph.def: added rule
2828
2829 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2830
2831         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2832         which converts a float number to its ASCII representation
2833         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2834         functions to convert the fractional and integer part of a float to ASCII,
2835         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2836         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2837         ram
2838         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2839         _STATMEM macros,
2840         * device/include/pic16/adc.h: added GPL info,
2841         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2842         a pCodeOp as tested operand,
2843         * (genNearPointerGet): optimized bit testing, does not use
2844         intermediate register for bit value, test directly instead with
2845         BTFSS, BTFSC, works only for single bits,
2846         * (genpic16Code): dump the name of the iCode in the asm,
2847         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2848         renamed to pic16_decodeOp,
2849         * (serialRegAssign): do not allocate a temporary register for iCode
2850         sequences that test a single bit for 1/0
2851
2852 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2853
2854         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2855         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2856         access stack and frame pointers. They are initially assigned to
2857         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2858         accessing SFRs. Updated all occurences of modification of stack or
2859         frame pointer in gen.c and pcode.c,
2860         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2861         assigning of a literal value to pointers,
2862         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2863         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2864         selected
2865
2866 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2867
2868         * doc/sdccman.lyx: update documentation about stack pragma, added
2869         some info for stack memory models
2870
2871 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2872
2873         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2874
2875 2005-01-08 Raphael Neider <rneider AT web.de>
2876
2877         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2878           udata sections to fix bug #1097823
2879
2880 2005-01-05 Raphael Neider <rneider AT web.de>
2881
2882         * src/pic16/gen.c (genGenericShift): added handling of differently
2883           sized left operand and result
2884
2885 2005-01-04 Raphael Neider <rneider AT web.de>
2886
2887         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2888         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2889           to hold the condition bit)
2890         * added new version of genCmp (old code available via #define)
2891         * added new version of genShiftLeft/genShiftRight in a generic
2892           way, now supports shifting by negative values
2893         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2894           shiftCount (expected by genGenericShift)
2895         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2896         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2897           dump
2898         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2899           is an invalid literal too...)
2900
2901 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2902
2903         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2904         from Raphael Neider,
2905         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2906         for 8-bit literals. This fixes some literal operands which are sign
2907         extended to 16-bits ints when instruction needs only 8-bits.
2908
2909 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2910
2911         * device/lib/logf.c: added mcs51 assembly version
2912         * device/lib/expf.c: added mcs51 assembly version
2913         * device/lib/_logexpf.c: new shared asm code for expf and logf
2914         * device/include/math.h: add defines for assembly math library
2915         * device/lib/Makefile.in: build new _logexpf.c
2916         * device/lib/libfloat.lib: use new _logexpf.c
2917
2918 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2919
2920         * src/pic/device.c
2921         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2922           device types which have less than 0x7f registers.
2923
2924 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2925
2926         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2927
2928 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2929
2930         * device/lib/printf_fast.c: only build on supported arch.
2931         * device/lib/printf_tiny.c: only build on supported arch.
2932         * device/lib/printf_fast_f.c: only build if asm float lib
2933         * device/lib/_fsget1arg.c: only build if asm float lib
2934         * device/lib/_fsget2args.c: only build if asm float lib
2935         * device/lib/_fsnormalize.c: only build if asm float lib
2936         * device/lib/_fsreturnval.c: only build if asm float lib
2937         * device/lib/_fsrshift.c: only build if asm float lib
2938         * device/lib/_fsswapargs.c: only build if asm float lib
2939         * device/include/stdio.h: don't provide print_fast,
2940           print_fast_f, print_tiny prototypes if --xstack used
2941
2942 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2943
2944         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2945         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2946           to the SOURCES
2947
2948 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2949
2950         * device/lib/printf_fast_f.c: same as printf_fast, but
2951           with floating point enabled
2952         * device/lib/printf_fast.c: minor tweaks
2953         * device/include/stdio.h: add printf_fast_f
2954
2955 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2956
2957         * src/SDCCmain.c: make --float-reent default for mcs51
2958         * device/lib/_fsadd.c: added mcs51 assembly version
2959         * device/lib/_fssub.c: added mcs51 assembly version
2960         * device/lib/_fsmul.c: added mcs51 assembly version
2961         * device/lib/_fsdiv.c: added mcs51 assembly version
2962         * device/lib/_fseq.c: added mcs51 assembly version
2963         * device/lib/_fsneq.c: added mcs51 assembly version
2964         * device/lib/_fsgt.c: added mcs51 assembly version
2965         * device/lib/_fslt.c: added mcs51 assembly version
2966         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2967         * device/lib/Makefile.in: add _fscmp to build
2968         * device/lib/libfloat.lib: add _fscmp to build
2969
2970 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2971
2972         * device/lib/_fs2slong.c: added mcs51 assembly version
2973         * device/lib/_fs2sint.c: added mcs51 assembly version
2974         * device/lib/_fs2schar.c: added mcs51 assembly version
2975         * device/lib/_fs2ulong.c: added mcs51 assembly version
2976         * device/lib/_fs2uint.c: added mcs51 assembly version
2977         * device/lib/_fs2uchar.c: added mcs51 assembly version
2978         * device/lib/_slong2fs.c: added mcs51 assembly version
2979         * device/lib/_sint2fs.c: added mcs51 assembly version
2980         * device/lib/_schar2fs.c: added mcs51 assembly version
2981         * device/lib/_ulong2fs.c: added mcs51 assembly version
2982         * device/lib/_uint2fs.c: added mcs51 assembly version
2983         * device/lib/_uchar2fs.c: added mcs51 assembly version
2984         * device/include/float.h: added #define to select asm vs c
2985
2986 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2987
2988         * device/lib/printf_fast.c: improvements to float output
2989         * device/include/float.h: add defines for assembly float library
2990         * device/lib/_fsget1arg.c: receive 1 float arg
2991         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2992         * device/lib/_fsnormalize.c: normalize a float
2993         * device/lib/_fsreturnval.c: return float, various helper routines
2994         * device/lib/_fsrshift.c: right shift a float's mantissa
2995         * device/lib/_fsswapargs.c: swap 2 floats
2996         * device/lib/Makefile.in: build these 6 new files for mcs51
2997         * device/lib/libfloat.lib: add these 6 files to the library
2998
2999 2004-12-26 Borut Razem <borut.razem AT siol.net>
3000
3001         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3002           built by gcc 3.4.2
3003
3004 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3005
3006         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3007           and fully reentrant and register bank neutral.
3008         * device/lib/printf_fast.c: added float (not enabled by default),
3009           added compact/slower integer (also not enabled by default),
3010           improved size/speed of fast integer code, other minor changes
3011         * device/include/stdio.h, device/lib/Makefile.in,
3012           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3013
3014 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3015
3016         * src/pic16/pcode.c: declaring variables other than at the start of a
3017           block is not supported in C by VC6.
3018
3019 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3020
3021         * applied a previous patch from Raphael Neider that wasn't included
3022         in the previous commits, which fixes infinite loops within jumptable
3023         improvements,
3024         * made some fixes that previous patches introduced
3025
3026 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3027
3028         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3029         that fixes an issue with AOP_PCODE asmop's offset,
3030         * (pic16_popCopyReg): update instance field too,
3031         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3032         function of pic port,
3033         * (genCmp, genAnd, genAssign),
3034         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3035
3036 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3037
3038         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3039         variables initial values to idata section,
3040         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3041         variables in some functions. This utilizes parmBytes field of iCode
3042         structure to hold the offset of the variable in stack. (might be
3043         able to use the stack field too?)
3044         * applied patch from Raphael Neider # ### , # ###
3045         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3046         variable initial values in idata section,
3047         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3048         for static variables with initial value
3049         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3050         applied fix in while loop from Raphael Neider.
3051
3052 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3053
3054         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3055         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3056         * src/ds390/ralloc.c (serialRegAssign): spill bits
3057         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3058         * support/Util/SDCCerr.c,
3059         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3060         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3061         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3062
3063 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3064
3065         * device/include/sdcc-lib.h: inserted LGPL, added includes
3066           asm/ds390/features.h and asm/mcs51/features.h
3067         * device/include/asm/default/features.h,
3068         * device/include/asm/gbz80/features.h,
3069         * device/include/asm/z80/features.h: added empty _AUTOMEM
3070           and _STATMEM
3071         * device/include/asm/ds390/features.h,
3072         * device/include/asm/mcs51/features.h: added files with defines for
3073           _AUTOMEM and _STATMEM indicating automatic and static storage class
3074         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3075         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3076         * src/SDCCicode.c (geniCodeCast),
3077         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3078         * src/SDCCloop.c (loopInduction): removed unused variable lr
3079         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3080           to convertToFcall to include char modulo (RFE 1065037), added check
3081           if left operand is unsigned and use abs of literal value
3082         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3083           as it doesn't work after conversion from peephole.def to peephole.rul
3084         * src/mcs51/gen.c (toBoolean): added check for size,
3085           (genModOneByte): optimized code for signed char modulo a literal
3086           power of 2 (thanks to Hubert Sack),
3087           (genRRC): removed unnecessary "clr c",
3088           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3089         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3090           jump optimization,
3091           swapped rules 256.c and 256.d,
3092           extended 256.d by using new multiple checks (thanks Erik),
3093           added rules 256.e and 256.f,
3094           updated rule 261.a and 261.b to new generated code
3095         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3096
3097 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3098
3099         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3100           induction related bugs, including first part of bug #1074377
3101
3102 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3103
3104         * applied patch from bug-report #1076292,
3105         * applied patches for genAnd and Goto-optimizations for Raphael
3106         Neider,
3107         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3108         dump a less iCode information,
3109         * src/pic16/device.h (pic16_options_t): added field debgen,
3110         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3111         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3112         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3113         puclic,
3114         * (various functions): added macros FENTRY and FENTRY2 to functions,
3115         to emit function prologue,
3116         * (various functions): fixed indentation,
3117         * (genNearPointerGet): fixed loading of FSR0,
3118         * (genPackBits): applied patch from Raphael Neider to fix updating
3119         of FSR0 and touching only the modified bits,
3120         * src/pic16/genarith.c (various functions): added macros FENTRY to
3121         emit function prologue in comments,
3122         * src/pic16/pcode.h: added functions debugf2, debugf3,
3123         * src/pic16/ralloc.c: partial fix for packForPush caused
3124         segmentation fault,
3125
3126 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3127
3128         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3129           <stsp AT users.sourceforge.net> with reversed byte order
3130         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3131
3132 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3133
3134         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3135           bug #1074377
3136         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3137         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3138
3139 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3140
3141         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3142
3143 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3144
3145         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3146           conditions,
3147           (setFromConditionArgs): friendly operand parser for peephole rules,
3148           (operandBaseName, operandsNotRelated): new peephole condition
3149           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3150           architecture specific register naming into account, handles n-way
3151           comparisons, and supports quoted literals
3152         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3153
3154 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3155
3156         * src/mcs51/peeph.def: fixed bug #1076940
3157
3158 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3159
3160         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3161
3162 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3163
3164         Adding support for replacing ljmps with sjmps in jumptables
3165         generated for switch statements. For now you need to set the
3166         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3167         Now 4 algorithms for mcs51 jumptable generation are used:
3168         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3169         addresses loaded pc-relative for up to 112 cases and stack-pushing
3170         target addresses loaded with offset from dptr for up to 256 cases.
3171
3172         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3173         * src/mcs51/main.c: adapted constants for switch table generation
3174         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3175
3176 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3177
3178         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3179         * support/regression/tests/bug1057979.c: added test for bug 1073386
3180
3181 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3182
3183         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3184         compilers
3185
3186 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3187
3188         * src/pic16/device.h,
3189         * src/pic16/genarith.c,
3190         * src/pic16/glue.c,
3191         * src/pic16/main.c,
3192         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3193
3194 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3195
3196         Large cummulative patch for pic16 port.
3197         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3198         to call when a stack overflow occurs,
3199         * (malloc.h): added CVS Id tag,
3200         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3201         variable,
3202         * added libc directory. The current version of LibC contains string
3203         functions, ctype functions and macros and some functions of the
3204         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3205         be extensively tested in the future. Standard disclaimer here.
3206         Library is not automatically build yet. But one can build it by
3207         invoking 'make' inside the libc directory.
3208         * added ADC library under libio. Preliminary version yet.
3209
3210         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3211         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3212         aopForRemat() now and not by pic16_aopOp(),
3213         * (pic16_popGetTempReg): removed warning messgae when allocating
3214         temporary registers, its a buggy feature and will be removed,
3215         * (pic16_popGet): set register instance field in AOP_CRY,
3216         * (pic16_outBitC): fixed for results in size greater than 1,
3217         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3218         * (pic16_storeForReturn): optimized return of 0,
3219         * (genCmp): experimental code for new genCmp which uses PIC18's
3220         special compare&skip instructions. Initial tests fail some times
3221         with variables grater than 1 byte in size, so new code is disabled,
3222         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3223         a single bit,
3224         * (genCast): began a fix to optimize the casting of a bit to another
3225         bit, now assigning a bitfield to another bitfield will fail, sorry,
3226         * src/pic16/main.c: disabled the use of lr-support feature,
3227         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3228         * added some function prototypes, added function _debugf prototype,
3229         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3230         bits with offset (case PO_GPR_BIT),
3231         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3232         command line,
3233         * (isBankInstruction): modified to return 0 for no banking instruction,
3234         and 1 for banking instruction,
3235         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3236         caused stop processing pCodes after a inline assembly block,
3237         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3238         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3239         registers when it shouldn't,
3240         * src/pic16/ralloc.c (allocReg): add preliminary support for
3241         supporting a limited set of temporary registers,
3242
3243 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3244
3245         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3246           genDataPointerSet): ensure assignments always copy in MSB to LSB
3247           order,
3248           (loadRegFromAop): recognize CLRH optimization,
3249           (genFunction): optimize RECEIVE iCodes in reentrant functions
3250
3251 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3252
3253         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3254           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3255           selected.
3256         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3257         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3258           contiguous with data
3259
3260 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3261
3262         * device/lib/_gptrget.c (_gptrget),
3263         * device/lib/_gptrgetc.c (_gptrgetc),
3264         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3265           instead of sjmp to ret
3266         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3267           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3268
3269 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3270
3271         * .version: bumped version to 2.4.7
3272         * device/lib/_gptrget.c (_gptrget): is now _naked
3273         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3274         * device/lib/_gptrput.c (_gptrput): is now _naked
3275         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3276           (createFunction): fixed xstack
3277         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3278         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3279           or bit either,
3280           (geniCodeCritical): store original interrupt state in an iTemp bit
3281           var unless stack-auto
3282         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3283         * src/SDCCmain.c (setIncludePath): added include/target to search path
3284         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3285         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3286           prototype,
3287           (processFuncArgs): put bit vars in bit area
3288         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3289           unsaveRBank): fixed xstack,
3290           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3291           (genFunction, genEndFunction): fixed xstack,
3292           (genAssign): optimization don't walk backwards through mem
3293         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3294         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3295         * support/regression/Makefile: also make library (for stack-auto) when
3296           making "all" and added "test-mcs51-xstack-auto"
3297         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3298         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3299         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3300         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3301         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3302           make-library by MAKE_LIBRARY
3303         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3304           regression tests for xstack
3305         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3306         * support/regression/tests/critical.c: test for critical on mcs51
3307
3308 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3309
3310         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3311           built version of sdcc instead of installed version
3312
3313 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3314
3315         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3316         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3317           vprintf.c now
3318         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3319         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3320           WARNING: remove device/lib/build/z80/printf.o by hand when
3321           updating from previous build!
3322         * device/lib/z80/printf.c: updated comment
3323         * support/regression/tests/bug1057979.c: test all ports now
3324         * support/regression/tests/bug1065458.c: file added
3325
3326 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3327
3328         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3329           *_start and *_end symbols for static functions
3330
3331 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3332
3333         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3334           and search crt0.o in all library paths,
3335           (setIncludePath): proper handling of --nostdinc,
3336           (setLibPath): proper handling of --nostdlib
3337         * support/regression/Makefile,
3338         * support/regression/ports/ds390/spec.mk,
3339         * support/regression/ports/gbz80/spec.mk,
3340         * support/regression/ports/hc08/spec.mk,
3341         * support/regression/ports/mcs51/spec.mk,
3342         * support/regression/ports/mcs51-large/spec.mk,
3343         * support/regression/ports/mcs51-stack-auto/spec.mk,
3344         * support/regression/ports/z80/spec.mk: use include and lib files from
3345           built version of sdcc instead of installed version
3346         * doc/sdccman.lyx: fixed typo in --nostdinc
3347
3348 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3349
3350         * src/pic/pcode.c,
3351         * src/pic/device.c,
3352         * src/pic/ralloc.c,
3353         * src/pic/gen.c : added support to generate code for struct bit fields.
3354
3355 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3356
3357         * as/xa51/xa_version.h,
3358         * device/include/errno.h,
3359         * device/include/regc515c.h,
3360         * device/lib/_itoa.c,
3361         * device/lib/_ltoa.c,
3362         * device/lib/ser_ir_cts_rts.c,
3363         * sim/ucsim/xa.src/glob.cc,
3364         * sim/ucsim/xa.src/inst_gen.cc,
3365         * sim/ucsim/xa.src/xa_bit.cc,
3366         * sim/ucsim/xa.src/xa_sfr.cc,
3367         * sim/ucsim/z80.src/inst_dd.cc,
3368         * sim/ucsim/z80.src/inst_fdcb.cc,
3369         * support/scripts/keil2sdcc.pl,
3370         * src/pic16/pic16.dsp,
3371         * src/pic16/pic16a.dsp: corrected cvs line endings
3372         * device/lib/printf_large.c: fixed bug 1057979
3373         * src/pic16/gen.c: fixed non-C standard code
3374         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3375         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3376         * support/regression/ports/mcs51/support.c: reload T1 asap
3377         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3378           pdata use and clear idata startup behaviour
3379         * support/regression/tests/bug1057979.c: added
3380
3381 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3382
3383         * device/examples/ds390/ow390/ad26.h,
3384         * device/examples/ds390/ow390/cnt1d.h,
3385         * device/examples/ds390/ow390/crcutil.c,
3386         * device/examples/ds390/ow390/ownet.h,
3387         * device/examples/ds390/ow390/owsesu.c,
3388         * device/examples/ds390/ow390/swt12.h,
3389         * device/examples/ds390/ow390/swtoper.c,
3390         * device/examples/ds390/ow390/temp10.h,
3391         * device/examples/ds390/ow390/thermodl.c,
3392         * device/examples/ds390/tinitalk/tinitalk.dsp,
3393         * device/examples/ds390/tinitalk/tinitalk.dsw,
3394         * device/examples/mcs51/clock/hw.h,
3395         * device/examples/mcs51/simple2/go.bat,
3396         * device/examples/serialcomm/windows/serial.h,
3397         * device/examples/xa51/dummy.c,
3398         * device/examples/xa51/hello.c,
3399         * device/include/80c51xa.h,
3400         * device/include/at89x051.h: corrected cvs line endings
3401
3402 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3403
3404         * src/pic16/main.c (options): added command line --gstack, to trace
3405         stack over/under flows,
3406         * added pragma 'wparam' to allow passing first byte of function
3407         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3408         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3409         call to __gstack_test function and sets up the symbol as extern,
3410         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3411         * popaop): added call to pic16_testStackOverflow,
3412         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3413         wparamList list,
3414         * (genCall, genPcall): now all parameters are passed via stack
3415         except in functions that are pass to wparam pragma in which WREG is
3416         used too,
3417         * (genPcall): REENTRANT flag is checked to see if variable prototype
3418         contains reentrant keyword, don't call a non-reentrant function, via
3419         a reentrant function pointer or vice versa, functions are never
3420         passed via WREG,
3421         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3422         D.Winkler,
3423         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3424         SIGSEGV when accessing a NULL register stucture,
3425         * (pic16_printGPointerType): modified to handle UPPER modifier for
3426         function initializers, changed prototype of function to simpler one,
3427         * (pic16_printIvalFuncPtr): check to see if function is already
3428         added in externs list,
3429         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3430         optimized a move from W to SFR with a move to the same register
3431         later after a CALL,
3432         * device/lib/pic16/debug: NEW directory, contains debug features
3433         which are enabled when linking with libdebug.lib, currently command
3434         line option --gstack enables stack pointer tracing for over/under
3435         flow, corresponding sources are in debug/gstack
3436
3437 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3438
3439         * doc/sdccman.lyx: updated SDCC version,
3440         * (PIC16 port): update list of command line options,
3441         * src/pic16/device.h (structure pic16_options_t): added field gstack
3442         to enable stack overflow tracing on push/pops,
3443         * src/pic16/device.c (statistics structure): added statistics
3444         structure,
3445         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3446         pic16_dump_int_registers): increase statistics counters for each
3447         * variable which is encountered
3448         * (pic16_dump_usection): emit each .udata variable to its own udata
3449         section,
3450         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3451         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3452         parameters via stack, otherwise use old scheme,
3453         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3454         assembler output file,
3455         * src/pic16/main.c: added command line options --gstack to enable
3456         push/pop tracing for stack overflow,
3457         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3458         instructions): added size of each instruction,
3459         * (pic16_countInstruction): estimate size of instructions in
3460         the_pFile list, inline assembly blocks are not counted,
3461         * (pic16_FixRegisterBanking): trace previous register usage, when
3462         banksel optimizations is greater than 0, don't emit a redudant
3463         banksel directive,
3464
3465 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3466
3467         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3468         * src/pic16/ralloc.c : applied same fix for pic16.
3469         * src/pic/gen.c : tidied it up a little.
3470
3471 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3472
3473         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3474         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3475
3476 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3477
3478         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3479
3480 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3481
3482         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3483         non-reentrant function __modsint in the interrupt function (thus
3484         corrupting math operations during serial I/O)
3485         * device/lib/ser_ir.c: as above, changed buffersize
3486         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3487         256.c,d for zeroing
3488         * doc/Makefile: added option -t for rsync
3489
3490 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3491
3492         * src/SDCCast.h (struct ast),
3493         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3494
3495 2004-10-20 Borut Razem <borut.razem AT siol.net>
3496
3497         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3498         package
3499
3500 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3501
3502         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3503         makefile targets,
3504         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3505         support functions to replace long sequences of MOVFF's from access
3506         bank registers to stack and vice versa,
3507         * src/pic16/device.h: added new field opt_flags, where optimization
3508         flags can be set to enable certain features,
3509         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3510         * pBlock, (genFunction, genEndFunction): surroung loop for
3511         saving/loading used registers in stack with PC_INFO pCodes,
3512         INF_LREGS. Code in between can then be optimized by pCode optimizer
3513         to support function calls,
3514         * (genDataPointerSet): fixed bug which loaded float fields in
3515         structures with corrupt data,
3516         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3517         in a standard way debug info on stderr. Feature used for developing
3518         and debugging only,
3519         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3520         obsolete chunks of code,
3521         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3522         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3523         * pic16/src/pcode.c (pic16_newpCodeInfo,
3524         * (pic16_newpCodeOpLocalRegs),
3525         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3526         feature,
3527         * (pic16_pCodeConstString): printing of the initial value of a
3528         symbol as a comment is inhibited since parsing was already done by
3529         copyStr and output is corrupt,
3530         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3531
3532 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3533
3534         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3535
3536 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3537
3538         * as/mcs51/lkarea.c: removed old K&R style,
3539           (lnksect): changed check on boundary error,
3540           (lnksect2): changed check on boundary error,
3541           (lnksect2): extend XSTK to end of page if size = 1
3542         * as/mcs51/lkmain.c: removed old K&R style,
3543           (Areas51): create l_IRAM symbol
3544         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3545         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3546           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3547         * device/lib/_mullong.c: added version to be compiled with xstack
3548         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3549         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3550         * device/lib/mcs51/crtxstack.asm: fixed comment
3551         * src/SDCCglue.c: maxInterrupts defaults to 0,
3552           (emitMaps): added pdata,
3553           (createInterruptVect): (re)moved default,
3554           (glue): added pdata,
3555           (glue): moved __start__xstack to XSTK with default size 1
3556         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3557           and options.float_rent when options.stackAuto is set,
3558           (linkEdit): only write XDATA_NAME if provided on command line
3559         * src/SDCCmem.h,
3560         * src/SDCCmem.c: added pdata
3561         * src/port.h: added pdata_name to PORT
3562         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3563           (saveRegisters, unsaveRegisters): removed usage of B,
3564           (genMinus): fixed accumulator clash,
3565           (genJumpTab): added comment, this needs another look
3566         * src/mcs51/gen.c: added check for "B in use" paranoia,
3567           added pushB() and popB()
3568         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3569           chance
3570         * src/avr/main.c,
3571         * src/ds390/main.c,
3572         * src/hc08/main.c,
3573         * src/mcs51/main.c,
3574         * src/pic/main.c,
3575         * src/pic16/main.c,
3576         * src/xa51/main.c,
3577         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3578           added PSEG (PAG,XDATA) or NULL to port specifier
3579         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3580         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3581           (_mcs51_genInitStartup): removed __start__xstack equ,
3582           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3583         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3584         * src/z80/gen.c (_rleAppend): fixed warnings
3585         * support/regression/tests/zeropad.c: added pdata test
3586         * .version: bumped to 2.4.6
3587
3588 2004-10-17 Borut Razem <borut.razem AT siol.net>
3589
3590         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3591         as a part of nightly build
3592
3593 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3594
3595         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3596         WREG holds the first byte function parameters,
3597         * (aopForSym): take special case for symbols which are in FARSPACE
3598         but in CODESPACE too,
3599         * (assignResultValue): modified to take into account _G.useWreg,
3600         * (genCall): don't use wreg for parameter passing when function is
3601         declared as reentrant, too, added optimization INCF to stack
3602         pointer when stack parameter count is 1,
3603         * (genFunction, genEndFunction): refurnished and fixed to not using
3604         wreg for passing parameters when function has varargs or is
3605         reentrant, fixed bug with symbol name compare for generating
3606         functions in absolute address,
3607         * (pic16_storeForReturn): refurnished,
3608         * (genCmp): began writing a new version of the function, not ready
3609         yet, therefore it is disabled,
3610         * (genAssign): do not read code memory when assigning a function to
3611         a pointer function,
3612         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3613         array of characters, not pointer,
3614         * (pic16initialComments): in debug mode emit an .ident directive for
3615         the assembler,
3616         * (_process_pragma): emit a new warning type (internal to pic16)
3617         when setting stack to default length, emit a similar warning when
3618         placing a function at absolute address and address is not word aligned
3619         * (_pic16_parseOptions): added 'return TRUE' statement,
3620         * (_pic16_linkEdit): if compiling a source, then add the source's
3621         file object, first in the list of objects to link,
3622
3623 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3624
3625         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3626         * src/pic/main.c : removed VC warning.
3627         * src/pic/gen.c : changed comment.
3628
3629 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3630
3631         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3632         reference to a deprecated symbol _GPTRREG was causing failure to
3633         link. Thanks G. M. Gallant for the info.
3634
3635 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3636
3637         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3638         comments for Bugs item #954788.
3639
3640 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3641
3642         * src/pic16/device.c (pic16_dump_gsection,
3643         * pic16_groupRegistersInSection): handle symbols declared to be in
3644         access bank differently,
3645         * src/pic16/gen.c (struct _G): added field resDirect,
3646         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3647         send values read from stack directly to result and don't allocate
3648         temporary values,
3649         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3650         same registers,
3651         * (pic16_sameRegsOfs): NEW,
3652         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3653         free because they were not allocated from temporary pool,
3654         * pic16_popRegFromString): workaround to fix a problem with
3655         allocating variables twice or never,
3656         * (genGenPointerGet): using PRODL instead of FSR0H,
3657         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3658         instead of FSR0H,
3659         * (genAssign): take advantage of the _G.resDirect flag,
3660         * (genCast): around line 11844, use mov2f instead of directly
3661         MOVFF'ing between operands to account for literal values,
3662         * src/pic16/genutils.c: some new debug functions for gpsim have been
3663         added,
3664         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3665         float with integer part only,
3666         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3667         place variables in access bank
3668         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3669         updated sources to reflect recent changes in gen.c
3670
3671 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3672
3673         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3674         sources that searched for headers in installation path, now the
3675         device/include/pic16 is used,
3676         * src/pic16/glue.c (pic16glue),
3677         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3678         .line directives if not in debug mode, this suppresses assembler's
3679         warnings for ignored directives
3680
3681 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3682
3683         * src/port.h: made reset_regparms prototype void parameter explicit.
3684         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3685         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3686         * doc/sdccman.lyx: documented warning disabling and how to use
3687           printf_large to make it print floats.
3688         * device/include/stdbool.h: NEW
3689         * device/lib/_atof.c,
3690         * device/lib/_divuint.c,
3691         * device/lib/_divulong.c,
3692         * device/lib/expf.c,
3693         * device/lib/printf_large.c,
3694         * device/lib/sincosf.c,
3695         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3696         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3697           a completely reentrant lib.
3698
3699 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3700
3701         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3702         * device/include/pic16/stdio.h: fixed bug with colon
3703
3704 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3705
3706         * device/include/pic16/stdio.h,
3707         * device/include/pic16/stdlib.h,
3708         * device/include/pic16/math.h: NEW
3709         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3710         declared as _naked to reduce overhead
3711         * device/lib/Makefile.in (target port-specific-objects-pic16):
3712         changed * to *.* so to ignore the CVS directory,
3713         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3714         stacked variables back in stack,
3715         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3716         corruption
3717
3718 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3719
3720         * .version: bumped version number to 2.4.5
3721         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3722         * support/Util/SDCCerr.c (messages structure): added entry for
3723         W_POSSBUG2
3724
3725         Large cumulative patch for pic16 port and libraries.
3726         * device/include/pic16/sdcc-lib.h,
3727         * device/include/pic16/stdarg.h,
3728         * device/include/asm/pic16/features.h,
3729         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3730         * device/include/pic16/float.h: changes reentrant keyword with
3731         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3732         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3733         updated target build-libraries to include objects from gptr,
3734         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3735         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3736         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3737         all function headings,
3738         * src/SDCCmain.c: added global parameter userIncDirsSet,
3739         * (parseCmdLine): when option -I is encountered add directory to
3740         userIncDirsSet too,
3741         * src/version.awk: added space between control and long,
3742         * src/pic16/NOTES: added some notes for the port,
3743         * src/pic16/gen.c: added prototype for mov2fp function,
3744         * (fReturnpic16[]): properly named return value registers,
3745         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3746         * (aopForSym): added code to handle symbols with onStack flag set,
3747         symbols onStack are allocated PTRSIZE bytes,
3748         * (aopFreeAsmop): handles special case where asmops are stack objects,
3749         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3750         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3751         added argument lock to trace flaws in allocating temporary registers
3752         when developing port,
3753         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3754         * (pic16_popRegFromString): reenabled allocating a direct register
3755         from string,
3756         * (assignResultValue): various beautifications,
3757         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3758         referenced function argument,
3759         * (genIpush): reenabled to allow stacked arguments, handles only
3760         ic->parmPush iCodes,
3761         * (genCall, genPcall): major changes to allow for variable argument
3762         functions, fixed a bug with falsely restoring stack pointer after
3763         returning from call,
3764         * (genFunction): pending code for critical function,
3765         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3766         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3767         * (genNearPointerGet): fixed bug with indirect reading, was always
3768         reading from INDF0
3769         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3770         pointers,
3771         * (genAddrOf): rewrote code to take address of a stacked function parameter
3772         * (genCast): fixed casting to generic pointer type,
3773         * src/pic16/gen.h: added AOP_STA,
3774         * (struct asmop): added field stk,
3775         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3776         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3777         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3778         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3779         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3780         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3781         generic pointers,
3782         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3783         and library paths,
3784         * (pic16_port structure): generic pointer size is set to 3,
3785         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3786         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3787         compiler warning,
3788         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3789         operand is an iTemp,
3790
3791 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3792
3793         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3794         * debugger/mcs51/simi.c: addapt new syntax of s51
3795
3796 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3797
3798         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3799         * src/pic16/pcode.c: commented out some calls to free() in order to
3800         fix bug #989576,
3801
3802 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3803
3804         * src/SDCCicode.h,
3805         * src/SDCCicode.c (isiCodeInFunctionCall),
3806         * src/avr/ralloc.c (selectSpil),
3807         * src/pic/ralloc.c (selectSpil),
3808         * src/pic16/ralloc.c (selectSpil),
3809         * src/ds390/ralloc.c (selectSpil),
3810         * src/hc08/ralloc.c (selectSpil),
3811         * src/xa51/ralloc.c (selectSpil),
3812         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3813         stack in the middle of a function call sequence (fixes bug #1020268)
3814         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3815         costs associated with the minimum switch case.
3816
3817 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3818
3819         * src/SDCC.lex: fixed bug #1030549
3820
3821 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3822
3823         * src/SDCCcse.h (struct cseDef),
3824         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3825         over a function call if the CSE is derived from a symbol whose
3826         address has been taken (fixes bug #1029883)
3827         * support/regression/tests/bug-1029883: a new regression test for
3828         this bug
3829
3830 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3831
3832         * src/hc08/gen.c (emitinline): fixed bug #1029778
3833         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3834         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3835         and starts toward RFE #905167)
3836
3837 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3838
3839         * src/pic16/gen.c (mov2f): New function to move an operand to
3840         another without considering if it is a literal or a register,
3841         * (pic16_sameRegs): don't check if they are both AOP_REG,
3842         * (AccRsh): removed andmask=0 lines,
3843         * (genLeftShift): duplicated to be improved in future versions,
3844         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3845         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3846         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3847         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3848         * (insertBankSwitch): fixed inserting banksel directives algorithm
3849         for instructions that follow a skip instruction, this fixes a report
3850         for broken subtraction code generation,
3851         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3852         iCode is a left op, just in case result and right share the same
3853         registers
3854
3855 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3856
3857         * src/hc08/main.c,
3858         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3859         preservation of HX
3860         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3861         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3862         on 2004-09-12; it was buggy
3863
3864 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3865
3866         * src/SDCCsymt.h: removed RESULT_CHECK
3867         * src/SDCCast.c,
3868         * src/SDCCglue.c,
3869         * src/SDCCval.c,
3870         * src/pic/glue.c,
3871         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3872
3873 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3874
3875         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3876         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3877         configuration values no more rejected by compiler, they are assigned
3878         to configuration registers with a warning message instead,
3879         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3880         the for-loop so last conf register is emitted too,
3881         * (_pic16_initPaths): link library libsdcc.lib by default,
3882         * (_hasNativeMulFor): modified test for multiplication according to
3883         Raphael Neider's remarks. Integer multiplication is also done with
3884         support functions,
3885         * device/include/pic16/pic18fregs.h: corrected type error in while
3886         testing and including 18f6720 header file
3887
3888 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3889
3890         * src/pic16/device.h (pic16_options): removed field use_crt,
3891         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3892         until an optimization to handle single bits is added,
3893         * (pic16_loadFSR0): moved before genUnpackBits,
3894         * (genAnd): some white lines removed,
3895         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3896         leave_reset flags in pic16_options when using crt modules,
3897
3898 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3899
3900         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3901           for bugs 898889 & 979599. Also used some safer print instructions.
3902
3903 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3904
3905         * src/pic16/device.h (pic16_options_t): added field use_crt,
3906         crt_name, no_crt,
3907         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3908         catch a probable future bug,
3909         * src/pic16/gen.c: aopIdx function commented out,
3910         * (genAssign): commented out old code which used aopIdx,
3911         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3912         code, added if conditionals to take into account the --use-crt
3913         command line options,
3914         * src/pic16/main.c (pic16_optionsTable): added new command line
3915         options, --use-crt= and --no-crt,
3916         * (_pic16_linkEdit): now the proper crt object is added in the
3917         linker command line except than when --no-crt is specified,
3918         * src/pic16/pcode.c,
3919         * src/pic16/pcode.h: added some structures and functions for a new
3920         optimization scheme to compansate for instruction overhead between
3921         same iCodes, this scheme is currently under development and is not
3922         working in any way,
3923         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3924         to && operator,
3925         * device/lib/pic16/startup/crt0i.c,
3926         * device/lib/pic16/startup/crt0iz.c: added global char variable
3927         __uflags to force the generation of an idata section
3928
3929 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3930
3931         * doc/Makefile,
3932         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3933         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3934
3935 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3936
3937         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3938         Frieder) and clarified the default code optimization mode
3939
3940 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3941
3942         * src/SDCC.lex (doPragma, process_pragma),
3943         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3944         "opt_code_size", and "opt_code_balanced"
3945         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3946         regrouped options by category, added support for category headers
3947         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3948         and "--opt-code-size"
3949         * doc/sdccman.lyx: documented these new options and pragmas
3950         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3951         preference into account
3952
3953 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3954
3955         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3956           geniCodePreDec): Fixed bug 904237 by generating a warning
3957         * src/SDCCerr.h,
3958         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3959
3960 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3961
3962         * src/pic/device.c : When no max ram set validate full memory range.
3963         * src/pic/pcode.c,
3964         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3965
3966 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3967
3968         * device/lib/_gptrget.c,
3969         * device/lib/_gptrput.c: updated comment
3970         * device/lib/calloc.c,
3971         * device/lib/free.c,
3972         * device/lib/malloc.c,
3973         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3974         * src/SDCCcse.c (cseBBlock),
3975         * src/SDCCicode.c (printOperand, geniCodeArray),
3976         * src/SDCCicode.h (struct operand): fixed bug 868103
3977         * support/regression/tests/bug-868103.c: added
3978         * src/SDCCast.c (searchLitOp),
3979         * src/SDCCcse.h (struct cseDef),
3980         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3981         * src/SDCCicode.h (struct operand),
3982         * src/SDCCsymt.h (struct sym_link),
3983         * src/avr/gen.c (hasInc),
3984         * src/ds390/gen.c (hasInc),
3985         * src/hc08/gen.c (genPlusIncr, hasInc),
3986         * src/mcs51/gen.c (hasInc),
3987         * src/pic16/glue.c (pic16_printIvalChar),
3988         * src/pic16/ralloc.c (regWithIdx),
3989         * src/xa51/gen.c (hasInc) : removed warnings
3990         * src/SDCCast.c (createBlock): added comment ???
3991         * src/hc08/ralloc.c: updated comments
3992
3993 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3994
3995         * doc/sdccman.lyx: updated section on switch statements, added
3996         section about semaphore locking
3997         * doc/Makefile: added option -info for latex2html
3998         * device/lib/_gptrget.c,
3999         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4000
4001 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4002
4003         * src/pic/device.h,
4004         * src/pic/device.c,
4005         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4006          maxram is less than 0x100.
4007
4008 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4009
4010         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4011
4012 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4013
4014         * src/port.h,
4015         * src/mcs51/main.c,
4016         * src/ds390/main.c,
4017         * src/z80/main.c,
4018         * src/hc08/main.c,
4019         * src/pic/main.c,
4020         * src/pic16/main.c,
4021         * src/avr/main.c,
4022         * src/xa51/main.c
4023         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4024         a jump table is the best form for a switch statement, including
4025         automatic insertion of missing cases to make the case range
4026         continuous. Developed in collaboration with Frieder Ferlemann.
4027
4028 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4029
4030         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4031         accumulator result if it needs sign extension
4032
4033 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4034
4035         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4036
4037 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4038
4039         * device/lib/gbz80/printf.c,
4040         * device/lib/z80/printf.c: removed define for NULL
4041
4042 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4043
4044         * as/xa51/xa_link.c,
4045         * device/examples/ds390/ow390/ad26.c,
4046         * device/examples/ds390/ow390/cnt1d.c,
4047         * device/examples/ds390/ow390/counter.c,
4048         * device/examples/ds390/ow390/ds2480.h,
4049         * device/examples/ds390/ow390/ds2480ut.c,
4050         * device/examples/ds390/ow390/findtype.c,
4051         * device/examples/ds390/ow390/gethumd.c,
4052         * device/examples/ds390/ow390/owllu.c,
4053         * device/examples/ds390/ow390/ownetu.c,
4054         * device/examples/ds390/ow390/swt12.c,
4055         * device/examples/ds390/ow390/swtloop.c,
4056         * device/examples/ds390/ow390/temp.c,
4057         * device/examples/ds390/ow390/temp10.c,
4058         * device/examples/ds390/ow390/thermo21.c,
4059         * device/examples/ds390/ow390/tinilnk.c,
4060         * device/examples/ds390/ow390/tstfind.c,
4061         * device/examples/serialcomm/windows/serial.cpp,
4062         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4063         * device/include/reg51.h: fixed line endings for cvs
4064
4065 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4066
4067         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4068         packRegsForAccUse, packRegisters): new accumulator register
4069         packing algorithm
4070         * support/regression/ports/hc08/support.c (_putchar): suppress
4071         warning of unused variable
4072         * src/SDCCicode.c: added SWAP entry to codeTable
4073
4074 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4075
4076         * device/lib/sprintf.c: forgot to add this file before previous commit
4077
4078 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4079
4080         * src/pic16/gen.c (genPackBits): added operand right in function
4081         parameters, load result directly if p_type is POINTER (that is
4082         called by genNearPointerSet)
4083         * (genUnPackBits): added operand left in function parameters,
4084         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4085         FSR0 if accessing bitfields,
4086
4087 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4088
4089         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4090           _print_format; updated printf, sprintf, vsprintf
4091         * device/include/asm/default/features.h: corrected comment/define
4092         * device/lib/Makefile.in: added sprintf.c
4093         * device/lib/libsdcc.lib: added sprintf module
4094         * device/lib/printf_large.c,
4095         * device/lib/vprintf.c,
4096         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4097           into these 3 files
4098         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4099         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4100         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4101           hc08 test
4102         * support/regression/tests/zeropad.c: define idata as data for hc08
4103
4104 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4105
4106         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4107         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4108         labels are referenced at least once (even if a reference is not found)
4109         * src/hc08/gen.c (emitcode): set isComment flag for comments
4110         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4111         loads), rules 6a..6b (optimize jumps to return)
4112
4113 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4114
4115         * device/lib/acosf.c (acosf),
4116         * device/lib/asinf.c (asinf),
4117         * device/lib/atanf.c (atanf),
4118         * device/lib/ceilf.c (ceilf),
4119         * device/lib/cosf.c (cosf),
4120         * device/lib/coshf.c (coshf),
4121         * device/lib/cotf.c (cotf),
4122         * device/lib/fabsf.c (fabsf),
4123         * device/lib/floorf.c (floorf),
4124         * device/lib/log10f.c (log10f),
4125         * device/lib/logf.c (logf),
4126         * device/lib/sinf.c (sinf),
4127         * device/lib/sinhf.c (sinhf),
4128         * device/lib/sqrtf.c (sqrtf),
4129         * device/lib/tanf.c (tanf),
4130         * device/lib/tanhf.c (tanhf),
4131         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4132         replaced all instances of "reentrant" in the library functions
4133         defined in math.h with this macro.
4134         * support/regression/tests/float_trans.c: reenabled test for hc08
4135
4136 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4137
4138         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4139         erroneously deleted
4140
4141 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4142
4143         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4144         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4145         multi-byte volatile operands are used
4146         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4147         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4148         initialization to area GSINIT0 so that it would always precede
4149         any static initializers in GSINIT
4150         * support/regression/tests/zeropad.c: fixed idata define for hc08
4151         * support/regression/tests/bug-927659.c,
4152         * support/regression/tests/float_trans.c: disabled tests for hc08
4153         pending missing library routines
4154         * .version: increased version number to 2.4.4 - hc08 port now passes
4155         regression tests
4156
4157
4158 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4159
4160         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4161         * Makefile.common.in,
4162         * as/Makefile,
4163         * as/hc08/Makefile.in,
4164         * as/mcs51/Makefile.in,
4165         * as/z80/Makefile.in,
4166         * debugger/mcs51/Makefile.in,
4167         * device/include/Makefile.in,
4168         * device/lib/Makefile.in,
4169         * doc/Makefile,
4170         * link/Makefile,
4171         * link/z80/Makefile.in,
4172         * packihx/Makefile.in,
4173         * sim/ucsim/main_in.mk,
4174         * sim/ucsim/avr.src/Makefile.in,
4175         * sim/ucsim/doc/Makefile.in,
4176         * sim/ucsim/gui.src/serio.src/Makefile.in,
4177         * sim/ucsim/hc08.src/Makefile.in,
4178         * sim/ucsim/s51.src/Makefile.in,
4179         * sim/ucsim/xa.src/Makefile.in,
4180         * sim/ucsim/z80.src/Makefile.in,
4181         * src/Makefile.in,
4182         * support/cpp2/Makefile.in,
4183         * support/librarian/Makefile,
4184         * support/makebin/Makefile: added DESTDIR to the install path proposed
4185         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4186         * doc/sdccman.lyx: added DESTDIR documentation
4187
4188 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4189
4190         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4191         instruction for interrupt handlers, use fast returns when returning
4192         from high priority interrupts
4193
4194 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4195
4196         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4197         code generation
4198         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4199         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4200         bugs, ported much of Bernhard's code from mcs51
4201         * src/mcs51/gen.c (genSend),
4202         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4203         than one when calling a reentrant function
4204         * device/lib/_mullong.c: defined an alternate struct layout for big
4205         endian ports (hc08)
4206
4207 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4208
4209         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4210         test
4211
4212 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4213
4214         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4215         are sane and complete before asking the port its prefered parameter
4216         passing method (fixes bug #1017633)
4217         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4218         and _ret3
4219
4220 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4221
4222         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4223         problem in bitfields >= 8 bits.
4224
4225 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4226
4227         * src/SDCCsymt.c: undid changes that were not meant to be committed
4228
4229 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4230
4231         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4232
4233 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4234
4235         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4236           copied and wrong bit got inverted
4237
4238 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4239
4240         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4241         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4242         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4243         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4244         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4245         assignments to bitfields at known addresses
4246         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4247         reads from bitfields at known addresses
4248         * src/hc08/ralloc.c (packRegisters),
4249         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4250         genhc08Code): optimize pointer get values used as conditionals
4251         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4252         and branch
4253
4254 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4255
4256         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4257         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4258         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4259         as conditionals
4260
4261 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4262
4263         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4264
4265 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4266
4267         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4268         related problems
4269
4270 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4271
4272         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4273
4274 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4275
4276         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4277         mcs51 port
4278
4279 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4280
4281         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4282
4283 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4284
4285         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4286         cases use more compact code.
4287
4288 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4289
4290         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4291
4292 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4293
4294         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4295
4296 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4297
4298         * src/SDCCsymt.h,
4299         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4300         parameter of changePointer() from symbol* to sym_link*
4301         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4302         * src/SDCCsymt.c (compareType): void* type is castable to other
4303         pointers, but not necesarily an exact match.
4304         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4305         is no longer blindly treated as an exact match.
4306         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4307
4308 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4309
4310         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4311
4312 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4313
4314         * src/pic/gen.c,
4315         * src/pic/pcode.c,
4316         * src/pic/ralloc.h,
4317         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4318
4319 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4320
4321         * src/pic/device.c,
4322         * src/pic/device.h,
4323         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4324
4325 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4326
4327         * src/mcs51/gen.c (emitcode): fixed bug #992819
4328
4329 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4330
4331         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4332           there's no need to make it worse
4333
4334 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4335
4336         * src/mcs51/ralloc.c (deassignLR),
4337         * src/ds390/ralloc.c (deassignLR),
4338         * src/hc08/ralloc.c (deassignLR),
4339         * src/z80/ralloc.c (deassignLR),
4340         * src/pic/ralloc.c (deassignLR),
4341         * src/pic16/ralloc.c (deassignLR),
4342         * src/avr/ralloc.c (deassignLR),
4343         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4344         rlivePoint): fixed another part of bug #971834
4345
4346 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4347
4348         * src/z80/main.c: enabled "critical" keyword
4349         * src/z80/mappings.i,
4350         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4351         functions (fixes bug #979646)
4352         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4353
4354 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4355
4356         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4357           such as c:\mydir.
4358
4359 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4360
4361         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4362           doesn't disable too much optimizations
4363
4364 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4365
4366         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4367
4368 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4369
4370         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4371
4372 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4373
4374         * src/pic/gen.c tidied up tabs
4375         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4376         * src/pic/main.c tidied up tabs
4377         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4378         * src/pic/pcoderegs.c tidied up tabs
4379         * src/pic/ralloc.c tidied up tabs
4380
4381 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4382
4383         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4384         to S_FIXED for pic16 port and when symbol is not in level 0,
4385         allocate for S_REGISTER storage class and pic16 port, too,
4386         * src/pic16/device.h: prototype for checkSym,
4387         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4388         * (pic16_assignConfigWordValue): test the value and the mask to
4389         validate that the value is suitable for the configuration word,
4390         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4391         collect extern declared symbols, don't emit symbol twice, check
4392         first if symbol is in publics set first,
4393         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4394         * added command line '--fstack' which enables an experimental
4395         feature for stack access, too buggy to be used yet...
4396         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4397         * (pic16_allocDirReg): when register has storage class S_REGISTER
4398         allocate in pic16_dynAccessRegs,
4399         * device/include/pic16/pic18f????.h: modified configuration word
4400         naming convention, words started as CONFIG0H but should be CONFIG1H
4401
4402 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4403
4404         * device/include/mcs51reg.h: fixed bug 970993
4405
4406 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4407
4408         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4409         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4410         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4411         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4412         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4413         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4414           error/warning numbers,
4415           added function setWarningDisabled()
4416         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4417         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4418           _memcmp.c _memmove.c calloc.c realloc.c free.c
4419         * support/regression/tests/malloc.c: added tests for new functionality
4420         * support/regression/tests/zeropad.c: added tests for truncated initializers
4421           and initialized char arrays starting with '\x0'
4422         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4423
4424 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4425
4426         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4427
4428 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4429
4430         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4431         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4432         peephole 177.e. Thanks to anonymous
4433
4434 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4435
4436         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4437         function isn't used in the source but referenced as a
4438         variable initializer then declare it as extern in .asm file
4439
4440 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4441
4442         * .version: increased version number to 2.4.3
4443
4444         Adding version extension according to ChangeLog CVS revision
4445         * src/Makefile.in (target all): added dependency 'version.h'
4446         * (rule version.h): added rule to create version.h from ChangeLog,
4447         * (rule dep): added dependency version.h,
4448         * src/version.awk: AWK script to create version.h
4449         * src/SDCCdwarf2.c (dwWriteModule),
4450         * src/SDCCglue.c (initialComments),
4451         * src/SDCCmain.c (printVersionInfo): modified to write after
4452         version string the version extension number,
4453         * src/SDCCutil.c: included "version.h"
4454         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4455         number,
4456         * src/SDCCutil.h: added prototype for getBuildNumber
4457
4458         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4459         includeDirsSet, too,
4460         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4461         const char [] is found in function prototype...
4462
4463         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4464         moving to WREG with source is already in WREG,
4465         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4466         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4467         * (aopForSym): stack'ed symbols are partially supported, added
4468         if-clause to support symbols in FARSPACE,
4469         * (sameRegs): added test for AOP_ACC to see if registers are same,
4470         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4471         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4472         * (pic16_popRegFromString): will not allocate a new register if it
4473         doesn't find one by name, bug may have introduced...
4474         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4475         * (genIpush): revived to use pic16 port's stack,
4476         * (genAddrOf): added incomplete case for stack'ed operand,
4477         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4478         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4479         can handle multibyte operands,
4480         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4481         * (pic16initialComments): added message for MPLAB compatibility
4482         mode enabled,
4483         * src/pic16/main.h: prototype for pic16_mplab_comp,
4484         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4485         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4486         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4487         because of increased complexity of procedure,
4488         * (_process_pragma): stack pragma changed to format 'stack pos len',
4489         emit symbol '_stack_end' to conform with gplink,
4490         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4491         to search for register,
4492         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4493         PO_GPR_REGISTER,
4494         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4495         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4496         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4497         case for PO_GPR_REGISTER,
4498         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4499         dies, the new era is ahead !...
4500         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4501         pic16_dynInternalRegs,
4502         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4503         * (pic16_allocDirReg): minor optimizations and bug fixes,
4504         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4505
4506         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4507         load stack and frame pointer with address of 'stack_end' symbol
4508
4509 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4510
4511         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4512         without source code but only variable initializers
4513
4514 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4515
4516         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4517         external are not declared as extern to reduce overhead while linking
4518
4519 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4520
4521         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4522
4523 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4524
4525         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4526           Yee Keat for the patch
4527         * src/SDCCast.c (decorateType): fixed bug #979599
4528         * src/ds390/gen.h: removed local fReturnSizeDS390
4529         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4530         * src/ds390/gen.c (genAnd, genOr, genXor),
4531         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4532
4533 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4534
4535         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4536         add relFilesSet to $3, manipulate $2 to handle linking of object
4537         files without source files in command line,
4538         * device/include/pic16 (all headers): added ID location macros,
4539         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4540         entries for ID location bytes,
4541         * (pic16_assignIdByteValue): NEW,
4542         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4543         added field dumpcalltree to pic16_options_t,
4544         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4545         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4546         emitting rFalseIfx label after check_carry label,
4547         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4548         pic16_emitDIRegs), NEW
4549         * (pic16glue): dump .calltree file when option --calltree found,
4550         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4551         * (_pic16_genAssemblerPreamble): emit ID locations after
4552         configuration registers,
4553         * (pic16_linkCmd): modifications of the link command,
4554         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4555         * (pic16_pCodeInitRegisters): don't init stack registers,
4556         * (pic16_findPrevInstruction): fixed bug,
4557         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4558         bug with immediate registers,
4559         * (buildCallTree): traces stack push and pop,
4560         * (pct2): dump also stack usage for each function,
4561         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4562         * (pic16_allocDirReg): various modifications,
4563         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4564         fixed to 1,
4565
4566 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4567
4568         * src/pic16/pcode.c: removed buggy double colon
4569
4570 2004-07-01 Borut Razem <borut.razem AT siol.net>
4571
4572         * support/scripts/sdcc.nsi: added include/pic16 to setup
4573
4574 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4575
4576         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4577         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4578         target 'clean',
4579         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4580         specific command line arguments. Also added sample lkr script
4581         for placing a variable at a specific memory bank.
4582         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4583         at a specific memory bank,
4584         * (pic16_dump_isection): fixed bug which caused string literals to
4585         be omitted when dumping idata section,
4586         * (pic16_groupRegistersInSection): added code to handle registers
4587         in specific memory banks,
4588         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4589         public, all references are renamed too,
4590         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4591         AOP_DPTR2,
4592         * (pic16_storeForReturn): added case to handle when dest is WREG,
4593         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4594         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4595         pic16_rel_udata, check to see if that register is marked as being
4596         a member of a specific memory bank,
4597         * (pic16_printIvalCharPtr): added code to add string literals either
4598         to code or the idata sections,
4599         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4600         also accept the 'udata' pragma,
4601         * src/pic16/main.h: new structure types sectName and sectSym
4602         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4603         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4604         * (pic16_findPrevInstruction): fixed, it returned nothing,
4605         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4606         instruction combinations,
4607         * (pic16_FixRegisterBanking): heavily reorganised,
4608         * (pic16_AnalyzeBanking): if generating banksel directives is
4609         disabled, then don't call FixRegisterBanking at all,
4610         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4611         completely removed,
4612         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4613
4614 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4615
4616         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4617         Phuah Yee Keat <yk.phuah AT nestac.com>
4618
4619 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4620
4621         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4622         correctly the IVT even if it is relocated to some other location
4623
4624 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4625
4626         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4627         * device/include/pic16/pic18f2220.h: NEW,
4628         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4629         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4630         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4631         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4632         nodefaultlibs, ivt_loc is the location of the interrupt vector
4633         table, and nodefaultlibs signs that default libraries should not be
4634         linked in link stage,
4635         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4636         according to --ivt-loc argument,
4637         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4638         when pragma stack is found,
4639
4640 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4641
4642         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4643         256 (range check), 257 (do while), 258.a-f (bit banging
4644         f.e. on 3-wire SPI bus)
4645
4646 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4647
4648         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4649         variables used exclusively within a loop
4650
4651 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4652
4653         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4654
4655 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4656
4657         * src/SDCClrange.c (computeClash): fixed bug #971834
4658
4659 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4660
4661         * src/mcs51/gen.c (genCmp): fixed bug #975903
4662         * src/hc08/gen.c (operandsEqu),
4663         * src/ds390/gen.c (operandsEqu),
4664         * src/z80/gen.c (operandsEqu),
4665         * src/pic/gen.c (operandsEqu),
4666         * src/pic16/gen.c (operandsEqu),
4667         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4668         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4669
4670 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4671
4672         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4673
4674 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4675
4676         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4677         default case in switch statement,
4678         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4679         to eliminate problem with initialisation of pointers, but problem
4680         still exists,
4681         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4682         * (emitStaticSegment): removed various lines emitting debug info,
4683         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4684         added processor registers for utilizing EEPROM,
4685         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4686         configurable and set 8
4687
4688 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4689
4690         * .version: increased version number to 2.4.2,
4691
4692         Cumulative patch for pic16 port
4693         * src/pic16/device.c: changed scheme to dump initial values for
4694         variables in idata segment, all print_idata* functions were removed,
4695         now the pic16_printIval* will be called,
4696         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4697         * _pic16_printPointerType, pic16_printPointerType,
4698         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4699         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4700         NEW, similar to the respective functions in SDCCglue.c,
4701         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4702         way, emitting hex bytes,
4703         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4704
4705 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4706
4707         * src/avr/ralloc.c (serialRegAssign),
4708         * src/xa51/ralloc.c (serialRegAssign),
4709         * src/pic/ralloc.c (serialRegAssign),
4710         * src/pic16/ralloc.c (serialRegAssign),
4711         * src/hc08/ralloc.c (serialRegAssign),
4712         * src/z80/ralloc.c (serialRegAssign),
4713         * src/ds390/ralloc.c (serialRegAssign),
4714         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4715
4716 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4717
4718         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4719         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4720
4721 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4722
4723         Cumulative patch for pic16 port:
4724         * src/pic16/device.h (typedef PIC16_device) modified fields for
4725         defining microcontrollers,
4726         * src/pic16/device.c: added new info for all devices in Pics16 array,
4727         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4728         to be optimised out by the pCode optimiser,
4729         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4730         specially, bug reported by G.M. Gallant,
4731         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4732         as force'd so that cannot be optimised out by pCode optimiser,
4733         * src/pic16/pcode.c,
4734         * src/pic16/pcodepeeph.c,
4735         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4736         they are disabled by default, but can be enabled explicit with
4737         command argument --denable-peeps, for testing,
4738         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4739         --pomit-ivt in COMPILE_FLAGS
4740
4741 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4742
4743         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4744           compilation on MSVC
4745
4746 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4747
4748         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4749
4750 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4751
4752         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4753         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4754
4755 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4756
4757         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4758         would only assign 0x300001 register.
4759
4760 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4761
4762         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4763         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4764
4765 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4766
4767         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4768         for ds80c400
4769         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4770         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4771         added peephole 254 (left shift), 255 (jump table)
4772
4773 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4774
4775         * device/lib/Makefile.in: removed comment line with model-pic16,
4776         * (target port-specific-objects-pic16): the libraries and objects
4777         are copied to the build directory form the device/lib/pic16/bin
4778         directory
4779
4780         Cumulative patch concerning pic16 port:
4781         * library directory has been re-organized,
4782         * added support for PIC18F1220,
4783         * added headers and library sources for chips 18f1220,18f6520,
4784         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4785
4786         * configuration registers setting has changed, now each supported
4787         device has a complete description of the registers it uses,
4788         * all initialisations are moved to idata sections, these section
4789         can be absolute or relocatable,
4790         * fixed initialisation of codespace variables,
4791         * fixed warning about PCLATU and gpsim,
4792         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4793         * (genAssign): use table reads when assigning from variables in codespace,
4794         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4795         char/int variables placed in codespace,
4796         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4797         registers set in .asm file, no need for --pomit-config-words anymore,
4798         * (pic16glue): some 8051 legacy segments are commented out
4799         (to be removed completely),
4800         * added support for alternative assembler and linker with --asm=
4801         and --link= command line arguments,
4802         * peepholes are disabled automatically in the port, no need to
4803         specify on command line,
4804         * port supports natively char/int/long multiplication, but converts
4805         all divisions to support functions,
4806         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4807         to the file set in variable $2,
4808         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4809         strings in ASCII format and not in hex,
4810         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4811         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4812         allocate proper register if iCodes aren't temporary,
4813
4814 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4815
4816         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4817
4818 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4819
4820         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4821         is commented out
4822
4823 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4824
4825         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4826         computed address is reused
4827         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4828         multi-byte bitfields
4829
4830 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4831
4832         * src/z80/gen.c: (genArrayInit): must check for pointers too
4833
4834 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4835
4836         * support/regression/tests/zeropad.c: never meant to commit the
4837           nestedstruct test: removed, added check for GCC version
4838
4839 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4840
4841         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4842         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4843         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4844           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4845           bugs 928906 and 954082 half-empty initializers
4846         * src/SDCCsymt.h,
4847         * src/SDCCsymt.c (getAllocSize): added for above fix
4848         * src/z80/gen.c (genArrayInit): fixed bug 741044
4849         * support/regression/tests/zeropad.c: added tests
4850
4851 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4852
4853         * src/pic16/device.c (pic16_dump_section): corrected bug which
4854         caused some symbols of the libraries to be misplaced
4855
4856 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4857
4858         * src/pic16/glue.c,
4859         * src/pic16/ralloc.h,
4860         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4861         to fix conflict with pic port
4862
4863 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4864
4865         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4866         externs configuration variables,
4867         * src/pic16/ralloc.h,
4868         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4869         prototype in header, commented out some debug messages
4870
4871 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4872
4873         * src/pic16/glue.c,
4874         * src/pic16/main.c,
4875         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4876         for gpasm COFF object generation. Thanks to D. Hawkins for
4877         his patch info
4878
4879 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4880
4881         * src/ds390/main.c,
4882         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4883         Brock for spotting this)
4884         * src/ds390/gen.c (genEndFunction),
4885         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4886         interrupt handler and critical. Disable push/pop optimizations when
4887         peephole optimizations disabled.
4888
4889 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4890
4891         Updated pic16 library sources and headers.
4892         * device/lib/pic16/pic18f*/ ,
4893         * device/include/pic16/*.h: modified to handle structured SFR
4894         definitions
4895
4896 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4897
4898         * src/port.h (PORT structure): added hook initPaths, now each
4899         port can declare its own default search paths,
4900         which can been seen with the --print-search-dirs option,
4901         see pic16 port for example,
4902         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4903         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4904         * (doPrintSearchDirs): NEW, replaces in a central manner the
4905         printing of search dirs which was split in set*Paths functions,
4906         * (main): added call to port->initPaths and doPrintSearchDirs,
4907         * src/avr/main.c,
4908         * src/ds390/main.c,
4909         * src/hc08/main.c,
4910         * src/izt/i186.c,
4911         * src/izt/tlcs900h.c,
4912         * src/mcs51/main.c,
4913         * src/pic/main.c,
4914         * src/pic16/main.c: modified port structures to reflect addition of
4915         initPaths hook,
4916
4917         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4918         * (pic16_dump_section): for registers in same address reserve memory once,
4919         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4920         to no_banksel,
4921         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4922         result is greater in size than right or left,
4923         * (pic16_genUMult8X8_8): there are some cases where the result can
4924         be 16 bits size, so handle these,
4925         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4926         * (pic16_outBitC): modified to emit pcodes,
4927         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4928         or not,
4929         * (genDivOneByte): implemented algorithm to divide 8-bits,
4930         * (genCmp): uncommented goto, but issues still exist,
4931         * (genAnd): fixed a bug with variables >8bits,
4932         * (genPackBits): optimization added that uses BCF/BSF to change a
4933         single bit,
4934         * (genAssign): fixed bug when assigning floating point literals,
4935         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4936         __sdcc_gsinit_startup label,
4937         * src/pic16/main.c (_pic16_init): removed search directory
4938         initialisations,
4939         * (_pic16_initPaths): NEW, used to initialise search directories,
4940         * (_hasNativeMulFor): support functions for all except char/int
4941         multiplication, and char division,
4942         * (PIC16_port struct): modified entry for native mul support,
4943         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4944         no_banksel option,
4945         * (buildCallTree): call to register_usage is ifdef'ed out,
4946
4947 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4948
4949         * device/include/string.h: applied Stas Sergeev's patch to make this
4950         header file compatible with the preprocessor -Wundef option
4951         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4952         failure (fixes bug #941458)
4953
4954 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4955
4956         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4957         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4958         that the variable, not the function, should be static
4959         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4960         to be consistent with non-literal case
4961
4962 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4963
4964         * src/SDCCast.c (isConformingBody): fixed bug #949967
4965         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4966         convilong): fixed bug #952086
4967
4968 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4969
4970         * src/SDCCmem.c (allocVariables): fixed bug #955321
4971
4972 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4973
4974         * src/hc08/main.c (_hc08_genAssemblerEnd),
4975         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4976         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4977         completely eliminated the use of a temporary file
4978         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4979         when more than one file linked
4980         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4981
4982 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4983
4984         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4985         which fixes bug #543481
4986         * support/regression/tests/bug-751703.c: fixed comments left from a
4987         cut and paste error
4988         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4989         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4990         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4991         scopes
4992         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4993         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4994         are now changed to underscores in moduleName
4995
4996 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4997
4998         * as/mcs51/lkmem.c: better fix for bug #954173
4999
5000 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5001         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5002
5003         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5004         * device/include/c8051f000.h,
5005         * device/include/c8051f120.h,
5006         * device/include/c8051f300.h,
5007         * device/include/c8051f310.h,
5008         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5009         PWM16) and detab'ed
5010
5011 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5012
5013         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5014         and mailing lists, doc'ed --no-peep-comments, removed reference
5015         to knoppix (newest version has no LyX/LaTeX), other minor changes
5016         * src/SDCCglue.c (glue): save 2 bytes stack space with
5017         option --main-return. The ljmp could probably be avoided too
5018
5019 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5020
5021         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5022
5023 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5024
5025         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5026         * src/SDCCopt.c (isLocalWithoutDef),
5027         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5028         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5029         (credit to Maarten Brock for patch #949363, on which this is based)
5030         * support/regression/tests/bug-751703.c: some test cases of extern used
5031         within inner scopes.
5032
5033 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5034
5035         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5036         SPEC_STRUCT
5037         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5038         struct definitions
5039         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5040         dwWriteLabel): fix to create valid debugger symbols even when
5041         the module name has non-alphanumeric symbols in it
5042         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5043         when a variable's allocation has been optimized away
5044
5045
5046 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5047
5048         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5049         * src/hc08/main.c,
5050         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5051         * src/mcs51/main.c,
5052         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5053         * src/ds390/main.c,
5054         * src/z80/gen.c (z80_emitDebuggerSymbol),
5055         * src/z80/main.c,
5056         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5057         * src/pic/main.c,
5058         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5059         * src/pic16/main.c,
5060         * src/avr/gen.c (avr_emitDebuggerSymbol),
5061         * src/avr/main.c,
5062         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5063         * src/xa51/main.c,
5064         * src/SDCCdebug.c (emitDebuggerSymbol),
5065         * src/SDCCdebug.h,
5066         * src/port.h: added a debugger struct to the port struct. Added a
5067         callback for defining debugger symbols
5068
5069         * src/SDCCast.c (createLabel),
5070         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5071         with isitmp = 1
5072         * src/SDCCicode.h,
5073         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5074         iCode back to the ast for the function
5075
5076         * src/hc08/ralloc.c (hc08_assignRegisters),
5077         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5078         unneeded fields from the regs struct.
5079         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5080         pushReg() & pullReg() functions instead of emitcode()
5081
5082         * src/hc08/gen.c (genLabel, genhc08Code),
5083         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5084
5085         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5086         debugger hooks
5087
5088         * src/hc08/gen.c (genEndFunction, genhc08Code),
5089         * src/hc08/gen.h,
5090         * src/mcs51/gen.c (genEndFunction, gen51Code),
5091         * src/mcs51/gen.h,
5092         * src/ds390/gen.c (genEndFunction, gen390Code),
5093         * src/ds390/gen.h,
5094         * src/z80/gen.c (genEndFunction, genZ80Code),
5095         * src/z80/gen.h,
5096         * src/z80/z80.h,
5097         * src/pic/gen.c (genEndFunction, genpic14Code),
5098         * src/pic/gen.h,
5099         * src/pic16/gen.c (genEndFunction, genpic16Code),
5100         * src/pic16/gen.h,
5101         * src/avr/gen.c (genEndFunction, genAVRCode),
5102         * src/avr/gen.h,
5103         * src/xa51/gen.c (genEndFunction, genXA51Code),
5104         * src/xa51/gen.h,
5105         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5106         specific code to cdbFile.c and out of the backend code generators
5107
5108         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5109         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5110         starting address is now 0
5111
5112         * as/hc08/asm.h,
5113         * as/hc08/m08pst.c,
5114         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5115         assembler directive for DWARF support
5116         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5117
5118         * src/src.dsp,
5119         * src/Makefile.in,
5120         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5121
5122 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5123
5124         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5125         and inappropriate peephole optimization in jump tables
5126
5127 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5128
5129         * as/hc08/m08pst.c,
5130         * src/SDCCglue.c: sdccopt works for the hc08 port now
5131
5132 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5133
5134         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5135
5136 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5137
5138         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5139
5140 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5141
5142         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5143         rules
5144         * src/SDCCmain.c,
5145         * src/SDCCglobl.h,
5146         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5147         comments from the peephole optimizer replacement rules
5148         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5149         symbols
5150         * src/SDCCcse.c (updateSpillLocation),
5151         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5152         equivalents
5153         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5154         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5155         objects far pointers
5156
5157 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5158
5159         * src/SDCCsymt.h: a missing part of my last change
5160         * src/pic/ralloc.c (regTypeNum),
5161         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5162
5163 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5164
5165         * src/SDCCicode.h,
5166         * src/SDCCicode.c (aggrToPtrDclType),
5167         * src/SDCCptropt.h,
5168         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5169         ptrPseudoSymConvert),
5170         * src/pic/ralloc.c (regTypeNum),
5171         * src/pic16/ralloc.c (regTypeNum),
5172         * src/hc08/ralloc.c (regTypeNum),
5173         * src/ds390/ralloc.c (regTypeNum),
5174         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5175         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5176
5177 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5178
5179         * link/z80/lkmain.c (afile),
5180         * as/hc08/lkmain.c (afile),
5181         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5182         prevent a pointer problem when a filename has no directory and
5183         no extension specified.
5184
5185 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5186
5187         * link/z80/lkmain.c (afile): allow periods in directory names
5188         * link/z80/lkmain.c (afile),
5189         * as/mcs51/lkmain.c (afile),
5190         * as/hc08/lkmain.c (afile): allow linker script file to have an
5191         extension other than ".lnk"
5192         * link/z80/lklex.c (getfid),
5193         * link/z80/lkmain.c (parse),
5194         * as/mcs51/lklex.c (getfid),
5195         * as/mcs51/lkmain.c (parse),
5196         * as/hc08/lklex.c (getfid),
5197         * as/hc08/lkmain.c (parse): Support comments in the linker script
5198         file on lines by themselves and after filenames
5199
5200 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5201
5202         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5203
5204 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5205
5206         * src/z80/peeph-z80.def: removed some peephole rules that don't
5207         work with multibyte arithmetic (fixed bug #937126)
5208         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5209         to registers and not global variables
5210         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5211         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5212         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5213         checking for assignments not internally generated (fixed bug #931895)
5214         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5215         structure member (fixed bug #930072)
5216
5217 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5218
5219         * src/SDCCmain.c (linkEdit),
5220         * src/hc08/main.c (_hc08_parseOptions),
5221         * as/hc08/Makefile.in,
5222         * as/hc08/aslink.h,
5223         * as/hc08/asm.h,
5224         * as/hc08/m08pst.c,
5225         * as/hc08/lkrloc.c (relr, rele),
5226         * as/hc08/lkarea.c (lnkarea)
5227         * as/hc08/lkmain.c (afile, parse),
5228         * as/hc08/lkelf.c: support for ELF output
5229         * as/hc08/lks19.c (s19),
5230         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5231
5232 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5233
5234         * as/mcs51/lkihx.c: Fixed bug #899105.
5235
5236 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5237
5238         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5239         .dsp files from Unix to DOS.
5240
5241 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5242
5243         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5244         function pointers; we have been compliant for several months now.
5245         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5246         change that was accidently commented out
5247         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5248         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5249         bug #922319
5250
5251 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5252
5253         * src/hc08/gen.c: output of all of the internal debugging information
5254         is now controlled by the D() macro; it is disabled by default
5255
5256 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5257
5258         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5259         harder to keep the same registers during a CAST iCode
5260         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5261         long via int can be done in a single cast, if the signedness is
5262         correct.
5263         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5264         putchar() in tinibios.c in ds390's library
5265
5266 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5267
5268         * src/SDCCast.c (decorateType): fixed bug #898889,
5269         cast result of a literal complement too
5270         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5271         fixed check for bitfields
5272
5273 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5274
5275         * src/SDCCicode.c (geniCodeLogic): made it static,
5276         (geniCodeLogicAndOr): added in order to fix bug #905492,
5277         (ast2iCode): fixed bug #905492
5278         * support/regression/tests/bug-905492.c: added
5279         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5280         (processParms): fixed bug #927659: don't copy parms, this will clear
5281         decorated flag
5282         * support/regression/tests/bug-927659.c: added
5283
5284 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5285
5286         * src/SDCCast.c (addCast): don't cast float to char
5287         * device/lib/libsdcc.lib: added _memmove
5288
5289 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5290
5291         * device/lib/large/Makefile: fixed parallel execution by
5292         replacing `make` by `$(MAKE)`
5293
5294 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5295
5296         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5297         offsets (fixes bug #923936)
5298
5299 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5300
5301         * device/lib/small/Makefile: fixed parallel execution by
5302         replacing `make` by `$(MAKE)`
5303
5304 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5305
5306         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5307
5308 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5309
5310         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5311         * src/regression/Makefile: Regression test was not running.
5312
5313 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5314
5315         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5316         complement if possible
5317         * src/SDCCval.c (valComplement),
5318         * src/SDCCicode.c (operandOperation): fixed complement of literal
5319         * support/regression/tests/onebyte.c (testComplement): added
5320
5321 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5322
5323         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5324         return an optimized tree; actually replace actParm with the new tree
5325         * src/SDCCast.h: added some parantheses to remove side effects
5326         * support/regression/tests/bug-920866.c
5327
5328 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5329         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5330         Bit operands were not being handled properly in the pic14 port.
5331         (now src/regression/add.c passes again).
5332
5333 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5334
5335         * src/SDCC.y (labeled_statement): case and default no longer require
5336         a following statement (RFE #893037)
5337
5338 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5339
5340         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5341         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5342         disabled (fixes bug #916294)
5343         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5344         "mov a,acc"; patch provided by Lenny Story
5345         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5346
5347 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5348
5349         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5350         functions
5351         * src/ds390/gen.c (genFunction, genEndFunction),
5352         * src/ds390/ralloc.c (ds390_assignRegisters),
5353         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5354         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5355         pushed if there are parameters passed on the stack. Also, a cleaner
5356         way to decide if r0/r1 should be pushed/popped. (Together they fix
5357         bug #918693)
5358
5359 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5360
5361         * doc/sdccman.lyx,
5362         * device/lib/mcs51/crtpagesfr.asm,
5363         * device/lib/mcs51/crtxinit.asm,
5364         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5365         to avoid confusion with Si Lab's SFRPAGE register.
5366
5367 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5368
5369         * src/SDCCglue.c (emitMaps): allow public sfr variables
5370         * src/SDCCglue.c (initialComments): include compiler build date
5371         with compiler version and put the timestamp of the generated
5372         assembly file on a serperate line to be less confusing.
5373         * src/port.h: added genInitStartup hook
5374         * src/avr/main.c,
5375         * src/ds390/main.c,
5376         * src/hc08/main.c,
5377         * src/pic/main.c,
5378         * src/pic16/main.c,
5379         * src/xa51/main.c,
5380         * src/z80/main.c: genInitStartup initialize as NULL (default to
5381         historical behaviour)
5382         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5383         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5384         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5385         library instead of hard coding it into the compiler.
5386         * support/regression/ports/mcs51-stack-auto/spec.mk,
5387         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5388         * device/lib/mcs51/Makefile,
5389         * device/lib/small/Makefile,
5390         * device/lib/large/Makefile,
5391         * device/lib/mcs51/crtpagesfr.asm,
5392         * device/lib/mcs51/crtstart.asm,
5393         * device/lib/mcs51/crtxclear.asm,
5394         * device/lib/mcs51/crtxinit.asm,
5395         * device/lib/mcs51/crtclear.asm,
5396         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5397         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5398         and into user configurable files.
5399         * device/lib/clean.mk: clean mcs51 directory too
5400         * support/regression/tests/longlit.c: added static to T1 declaration
5401         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5402         accesses in the initialization code
5403
5404 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5405
5406         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5407         OSCTRIMVAL as noted in bug #916008
5408
5409 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5410
5411         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5412         in loops with multiple exits (reported as incorrect registers
5413         used by Martin Helmling in Sdcc-user list)
5414
5415 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5416
5417         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5418         made ds390 register extensions look less like error messages
5419
5420 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5421
5422         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5423         reported by Adam Wozniak in Sdcc-user list
5424
5425 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5426
5427         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5428         arithmetic optimizations, added debug output
5429
5430 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5431
5432         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5433         * sdcc.spec: updated and split sdcc into 3 rpms
5434         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5435         needed for literals of LEFT_OP and '+'
5436         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5437         introduced RESULT_TYPE_NOPROM
5438         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5439         left shift
5440         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5441         limited promotion to int only for '*'
5442         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5443
5444 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5445
5446         * src/pic16/gen.c (genSkip),
5447         (genc16bit2lit), (gencjneshort): commented out
5448         (is_LitOp): new helper function, checks operand type
5449         (genCmpEq): rewritten
5450
5451 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5452
5453         * support/regression/tests/bug-908454.c: added
5454
5455 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5456
5457         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5458         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5459         (geniCodeCast): cosmetic, don't preserve bit storage class
5460         (geniCodeLeftShift): added promotion
5461         (geniCodeLogic): fixed regression
5462         * src/SDCCsymt.c (computeTypeOr): accept bits too
5463         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5464
5465 2004-03-07  Borut Razem <borut.razem AT siol.net>
5466
5467         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5468
5469 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5470
5471         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5472         version of pic16_genPackRegisters which does not check if ic is a
5473         CAST operator,
5474         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5475         function cause string1.c regression test fails
5476
5477 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5478
5479         * sim/ucsim/configure.in,
5480         * sim/ucsim/configure,
5481         * sim/ucsim/doc/Makefile.in: use docdir
5482         * src/SDCC.y: fixed sbit atrributes
5483         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5484         * src/SDCCast.c (decorateType): |^& need special promotion handling
5485         * src/SDCCast.h,
5486         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5487         * src/SDCCsymt.h (computeType),
5488         * src/SDCCicode.c: computeType() needs op
5489         * src/SDCCsymt.c (checkTypeSanity),
5490         * doc/sddman.lyx: "plain" bitfields are unsigned
5491         * src/SDCCsymt.c (computeTypeOr): added
5492         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5493         |^& ops
5494         * src/SDCCval.c (val*): computeType() needs op
5495         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5496         * support/regression/tests/onebyte.c: added tests for |^&
5497
5498 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5499
5500         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5501         for writing icode into asm output.
5502
5503 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5504
5505         * src/pic16/device.c: added some debug lines enabled
5506         with macro DEBUG_CHECK,
5507         * src/pic16/genarith.c: more debug in genPlus,
5508         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5509         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5510         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5511         * (aopForSym): onStack symbols are re-placed in data memspace,
5512         and onStack flag is cleared,
5513         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5514         copy temporary pcodeop,
5515         * (genPcall): added warning for not updating PCLATU,
5516         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5517         always true for pic16 port,
5518         * (genMultOneWord): NEW, supports integer multiplication,
5519         * (genMult): modified to call genMultOneWord,
5520         * (ifxForOp): added warning when return NULL,
5521         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5522         flag is set before call to operandFromSymbol for implicit
5523         added structures,
5524         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5525         options.intlong_rent are set by default,
5526         * (_hasNativeMulFor): modified to allow port generation of integer
5527         multiplication,
5528         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5529         set regtype to REG_SFR for all registers, restricting seting the
5530         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5531
5532 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5533
5534         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5535         more than 500 times in the regression tests
5536
5537 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5538
5539         * support/Util/SDCCerr.h,
5540         * support/Util/SDCCerr.c,
5541         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5542         enumerator_list),
5543         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5544         for symbol conflicts.
5545         * support/valdiags/tests/enum.c,
5546         * support/valdiags/tests/tentdecl.c,
5547         * support/valdiags/tests/struct.c: expect possible error messages
5548         referring to original symbol definitions.
5549         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5550         * src/SDCCsymt.h,
5551         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5552
5553 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5554
5555         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5556
5557 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5558
5559         * src/pic16/ralloc.c (newReg): fixed bug #908929
5560
5561 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5562
5563         * src/ds390/gen.c: added missing #include "main.h"
5564
5565 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5566
5567         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5568         checking if symbol is already in set,
5569         * src/pic16/device.h: prototype for checkAddSym,
5570         * src/pic16/gen.c: (_G): added entry interruptvector,
5571         * (assignResultValue): removed some commented out lines,
5572         * (genFunction): check for ISR via sym->type, absolute section for
5573         interrupt code is created via a new pBlock, the goto instruction is
5574         placed now correctly at the interrupt vector position, changed all
5575         references from ivec to _G.interruptvector,
5576         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5577         is the interrupt is a high priority one, same for return from ISR,
5578         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5579         externs to calls of checkAddSym,
5580         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5581         pic16_pcode_verbose flag is set,
5582         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5583         * src/pic16/pcoderegs.c: message about how many registers are saved
5584         will only be emitted if pic16_pcode_verbose flag is set,
5585
5586 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5587
5588         * src/ds390/ralloc.h,
5589         * src/ds390/ralloc.c (ds390_regWithIdx),
5590         * src/ds390/gen.c (emitcode),
5591         * src/ds390/main.h,
5592         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5593         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5594         ds390operandCompare, getRegsRead, getRegsWritten,
5595         initializeAsmLineNode): customized instruction size calculation for
5596         ds390, started basis for some register optimizations
5597         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5598         corresponding assembly output
5599         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5600         missing push/pop of r0/r1. Optimized push/pops
5601
5602 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5603
5604         * src/mcs51/main.c (instructionSize): fixed ACALL size
5605         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5606
5607 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5608
5609         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5610         the sorting of rlist with NULL elements
5611         * (print_idataType, print_idata): NEW to create idata sections
5612         * src/pic16/device.h: idataSymSet new variable
5613         * src/pic16/gen.c (genFunction): fixed some bugs in string
5614         comparing, improved the absolute section creation for ISRs,
5615         added FSR0L/FSR0H in registers that are saved in an ISR,
5616         * (genInline): fixed the processing of inline snippets,
5617         now they undergo no process by the peephole optimizer
5618         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5619         are placed in idataSymSet,
5620         * (pic16emitStaticSeg): extern symbols are added in externs,
5621         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5622         switching when aboslute variables are placed in access bank memory
5623         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5624         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5625         commented out with #if,
5626         * (pic16_packRegisters): reintroduce the check for CAST because some
5627         symbols are not correctly handled,
5628         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5629         pCodeInstruction instead of pCode,
5630         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5631         pCodeAsmDir definition,
5632         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5633         directive, then the argument directive is emitted without the leading
5634         tab, hack for inline labels which must be in the first column,
5635         * (compareLabel,pic16_findNextInstruction),
5636         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5637         * (insertBankSwitch): modified for the new pCodeAsmDir,
5638
5639 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5640         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5641
5642         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5643         instance,
5644         * (pushSide): commented out with #if,
5645         * (assignResultValue): fixed some typos in saving
5646         registers,
5647         * (genPcall): FIXED and sync'ed with genCall,
5648         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5649         * (genNearPointerGet): fixed to handle some more cases,
5650         implementation scheme via table reads,
5651         * (genConstPointerGet): modified to access code memory correct,
5652         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5653         and improved to handle some cases
5654         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5655         instead of "RETLW" for init data
5656         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5657         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5658         variables are placed in access bank memory (<0x80 and >=0xf80),
5659         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5660         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5661         TBLWT_POSTDEC,TBLWT_PREINC
5662         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5663         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5664         directives
5665         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5666         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5667         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5668         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5669
5670 2004-02-29  Borut Razem <borut.razem AT siol.net>
5671
5672         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5673         support/Util/findme.h, support/Util/system.h: enhance binary relative
5674         search for lib and include by using findProgramPath()
5675
5676 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5677
5678         * src/SDCCpeeph.h,
5679         * src/SDCCpeeph.c (pcDistance),
5680         * src/port.h,
5681         * src/mcs51/ralloc.h,
5682         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5683         * src/mcs51/main.h,
5684         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5685         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5686         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5687         size calculation port specific, started basis for some register
5688         optimizations
5689         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5690         missing push/pop of r0/r1. Optimized push/pops
5691         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5692         * device/lib/_modsint.c (_modsint),
5693         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5694         and stack version so regression tests pass
5695
5696 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5697
5698         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5699         * src/SDCCast.c (decorateType): catch another small optimization
5700         with '?' operator
5701         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5702         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5703         modified to finally use computeType() all over SDCC,
5704         see Feature Request #877103
5705         * src/SDCCval.h: cosmetic
5706         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5707         valCompare(); regression tested in muldiv.c
5708         * support/regression/tests/muldiv.c (testMod): mod sign follows
5709         dividend only
5710
5711 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5712
5713         * src/SDCCast.c (decorateType): fixed bug #902362
5714         * doc/INSTALL.txt: fixed install instructions for win32
5715
5716 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5717
5718         * device/include/Makefile.in (install): fixed by replacing spaces
5719         by tabs
5720         * doc/README.txt,
5721         * doc/INSTALL.txt: updated for release
5722         * doc/sdccman.lyx: added warning for --xstack being buggy
5723
5724 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5725
5726         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5727         to eliminate build warnings.
5728         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5729
5730 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5731            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5732
5733         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5734         removed -penable-stack, added comment for stack pragma, added
5735         warning for not initializing the stack/frame registers, removed
5736         comment at interrupts section
5737
5738         Stack is made permanent, there is no ability to disable stack usage.
5739         * src/pic16/device.h,
5740         * src/pic16/device.c: removed all references to USE_STACK macro,
5741         * src/pic16/device.c (pic16_dump_section): when no elements in
5742         rlist, free rlist before return,
5743         * (pic16_dump_int_registers): NEW, internal registers are a new set
5744         of general purpose registers reused by each function,
5745         * (checkAddReg): returns 1 if registers is added to set,
5746         * (pic16_groupRegistersInSection): when a registers is of type
5747         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5748         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5749         SRCASECMP macro is moved here from device.c
5750         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5751         PO_PCLATU, PO_PRODL, PO_PRODH,
5752         * (pic16_pCodeOpType, genMinus,
5753         changed compares to "a" register, with AOP_ACC,
5754         * (pic16_genPlus): fixed some bugs and indented properly,
5755         * (pic16_addSign): changed size to size+offset in the MOVWF
5756         instruction,
5757         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5758         multiply 8-bit operand by literal, result is 8-bit,
5759         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5760         multiply 2 8-bit operand, result is 8-bit,
5761         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5762         genUMult8X*_16,
5763         * src/pic16/gen.c: changed accUse to contain WREG only,
5764         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5765         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5766         true, do not use immediate addressing any more unless sym is a
5767         pointer in codespace,
5768         * (aopForRemat): do not use immediate addressing when symbol not in
5769         codespace and when symbol's address is requested,
5770         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5771         accUse size (= 1),
5772         * (aopGet): added case for AOP_ACC and don't return "accumulator
5773         bug" but WREG instead,
5774         * (popGetTempReg): pushes contents of temporary register in stack,
5775         * (popReleaseTempReg): pops contents of temporary register from
5776         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5777         * (pic16_popGet): separated case AOP_ACC to return register WREG
5778         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5779         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5780         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5781         the use of immediate pointers to certain cases only.
5782
5783         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5784         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5785         * (assignResultValue, genCall, genRet): modified to use the new
5786         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5787         genPcall is still broken,
5788         * (genFunction): added code to create 'A' type pBlocks when
5789         interrupt functions are generated, code not extensively tested yet,
5790         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5791         * (genEndFunction): modified so ISRs pop stored registers from stack,
5792         * (genMultOneByte): cleanup,
5793         * (AccRsh): added flag andmask, to and result with appropriate mask,
5794         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5795         * (genDataPointerGet): fixed and reenabled its use,
5796         * (genNearDataPointerGet): bugs fixed,
5797         * (genDataPointerSet): bugs fixed,
5798         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5799         pic16_DumpSymbol, pic16_DumpOp,
5800         * src/pic16/genutils.h: function prototypes for the above functions,
5801         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5802         pointers,
5803         * (pic16emitRegularMap): many many many improvements, but needs a
5804         major cleanup,
5805         * src/pic16/main.c: enable_stack in pic16_options is removed,
5806         * (_pic16_parseOptions): removed command line options -penable-stack,
5807         * (_process_pragma): emit stack symbol only when stack pragma is
5808         processed,
5809         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5810         redirected to FSR0L/FSR0H pair,
5811         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5812         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5813         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5814         for immediates,
5815         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5816         * (dumpPicOptype): NEW,
5817         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5818         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5819         with movff instruction,
5820         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5821         added pic16_int_regs, some packRegsFor* functions are commented out,
5822         because produce errors,
5823         * src/pic16/NOTES: minor modifications
5824
5825 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5826
5827         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5828         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5829         --pack-iram.
5830         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5831         * as/mcs51/lkaomf51.c: fixed bug #895763
5832
5833 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5834
5835         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5836
5837 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5838
5839         * doc/sdccman.lyx: added details about the HC08 storage classes and
5840         interrupts, fixed the register usage info for z80 & gbz80
5841
5842 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5843
5844         * doc/sdccman.lyx: added more pic16 port documentation
5845         * device/include/pic16/: added header pic18fregs.h
5846
5847 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5848
5849         * doc/sdccman.lyx: added Vangelis' contribution
5850
5851 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5852
5853         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5854         extend to the next CALL or PCALL, not just to the next CALL.
5855
5856 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5857
5858         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5859
5860 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5861
5862         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5863         bug #895752 and a better fix for bug #716790
5864
5865 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5866
5867         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5868
5869 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5870
5871         * doc/sdccman.lyx: minor changes, minor changed
5872
5873 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5874
5875         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5876         which can't handle SDCC_NEWONEBYTEOPS,
5877         (geniCodeMultiply): removed conversion from mult to shift for pic14
5878         and pic16
5879
5880 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5881
5882         * src/hc08/gen.h,
5883         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5884         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5885         thus fixing bug #895406
5886
5887 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5888
5889         * device/lib/_modsint.c,
5890         * device/lib/_modslong.c: sign follows divisor only
5891         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5892         signs or signedness can be ignored
5893         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5894         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5895         added optimization for IFX,
5896         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5897         arguments;
5898         reenabled optimization for IFX, which was removed on 2004-01-11
5899         * src/SDCCast.h: added return type IFX
5900         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5901         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5902         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5903         SDCC_OLDONEBYTEOPS selects the old behaviour
5904         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5905         changed again and commented promotion rule
5906         * src/SDCCval.c (valDiv): promotion no longer necessary
5907         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5908         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5909         rewritten
5910         * support/regression/tests/onebyte.c: added
5911
5912 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5913
5914         * gen.c (genInline): reverted to old code for assemnling inline
5915         code because of bug reported James Chadd
5916
5917 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5918
5919         * ralloc.h: missing declarations from previous patch,
5920         seems that patch for ralloc.h was never applied, fixed
5921
5922 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5923            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5924
5925         * pcode.c,
5926         * pcode.h,
5927         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5928         indirect addressing. Marked FSR0 as deprecated
5929         * gen.c (pointerCode): commented out, not needed now
5930         (pic16_popGet2p): new MOVFF helper function
5931         (genGenPointerGet),
5932         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5933         (shiftRLong): removed duplicate debugging info
5934
5935 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5936
5937         * src/ds390/gen.c (genNearPointerGet),
5938         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5939         optimization with bits, but not bitfields.
5940         * src/ds390/ralloc.c (packRegisters),
5941         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5942
5943 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5944
5945         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5946
5947 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5948
5949         * src/SDCCsymt.h,
5950         * src/SDCCicode.c (operandFromSymbol),
5951         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5952         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5953         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5954         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5955         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5956         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5957         bug #892038
5958         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5959         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5960         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5961         * src/SDCCsymt.c (newSymbol),
5962         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5963         enumerator_list),
5964         * src/SDCCval.h,
5965         * src/SDCCval.c (newiList): fixed bug #885705
5966
5967 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5968
5969         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5970         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5971
5972 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5973
5974         * device/include/c8051f120.h,
5975         * device/include/c8051f300.h,
5976         * device/include/c8051f310.h: added/updated header files for Silicon
5977         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5978         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5979         in new section Submitting patches
5980
5981 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5982
5983         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5984         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5985         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5986         genGenPointerSet),
5987         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5988         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5989         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5990         genGenPointerSet),
5991         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5992         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5993         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5994         genGenPointerSet),
5995         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5996         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5997         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5998         genGenPointerSet): fixed bug #892400
5999         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6000         to eliminate build warnings.
6001         * src/SDCCast.c (processParms),
6002         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6003         fixed bug 751859
6004         * support/valdiag/valdiag.py: added GCC to the list of defines active
6005         when compiling with gcc
6006
6007 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6008
6009         * support/Util/SDCCerr.h,
6010         * support/Util/SDCCerr.c,
6011         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6012         with an incomplete type (fixed bug #883734)
6013         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6014
6015 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6016
6017         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6018
6019 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6020
6021         * src/SDCCast.c (decorateType),
6022         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6023         function pointer implementation
6024         * support/regression/tests/funptrs.c: added tests to verify both forms
6025         of function pointers work correctly. Added tests to verify parameters
6026         are passed in the correct order.
6027
6028 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6029
6030         * device.c (regCompare): registers are sorted by ascending
6031         address and increasing size,
6032         * main.c (_pic16_finaliseOptions): removed the declaration
6033         of compiler macro MCU. Now a macro of the format pic18fxxxx
6034         will be defined from the command line
6035
6036 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6037             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6038
6039         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6040         PCOP_RLCF was overwritten!
6041         * gen.c (genSkip): commented out calls to pic16_emitcode,
6042         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6043         * (genlshTwo),
6044         * (genRRC): added debugging info,
6045         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6046         overwritten while shifting,
6047         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6048         overwritten while shifting,
6049         * (AccLsh),
6050         * (AccRsh),
6051         * (shiftLLeftOrResult),
6052         * (shiftRLeftOrResult),
6053         * (shiftRLong),
6054         * (shiftLLong): Implemented with pic16_emitpcode
6055         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6056         * (genLeftShift): Fixed bug, operand for shift by variable always
6057         was "and"ed with 0x0f,
6058         * (genLeftShiftLiteral),
6059         * (genrshTwo),
6060         * (genRightShiftLiteral): added debugging info,
6061         * (genrshFour): added comment,
6062         * (genRightShift): determined signedness from operand "left"
6063         instead of "result"
6064
6065 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6066
6067         * src/SDCCicode.c (geniCodeParms),
6068         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6069         function pointers, fixed function pointer bugs #861242 and #861896
6070
6071 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6072
6073         * device/include/c8051f000.h,
6074         * device/include/c8051f120.h,
6075         * device/include/c8051f300.h: added header files for Silicon
6076         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6077
6078 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6079
6080         * src/SDCCast.c (processParams): added new type flow and restructured
6081         (gatherAutoInit): added new type flow
6082         (addCast): cosmetic changes
6083         (getLeftResultType): added new type flow for array indices, patch
6084         provided by Stas, see FR #877103
6085         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6086         array index patch by Stas
6087         * src/SDCCast.h: added prototype getResultTypeFromType()
6088         * src/SDCCval.h,
6089         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6090         * src/pic/glue.c (pic14emitStaticSeg),
6091         * src/pic16/glue.c (pic16emitStaticSeg),
6092         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6093         for initialization of symbols
6094         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6095         * support/Util/SDCCerr.h:
6096         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6097         * .version: bumped version number to 2.3.8
6098         * device/include/Makefile.in (install),
6099         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6100         avoid warnings
6101
6102 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6103
6104         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6105         Slade Rich fixed an optimization bug
6106         * src/pic/pcodepeep.c,
6107         * src/pic/pcoderegs.c
6108         * doc/Makefile (install): added test for directory
6109
6110 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6111
6112         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6113         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6114         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6115         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6116         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6117         * as/mcs51/asexpr.c (term),
6118         * as/hc08/asexpr.c (term): fixed bug #887146
6119
6120 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6121
6122         * src/z80/gen.c (genMult): handle single byte result product
6123         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6124         DUMMY_READ_VOLATILE (fixed bug #886367)
6125
6126 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6127
6128         * support/regression/tests/libmullong.c: fixed logic, on little endian
6129         hosts we ended without a mullong_wrapper()
6130
6131 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6132
6133         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6134         virus/worm forged address usage.
6135
6136 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6137
6138         Fixed promotion, it should be done on AST level:
6139         * src/SDCCast.c (addCast): added promotion to int
6140         (decorateType): updated call to upCast()
6141         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6142         usualUnaryConversions()
6143
6144 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6145
6146         * support/regression/tests/literalop.c (mulWrapper): Added a
6147         wrapper to remove integer overflow warnings.
6148
6149         * support/regression/tests/float_trans.c: Made work on host.
6150
6151         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6152         location of sz80.
6153
6154         * support/regression/generate-cases.py (main): Changed from inline
6155         to a main method.
6156
6157         * doc/Makefile (install): Changed to depth first to get rid of
6158         missing directory install warning.
6159
6160         * as/Makefile (install-doc): Made work on Mac.
6161
6162 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6163
6164         * src/SDCCast.c: added an additional type flow in decorateType() of
6165         opposite direction, see feature request #860006; it's enabled at runtime
6166         by setting the environment variable SDCC_NEWTYPEFLOW
6167         * src/SDCCast.h: changed prototype of decorateType()
6168         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6169         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6170         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6171         see feature request #877103
6172         * src/SDCCval.c: updated call of decorateType()
6173         (valBitwise): fixed bug #882876
6174         (valMinus): added promotion
6175         (valLogicAndOr): result is unsigned
6176         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6177         * src/SDCCsymt.c (computeType),
6178         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6179         must not cause an unsigned operation
6180         * src/pic/glue (pic14emitRegularMap),
6181         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6182
6183 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6184
6185         * src/pic/pcode.c (PCodeID): commented out left over debug code
6186
6187 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6188
6189         * support/valdiag/tests/overflow.c: added shift tests
6190         * src/pic/device.c,
6191         * src/pic/gen.c,
6192         * src/pic/gen.h,
6193         * src/pic/glue.c,
6194         * src/pic/main.c,
6195         * src/pic/pcode.c,
6196         * src/pic/pcode.h,
6197         * src/pic/pcodepeep.c,
6198         * src/pic/pcoderegs.c,
6199         * src/pic/ralloc.c,
6200         * src/pic/ralloc.h: applied patch from Slade Rich;
6201         added support for multiple code pages and multiple RAM banks on the
6202         PIC 14 port. The ASM files now no longer simply assume all the
6203         code / RAM are in the same page / bank. This means the linker can
6204         safely allocate code/RAM of separate ASM files to different pages/banks.
6205         * doc/sdccman.lyx: added Slade's tips
6206         * src/mcs51/peeph.def: fixed bug #880768
6207
6208 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6209
6210         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6211         * src/SDCCast.c (decorateType): fixed bug #880197
6212
6213 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6214
6215         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6216         getopt.h.
6217
6218         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6219         strtof is not part of C89 and isn't included with Mac OS X.
6220
6221 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6222
6223         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6224         shiftL2Left2Result): fixed bug #879326
6225         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6226         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6227         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6228         address fetch for clr instruction
6229         * device/lib/hc08/_mulint.c: created optimized assembly version
6230         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6231
6232 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6233
6234         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6235         proposed in FR #877103
6236
6237 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6238
6239         * src/SDCCval.c (cheapestVal): added missing checks
6240         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6241         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6242
6243 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6244
6245         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6246         equal operands
6247
6248 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6249
6250         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6251         loaded with the linker search paths (-L arguments) and the libraries
6252         to be linked with the current source (-l arguments). Changes
6253         currently will affect only the pic16 port.
6254         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6255         include path the port specific paths and port specific libraries,
6256         * gplink command now contains the $3 argument,
6257         * src/pic16/device.h,
6258         * src/pic16/device.c,: structure PIC_device is made public and
6259         renamed to PIC16_device, the same for variable Pics which is renamed
6260         to Pics16. Updated all references to them.
6261         * src/pic16/glue.c (pic16glue): corrected bug with code
6262         initialization which bypassed the variable initializations block.
6263
6264         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6265         COMPILE_FLAGS and added the --nostdinc option
6266
6267 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6268
6269         * device/include/mc68hc908jb8.h: Register defs for another member
6270         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6271
6272 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6273
6274         Documenting changes from previous commits.
6275         * configure.in (version 1.56),
6276         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6277         when generating output files to configure the pic16 library,
6278         but now I've commented it out, since gputils aren't installed in the
6279         SF compile farm, so library won't compile
6280
6281         * device/lib/Makefile.in (version 1.56): initially I've added in
6282         target 'all' the prerequestive 'model-pic16' so it compiled the
6283         pic16 library, but now I've commented it out for the same reasons
6284         above,
6285         * added targets 'model-pic16' and 'objects-pic16' to compile the
6286         library
6287         * added target 'port-specific-objects-pic16' to handle the
6288         generated libraries and copy them into the build/ directory
6289         * added target 'clean-intermediate-pic16' to clean intermediate
6290         files into pic16 directory
6291         * in target 'installdirs' added line to create directory pic16 in
6292         the installation path
6293
6294         * device/include/Makefile.in (version 1.11): in target 'install'
6295         added lines to copy all header files to installation path,
6296         * in target 'installdirs' added line create directory for pic16
6297         headers in the installation path
6298
6299 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6300
6301         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6302          a function call
6303
6304 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6305
6306         * configure,
6307         * device/lib/configure.in,
6308         * device/lib/configure: fixed for autoconf 2.57
6309
6310 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6311
6312         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6313         option so that it actually works. Made it specific to the z80, since
6314         the gbz80 doesn't have these kinds of I/O ports.
6315
6316 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6317
6318         * device/include/z180.h,
6319         * device/lib/_memcpy.c,
6320         * device/lib/_memmove.c,
6321         * device/lib/_mulint.c,
6322         * device/lib/ser_ir.c,
6323         * device/lib/ser_ir_cts_rts.c,
6324         * device/lib/_strcmp.c,
6325         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6326         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6327         portmode; added deprecation warning for bank= and protmode= forms.
6328         Also, guard against buffer overflow.
6329         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6330
6331 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6332
6333         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6334         changed interrupt vector table generation to only emit declared vectors.
6335         * device/include/Makefile.in: added missing backslash
6336         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6337
6338 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6339
6340         Mainly changes to support compilation of the device libraries
6341         * src/pic16/device.c: stack is allocated via symbol and not
6342         via literal number. The symbol is placed in the corresponding
6343         position of the data ram
6344         * (pic16_dump_section): relocatable and absolute uninitialized
6345         data are now emitted in sorted order to reduce section naming,
6346         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6347         weren't marked as being in the access bank,
6348
6349 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6350
6351         Added portion of GNU PIC Library under the directory
6352         device/include/pic16 and device/lib/pic16. These files
6353         contain the declarations of SFRs for the PIC18Fxx2 devices.
6354         The directory is initialized via configure from toplevel.
6355
6356 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6357
6358         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6359         the spilllocations to be compared correctly
6360
6361 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6362
6363         * src/SDCCast.c (decorateType): fixed bug introduced today
6364
6365 2004-01-12  Borut Razem <borut.razem AT siol.net>
6366
6367         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6368         doc/sdccman.lyx: upper case pragmas are deprecated
6369
6370 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6371
6372         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6373         in simpler and even better code
6374
6375 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6376
6377         * src/SDCCicode.c (operandOperation): fixed bug #874819
6378         * src/SDCCast.c (decorateType): fixed
6379         char foo (unsigned long ul) { return ul > 0; }
6380
6381 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6382
6383         * doc/sdccman.lyx: Moved and added some sections, small changes
6384         all over. Telling LaTeX to be less strict with word spacing
6385         to better keep the right margin. Changed some notes about
6386         maintainance of the ports in section 3.2.1 - is it OK like this?
6387
6388 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6389
6390         SDCC source changes:
6391         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6392         convilong): modified to inform the pic16 port that builtin functions
6393         are external
6394
6395         PIC16 PORT specific changes:
6396         * src/pic16/device.c pic16_dump_equates() added,
6397         processor registers declared internally by the port are emitted in
6398         the translation as equates,
6399         * src/pic16/gen.c: inline code is passed unprocessed to the
6400         translation,
6401         * (pic16_popGetLit2): fnuction modified to take second operand as
6402         pCodeOp pointer and not as literal,
6403         * (popRegFromIdx): prefixed with pic16_,
6404         * (pic16_popCombine2): modified to receive already allocated pCode
6405         operands,
6406         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6407         * (genFunction): initializes local stack frame and pushes on stack
6408         all the registers used by this function,
6409         * (genEndFunction): restores all registers from stack and restores
6410         stack frame,
6411         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6412         improvements,
6413         * (pic16glue): changed the program startup sequence,
6414         * added new dbName code 'A' for functions placed in absolute section
6415         * src/pic16/main.c: added function attribute _naked,
6416         * added pragma 'code' to place a fnuction at an absolute address,
6417         * added command line arguments --debug-ralloc and --pcode-verbose,
6418         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6419         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6420         * (pic16_newpCodeOpLit2): modified to take the second operand as
6421         pCodeOp pointer,
6422         * (pic16_printpBlock): modified to emit each function in a separate
6423         section,
6424         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6425         UPPER for immediate operands,
6426         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6427         instruction,
6428         * src/pic16/peeph.def: all peepholes with movff are commented out,
6429         because there is a problem in the pcode peep optimizer,
6430         * src/pic16/ralloc.c: the register allocator can now reuse local
6431         function symbols for another function. This saves register usage.
6432         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6433
6434         Added file src/pic16/NOTES with information about program writing on
6435         the current port version.
6436
6437 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6438
6439         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6440         and peephole 252 (array access)
6441
6442 2004-01-09  Borut Razem <borut.razem AT siol.net>
6443
6444         * src/SDCCmain.c : fixed #872250: -l command line defined library
6445           files are scanned before standard library files
6446
6447 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6448
6449         * src/SDCCast.c (decorateType): fixed bug #874046
6450
6451 2004-01-09  Borut Razem <borut.razem AT siol.net>
6452
6453         * support/scripts/sdcc.nsi: remove previous installation
6454
6455 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6456
6457         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6458         bytes for last interrupt vector (mcs51)
6459         * sdcc.spec: fixed typo
6460
6461 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6462
6463         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6464         gen51Code): more efficient parameter receive for --model-large
6465         ("bug" #845294)
6466
6467 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6468
6469         * src/ds390/main.c,
6470         * src/z80/main.c: added missed needLinkerScript flags (more than
6471         one port structure defined in these file)
6472         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6473         bug #795325
6474
6475 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6476
6477         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6478         * src/port.h: added flag needLinkerScript in port->linker
6479         structure to inform whether to create a .lnk file or not,
6480         * src/avr/main.c,
6481         * src/ds390/main.c,
6482         * src/hc08/main.c,
6483         * src/mcs51/main.c,
6484         * src/pic/main.c,
6485         * src/pic16/main.c,
6486         * src/xa51/main.c,
6487         * src/z80/main.c: changed appropriately to configure
6488         needLinkerScript flag
6489         * src/pic/gen.c,
6490         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6491         * src/pic/glue.c: added variable udata_section_name to
6492         override default uninitialized data segment definition for
6493         devices only with SHAREBANK memory (reported from Erik Epetrich)
6494         * (pic14emitOverlay): modified to emit a commented overlay segment
6495         directive when no overlay data exist
6496         * (picglue): modified to emit uninitialized data segment
6497         according to udata_section_name
6498         * src/pic/main.c (_pic14_parseOptions): added command line
6499         options --udata-section-name=[name] to override default
6500         udata definition name
6501         * modified _linkCmd and _asmCmd to include compiler passed
6502         arguments via -W option
6503         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6504         object file from '.rel' to '.o' in port->linker structure,
6505         changed size of fptr from 2 to 3 in port structure
6506
6507 2004-01-07  Borut Razem <borut.razem AT siol.net>
6508
6509         * support/scripts/sdcc.nsi: update PATH
6510         * support/scripts/sdcc.ico: craeted
6511
6512 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6513
6514         * device/include/Makefile.in: fix install
6515         * doc/Makefile: fix install
6516
6517 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6518
6519         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6520         in bug #860505
6521         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6522         how the function variable allocation summary is displayed; also
6523         include information about variables allocated to the overlay
6524         segment
6525
6526 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6527
6528         * as/mcs51/lkmain.c: Help about -Y option
6529         * as/mcs51/lkarea.c: Fixed gcc warnings
6530
6531 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6532
6533         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6534         fixed warning
6535         * support/valdiag/tests/overflow.c: added
6536         * src/SDCCast.c (decorateType),
6537         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6538         LEFT_OP (left shift)
6539
6540 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6541
6542         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6543         (default behaviour).
6544
6545 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6546
6547         A python script to validate compiler diagnostic messages. It can be
6548         used to verify that sdcc complains about bad c source code and
6549         gives a good location of the error.
6550         * support/valdiag/Makefile,
6551         * support/valdiag/valdiag.py,
6552         * support/valdiag/tests/*
6553
6554 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6555
6556         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6557         * src/SDCCsymt.c (newEnumType),
6558         * src/SDCCsymt.h
6559         * support/Util/SDCCerr.c,
6560         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6561         enum related bugs.
6562         * support/regression/tests/enum.c: added test for enum values that
6563         require at least 2 bytes of storage.
6564
6565 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6566
6567         * src/common.h: added ifndef/define/endif macros
6568         around the header file.
6569         Bug reported from Jesus Calvino-Fraga
6570
6571 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6572
6573         * sdcc.spec: updated
6574         * device/include/Makefile.in: don't install CVS directories
6575         * device/lib/Makefile.in: added removal of CVS directories after install
6576         * doc/Makefile: fixed install, added local_icons
6577         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6578         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6579         * src/ds390/gen.c (genRightShift): fixed bug #870788
6580         * src/SDCCast.c (decorateType): fixed bug #870781
6581
6582 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6583
6584         PIC16 port related changes:
6585         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6586         added variable stackPos,
6587
6588         * gen.c: genCall, assignResultValue: added support for
6589         pushing/retrieving function parameters to/from stack,
6590         genFunction,genEndFunction: setup stack frame for the
6591         generated function,
6592         genAddrOf: will be changed according to bug 863624
6593
6594         * added files genutils.c and genutils.h which contain gen*
6595         debugged and optimised functions extracted from gen.c
6596
6597         * glue.c: added variable 'externs' which holds extern symbols,
6598         pic16emitRegularMap: is modified to properly handle relocatable
6599          symbols under the new scheme,
6600         pic16createInterruptVect: is modified
6601         pic16printPublics: is modified to emit 'global' assembler directives,
6602         added pic16_printExterns to print extern symbols,
6603         pic16glue: initializes stack/frame pointer in the beginning of
6604         the assembly output. Temporary hack, will be corrected later,
6605         because gplink yet does not support stack and SDCC does not
6606         yet support a type of crt0.o object to create the final binary.
6607
6608         * Removed many lines that contain 8051 legacy code.
6609         * The code is finally placed under a 'code' directive.
6610         * Added port specific options.
6611
6612         * _process_pragma: simplified since now we do not need *special*
6613         include file to define SFR registers. But a separate header
6614         will be needed. This will be developed later.
6615         * _pic16_parseOptions: added, parses port specific options:
6616         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6617         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6618         --preplace-udata-with=
6619
6620         * _pic16_setDefaultOptions: modified to initialize section names,
6621         but hack is temporarly out of order since it needs improvement.
6622         * _pic16_genAssemblerPreamble: configuration words are emitted by
6623         their address instead of their name. This part is incomplete and
6624         supports only the 18Fxx2 devices. Other devices will emit an error
6625         during assembly since they do not contain the same set of config
6626         registers
6627         * _pic16_genIVT: is modified,
6628
6629         * pcode.c: added definitions for some hardware registers that are needed
6630         for stack support
6631         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6632         All PCI entries are updated. Now LFSR is supported.
6633         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6634         * added pic16_newpCodeOpLit2 to support instructions with
6635         two literal arguments
6636         * pic16_pCode2str: corrected code that emits assembler instructions
6637         with two literal operands and those that have an access bit modifier
6638         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6639         this fixes a bug which caused some labels to be lost, when an
6640         assembler directive was added, i.e. banksel,
6641         * pic16_FixRegisterBanking: improved logic that causes the insertion
6642         of bank switching,
6643         * InlineFunction: functions that are called once, are not any more
6644         inlined. This can be a port option in the future,
6645
6646         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6647
6648         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6649         hold the corresponding uninitialized symbols,
6650         * pic16_allocProcessorRegister: registers have explicit marked the
6651         accessBank field,
6652         * pic16_allocInternalRegister: registers are explicit marked as
6653         not used,
6654         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6655         processing list, so bit registers were lost,
6656         *
6657
6658         * ralloc.h: added field 'accessBank' and original symbol operand
6659         in register definition,
6660         * removed the field isMapped from register definition,
6661
6662         ** Several functions have been removed from various sources:
6663         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6664         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6665         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6666         pic16_assignRelocatableRegisters
6667
6668         ** others have been introduced:
6669         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6670         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6671
6672 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6673
6674         * support/scripts/inc2h.pl: changed definition of BIT_AT
6675         to emit 'sbit at' instead of 'bit at'. This was a request.
6676
6677         PIC16 port related preliminary changes:
6678         * gen.c: prefixed function popRegFromString with
6679         pic16_ and all references to it corrected
6680         * pcode.c: all pic16_pc_* hardware registers prefixed
6681         with underscore (_),
6682         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6683         * ralloc.c: newReg(): when register is REG_SFR then
6684         set address to rIdx,
6685         pic16_allocProcessorRegister(): marks register wasUsed=0
6686         pic16_writeUsedRegs(): added a call to assign processor
6687         registers via pic16_assignFixedRegisters
6688
6689 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6690
6691         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6692         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6693         variables in unused register banks.  Also the SSEG is placed
6694         wherever there is enough space for it, and IDATA can be anywhere
6695         in internal RAM.  For now compile using -Wl-Y[stack_size].
6696         The mem file is different for this option as well, since it
6697         makes no sense of talking about DSEG lenght.
6698
6699 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6700
6701         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6702         in certain cases, e.g. when ROM assignment, patch provided
6703         from Albert den Haan.
6704
6705 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6706
6707         Many signedness and type propagation fixes:
6708         * src/SDCCicode.c: made geniCodeCast() static
6709         replaced SPEC_ by IS_ (cosmetic)
6710         (operandOperation): fixed div and mod operation
6711         (usualBinaryConversions): added support for promotion of char
6712         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6713         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6714         (geniCodeAdd): an array index will stay unsigned, even if promoted
6715         from char to int
6716         (geniCodeArray): ditto
6717         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6718         * src/SDCCsymt.c (computeType): added more support for char;
6719         promotion of char is selectable by promoteCharToInt, fixed signedness
6720         for all cases
6721         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6722         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6723         * src/SDCCval (val*): replaced signedness calculation by
6724         computeType()
6725         rearranged if-branches (cosmetic)
6726         (valShift): added warning W_SHIFT_CHANGED
6727         (valCompare): fixed problem with different types
6728         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6729         * support/regression/tests/literalop.c: added many cases
6730         * support/regression/tests/ast_constant_folding.c: changed finally to
6731         'unsigned int'
6732         * .version: new year, new version: 2.3.7
6733         * src/SDCCmain.c (main): applied patch #866468
6734         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6735         provided by Scott Bronson
6736         * doc/sdccman.lyx: updated documentation for sdcdb
6737         updated and added chapter tips
6738
6739 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6740
6741         * src/SDCCsymt.h: missing from yesterday's commits
6742
6743 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6744
6745         * src/SDCC.y (struct_or_union_specifier),
6746         * support/Util/SDCCerr.c,
6747         * support/Util/SDCCerr.h: verify that struct & union tags are used
6748         as declared.
6749
6750 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6751
6752         * src/SDCCglobl.h: missing from yesterday's commits
6753
6754 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6755
6756         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6757         sft_attributes, struct_declaration, parameter_declaration,
6758         type_name, start_block, declaration_list),
6759         * src/SDCC.lex (check_type): support redefinition of typedef names
6760
6761 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6762
6763         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6764         aligned xdata arrays. Erik helped me with the if clause.
6765
6766 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6767
6768         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6769         warning
6770
6771 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6772
6773         * src/SDCCast.h,
6774         * src/SDCCast.c (newAst_),
6775         * src/SDCCicode.h,
6776         * src/SDCCicode.c (ast2iCode, newiCode),
6777         * src/SDCCglobl.h,
6778         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6779         expr, statement, expression_statement, selection_statement,
6780         iteration_statement, expr_opt, jump_statement): foundation for tracking
6781         sequence points
6782         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6783         point code too)
6784
6785 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6786
6787         * support/Util/SDCCerr.c,
6788         * src/SDCCast.h,
6789         * src/SDCCast.c (createCase, createDefault, decorateType),
6790         * src/SDCClabel.c (labelUnreach),
6791         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6792         to error messages.
6793         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6794         (with thanks to Stas Sergeev)
6795         * device/include/time.h,
6796         * device/lib/time.c (CheckTime): suppress unreachable code warning
6797
6798 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6799
6800         * src/SDCCast.c (createIvalCharPtr),
6801         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6802         bug #753752)
6803         * support/regression/tests/nullstring.c: tests for these two bugs
6804
6805 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6806
6807         * support/Util/SDCCerr.h,
6808         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6809         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6810         about storage class and 'at' used inside struct or union
6811         * src/SDCCBBlock.c (iCodeFromeBBlock),
6812         * src/SDCCcse.c (ifxOptimize),
6813         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6814         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6815         printIval, emitStaticSeg, emitOverlay),
6816         * src/SDCClabel.c (deleteIfx),
6817         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6818         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6819         gatherAutoInit, processParms),
6820         * support/Util/SDCCerr.h,
6821         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6822         reporting for post-parse errors.
6823
6824 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6825
6826         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6827         implicit casts via union; they don't work on big endian systems
6828         (possible fix for bug #861138)
6829
6830 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6831
6832         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6833         * src/mcs51/main.c: fixed the fix for bug #737001
6834
6835 2003-12-15  Borut Razem <borut.razem AT siol.net>
6836
6837         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6838
6839 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6840
6841         * support/makebin/makebin.c: put output in binary mode
6842
6843 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6844
6845         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6846         xdata and data memory on startup. Set the environment variable
6847         SDCC_NOGENRAMCLEAR to disable this.
6848         * src/mcs51/peephole.def,
6849         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6850         (allows non-interrupt and interrupt code to safely compete for a resource
6851         without the non-interrupt code having to disable interrupts)
6852
6853 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6854
6855         * src/SDCCicode.c (geniCodeAdd),
6856         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6857         with valFromType if type might be a pointer and host is big endian).
6858         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6859         types, not just integer types.
6860         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6861         multiply defined with mismatching "at" address.
6862
6863 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6864
6865         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6866         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6867         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6868         with embedded nulls (fixed bug #753752)
6869
6870 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6871
6872         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6873         Apparently this did not see much testing (endless loop)
6874
6875 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6876
6877         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6878
6879 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6880
6881         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6882         gracefully handle NULL memmap pointers
6883
6884 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6885
6886         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6887         instead of deleting the iCode when an operand is volatile
6888         * src/z80/gen.c (genDummyRead),
6889         * src/mcs51/gen.c (genDummyRead),
6890         * src/ds390/gen.c (genDummyRead),
6891         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6892         not just IC_RIGHT
6893         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6894         * src/SDCC.y: fixed bug #850420
6895
6896 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6897
6898         Applied z80 i/o port patch from Peter Townson and fixed some operators
6899         to better handle operands in A register.
6900         * device/include/z180.h
6901         * src/SDCC.y
6902         * src/SDCCglue.c
6903         * src/z80/gen.c
6904         * src/z80/gen.h
6905         * src/z80/main.c
6906         * src/z80/peeph-z80.def
6907         * src/z80/peeph.def
6908         * src/z80/z80.h
6909
6910 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6911
6912         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6913
6914 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6915
6916         * device/lib/hc08/_mullong.c: Removed extra #endif
6917
6918 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6919
6920         * sim/ucsim/hc08.src/inst.cc,
6921         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6922         carries from x to h
6923         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6924         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6925         * device/include/stdarg.h: fixed varargs for hc08
6926         * device/lib/Makefile.in,
6927         * device/lib/hc08/Makefile,
6928         * device/lib/hc08/_mulint.c,
6929         * device/lib/hc08/_mullong.c: fixed some endian problems
6930
6931 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6932
6933         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6934         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6935         * device/lib/_gptrget.c,
6936         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6937
6938 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6939
6940         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6941         * src/SDCCast.c (astErrors): fixed bug #846007
6942         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6943
6944 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6945
6946         * src/SDCCast.c (decorateType): disabled a transformation I added in
6947         revision 1.188 (access to fields of a structure at an absolute address);
6948         it breaks with bitfields, extern declarations, and gcse analysis.
6949         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6950         could be assigned through a pointer, so don't complain.
6951         * src/SDCCast.c (astErrors),
6952         * src/SDCCast.h,
6953         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6954
6955 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6956
6957         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6958         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6959         output of __config directives, since gpasm now supports them
6960         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6961         pre-processor macro, i.e. -DMCU=p18f452
6962         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6963         and modified to handle 'cast' icode similarly to '=' icode
6964         * src/pic16/device.h (typedef struct PIC_device): added field
6965         'extMIface' to indicate that chip has external memory interface
6966         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6967         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6968         18F8720
6969
6970 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6971
6972         * src/SDCC.y (pointer): fixed bug #846006
6973         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6974         * src/SDCCast.c (decorateType): fixed bug #846009
6975         * src/ds390/peeph.def,
6976         * src/ds390/gen.c (genAnd, genOr),
6977         * src/mcs51/peeph.def,
6978         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6979
6980 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6981
6982         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6983         * src/SDCCdflow.c
6984         * src/SDCCcse.c
6985         * src/SDCCcse.h
6986         * src/SDCCBBlock.h
6987         * src/SDCCBBlock.c
6988
6989 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6990
6991         fixed bug #845089
6992         * src/SDCCbitv.h,
6993         * src/SDCCbitv.c: added function to free a bitvector
6994         * src/SDCClrange.h,
6995         * src/SDCClrange.c: added function to recompute the liveranges
6996         * src/avr/ralloc.c,
6997         * src/ds390/ralloc.c,
6998         * src/hc08/ralloc.c,
6999         * src/mcs51/ralloc.c,
7000         * src/pic/ralloc.c,
7001         * src/pic16/ralloc.c,
7002         * src/xa51/ralloc.c,
7003         * src/z80/ralloc.c: recompute the liveranges after register packing
7004
7005 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7006
7007         * src/SDCCloop.c (newInduction): fixed bug #845630
7008
7009 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7010
7011         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7012         inadvertantly left behind from my 2003-11-12 change
7013
7014 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7015
7016         Updated headers I neglected to commit yesterday.
7017         * src/SDCClrange.h,
7018         * src/SDCCicode.h
7019
7020 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7021
7022         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7023         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7024         * src/SDCCopt.c (eBBlockFromiCode),
7025         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7026         the creation of the key hash table from the sequencing so it can be used
7027         earlier (for some GCSE bug fixes still pending)
7028
7029 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7030
7031         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7032         * support/regression/tests/addsub.c: testing genPlus shortcut
7033
7034 2003-11-15  Borut Razem <borut.razem AT siol.net>
7035
7036         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7037
7038 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7039
7040         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7041         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7042         ordering is immaterial.
7043         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7044
7045 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7046
7047         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7048         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7049         (SIGSEV) of bug #840381
7050         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7051         unlink new file before rename if new and old filenames are the same)
7052
7053 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7054
7055         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7056         uninitialized variables) for the mcs51. Set environment variable
7057         SDCC_GENRAMCLEAR to test.
7058         xdata initialization slightly shorter
7059
7060 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7061
7062         * src/SDCCsymt.h,
7063         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7064         #838241 & 780691 (basicly the same bug)
7065         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7066         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7067
7068 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7069
7070         * src/SDCCmain.c (linkEdit): "fix" #834252
7071
7072 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7073
7074         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7075         * src/SDCCast.h,
7076         * src/SDCC.y: fixed bug #819403
7077
7078 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7079
7080         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7081         the reentrant attribute.
7082         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7083         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7084         simulation
7085         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7086         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7087         erroneously reduced to a literal.
7088         * src/hc08/ralloc.c (packRegisters, rematStr),
7089         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7090         some cases
7091
7092 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7093
7094         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7095         * doc/sdccman.lyx: changed from 'article' to 'book'
7096         * doc/Makefile: readded test_suite_spec and cdbfileformat
7097
7098 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7099
7100         * device/include/stdlib.h: include malloc.h to comply with ANSI
7101         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7102
7103 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7104
7105         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7106         * doc/clean.mk: also remove *.out files
7107         * doc/sdccman.lyx: some additions, larger top/bottom margins
7108
7109 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7110
7111         * src/SDCC.y: fixed bug #837365
7112         * support/regression/tests/bitopcse.c
7113         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7114         a symbol (might be valop instead)
7115         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7116         * device/lib/clean.mk: added hc08 to the cleaning list
7117
7118 2003-11-04  Borut Razem <borut.razem AT siol.net>
7119
7120         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7121           made 2003-11-04
7122         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7123           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7124           malloc is declared in standard stdlib.h
7125
7126 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7127
7128         * device/lib/hc08/Makefile: need to clean .rel not .o files
7129         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7130
7131 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7132
7133         * src/port.h,
7134         * src/hc08/main.c,
7135         * src/mcs51/main.c,
7136         * src/ds390/main.c,
7137         * src/z80/main.c,
7138         * src/avr/main.c,
7139         * src/pic/main.c,
7140         * src/pic16/main.c,
7141         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7142         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7143         tests (which uses the port's oclsExpense function)
7144         * src/SDCC.y,
7145         * src/SDCCast.c,
7146         * src/SDCCicode.c,
7147         * src/hc08/gen.c,
7148         * src/ds390/gen.c,
7149         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7150
7151 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7152
7153         * src/SDCCcse.c (ifxOptimize),
7154         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7155         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7156         deleting the IFX iCode.
7157         * src/hc08/ralloc.c: reduced unneeded slocs
7158         * src/hc08/gen.c: fixed bug in asmopToBoolean
7159
7160 2003-11-04  Borut Razem <borut.razem AT siol.net>
7161
7162         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7163           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7164           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7165           transferred to configure
7166
7167 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7168
7169         Use headers defined in the C[++] standards:
7170         * sim/ucsim/gui.src/serio.src/fileio.cc
7171         * sim/ucsim/gui.src/serio.src/frontend.cc
7172         * sim/ucsim/gui.src/serio.src/main.cc
7173         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7174         * support/Util/NewAlloc.c
7175         * as/hc08/lklibr.c
7176         * as/mcs51/lklibr.c
7177         * as/z80/aslist.c
7178         * as/z80/assym.c
7179
7180 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7181
7182         * Added MSVC projects for hc08 assembler and linker:
7183         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7184         /as/hc08/link_hc08.dsp
7185
7186 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7187
7188         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7189
7190 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7191
7192         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7193
7194 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7195
7196         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7197
7198 2003-10-31  Borut Razem <borut.razem AT siol.net>
7199
7200         * support/cpp2/cpplib.h,
7201           support/cpp2/cpplib.c,
7202           support/cpp2/cpplex.c,
7203           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7204           to switch _asm block preprocessing on / off. Default is
7205           #pragma preproc_asm +
7206
7207 2003-10-31  Borut Razem <borut.razem AT siol.net>
7208
7209         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7210           when outputting comment blocks (when executed with -C option) and
7211           _asm (SDCPP specific) blocks
7212
7213 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7214
7215         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7216
7217 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7218
7219         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7220
7221 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7222
7223         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7224         * src/SDCCast.c (decorateType): fixed bug #832664
7225
7226 2003-10-31  Borut Razem <borut.razem AT siol.net>
7227
7228         * support\cpp2\cpplex.c: fixed for SDCPP:
7229           comments(when executed with -C option) and _asm blocks
7230           were included even if they where in skipped #if block.
7231           Applied solution from GCC cpp 3.3.2
7232
7233 2003-10-31  Borut Razem <borut.razem AT siol.net>
7234
7235         * src/SDCC.lex: sdcc now understands both formats:
7236           '# <line_number> <file_name>' and
7237           '#line <line_number> <file_name>'
7238         * support/cpp2/cppmain.c: sdcpp now generates the standard
7239           '# <line_number> <file_name>' instead of former
7240           '#line <line_number> <file_name>'
7241
7242 2003-10-30  Borut Razem <borut.razem AT siol.net>
7243
7244         * support/cpp2/cpphash.h,
7245         * support/cpp2/cpplib.h
7246         * support/cpp2/cpplex.c,
7247         * support/cpp2/cppmain.c,
7248         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7249
7250 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7251
7252         Fixed a number of problems revealed by bug #827883.
7253         * src/SDCCloop.c (loopInvariants): Spill location of the
7254         result operand should be recomputed if extracted from
7255         a loop. Also, don't extract assignments of an iTemp
7256         from a literal.
7257         * src/SDCCast.c (isConformingBody): loop reversal should
7258         not occur if the control variable is involved with a
7259         relational operator.
7260
7261 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7262
7263         * .version: bumped to 2.3.6 to reflect the big improvements
7264         made by Erik and Klaus. Thanks!
7265
7266 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7267
7268         Replaced the livrange code.
7269         * src/SDCClrange.c: added new LR code
7270         * src/SDCCloop.c,
7271         * src/SDCCBBlock.h: removed remainig parts from old LR code
7272         * src/ds390/ralloc.c,
7273         * src/ds390/gen.c: minor fixes to make it work with new code
7274
7275 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7276
7277         * as/hc08/asm.h,
7278         * as/hc08/lkrloc.c,
7279         * src/hc08/gen.c,
7280         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7281         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7282         (tweaked fix for bug #818696)
7283
7284 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7285
7286         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7287
7288 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7289
7290         * src/SDCCmain.c,
7291         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7292         * src/mcs51/gen.c (gencjneshort),
7293         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7294         more efficient (per Scott Bronson's suggestion)
7295
7296 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7297
7298         Extended the semantics of the critical keyword to include
7299         individual statements. See RFE #827755 and #799831
7300         * src/SDCC.y
7301         * src/SDCCicode.c
7302         * src/SDCCopt.c
7303         * src/SDCCast.c
7304         * support/Util/SDCCerr.c
7305         * support/Util/SDCCerr.h
7306         * src/mcs51/gen.c
7307         * src/ds390/gen.c
7308         * src/hc08/gen.c
7309
7310 2003-10-19  Borut Razem <borut.razem AT siol.net>
7311
7312         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7313
7314 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7315
7316         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7317         Fixed bug #818696
7318         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7319         and predecrement operand is displayed
7320
7321 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7322
7323         * src/SDCCval.c (valMinus): fixed bug #826041
7324
7325 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7326
7327         Some hc08 related updates that I missed earlier
7328         * sim/ucsim/stypes.h
7329         * support/regression/ports/hc08/spec.mk
7330
7331 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7332
7333         New target "hc08" for the Motorola 68hc08 family of micros
7334
7335         * configure
7336         * configure.in
7337         * Makefile
7338         * src/hc08/*
7339         * src/SDCCmain.c
7340         * src/port.h
7341         * sim/ucsim/hc08.src/*
7342         * sim/ucsim/configure.in
7343         * src/ucsim/configure
7344         * sim/ucsim/packages_in.mk
7345         * as/hc08/*
7346         * as/Makefile
7347         * device/include/mc68hc908qy.h
7348         * device/lib/hc08/*
7349         * device/lib/Makefile.in
7350         * support/regression/ports/hc08/*
7351         * support/regression/Makefile
7352
7353 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7354
7355         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7356         regression test
7357         * src/ds390/gen.c (genCast): fixed bug #821957
7358
7359 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7360
7361         * device/lib/logf.c: "fixed" overlay bug
7362         * support/regression/ports/host/spec.mk: added m library
7363         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7364         * support/regression/tests/float_trans: added (for Eric)
7365
7366 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7367
7368         * src/mcs51/gen.c (genCpl): fixed bug
7369         http://sf.net/mailarchive/message.php?msg_id=6263915
7370
7371 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7372
7373         * src/SDCCast.c (decorateType): added extended constant folding
7374         * src/SDCCsymt.c (computeType): cleanup
7375         * src/SDCCval.c (valShift): minor optimization
7376         * support/regression/tests/ast_constant_folding.c: added
7377
7378 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7379
7380         * src/SDCCmain.c: removed some unintended changes
7381
7382 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7383
7384         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7385         * src/z80/gen.c: fixed part of bug #817589
7386         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7387
7388 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7389
7390         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7391         * src/SDCCcflow.c
7392         * src/SDCCcse.c
7393         * src/SDCCdflow.c
7394         * src/SDCClabel.c
7395         * src/SDCClrange.c
7396         * src/SDCCmem.c
7397         * src/SDCCopt.c
7398         * src/SDCCpeeph.c
7399         * src/SDCCset.c
7400         * src/avr/ralloc.c
7401         * src/ds390/ralloc.c
7402         * src/izt/ralloc.c
7403         * src/mcs51/ralloc.c
7404         * src/pic/ralloc.c
7405         * src/pic16/ralloc.c
7406         * src/xa51/ralloc.c
7407         * src/z80/ralloc.c
7408         * src/z80/gen.c: removed unused label "release:"
7409
7410 2003-10-06  Borut Razem <borut.razem AT siol.net>
7411
7412         * src/SDCC.lex: removed definition of unused variables
7413           save_optimize and save_options
7414
7415 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7416
7417         * clean.mk: removed '=' in "-maxdepth=1"
7418         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7419         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7420
7421 2003-10-06  Borut Razem <borut.razem AT siol.net>
7422
7423         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7424           my_unput() replaced by unput()
7425
7426 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7427
7428         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7429         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7430         type-punned pointer will break strict-aliasing rules"
7431         Old LR behaviour is again default; Klaus' LR can be choosen by
7432         defining the environment variable LRKLAUS
7433         * src/SDCCBBlock.h
7434         * src/SDCCloop.c
7435         * src/SDCClrange.c
7436         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7437         * clean.mk: fixed removal of files in bin/CVS/
7438         * device/lib/clean.mk: fixed removal of directories small and large
7439         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7440         * src/SDCCicode.c,
7441         * src/SDCCval.c: removed superflous test for pedantic
7442
7443 2003-10-05  Borut Razem <borut.razem AT siol.net>
7444
7445         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7446           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7447           message "unmatched #pragma SAVE and #pragma RESTORE"
7448
7449 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7450
7451         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7452           assembly, critical functions, atomic, nojtbound)
7453
7454 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7455
7456         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7457         * src/SDCCBBlock.h
7458         * src/SDCCloop.c
7459         * src/SDCCloop.h
7460         * src/SDCClrange.c
7461
7462 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7463
7464         * src/z80/gen.h,
7465         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7466         * src/mcs51/gen.h
7467         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7468         * src/ds390/gen.h
7469         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7470         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7471         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7472
7473 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7474
7475         * src/z80/gen.c (genRet): fixed bug #524753
7476         * src/z80/gen.c (genCast): fixed internal error on cast from
7477         pointer to long
7478         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7479         fix for bug #477835 to the z80
7480         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7481         for tracking iCodes in the peephole optimizer for z80
7482
7483 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7484
7485         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7486         the other part of bug #814548
7487         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7488
7489 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7490
7491         * src/SDCCcse.c: fixed part of bug #814548
7492
7493 2003-09-28  Borut Razem <borut.razem AT siol.net>
7494
7495         * src/asm.c: rewrite of printILine() to use temporary file instead
7496           a pipe
7497         * src/xa51/main.c: commented out declaration of int rewinds
7498
7499 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7500
7501         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7502
7503 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7504
7505         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7506         * src/asm.c (printILine): Fixed bug #811015
7507
7508 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7509
7510         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7511         freeing.
7512
7513 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7514
7515         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7516         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7517         to correctly handle general case of AOP_PAIRPTR
7518         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7519
7520 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7521
7522         * src/mcs51/ralloc.c (fillGaps),
7523         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7524         register positioning bug)
7525
7526 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7527
7528         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7529
7530 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7531
7532         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7533         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7534         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7535         (ralloc doesn't intentionally do this now, but perhaps later)
7536         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7537         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7538         register positioning bugs (Fixed bug #762602 and #795325)
7539         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7540         (Fixed bug #808779)
7541         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7542         lines that --i-code-in-asm generates
7543
7544 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7545
7546         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7547         trying to fclose a FILE* that was already closed.
7548
7549 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7550
7551         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7552         of const struct should be treated as if const themselves)
7553
7554 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7555
7556         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7557
7558 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7559
7560         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7561         Unix (/n) and DOS (/r/n) line terminations.
7562
7563 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7564
7565         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7566         bug #613775
7567
7568 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7569
7570         * src/mcs51/gen.c (genFunction, genEndFunction),
7571         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7572         and restore of EA so that stack offsets to parameters are
7573         correct when using both critical and reentrant/stack-auto.
7574         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7575         size (can be triggered in error if sloc is shared between
7576         different sized objects)
7577         * device/include/float.h: fixed macros to explicitly use
7578         unsigned long where needed
7579
7580 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7581
7582         Feature req. 799831: added code to allow nesting of critical functions
7583         * src/mcs51/gen.c (genFunction, genEndFunction)
7584         * src/ds390/gen.c (genFunction, genEndFunction)
7585
7586 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7587
7588         * src/SDCCsymt.c (sclsFromPtr),
7589         * src/SDCCsymt.h,
7590         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7591         support for standard C idiom of memory mapped variables; for
7592         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7593         to xdata int at 0x1234 tempvar = 1.
7594         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7595         provided by Akiya ISHIDA
7596
7597 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7598
7599         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7600         * src/SDCCval.c (constVal): added reduction from int to char
7601         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7602         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7603         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7604         to ignore the sign
7605         * support/regression/tests/shifts.c: fixed
7606
7607 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7608
7609         * src/z80/gen.c (genXor): Fixed bug #805445
7610
7611 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7612
7613         Fixed bug #621531 (const & volatile confusion in the type chain).
7614         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7615         refer to the const or volatile state of the pointer itself.
7616
7617         * src/SDCCast.c
7618         * src/SDCCglue.c
7619         * src/SDCCicode.c
7620         * src/SDCCsymt.c
7621         * src/SDCCval.c
7622         * src/SDCC.y
7623         * src/SDCCsymt.h
7624         * src/pic/gen.c
7625         * src/pic/ralloc.c
7626         * src/pic16/gen.c
7627         * src/pic16/ralloc.c
7628         * support/regression/tests/const.c
7629
7630 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7631
7632         When checking for duplicated modules, use absolute paths
7633         instead of relative paths.  Files changed:
7634
7635         * as/mcs51/lklib.c
7636         * link/z80/lklib.c
7637
7638 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7639
7640         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7641
7642 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7643
7644         * device/include/string.h: added size_t typedef, changed
7645         prototypes to use size_t, eliminated separate reentrant and
7646         non-reentrant declarations, added _memmove declaration
7647         * device/lib/_memcpy.c: changed to use size_t instead of int,
7648         changed /4 to >>2 to avoid division library call
7649         * device/lib/_memcmp.c,
7650         * device/lib/_memset.c,
7651         * device/lib/_strncat.c,
7652         * device/lib/_strncpy.c,
7653         * device/lib/_strncmp.c: changed to use size_t instead of int
7654         * device/lib/_memmove.c: new file (fixed bug #772294)
7655         * device/lib/Makefile.in: added _memmove.c
7656         * device/lib/z80/asm_strings.s: fixed bug #772290
7657         * support/regression/tests/bitfields.c: attempt to fix host assertion
7658         failure on amd64-unknown-linux2.2
7659
7660 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7661
7662         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7663         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7664         * as/z80/asmain.c (main): fixed bug #801766
7665
7666 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7667
7668         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7669         compilers
7670
7671 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7672
7673         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7674         reported in bug #800609
7675
7676 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7677
7678         * Top header beautifications in src/pic16 directory:
7679           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7680           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7681           pcoderegs.h, ralloc.c, ralloc.h
7682         * main.c: added top header and GPL license notice
7683         * pcode.c: fixed the if-conditional warning
7684
7685 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7686
7687         * device/lib/_mullong.c: replaced int by short for gcc
7688
7689 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7690
7691         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7692         and JUMPTABLE iCodes properly now (worked by accident before)
7693         * src/mcs51/gen.c (leftRightUseAcc),
7694         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7695         iCode properly now. Use getSize instead of nRegs since a & b
7696         aren't part of the nRegs tally.
7697
7698 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7699
7700         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7701         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7702           before instructions that use the _STATUS register
7703
7704 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7705
7706         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7707         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7708         fetching of the pointer
7709         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7710         copied from genNearPointerSet()
7711         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7712         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7713         If they pop r0/r1 they must be called in the opposite order than aopOp().
7714         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7715         (resp. --stack-auto), prepared for --xstack
7716
7717 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7718
7719         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7720
7721 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7722
7723         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7724         these ports have their own __sdcc_external_start()
7725
7726 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7727
7728         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7729         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7730         type for bits was changed. It resulted in bit variables becoming
7731         global, which is not permitted in PIC 14 assembly output.
7732
7733 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7734
7735         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7736
7737 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7738
7739         Z80 and MCS51 linkers complaint if a public symbol is defined
7740         in more than one library module:
7741
7742         * as/mcs51/lklib.c
7743         * link/z80/lklib.c
7744         * as/mcs51/Makefile.in
7745
7746 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7747
7748         A few small changes that speed up the peephole optimizer.
7749
7750         * src/SDCCpeeph.c
7751
7752 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7753
7754         Try to make the peephole optimizer smarter by maintaining
7755         an association between the assembly source code and the
7756         iCodes that originated them. Put this information to use
7757         with a new peephole rule condition "notVolatile" so that
7758         the rules can be aggressive yet still safe.
7759
7760         * src/SDCCpeeph.c
7761         * src/SDCCpeeph.h
7762         * src/mcs51/gen.c
7763         * src/mcs51/peeph.def
7764
7765 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7766
7767         Fixed bug #741761
7768
7769         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7770         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7771         if the left or right operand symbols have the accuse flag set.
7772
7773 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7774
7775         Changed the type of the result of the ! (NOT) operator to char;
7776         previously it returned the same type as the source. This allows
7777         us to eliminate all the genFloatNot functions (all of its target
7778         implementations were very buggy) since !float can use the same
7779         code as !long now.
7780
7781         * src/SDCCicode.c (ast2iCode): ! returns char
7782         * src/mcs51/gen.c (genNot, genNotFloat),
7783         * src/ds390/gen.c (genNot, genNotFloat),
7784         * src/z80/gen.c (genNot, genNotFloat),
7785         * src/pic/gen.c (genNot, genNotFloat),
7786         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7787
7788 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7789
7790         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7791         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7792            during interrupts. Ensure WSAVE is located at a shared bank address.
7793         2. Fixed page selection in some places
7794         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7795            the registers name strings.
7796         4. Fixed "signed / unsigned compare" compiler warnings.
7797         5. The PIC port manages its own allocation of the general purpose
7798            registers, but makes no attempt to reuse them. As a result when
7799            compiling it soon runs out of general purpose registers. Some
7800            additional code was added to the files pcode.c and device.c to walk
7801            through the function call tree and rename the registers so that they
7802            get reused.
7803
7804         * src/pic/device.c
7805         * src/pic/gen.c
7806         * src/pic/glue.c
7807         * src/pic/pcode.c
7808         * src/pic/pcode.h
7809         * src/pic/ralloc.c
7810         * src/pic/ralloc.h
7811         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7812         genPlus() & genMinus() when the result is the same as left or right
7813
7814 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7815
7816         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7817
7818 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7819
7820         Made bitfield a distinct type from bit so that bitfields
7821         convert as per ANSI C and bits retain their traditional
7822         boolean style behaviour. Implemented bitfield support in
7823         the z80 port.
7824
7825         * src/SDCCsymt.h,
7826         * src/SDCCsymt.c,
7827         * src/SDCCast.c,
7828         * src/cdbFile.c,
7829         * src/mcs51/gen.c,
7830         * src/ds390/gen.c: bit v bitfield split
7831         * src/z80/gen.c: New support for bitfields
7832         * support/regression/tests/bitfields.c: reenabled z80,
7833         added more tests
7834
7835 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7836
7837         Rules 246.x, 247.x relate to bitfields, the others speed up
7838         access to xdata mapped I/O devices.
7839
7840         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7841
7842 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7843
7844         Cleaned up genPackBits and genUnpackBits and added two helper
7845         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7846         for literal assignments in genPackBits (thanks to Frieder for
7847         reminding me).
7848
7849         * src/mcs51/gen.c
7850         * src/ds390/gen.c
7851
7852 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7853
7854         Fixed bug #748310 (pointer to function type mishandled when the
7855         function name is omitted). Also fixed a SIGSEGV when a function
7856         attribute (reentrant, etc) is used on a non-function or on a
7857         function but misplaced before the parameter list.
7858
7859         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7860         bug #748310
7861         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7862         * support/Util/SDCCerr.h,
7863         * support/Util/SDCCerr.c: Added func attr misuse error msg
7864
7865 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7866
7867         Fixed bug #787649 by anonymous
7868         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7869         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7870
7871 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7872
7873         Fixed numerous bitfield problems.
7874
7875         * src/SDCC.y: More bitfield related error checking
7876         * src/SDCCsymt.h,
7877         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7878         * support/Util/SDCCerr.h,
7879         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7880         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7881         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7882         * support/regression/tests/bitfields.c: tests added
7883
7884 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7885
7886         Made the constant following the "interrupt" keyword optional. If
7887         omitted, the function will not automatically be given an entry
7888         in the interrupt vector table (similar to #pragma NOIV, but
7889         less syntacticly kludgy). The interrupt number is also now
7890         range checked. Also fixed a bug in the high order bit example
7891         in the manual.
7892
7893         * src/SDCC.y
7894         * src/SDCCmem.c
7895         * src/SDCCglue.c
7896         * src/SDCCsymt.h
7897         * support/Util/SDCCerr.c
7898         * support/Util/SDCCerr.h
7899         * doc/sdccman.lyx
7900
7901 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7902
7903         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7904         * src/SDCCicode.c (operandOperation): rewritten some ops
7905         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7906         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7907         other type
7908         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7909         be re-activated by defining REDUCE_LITERALS)
7910         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7911         unsigned, but are signed by default
7912         * src/SDCCval.c (constVal): rearranged
7913         * src/SDCCval.c (valMod): preliminary fix
7914         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7915         * support/regression/literalop.c: added, work in progress
7916
7917 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7918
7919         Generate warnings for useless declarations like "char data;"
7920         that don't do what new users expect.
7921
7922         * src/SDCC.y
7923         * support/Util/SDCCerr.h
7924         * support/Util/SDCCerr.c
7925
7926 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7927
7928         * src/SDCCval.c (valMult): fix overflow detection of negative int
7929
7930 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7931
7932         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7933
7934         Changes to support big endian targets:
7935
7936         * src/ports.h
7937         * src/SDCCglue.c
7938         * src/avr/main.c
7939         * src/ds390/main.c
7940         * src/izt/i186.c
7941         * src/mcs51/main.c
7942         * src/pic/main.c
7943         * src/pic16/main.c
7944         * src/xa51/main.c
7945         * src/z80/main.c
7946
7947 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7948
7949         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7950         * device/lib/time.c: fixed warning "integer overflow in expression"
7951
7952 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7953
7954         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7955         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7956         constants are unsigned; added recognition of "u" flag for unsigned
7957         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7958         * src/SDCCval.c (valDiv, valMod): fixed signdness
7959         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7960         signedness of modulo, left and right shift
7961         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7962         * support/Util/SDCCerr.h: added warning W_INT_OVL
7963         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7964         * src/SDCCast.c (ast_print): improved output of constants
7965
7966 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7967
7968         Fixed some warnings when building with MSVC:
7969
7970         * as\mcs51\asdata.c
7971         * as\z80\asdata.c
7972         * as\mcs51\asm.h
7973         * as\z80\asm.h
7974         * link\z80\aslink.h
7975         * link\z80\lkdata.c
7976         * link\z80\lkeval.c
7977         * link\z80\lkgb.c
7978         * link\z80\lkihx.c
7979         * link\z80\lks19.c
7980         * link\z80\lksym.c
7981         * support\cpp2\cpplib.c
7982         * src\ds390\gen.c
7983         * src\mcs51\gen.c
7984
7985 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7986
7987         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7988
7989 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7990
7991         * support\librarian\clean.mk: Do not remove Makefile.
7992         * support\librarian\Makefile: added.
7993
7994 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7995
7996         Added librarian to MSVC build:
7997         * all.dsp
7998         * sdcc.dsw
7999         * support\librarian\librarian.dsp
8000
8001         'configure' not needed for librarian, removed:
8002         * support\librarian\configure
8003         * support\librarian\configure.in
8004         * support\librarian\config_in.h
8005         * support\librarian\Makefile.in
8006
8007         Hopefully these ones built the librarian and the rest of sdcc properly:
8008         * Makefile
8009         * Makefile.common.in
8010
8011         Messed up 'configure', so revert to previous version:
8012         * configure
8013         * configure.in
8014
8015 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8016
8017         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8018         there, while the mantissa of a double is "only" 53 bits wide.
8019
8020 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8021
8022         Adding sdcclib to the build.  MSVC project coming soon.
8023         Files added/changed:
8024
8025         * support\librarian\clean.mk
8026         * support\librarian\configure
8027         * support\librarian\configure.in
8028         * support\librarian\config_in.h
8029         * support\librarian\Makefile.bcc
8030         * support\librarian\Makefile.in
8031         * support\librarian\sdcclib.c
8032         * Makefile.bcc
8033         * Makefile
8034         * Makefile.common.in
8035         * configure
8036         * configure.in
8037
8038 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8039
8040         Linker now complaints if linked modules have conflicting options, for
8041         example, one compiled using --model-large and another one compiled with
8042         --model-small.  The following files were modified:
8043
8044         * as\mcs51\asdata.c
8045         * as\mcs51\aslink.h
8046         * as\mcs51\asm.h
8047         * as\mcs51\asmain.c
8048         * as\mcs51\asout.c
8049         * as\mcs51\i51pst.c
8050         * as\mcs51\lkdata.c
8051         * as\mcs51\lklibr.c
8052         * as\mcs51\lkmain.c
8053         * as\z80\asdata.c
8054         * as\z80\asm.h
8055         * as\z80\asmain.c
8056         * as\z80\asout.c
8057         * as\z80\z80pst.c
8058         * link\z80\aslink.h
8059         * link\z80\lkdata.c
8060         * link\z80\lklibr.c
8061         * link\z80\lkmain.c
8062         * src\SDCCglue.c
8063
8064 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8065
8066         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8067         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8068
8069 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8070
8071         * src/z80/mappings.i: fix _mul[us][int,long] entries
8072
8073 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8074
8075         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8076
8077 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8078
8079         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8080         * support/regression/tests/bitopcse.c: added
8081         fixed warning:
8082         * src/avr/gen.c:
8083         * src/pic/gen.c:
8084         * src/pic16/gen.c:
8085         * src/z80/gen.c:
8086         * src/xa51/gen.c:
8087
8088 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8089
8090         added support for new library format to z80, gbz80 linkers:
8091         *link/z80/aslink.h
8092         *link/z80/lklex.c
8093         *link/z80/lklib.c
8094         *link/z80/lklist.c
8095
8096 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8097
8098         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8099         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8100
8101 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8102
8103         added DUMMY_READ_VOLATILE:
8104         * src/SDCC.y:
8105         * src/avr/gen.c:
8106         * src/xa51/gen.c:
8107         * src/z80/gen.c:
8108         * src/pic/gen.c:
8109         * src/pic16/gen.c:
8110         * src/mcs51/gen.c:
8111         * src/ds390/gen.c:
8112         * src/SDCCcse.c (algebraicOpts): many improvements
8113         * src/SDCCcse.h: removed algebraicOpts()
8114         * src/SDCCicode.c (picDummyRead): added
8115
8116 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8117
8118         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8119         "Insufficient space in data memory".
8120
8121 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8122
8123         * src/mcs51/gen.c: fixed bug #771358
8124         * src/z80/gen.c: fixed bug #759087
8125
8126 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8127
8128         * src/pic16/glue.c: minor cleanup by Vangelis
8129
8130 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8131
8132         * device/include/regc515c.h: fixed #758477
8133         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8134         * device/lib/_gptrput.c: saved a few bytes
8135         * my tab spacing is 8, yours too?)
8136         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8137         * device/lib/serial.c: process RX bytes earlier than TX bytes
8138         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8139
8140 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8141
8142         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8143
8144 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8145
8146     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8147
8148 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8149
8150         * device/lib/Makefile.in: bad fix, reverted to 1.43
8151
8152 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8153
8154         * device/lib/Makefile.in: added missing z80 object files
8155
8156 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8157
8158         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8159         pic16 progress by Vangelis:
8160         * src/SDCCglobl.h:
8161         * src/SDCCmain.c:
8162         * src/pic/Makefile:
8163         * src/pic:
8164         * pic/Makefile:
8165         * pic16/device.c:
8166         * pic16/device.h:
8167         * pic16/gen.c:
8168         * pic16/gen.h:
8169         * pic16/genarith.c:
8170         * pic16/glue.c:
8171         * pic16/main.c:
8172         * pic16/pcode.c:
8173         * pic16/pcode.h:
8174         * pic16/pcodepeep.c:
8175         * pic16/peeph.def:
8176
8177 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8178
8179     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8180
8181 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8182
8183     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8184     added gbz80 build to MSVC project.
8185     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8186     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8187     from 8051 stuff and setup so it links using a .lnk file.
8188
8189 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8190
8191     * support/librarian/sdcclib.c: sdcc librarian.
8192     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8193     with sdcclib.
8194
8195 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8196
8197     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8198
8199 2003-07-02  Borut Razem <borut.razem AT siol.net>
8200
8201         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8202         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8203         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8204         src/xa51/main.c, src/z80/main.c:
8205         virtualization of glue() function: each port has it's own glue function,
8206         which is accessed by do_glue function pointer in PORT.general structure
8207
8208 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8209
8210         * DS800C400 fun, improved ROM interface and tinibios.
8211
8212 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8213
8214         * More support for DS80C400. Now includes beginning of interface to ROM.
8215
8216 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8217
8218         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8219
8220 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8221
8222         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8223
8224 2003-06-19  Borut Razem <borut.razem AT siol.net>
8225
8226         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8227
8228 2003-06-19  Borut Razem <borut.razem AT siol.net>
8229
8230         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8231         fixed Z80 port - crt0.o: cannot open.
8232
8233 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8234
8235         * support/Util/MySystem.c (merge_command): revert bad fix
8236
8237 2003-06-18  Borut Razem <borut.razem AT siol.net>
8238
8239         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8240
8241 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8242
8243         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8244         option --use-stdout sends errors to stdout instead of stderr.
8245
8246 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8247
8248         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8249
8250 2003-06-15  Borut Razem <borut.razem AT siol.net>
8251
8252         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8253         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8254         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8255         fixed width array of pointers replaced with sets;
8256         multiple include and lib paths ared transferred to preprocessor and linker
8257         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8258         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8259         fixed width array of pointers
8260         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8261         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8262         fixupPath(), getPathDifference()
8263         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8264         fixed width array of pointers
8265
8266 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8267
8268         * src/pic16/ralloc.c: fix warnings
8269         * src/pic16/pcode.c: fix warning
8270
8271 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8272
8273          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8274         know all the details, but essentially this set of changes enable
8275         the pic16 port to generate movff instructions and generate assembler
8276         directives,
8277         * src/SDCCmain.c:
8278         * src/pic16/gen.c:
8279         * src/pic16/glue.c:
8280         * src/pic16/pcode.c:
8281         * src/pic16/device.c:
8282         * src/pic16/main.c:
8283         * src/pic16/pcode.h:
8284         * src/pic16/pcoderegs.c:
8285         * src/pic16/ralloc.c:
8286         * src/pic16/ralloc.h:
8287
8288 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8289
8290         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8291         added option --vc, so sdcc errors and warnings are compatible with
8292         Microsoft Visual Studio.
8293
8294 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8295
8296         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8297           device/lib/libfloat.lib: added atof function.
8298
8299 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8300
8301         * doc/sdccman.lyx: updated to Lyx 1.3
8302         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8303         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8304         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8305
8306 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8307
8308         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8309
8310 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8311
8312         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8313           additions to the "related tools/documentation" section
8314
8315 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8316
8317         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8318
8319 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8320
8321         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8322         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8323
8324 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8325
8326         * doc/sdccman.lyx: fix double dash and other minor things
8327         * doc/Makefile: fix double dash
8328
8329 2003-05-28  Karl Bongers(patches from Martin Helmling)
8330         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8331           condition and ignore commands.
8332
8333 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8334
8335         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8336           is in parts still quite out of date, I did changes as far as I felt makes sense
8337           for a non-native english speaker.
8338           Please feel free to add to the manual or to correct my changes.
8339         * doc/Makefile: undid touching the date of intermediate tex files.
8340
8341 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8342
8343         * doc/sdccman.lyx: Manual has an index now
8344
8345 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8346
8347         Finalize muluint/mulsint and mululong/mulslong merging:
8348         * device/lib/_mulint.c
8349         * device/lib/_mullong.c
8350         * device/lib/gbz80/mul.s
8351         * device/lib/gbz80/stubs.s
8352         * device/lib/z80/mul.s
8353         * device/lib/z80/stubs.s
8354         * src/SDCCsymt.c (initCSupport)
8355
8356 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8357
8358         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8359         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8360           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8361           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8362           instead of /Zm500.
8363
8364 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8365
8366         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8367           the regression tests I'm not brave enough to enable 245.b, 245.c
8368         * doc/sdccman.lyx: added latex preamble for hyperref package.
8369           Using pdflatex this will give you a hyperlinked pdf file with
8370           bookmarks. (prepend '%' before /usepackage if this breaks something)
8371
8372 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8373
8374          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8375
8376 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8377
8378         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8379
8380 2003-05-21    <johan AT balder>
8381
8382         * src/SDCCglue.c (printIval): fixed bug #739934
8383
8384 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8385
8386         Applied patch from bug 737905 (renamed yylineo to mylineno):
8387         * src/altlex.c
8388         * src/SDCCast.c
8389         * src/SDCglobl.h
8390         * src/SDCC.lex
8391         * src/SDCCsymt.c
8392         * src/SDCCval.c
8393         * src/pic16/pcode.c: Cleaned warnings
8394         * src/pic16/pcodeflow.c: Cleaned warnings
8395         * src/pic16/pcoderegs.c: Cleaned warnings
8396
8397 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8398
8399         * src/pic16/pcode.c: Cleaned warnings
8400         * src/pic16/pcodepeep.c: Cleaned warnings
8401         * src/pic16/ralloc.c: Cleaned warnings
8402
8403 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8404
8405         * doc/sdccman.lyx: fixed bug 739745
8406         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8407
8408 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8409
8410         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8411         it can be defined with CFLAGS when running configure
8412         * src/SDCCmain.c: fixed compiling + linking with object files
8413
8414 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8415
8416         * configure.in: configure for pic16 port,
8417             added --disable-pic16-port
8418         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8419         * src/SDCCmain.c: linkOptions is changed to set *,
8420             added if/endif conditional macros to remove options help
8421             messages from optionsTable when a port is not configured, added
8422             support for the PIc16 port in the ports table, when executing
8423             the compiler with no port specified on command line, a default
8424             port is selected with the new macro DEFAULT_PORT which is
8425             defined in port.h, in setDefaultOptions() linkOptions is removed
8426             from initialization assignment, since now it is a set,
8427             parseCmdLine uses setParseWithComma for linkOptions, in
8428             linkEdit() linkOptions are accessed with new function indexSet()
8429             which returns the i'th item of a set variable. See SDCCset.c, in
8430             linkEdit() when calling buildCmdLine(), added linkOptions as
8431             last argument. Now users can pass arguments to gplink via the
8432             -Wl option, main() uses pic16glue() to glue up pic16 programs
8433         * src/SDCCpeeph.c: various changes to support pic16
8434         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8435             return the i'th item of the set
8436         * src/SDCCset.h: added function prototype for indexSet()
8437         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8438         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8439         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8440             added macro DEFAULT_PORT
8441         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8442         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8443             generated
8444         * src/pic16/glue.c: commented out some error producing lines
8445         * src/pic16/main.c: __config directives are commented out to stop
8446             gpasm complaining and test the linkage with gplink, _linkCmd and
8447             _asmCmd changed to be more gplink and gpasm friendly
8448         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8449             produced an error when parsed, peep rule 12 is added to utilize
8450             movff, but it is commented out since the pCode does not support
8451             yet a command with 2 address arguments
8452
8453 2003-05-18    <johan AT balder>
8454
8455         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8456         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8457 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8458
8459         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8460   Added feature to script commands from file.
8461
8462 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8463
8464         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8465         * src/SDCCutil.c: include ctype.h for win32
8466
8467 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8468
8469         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8470
8471 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8472
8473         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8474   Fixed so you can set breakpoints prior to run, run does not stop
8475   on entry now.  Add tbreak.  Other enhancements and fixes for use
8476   with ddd.
8477
8478 2003-05-12  Borut Razem <borut.razem AT siol.net>
8479
8480         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8481
8482 2003-05-11  Borut Razem <borut.razem AT siol.net>
8483
8484         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8485         the path of bin directory, so that PATH is the only env. variable, which has to be set
8486         in case of standard installation.
8487         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8488         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8489         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8490
8491 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8492
8493         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8494         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8495         temp files are in the port dir; clean the gen/test directory when
8496         generating new test.c
8497         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8498         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8499         * support/regression/tests/zeropad.c: added
8500
8501 2003-05-09    <johan AT balder>
8502
8503         * src/SDCCglue.c: fixed bug #597940
8504
8505 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8506
8507         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8508   cache sfr, optimize next,step, fix off by one sourceline,
8509   support ddd list function.
8510         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8511
8512 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8513
8514         * support/regression/HTMLgen.py: added compare_s2f()
8515         * support/regression/Makefile: redo 1.27
8516         * support/regression/generate-cases.py: redo 1.5
8517
8518 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8519
8520         * support/regression/tests/float.c: workaround 33 bit hex constant
8521         * support/regression/tests/simplefloat.c: fix division for host
8522
8523 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8524
8525         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8526         that tame's the PIC's over-aggressive optimizer.
8527
8528 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8529
8530          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8531          support for MSVC.
8532
8533 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8534
8535         Initial support for DS80C400. "Hello world" runs on TINIm400
8536         (with polled I/O).
8537
8538 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8539
8540          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8541          * Some notes on ddd usage added in debugger/README
8542          Martin Helmling adding more features and fixes for ddd GUI debugger.
8543          Code added for nexti, stepi, up, down, and other adjustments.
8544
8545 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8546
8547         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8548         * src/pic/peeph.def Added two rules to optimize carry manipulation
8549         * src/pic/* removed debug printfs
8550
8551 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8552
8553         * debugger/mcs51/cmd.c: added header newalloc.h
8554
8555 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8556
8557         * as/Makefile: new EXEEXT
8558         * as/z80/Makefile: remove trailing slash of BUILDIR
8559         * as/z80/clean.mk: new EXEEXT
8560         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8561         * support/cpp2/Makefile.in: new EXEEXT
8562         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8563
8564 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8565
8566         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8567         EXEEXT was introduced to fix all related problems with targets
8568         "clean", "install" and "uninstall"; a couple of further flaws
8569         especially with "clean" have been fixed too
8570         * as/mcs51/Makefile.in
8571         * as/mcs51/clean.mk
8572         * as/z80/Makefile
8573         * Makefile
8574         * clean.mk
8575         * debugger/mcs51/Makefile.in
8576         * debugger/mcs51/clean.mk
8577         * link/z80/Makefile
8578         * link/z80/Makefile.in
8579         * link/z80/clean.mk
8580         * link/Makefile
8581         * packihx/Makefile.in
8582         * packihx/clean.mk
8583         * sim/ucsim/Makefile
8584         * sim/ucsim/clean.mk
8585         * sim/ucsim/avr.src/Makefile.in
8586         * sim/ucsim/avr.src/clean.mk
8587         * sim/ucsim/s51.src/Makefile.in
8588         * sim/ucsim/s51.src/clean.mk
8589         * sim/ucsim/xa.src/Makefile.in
8590         * sim/ucsim/xa.src/clean.mk
8591         * sim/ucsim/z80.src/Makefile.in
8592         * sim/ucsim/z80.src/clean.mk
8593         * sim/ucsim/main_in.mk
8594         * sim/ucsim/packages_in.mk
8595         * sim/ucsim/gui.src/Makefile.in
8596         * sim/ucsim/gui.src/serio.src/Makefile.in
8597         * sim/ucsim/gui.src/serio.src/clean.mk
8598         * src/Makefile.in
8599         * src/clean.mk
8600         * support/cpp2/Makefile.in
8601         * support/cpp2/clean.mk
8602         * support/makebin/Makefile
8603         * support/makebin/clean.mk
8604         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8605         * doc/sdccman.lyx: --program-suffix no longer needed
8606
8607 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8608
8609          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8610          Martin Helmling added support for ddd GUI debugger.
8611          Code added to display assembly, set variables, and other commands
8612          to interface to ddd.
8613
8614 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8615
8616         * as/Makefile: fix target clean
8617         * as/clean.mk: fix target clean
8618         * as/z80/clean.mk: fix target clean
8619
8620 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8621
8622         * Makefile.common.in: added  AT EXEEXT AT
8623         * configure.in: removed all mingw32 stuff
8624         * configure: rebuilt from configure.in
8625         * doc/sdccman.lyx: updated section "installation"
8626         * support/scripts/sdcc_mingw32: adapted to configure
8627         * support/scripts/sdcc_cygwin_mingw32: added
8628
8629 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8630
8631         * src/pic Added object file support for the PIC port
8632         * src/pic Applied patch from Craig Franklin (this started the object file support)
8633         * src/regression Updated the PIC regression tests for object files
8634
8635 2003-04-20  Borut Razem <borut.razem AT siol.net>
8636
8637         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8638           lklex.c: In function `getfid':
8639           lklex.c:203: warning: array subscript has type `char'
8640         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8641           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8642         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8643           stack handling macros
8644
8645 2003-04-19  Borut Razem <borut.razem AT siol.net>
8646
8647         * "handling space characters in file path" task:
8648         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8649         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8650         * support/Util/MySystem.h: make it self-sufficient
8651         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8652           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8653           handling space characters in file path
8654         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8655           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8656         * support/Util/MySystem.c: handling space characters in executable's path
8657
8658 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8659
8660         * as/z80/Makefile: fix permanent rebuild of z80
8661         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8662         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8663
8664 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8665
8666         * src/SDCCopt.c: add special case optimization to replace modulo by
8667           a power of two with a bitwise AND.
8668
8669 2003-04-18    <johan AT balder>
8670
8671         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8672
8673 2003-04-17    <johan AT balder>
8674
8675         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8676         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8677
8678 2003-04-13  Borut Razem <borut.razem AT siol.net>
8679
8680         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8681         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8682           fixed mingw problem in adl_NORMALIZE_PATH
8683
8684 2003-04-12  Borut Razem <borut.razem AT siol.net>
8685
8686         * fixed "#pragma SAVE/RESTORE can not be nested":
8687         * src/SDCC.lex: reworked pragma handling functions
8688         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8689         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8690
8691 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8692
8693         * src/SDCCutil.c (pathEquivalent): defined but not used
8694         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8695         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8696         * configure: rebuilt from configure.in
8697         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8698         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8699         * device/include/Makefile.in: replace sdcc_datadir
8700         * device/lib/Makefile.in: replace sdcc_datadir
8701         * Makefile.common.in: add LDFLAGS from configure
8702         * packihx/Makefile.in: use LDFLAGS
8703         * src/Makefile.in: use LDFLAGS
8704         * support/cpp2/Makefile.in: add LDFLAGS from configure
8705         * support/makebin/Makefile: use LDFLAGS
8706         * .version: bumped version number to 2.3.5
8707
8708 2003-04-12  Borut Razem <borut.razem AT siol.net>
8709
8710         * completed "different paths" task:
8711         * src/SDCCmacro.c: fixed bug in handling quotes
8712         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8713         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8714
8715 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8716
8717         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8718
8719 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8720
8721         * ds390/gen.c ds390/peeph.def: fix bug 706781
8722
8723 2003-04-11  Borut Razem <borut.razem AT siol.net>
8724
8725         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8726
8727 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8728
8729         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8730         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8731          set - this bit used to not be set...).
8732         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8733           bad code in PIC Port
8734         * src/regression/and2.c added to test bug 609268
8735         * src/regression/Makefile added and2.c to regression test
8736
8737
8738 2003-04-08    <johan AT CP255758-A>
8739
8740         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8741         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8742         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8743
8744 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8745
8746         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8747         fix bug #487815
8748         * support/cpp2/Makefile.in: fix bug #487815
8749         * configure: rebuilt from configure.in
8750         * Makefile.common.in: docdir changed, new path suffixes
8751         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8752         * sdcc_vc_in.h: reflect changes from sdccconf.h
8753         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8754         * src/SDCCutil.h: remove BINDIR hack
8755         * doc/sdccman.lyx: update new path hierarchy
8756
8757 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8758
8759         * src/SDCCpeeph.c: added okToRemoveSLOC test
8760
8761 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8762
8763         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8764
8765 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8766
8767         * src/SDCCpeeph.c: added labelIsReturnOnly test
8768         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8769
8770 2003-04-05    <johan AT balder>
8771
8772         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8773         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8774         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8775         * src/SDCCast.c: fixed a warning
8776         * src/SDCCast.h: fixed a warning
8777         * src/SDCCicode.c (operandFromAst): fixed a warning
8778
8779 2003-04-04    <johan AT balder>
8780
8781         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8782         * src/SDCCast.c (decorateType): fixed bug #715076
8783         * src/SDCC.y: fixed bug #702907
8784
8785 2003-04-03    <johan AT balder>
8786
8787         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8788         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8789         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8790         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8791         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8792
8793 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8794
8795         * _decdptr.c: fix return values
8796         * _gptrget.c: fix return values
8797         * _gptrgetc.c: fix return values
8798         * _gptrput.c: fix return values
8799         * _mulint.c: fix return values
8800         * as/z80/Makefile: fix 'make -j' problem
8801
8802 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8803
8804         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8805         * configure.in: big cleanup, updated to autoconf 2.5x
8806         * configure: rebuilt from configure.in
8807         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8808         * sdcc_vc_in.h: reflect changes from sdccconf.h
8809         * doc/Makefile: fixed a flaw in "make install"
8810
8811 2003-04-02    <johan AT balder>
8812
8813         * src/ds390/gen.c (genCmp): no comments
8814         * src/mcs51/gen.c (genCmp): no comments
8815         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8816         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8817
8818 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8819
8820         * support/regression/generate-cases.py: place generated file in given sub directory
8821         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8822         * support/regression/Makefile: improvements for 'make -j';
8823         side effect: it's simpler and faster now
8824
8825 2003-03-31  Borut Razem <borut.razem AT siol.net>
8826
8827         * src/z80/main.c: link-{port} and as-{port} defined without path
8828         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8829
8830 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8831
8832         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8833
8834 2003-03-30  Borut Razem <borut.razem AT siol.net>
8835
8836         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8837           changed type of list parameter to set
8838         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8839         * src/port.h: changed type of do_assemble() parameter to set
8840         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8841           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8842           definition of "cppoutfilename" macro with NULL value in preProcess()
8843         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8844         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8845         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8846           replaced with set *binPathSet
8847         * shash_add() deallocates the item, if allready exsists, before adding the new one
8848         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8849
8850 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8851
8852         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8853           a nested for loop bug in the PIC port
8854         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8855           for loops
8856
8857 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8858
8859         * support/Util/dbuf.h: remove C++ stuff to make it portable
8860
8861 2003-03-28  Borut Razem <borut.razem AT siol.net>
8862
8863         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8864           literal strings in stringLiteral()
8865         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8866         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8867           to the project
8868
8869 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8870
8871         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8872
8873 2003-03-26    <johan AT balder>
8874
8875         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8876         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8877         * src/SDCCast.c (decorateType): fixed " -v < 3"
8878
8879 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8880
8881         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8882         Added Lenny Story's debug infrastructure changes:
8883         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8884         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8885         * src/cdbFile.c: added
8886         * src/SDCCdebug.c: added
8887         * src/SDCCdebug.h: added
8888         * src/SDCCast.c (createFunction)
8889         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8890         * src/SDCCmain.c (parseCmdLine, main)
8891         * src/SDCCmem.c (redoStackOffsets)
8892         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8893         * src/SDCCsymt.h
8894         * src/common.h
8895         * src/avr/gen.c (genAVRCode)
8896         * src/ds390/gen.c (gen390Code)
8897         * src/mcs51/gen.c (gen51Code)
8898         * src/pic/gen.c (genpic14Code)
8899         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8900         * src/xa51/gen.c (genXA51Code)
8901         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8902
8903 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8904
8905         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8906         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8907
8908 2003-03-22    <johan AT balder>
8909
8910         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8911
8912 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8913
8914         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8915         * doc/cdbfileformat.lyx: added, written by Lenny Story
8916         * doc/Makefile: added cdbfileformat.lyx
8917         * doc/clean.mk: added cdbfileformat.lyx
8918
8919 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8920
8921         * src/mcs51/peeph.def: fix bug #705773
8922
8923 2003-03-20    <johan AT balder>
8924
8925         An sfr/sbit can have an "at #" AND an initializer
8926         * src/SDCCsymt.c (checkSClass):
8927         * src/SDCCmem.c (allocGlobal):
8928         * src/SDCCmem.c (allocLocal):
8929         * src/SDCCast.c (createBlock):
8930
8931 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8932
8933         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8934
8935 2003-03-16    <johan AT balder>
8936
8937         Undid the hackup of const and volatile, the problem is much bigger
8938         * src/SDCC.y:1.65
8939         * src/SDCCast.c:1.171
8940         * src/SDCCglue.c:1.138
8941         * src/SDCCicode.c:1.146
8942         * src/SDCCsymt.c:1.150
8943         * src/SDCCval.c:1.65
8944
8945 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8946
8947         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8948         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8949
8950 2003-03-13    <johan AT balder>
8951
8952         Hackup const and volatile modifiers in type chains a bit:
8953         * src/SDCC.y:1.63
8954         * src/SDCCast.c:1.169
8955         * src/SDCCglue.c:1.136
8956         * src/SDCCicode.c:1.143
8957         * src/SDCCsymt.c1.146
8958         * src/SDCCsymt.h1.59
8959         * src/SDCCval.c:1.63
8960
8961 2003-03-12    <johan AT balder>
8962
8963         * src/SDCCBBlock.h: more LRH debugging junk
8964         * src/SDCCcflow.h: more LRH debugging junk
8965         * src/SDCCloop.c: more LRH debugging junk
8966         * src/SDCC.y (struct_declaration): fixed bug #697590
8967         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8968         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8969         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8970
8971 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8972         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8973         test function names must now match exactly).
8974         * src/SDCCcse.c: added special case in findCheaperOp to allow
8975         extending a short integer. Makes less awful code for bug 700121 test case.
8976
8977 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8978
8979         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8980         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8981
8982 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8983
8984         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8985         actually called (operandsNotEqual() was called for all
8986         operandsNotEqualX tests).
8987
8988 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8989
8990         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8991         with shorter literals. Fixes bug 700121.
8992
8993 2003-03-11    <johan AT balder>
8994
8995         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8996
8997 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8998
8999         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9000         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9001
9002 2003-03-10  Borut Razem <borut.razem AT siol.net>
9003
9004         * src/SDCCmain.c: pipe preprocessor's output
9005         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9006         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9007         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9008         which closes all pipes in pipeSet set
9009         * src/SDCCset.c: free deleted item in function deleteSetItem()
9010         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9011         moved from z80 to src subproject
9012         * .version: increased version number to 2.3.4
9013
9014 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9015
9016         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9017         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9018         * support/regression/ports/xa51/spec.mk: fix typo
9019
9020 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9021
9022         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9023
9024 2003-03-09  Borut Razem <borut.razem AT siol.net>
9025
9026         * src/SDCCmain.c: pipe preprocessor's output
9027         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9028         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9029         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9030         which closes all pipes in pipeSet set
9031         * src/SDCCset.c: free deleted item in function deleteSetItem()
9032         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9033         moved from z80 to src subproject
9034
9035 2003-03-09  Borut Razem <borut.razem AT siol.net>
9036
9037         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9038         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9039         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9040         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9041         * src/SDCCglobl.h: unification of WIN32 native definitions
9042
9043 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9044
9045         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9046
9047 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9048
9049         * src/configure.in:   check for endianess (even while cross-compiling)
9050         * src/configure:      check for endianess (even while cross-compiling)
9051         * src/configure_in.h: check for endianess (even while cross-compiling)
9052         * src/avr/gen.c:        remove old endianess stuff
9053         * src/mcs51/gen.c:      remove old endianess stuff
9054         * src/ds390/gen.c:      remove old endianess stuff
9055         * src/pic/gen.c:        remove old endianess stuff
9056         * src/pic/genarith.c:   remove old endianess stuff
9057         * src/pic/glue.c:       fix endianess check
9058         * src/pic16/gen.c:      remove old endianess stuff
9059         * src/pic16/genarith.c: remove old endianess stuff
9060         * src/pic16/glue.c:     fix endianess check
9061         * src/xa51/gen.c:       remove old endianess stuff
9062         * src/z80/gen.c:        fix endianess check
9063         * src/SDCCglue.c:       fix endianess check
9064         * src/ds390/peeph.def: fix bug 700036
9065
9066 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9067
9068         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9069         * src/configure: find appropriate data-types on host for SDCC's int and long
9070         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9071         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9072         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9073
9074 2003-03-07    <johan AT balder>
9075
9076         Just a big NOOP:
9077                 some minor cleanups before the big shot
9078                 OP_DEFS and OP_USES now use Kevin's protection
9079                 new option --nolabelopt
9080
9081         * src/SDCCBBlock.c:
9082         * src/SDCCast.c,:
9083         * src/SDCCcflow.c:
9084         * src/SDCCcse.c:
9085         * src/SDCCicode.c:
9086         * src/SDCCicode.h:
9087         * src/SDCClabel.c:
9088         * src/SDCCloop.c:
9089         * src/SDCCmain.c:
9090         * src/ds390/ralloc.c:
9091         * src/mcs51/ralloc.c:
9092         * src/pic/ralloc.c:
9093         * src/xa51/ralloc.c:
9094         * src/z80/ralloc.c:
9095
9096 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9097
9098         * src/pic/pcode.c (get_op): fix 64 bit warnings
9099         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9100         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9101         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9102         * support/regression/tests/malloc.c: fix 64 bit warnings
9103
9104 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9105
9106         * src/mcs51/gen.c (genMinus): fixed bug 696436
9107
9108 2003-03-02  Borut Razem <borut.razem AT siol.net>
9109
9110         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9111
9112 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9113
9114         * configure.in: test for mkstemp
9115         * sdccconf_in.h: add HAVE_MKSTEMP
9116
9117 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9118
9119         * device/include/ctype.h: removed warning while using --stack-auto
9120         * device/include/malloc.h: removed warning while using --stack-auto
9121         * device/include/string.h: removed warning while using --stack-auto
9122
9123 2003-02-23  Borut Razem <borut.razem AT siol.net>
9124
9125         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9126         because NDEBUG is defined (see man assert)
9127         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9128
9129 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9130
9131         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9132         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9133
9134 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9135
9136         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9137         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9138
9139 2003-02-18    <johan AT balder>
9140
9141         * as/mcs51/asmain.c (asmbl): module can start with a digit
9142         * as/z80/asmain.c (asmbl): module can start with a digit
9143
9144 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9145
9146         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9147         * src/asm.c: fix pipe() for Mingw32
9148
9149 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9150
9151         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9152         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9153         make -V work again; --c1mode reads now from stdin
9154         * doc/sdccman.lyx: added --c1mode
9155         * support/Util/SDCCerr.c: new messages for c1 mode
9156         * support/Util/SDCCerr.h: new messages for c1 mode
9157         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9158
9159 2003-02-15    <johan AT balder>
9160
9161         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9162
9163 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9164
9165         * doc/sdccman.lyx: Environment variables, -o and other minor things
9166
9167 2003-02-14    <johan AT balder>
9168
9169         * src/xa51/main.c: before anyone really tries to use it :)
9170
9171         * Install doc's in share/sdcc/doc
9172         * removed some obsolete files
9173         * Do a proper make distclean and uninstall
9174         M Makefile.common.in
9175         R sdccbuild.sh
9176         M as/Makefile
9177         M device/include/Makefile.in
9178         M device/lib/Makefile.in
9179         M doc/sdccman.lyx
9180         M link/Makefile
9181         M sim/ucsim/doc/Makefile.in
9182         M src/clean.mk
9183         R src/avr/peeph.rul
9184         R src/xa51/peeph.rul
9185         M support/cpp2/Makefile.in
9186         M support/makebin/Makefile
9187
9188
9189 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9190
9191         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9192
9193 2003-02-10  Borut Razem <borut.razem AT siol.net>
9194
9195         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9196         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9197         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9198         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9199         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9200         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9201         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9202         src/z80/Makefile.bcc: Borland Makefile cleanup
9203         * as/z80/Makefile.bcc: Added Borland Makefile
9204         * support/cpp2/borland.h: Removed
9205
9206 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9207
9208         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9209         * src/SDCC.lex: new pragma NOIV
9210         * src/SDCCglobl.h: new pragma NOIV
9211         * src/SDCCmem.c: new pragma NOIV
9212
9213 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9214
9215         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9216
9217 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9218
9219         * src/SDCCmain.c: signal handling is switched off by --debug
9220         * doc/Makefile: small fix for install; use clean.mk again
9221         * doc/clean.mk: clean *.pdf and *.html too
9222
9223 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9224
9225         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9226         * device/lib/printfl.c: fix a ds390 bug by making it portable
9227         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9228         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9229         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9230         * debugger/mcs51/cmd.c: converted multi-line string literals
9231         * sim/ucsim/globals.cc: converted multi-line string literals
9232         * src/SDCCmain.c: introduced signal handler to remove temp files
9233         * doc/Makefile: small tweaks, implement clean
9234         * doc: removed generated files
9235
9236 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9237
9238         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9239         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9240         Address Record is not correctly generated for DS390."
9241
9242 2003-02-02  Borut Razem <borut.razem AT siol.net>
9243
9244         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9245         * as/mcs51/asm.h: fixed compilation with Borland C
9246         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9247         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9248         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9249         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9250         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9251         src/z80/Makefile.bcc: delete $(LIB) only if exist
9252         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9253
9254 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9255
9256         * device/include/malloc.h: introduced NULL
9257         * device/include/string.h: introduced NULL
9258         * device/include/stdlib.h: introduced NULL
9259         * device/lib/_memcpy.c: removed NULL
9260         * device/lib/_strcat.c: removed NULL
9261         * device/lib/_strchr.c: removed NULL
9262         * device/lib/_strcmp.c: removed NULL
9263         * device/lib/_strcpy.c: removed NULL
9264         * device/lib/_strcspn.c: removed NULL
9265         * device/lib/_strlen.c: removed NULL
9266         * device/lib/_strncat.c: removed NULL
9267         * device/lib/_strncmp.c: removed NULL
9268         * device/lib/_strncpy.c: removed NULL
9269         * device/lib/_strpbrk.c: removed NULL
9270         * device/lib/_strrchr.c: removed NULL
9271         * device/lib/_strspn.c: removed NULL
9272         * device/lib/_strstr.c: removed NULL
9273         * device/lib/_strtok.c: removed NULL
9274         * device/lib/malloc.c: removed NULL, include own header
9275
9276 2003-02-02    <johan AT balder>
9277
9278         * 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
9279         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9280         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9281         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9282         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9283         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9284
9285 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9286
9287         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9288         area 'DATA'"
9289
9290 2003-02-01    <johan AT balder>
9291
9292         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9293
9294 2003-01-31    <johan AT CP255758-A>
9295
9296         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9297
9298 2003-01-30    <johan AT balder>
9299
9300         * src/SDCCBBlock.c: automatic bug detection
9301         * src/SDCCicode.c: automatic bug detection
9302
9303 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9304
9305         * src/SDCCglobl.h:   now --xram-size 0 works
9306         * src/SDCCmain.c:    now --xram-size 0 works
9307
9308 2003-01-29    <johan AT balder>
9309
9310         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9311
9312 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9313
9314         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9315         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9316         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9317         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9318         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9319         * src/SDCCmain.c:    Added options --xram-size and --code-size
9320
9321 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9322
9323         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9324         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9325
9326 2003-01-27    <johan AT balder>
9327
9328         * src/SDCC.y: fixed bug #613764
9329
9330 2003-01-26    <johan AT balder>
9331
9332         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9333         * src/SDCCsymt.h: fixed bug #673374
9334         * src/SDCCglue.c: fixed bug #661910
9335         * src/SDCCast.c: fixed bug #458099 and 673374
9336
9337 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9338
9339         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9340         * as/mcs51/strcmpi.h: added
9341         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9342         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9343         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9344         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9345         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9346         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9347         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9348         * as/mcs51/Makefile.aslink: new module strcmpi
9349         * as/mcs51/Makefile.asx8051: new module strcmpi
9350         * as/mcs51/Makefil.bcc: new module strcmpi
9351         * as/mcs51/Makefile.in: new module strcmpi
9352         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9353
9354 2003-01-26    <johan AT balder>
9355
9356         * src/SDCCglue.c: reverted back to 1.124
9357         * src/SDCCast.c: reverted back to 1.156
9358         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9359
9360 2003-01-25    <johan AT balder>
9361
9362         * src/SDCCglue.c: A better fix for bug #661910
9363         * src/SDCCast.c: A better fix for bug #661910
9364         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9365
9366 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9367
9368         * src/Makefile.in: remove spawn.o
9369         * src/SDCCmain.c: remove spawn.h
9370         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9371         * src/spawn.c: removed
9372         * src/spawn.h: removed
9373         * support/regression/ports/ds390/spec.mk: link with -r
9374
9375 2003-01-24    <johan AT CP255758-A>
9376
9377         * src/ds390/gen.c (aopOp): fixed bug #667458
9378         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9379         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9380         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9381
9382 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9383
9384         * src/mcs51/peeph.def: better assembler identation by Frieder
9385         * src/mcs51/gen.c: better assembler identation by Frieder
9386
9387 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9388
9389         * as/z80/string.h: removed for gcc 3.2
9390         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9391         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9392
9393 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9394
9395         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9396         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9397         * support/regression/Makefile: separate temp files for ports
9398         * support/regression/generate-cases.py: separate temp files for ports
9399         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9400         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9401
9402 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9403
9404         * moved tinitalk to device/examples/ds390
9405
9406 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9407
9408         * as/mcs51/lkmem.c: rflag is for DS390
9409         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9410         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9411                          (linkEdit): move mem- and map-files the same way as ihx-files
9412         * src/z80/main.c (_setDefaultOptions): removed --generic
9413         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9414         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9415         * src/pic/glue.c (picglue): --c1mode works again
9416         * src/pic16/glue.c (pic16glue): --c1mode works again
9417         * src/asm.c (printCLine): fix #660034
9418
9419 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9420
9421         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9422         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9423         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9424         * as/mcs51/lkmem (summary): better fix for sp problem
9425         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9426         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9427         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9428                                               remove --stack-after-data
9429
9430 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9431
9432         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9433         * src/SDCCutil.c (join): ugly bug: missing '\0'
9434         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9435
9436 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9437
9438         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9439         * src/port.h: typo
9440         * src/pic/main.c (_asmCmd): gpasm supports -o
9441         * src/z80/main.c: more general macros
9442         * device/lib/Makefile.in: remove intermediate files
9443
9444 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9445
9446         * .version: Bumped version number to 2.3.3
9447         * src/SDCCBBlock.c: new option -o
9448         * src/SDCCglobl.h: new option -o
9449         * src/SDCCglue.c: new option -o
9450         * src/SDCCmain.c: new option -o
9451         * src/asm.c: new option -o
9452         * src/ds390/main.c: new option -o
9453         * src/pic/glue.c: new option -o
9454         * src/pic/pcode.c: new option -o
9455         * src/pic/ralloc.c: new option -o
9456         * src/pic16/glue.c: new option -o
9457         * src/pic16/pcode.c: new option -o
9458         * src/pic16/ralloc.c: new option -o
9459         * src/z80/main.c: new option -o
9460         * device/lib/Makefile.in: use -o
9461         * support/regression/ports/ds390/spec.mk: use -o
9462         * support/regression/ports/gbz80/spec.mk: use -o
9463         * support/regression/ports/mcs51/spec.mk: use -o
9464         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9465         * support/regression/ports/z80/spec.mk: use -o
9466         * support/regression/ports/ucz80/spec.mk: use -o
9467         * support/regression/ports/xa51/spec.mk: use -o
9468         * support/regression/fwk/lib/timeout.c: fix usage string
9469
9470 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9471         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9472
9473 2003-01-07    <johan AT balder>
9474
9475         * src/SDCCast.c (decorateType): fixed bug #600035
9476
9477 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9478         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9479         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9480         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9481         * src/pic/pcode.c: outcommented unused variable to remove warnings
9482         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9483
9484 2003-01-06    <karl AT turbobit.com>
9485         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9486    regression tests.
9487
9488 2003-01-06    <johan AT balder>
9489
9490         * src/SDCCicode.c: fixed array add
9491
9492 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9493         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9494         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9495
9496 2003-01-04    <johan AT balder>
9497
9498         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9499
9500 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9501         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9502
9503 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9504         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9505         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9506
9507 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9508         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9509
9510 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9511         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9512
9513 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9514         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9515
9516 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9517
9518     * in \sdcc\as\mcs51\ changed these files in order to create an
9519     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9520     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9521     following files to include the previous two files: aslink.dsp,
9522     Makefile.aslink, Makefile.bcc, and Makefile.in.
9523
9524     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9525     .adb instead of .cdb
9526
9527 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9528
9529         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9530         value from option --iram-size.
9531
9532 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9533
9534         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9535         dram[] array.
9536
9537 2002-09-18    <wiml AT hhhh.org>
9538
9539         * SDCClrange.h: exposed setFromRange() and setToRange()
9540         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9541           packRegsForAccUse() (bug 542397)
9542         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9543           multiple times and emitting the fetch operations more than once
9544           added aopGetUsesAcc() function to allow binary operators to
9545           fetch their operands in the correct order; made genMinus() emit
9546           compact code for X = LITERAL - Y
9547
9548 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9549         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9550         sprintf() in line 1267.
9551
9552 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9553         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9554         like ports.
9555
9556 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9557         Changes to aslink (All the changes are marked with 'JCF'):
9558
9559         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9560         summary().
9561
9562         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9563         area BSEG.  Also moves, if possible, the DATA area down into the internal
9564         ram so more space is available.
9565
9566         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9567         sflag.
9568
9569         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9570         not bytes.  Function summary() which creates a memory usage summary
9571         file with extension .mem.  Reports of overlaping stack and small stack
9572         size.  If the space for the stack is less than 16 bytes aslink trows a
9573         warning.
9574
9575         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9576         the 8051.  Option 'y' for memory summary output file.
9577
9578         Changes to sdcc (All the changes are marked with 'JCF'):
9579
9580         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9581
9582         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9583         overlaying area for it (uses RegBankUsed[4]).
9584
9585         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9586         bank zero as used by default.  By default aslink locates the stack
9587         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9588         the creation of the .mem file.  Delegates the allocation of data area
9589         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9590         the begining of the stack area to aslink.
9591
9592         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9593         glue() in SDCCglue.c creates an area for it.
9594
9595 2002-09-03  Borut Razem <borut.razem AT siol.net>
9596         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9597         sdcc/src/pic/glue.c:
9598         introduced atexit() handler for teporay files removal in case of
9599         errors, assertions, ...
9600
9601 2002-08-29  Borut Razem <borut.razem AT siol.net>
9602         * sdcc/support/cpp2/auto-host_vc_in.h:
9603         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9604         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9605         Maybe there is a similar problem with BORLANDC? It should be checked!
9606
9607         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9608         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9609         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9610         was not executed, and the compiler (cl) launched a warning:
9611         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9612
9613 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9614         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9615
9616 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9617         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9618
9619         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9620           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9621           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9622           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9623           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9624           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9625           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9626         - added Release configuration in VS projects
9627         - review of compiler an linker options
9628         - VC .exe files are generated in bin_vc directory, not to interfere
9629           with binaries generated from other projects (cygwin, mingw, bcc ...)
9630
9631         * sdcc/src/yacc.dsp: added
9632
9633         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9634         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9635         and insert the version number definitions from .version
9636
9637         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9638
9639         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9640         added - genarate auto-host.h using auto-host_vc_in.h as template
9641
9642         * sdcc/sdcc_vc.h,
9643         removed from CVS, generated automatically
9644
9645 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9646         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9647
9648 2002-08-11  Borut Razem <borut.razem AT siol.net>
9649         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9650
9651 2002-08-10  Borut Razem <borut.razem AT siol.net>
9652         * src/SDCCmain.c (main):
9653         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9654         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9655         The consequence was that some temporary files were not removed.
9656
9657         * src/SDCCglue.c:
9658         unification of code in functions tempfilename() and tempfile():
9659         function tempnam() is defined in Visual Studio 6.0 and .NET
9660
9661         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9662
9663         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9664           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9665         - removed compiler command line option /WX: Treats all warnings as errors
9666         - update a list of source files, included into the project
9667
9668         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9669           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9670         changed project type to Generic Project so that can be correcly converted to VS.NET project
9671
9672         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9673
9674         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9675
9676         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9677
9678         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9679         added return 0 statements after assert() to make compiler happy
9680
9681         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9682         added newline in the def file to keep MSC compiler satisfied
9683
9684         * sdcc/src/z80/gen.c:
9685         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9686           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9687         - solved MSC error in function aopDump()
9688
9689         * sdcc_vc.h: define PREFIX as "\\sdcc"
9690
9691 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9692         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9693
9694 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9695         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9696         - Rewrote the register banking algorithm.
9697         - Added pCode live-range analysis to registers (for now, only non-used and
9698         singly-used registers optimized away)
9699
9700         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9701
9702         * 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.
9703
9704 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9705         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9706
9707 2002-04-22  Michael Hope  <michaelh AT vroom>
9708
9709         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9710
9711         * configure.in (DD_COPT): Added include support required for gbdk.
9712
9713         * .version: Bumped version number just to increase it.
9714
9715         * src/SDCCmain.c: Added -nostdinc to the default options.
9716
9717 2002-04-15  Michael Hope  <michaelh AT vroom>
9718
9719         * device/lib/z80/printf.c (sprintf): Added.
9720
9721         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9722
9723         * src/z80/peeph.def: Added transpose redundent load rule.
9724
9725         * src/z80/main.c: Added force callee saves for jaune.
9726
9727         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9728
9729         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9730
9731 2002-03-28  Johan Knol  <johan AT balder>
9732
9733         * src/SDCCval.c: fixed bug #532436
9734
9735 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9736         * /src/port.h:
9737         Added "char *Processor" field to the port structure.
9738
9739         * /src/SDCCmain.c:
9740         Added -p option. Allows port dependent processor to be specified.
9741
9742         * all ports:
9743         Initialized the new field char *Processor field to NULL in all ports
9744
9745         * /src/pic/*:
9746         Compiler generated registers for interrupt context saving
9747         were not getting allocated.
9748
9749 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9750
9751         * /src/SDCCast.c:
9752         Fixed left shift. Will promote the left side of a left shift
9753         if a) left shifting more than size of operand or b) when assigned
9754         to something size > size of left side
9755
9756 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9757         * src/pic/*
9758         tons of changes. Register allocation has been
9759         rewritten. Added customization for the various PICs. Flow
9760         analysis is restructured. ...
9761
9762         * src/pic/device.h:
9763         Added
9764
9765         * src/pic/device.c:
9766         Added. device.c is a PIC port hack to accomodate variations
9767         in PIC devices.
9768
9769 2002-03-13  Michael Hope  <michaelh AT vroom>
9770
9771         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9772
9773 2002-03-04  johanknol  <johanknol AT manik>
9774
9775         * /src/SDCCval.c: fixed
9776
9777         const unsigned char arr[][2] = { { 0, 1 } };
9778         t18.c:1: error: Initializer element is not constant
9779
9780 2002-03-04  bela  <bela AT manik>
9781
9782         * /device/include/mcs51reg.h:
9783         ds89c420 register definition update
9784
9785 2002-03-03    <johan AT FRIJA>
9786
9787         * support/Util/SDCCerr.c: did something, but don't no why anymore
9788
9789         * support/regression/tests/bug-524691.c: made it a little less shy
9790
9791         * src/SDCCast.c (decorateType): fixed bug #524697
9792
9793         * src/SDCCast.c: made some lineno improvements
9794
9795         * src/SDCCval.c (getNelements): changed warning to error
9796
9797         * src/SDCCglue.c (printIvalArray): changed warning to error
9798
9799         * src/SDCCicode.c: fixed a warning for mingw
9800
9801         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9802
9803         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9804
9805 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9806
9807         * src/ds390/peeph.def:
9808         Added some more peephole rules
9809
9810         * src/ds390/gen.c: Various fixes & enhancements
9811
9812         * src/SDCClrange.c, src/SDCClrange.h:
9813         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9814
9815         * src/ds390/ralloc.c:
9816         various fixes & enhancements (ds390) specific
9817
9818         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9819         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9820         from rallocs.
9821
9822         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9823
9824 2002-03-02    <johan AT FRIJA>
9825
9826         * src/SDCCast.c (decorateType): fixed bug #524708
9827
9828         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9829
9830         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9831
9832 2002-03-01  Michael Hope  <michaelh AT vroom>
9833
9834         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9835
9836         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9837
9838 2002-03-01    <johan AT FRIJA>
9839
9840         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9841
9842         * src/SDCCast.c (decorateType): fixed bug #524209
9843
9844         * src/SDCCval.c (valNot): fixed bug #524195
9845
9846 2002-02-26    <johan AT balder>
9847
9848         * src/xa51/gen.c: fixed a warning
9849
9850         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9851
9852         * src/SDCCast.c (decorateType): fixed bug #522534
9853
9854 2002-02-23    <johan AT balder>
9855
9856         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9857
9858 2002-02-22    <johan AT balder>
9859
9860         * src/SDCCast.c: fixed bug #514865
9861
9862         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9863
9864 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9865
9866         * sdcc/src/SDCCloop.c:
9867         Previous fix was not good. basic blocks that have "break" or "return" are
9868         not really partof a loop , but live ranges used in these blocks should
9869         be live thru the entire loop, so set partOfLoop but don't add them to
9870         loop region
9871
9872 2002-02-21    <johan AT FRIJA>
9873
9874         * src/SDCCcse.c: fixed bug #514308
9875
9876 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9877
9878         * src/SDCCloop.c:
9879         Fixed BUG #519583. If a conditional block ended in a return/break
9880         statement inside a loop, it was not being considered part of the loop.
9881
9882         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9883
9884 2002-02-10  Karl Bongers <karl AT turbobit.com>
9885
9886         * debugger/*:
9887         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9888         with lots of comments and notes.
9889
9890         * device/examples/test2.c:
9891         Fix bug, "red" variable not being initialized(compiler complained).
9892
9893         * device/examples/Makefile, examples/test3.c:
9894         Add Makefile in device/examples folder, compiles test3.c
9895         for use as a multiple module SDCDB test case.
9896
9897         * sim/ucsim/cmd.src/cmdset.cc:
9898         Took out debug printfs in ucsim "next" command.
9899
9900         * sim/ucsim/xa.src:
9901         Karl and Johan start ucsim XA support.  Most dissassembly working,
9902         about 75% emulation done(plenty of work remaining).
9903
9904         * sim/ucsim/z80.src:
9905         Add Z80 support to ucsim, add test-ucz80 regression test,
9906         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9907         Notice z80 compiler fails on examples/test3.c/crc code.
9908
9909 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9910
9911         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9912         Added support for --parms-in-bank1
9913
9914         * src/ds390/peeph.def:
9915         added a few more peephole optimzations
9916
9917         * src/ds390/main.c:
9918         1) added __builtin_inp & __builtin_outp used to read in data of given length
9919            from a memory mapped port
9920         2) added __builtin_memcmp
9921         3) added __builtin_swapw swap bytes of a short
9922
9923         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9924         1) handle multiple send & receives from register bank1
9925         2) ralloc can now allocate DPTR1 to some liveRanges
9926
9927         * src/SDCCsymt.c, src/SDCCsymt.h:
9928         changes to handle multiple sends & receives
9929
9930         * src/SDCCptropt.h:
9931         added some pointer arithmetic optimization
9932
9933         * src/SDCCptropt.c:
9934         added some pointer arithmetic optimizations but not stable yet so not
9935         called from anywhere (will get this working shortly)
9936
9937         * src/SDCCopt.c: fixed for multiple sends & receives
9938
9939         * src/SDCCmain.c:
9940         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9941         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9942            set preprocessor defines (depending on options)
9943
9944         * src/SDCCicode.c, src/SDCCicode.h:
9945         changes made to handle multiple sends & receives
9946
9947         * src/SDCCglobl.h:
9948         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9949
9950         * src/SDCCcse.c, src/SDCCcse.h:
9951         added function findbackward def (to be used in upcoming optimization)
9952
9953         * src/SDCCcflow.c, src/SDCCcflow.h:
9954         added function returnAtEnd - to determine if a basic block terminates with
9955         a RETURN iCode
9956
9957         * src/SDCCast.c, src/SDCCast.h:
9958         added option parms-in-bank1
9959
9960         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9961         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9962         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9963         adjusted for --parms-in-bank1 option
9964
9965         * device/include/string.h:
9966         donot redefine "reentrant" keyword
9967
9968         * device/include/ds80c390.h: Added some more SFRs
9969
9970 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9971
9972         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9973
9974 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9975
9976         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9977
9978 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9979
9980         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9981
9982 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9983
9984         * Added --xram-movc option
9985
9986 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9987
9988         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9989
9990 2002-01-11  Johan Knol
9991
9992         * Added math lib of Jesus Calvino-Fraga
9993
9994 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9995
9996         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9997         * support/regression/Makefile: new target test-mcs51-stack-auto
9998         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9999
10000 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10001
10002         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10003
10004 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10005
10006         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10007
10008 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10009
10010         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10011
10012         * src/SDCCglue.h: add definition for printIvalChar()
10013
10014 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10015
10016         * src/SDCCast.c: fix #498138 by Johan
10017
10018         * src/SDCCglue.c: fix #498138 by Johan
10019
10020 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10021
10022         * support/regression/Makefile: fix clean
10023
10024         * support/regression/ports/ds390/support.c: fix transmission of last character
10025
10026 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10027
10028         * /sdcc/src/ds390/gen.c:
10029         a) improved computing address of stack variable
10030         b) took out some #if 0 code
10031         c) improved parmBytes adjustment
10032         d) improved genPlusIncr & genMinusIncr
10033         e) genCmp could generate bad code (when left assigned to DPTR)
10034         f) Fixed bug in hasInc
10035
10036         * /sdcc/src/ds390/ralloc.c:
10037         a) packRegsForSupport could mess up live information (Fixed)
10038         b) packRegsDPTRuse could be incorrect for left & right shift
10039
10040         * /sdcc/src/mcs51/ralloc.c:
10041         packRegsForSupport could mess up the live information (Fixed)
10042
10043         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10044
10045         * /sdcc/src/SDCCast.c:
10046         can reverse a loop even if function call is present as long
10047         as the loop control variable is local & is not passed as parameter
10048
10049 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10050
10051         * /sdcc/ChangeLog: *** empty log message ***
10052
10053         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10054         More builtin function additions for TININative
10055
10056         * /sdcc/src/ds390/ralloc.c:
10057         Had broken the regression testsuite
10058
10059         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10060
10061         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10062         Added funcattr hasStackParms will be set for reentrant functions when there
10063         are paramteres on the stack, this helps in minimizing frame pointer generation
10064         typeFromStr can handle function pointers now
10065
10066         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10067         *** empty log message ***
10068
10069 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10070
10071         * /src/ds390/gen.c, /src/ds390/main.c:
10072         More builtin function additions for TININative
10073
10074         * /src/ds390/ralloc.c:
10075         Had broken the regression testsuite
10076
10077         * /src/SDCCast.c: Fixed a bug in dumptree
10078
10079         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10080         Added funcattr hasStackParms will be set for reentrant functions when there
10081         are paramteres on the stack, this helps in minimizing frame pointer generation
10082         typeFromStr can handle function pointers now
10083
10084         * /doc/builtins.txt, /doc/TININative.txt:
10085         *** empty log message ***
10086
10087
10088 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10089
10090         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10091         ALPHA version for -mTININative
10092
10093         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10094         updated to reflect changes in the port structure
10095
10096         * /src/port.h:
10097         added function do_assemble (similar to do_link) if non-null this function
10098         will be called to do assembly (-mTININative) requires a multi command
10099         assembly
10100         added function genAssemblerEnd will be called to generate assembler Epilogue
10101
10102         * /src/SDCCsymt.c:
10103         added _JavaNative to debug info printing
10104
10105         * /src/SDCCmain.c: added option --tini-libid
10106         added port->do_assemble function (-mTININative) has a multi command assemble
10107
10108         * /src/SDCCglue.c: Disabled "constExpr" check
10109         added port->genAssemblerEnd function
10110
10111         * /src/SDCCglobl.h: Added option --tini-libid value
10112
10113         * /src/SDCCast.h:
10114         tookout optimizeCompare from the header (has no external references)
10115
10116         * /src/SDCCast.c: made one more function "static"
10117
10118 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10119
10120         * src/z80/mappings.i: Added z80asm support.
10121
10122         * src/z80/main.c: Added z80asm support on --asm=z80asm
10123
10124         * src/z80/gen.c: Fixed asm portability issues.
10125
10126         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10127
10128         * src/SDCCglue.c (printExterns): Added global/extern split.
10129
10130 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10131
10132         * support/regression/Makefile: added test for mcs51 model large
10133
10134         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10135
10136         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10137
10138 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10139
10140         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10141
10142 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10143
10144         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10145
10146         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10147
10148 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10149
10150         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10151
10152         * support/regression/tests/simplefloat.c: Port to mcs51.
10153
10154 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10155         * support/regression/tests/bug-485362.c: Added.
10156
10157         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10158
10159         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10160
10161         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10162
10163         * src/z80/gen.c (aopDump): Added a dump function.
10164
10165 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10166         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10167
10168         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10169
10170         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10171
10172         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10173
10174         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10175
10176         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10177
10178         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10179
10180         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10181
10182         * support/regression/ports/ds390/support.c: Use tinibios.
10183
10184         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10185
10186 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10187
10188         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10189         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10190
10191         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10192
10193         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10194
10195 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10196
10197         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10198
10199         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10200         (packRegsForIYUse): Created and optimised.
10201
10202 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10203
10204         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10205 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10206
10207         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10208
10209         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10210
10211         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10212
10213 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10214
10215         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10216
10217         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10218
10219 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10220
10221         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10222
10223         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10224
10225         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10226
10227 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10228
10229         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10230         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10231         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10232
10233         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10234
10235         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10236         (genNotFloat): Added.
10237         (genUminusFloat): Added.
10238
10239         * device/lib/z80/Makefile: Added floating pt stubs.
10240
10241         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10242
10243         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10244
10245         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10246
10247 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10248
10249         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10250
10251         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10252
10253         * sdcc/support/regression/Makefile: Add port ds390.
10254
10255         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10256
10257         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10258
10259         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10260
10261         * sdcc/support/regression/ports/ds390/support.c: Added.
10262
10263         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10264
10265         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10266
10267         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10268
10269 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10270
10271         * device/include/malloc.h: Added z80 and gbz80 support.
10272
10273         * device/lib/gbz80/heap.s: Added.
10274
10275         * device/lib/z80/heap.s: Added.
10276
10277         * device/lib/malloc.c: Added z80 and gbz80 support.
10278
10279         * support/regression/tests/malloc.c (testMalloc): Added.
10280
10281         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10282
10283         * support/regression/tests/bug-478094.c: Added.
10284
10285         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10286
10287 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10288
10289         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10290
10291         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10292
10293         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10294
10295         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10296
10297         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10298
10299 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10300
10301         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10302
10303 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10304
10305         * support/regression/tests/bug-477927.c: Added.
10306
10307         * src/z80/peeph.def: Added minor rules.
10308
10309         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10310
10311         * src/z80/peeph.def: Added jump optimisation modification.
10312
10313 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10314
10315         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10316
10317 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10318
10319         * support/regression/tests/funptrs.c: Added.
10320
10321 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10322
10323         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10324
10325 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10326
10327         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10328
10329         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10330
10331         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10332         (movLeft2ResultLong): Created.
10333
10334         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10335         (joinPushes): Added.  Joins two char pushes into a word push.
10336
10337 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10338
10339         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10340
10341         * support/makebin/Makefile (install): Added creation of dest dir.
10342
10343 2001-10-24 Karl Bongers <karl AT turbobit.com>
10344
10345         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10346
10347 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10348
10349         * src/z80/ralloc.c: Turned off faulty pack for one use.
10350
10351         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10352
10353         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10354
10355 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10356
10357         * support/regression/Makefile: Improved clean
10358
10359         * support/regression/ports/gbz80/spec.mk: Added clean
10360
10361         * support/regression/ports/host/spec.mk: Added clean
10362
10363         * support/regression/ports/z80/spec.mk: Added clean
10364
10365         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10366
10367         * support/regression/ports/mcs51/timeout.c: little improvements
10368
10369 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10370
10371         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10372
10373         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10374
10375         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10376
10377 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10378
10379         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10380
10381         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10382
10383 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10384         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10385
10386         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10387
10388         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10389
10390         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10391
10392         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10393
10394         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10395
10396         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10397
10398         * support/regression/tests/longor.c: Added.
10399
10400 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10401
10402         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10403
10404         * as/mcs51/aslink.h: define PATH_MAX
10405
10406         * as/mcs51/asm.h: define PATH_MAX
10407
10408         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10409
10410         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10411
10412         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10413
10414         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10415
10416         * src/SDCCglobl.h: define PATH_MAX
10417
10418         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10419
10420         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10421
10422 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10423
10424         * src/z80/gen.c (gencjneshort): Fixed
10425
10426         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10427
10428 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10429
10430         * support/regression/tests/bug-469671.c: Added.
10431
10432         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10433
10434 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10435
10436         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10437
10438         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10439
10440 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10441
10442         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10443
10444         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10445
10446         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10447
10448         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10449
10450         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10451
10452         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10453
10454         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10455
10456 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10457
10458         * 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.
10459
10460         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10461
10462         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10463
10464 2001-10-07    <johan AT FRIJA>
10465
10466         * device/lib/gets.c (gets): fixed the return value.
10467
10468 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10469         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10470
10471         * 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.
10472
10473         * 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.
10474
10475         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10476
10477         * src/pic/gen.c: Removed Safe_strdup.
10478
10479         * configure.in: Added option to enable libgc support.
10480
10481         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10482         (bitVectUnion): Optimised.
10483         (bitVectIntersect): Optimised.
10484         (bitVectBitsInCommon): Optimised.
10485         (bitVectCplAnd): Optimised.
10486
10487         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10488
10489 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10490
10491         * src/SDCCmain.c: distinguish between assembler debug and plain options
10492
10493         * src/avr/main.c:   remove standard assembler options
10494
10495         * src/ds390/main.c: remove standard assembler options
10496
10497         * src/mcs51/main.c: remove standard assembler options
10498
10499         * src/port.h: removed "PENDING" comment
10500
10501 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10502
10503         * src/device/lib/_mulint.c  : new, with assember functions
10504
10505         * src/device/lib/_mullong.c : new, with assember functions
10506
10507         * src/device/lib/_divuint.c : with assember functions
10508
10509         * src/device/lib/_divsint.c : with assember functions
10510
10511         * src/device/lib/_divulong.c: with assember functions
10512
10513         * src/device/lib/_divslong.c: with assember functions
10514
10515         * src/device/lib/_moduint.c : with assember functions
10516
10517         * src/device/lib/_modsint.c : with assember functions
10518
10519         * src/device/lib/_modulong.c: with assember functions
10520
10521         * src/device/lib/_modslong.c: with assember functions
10522
10523         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10524
10525         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10526
10527         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10528                                       replaced _mululong.c and _mulslong.c by _mullong.c
10529
10530 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10531
10532         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10533
10534 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10535
10536         * src/SDCCglue.c: test, if win32api is available for MINGW
10537
10538 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10539
10540         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10541         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10542         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10543         * support/regression/ports/host/spec.mk: removed GENERIC
10544         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10545         * support/regression/ports/z80/spec.mk: removed GENERIC
10546
10547 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10548
10549         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10550
10551         * support/regression/tests/bug-467035.c: Created.
10552
10553 2001-10-01    <johan AT FRIJA>
10554
10555         * src/SDCC.y: fixed bug #466586 part 1
10556
10557 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10558
10559         * SDCCicode.c: z80 has no generic pointers
10560         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10561
10562 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10563
10564         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10565
10566 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10567
10568         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10569
10570         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10571
10572 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10573
10574         * configure.in: Fixed up so that ucsim is only configured once.
10575
10576         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10577
10578         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10579         (getPathDifference): As above.
10580
10581         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10582
10583         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10584
10585 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10586         * .version: Updated to 2.3.1
10587
10588         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10589         Added copyright header.
10590
10591         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10592         (assemble): Added support for macro based assembler commands.
10593         (linkEdit): Added support for macro based linker commands.
10594         (preProcess): Changed the pre-processor to use macros.
10595         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10596         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10597
10598         * device/lib/z80/crt0.s: Added module name for debugging.
10599
10600 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10601
10602         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10603
10604         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10605
10606         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10607
10608         * src/Makefile.in: Added SDCCmacro and SDCCutil
10609
10610 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10611
10612         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10613
10614 2001-09-16    <johan AT FRIJA>
10615
10616         * 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.
10617
10618 2001-09-15    <johan AT FRIJA>
10619
10620         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10621         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10622
10623 2001-09-11    <johan AT FRIJA>
10624
10625         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10626
10627 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10628
10629         * support/regression/tests/bug-460444.c: Added test case.
10630
10631         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10632         (genCast): Added justification for all of the asserts.
10633
10634 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10635
10636         * support/regression/support.c: _xdata replaced by xdata
10637
10638         * support/regression/spec.mk: removed _generic
10639
10640 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10641
10642         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10643
10644         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10645         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10646
10647         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10648
10649         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10650
10651         * support/regression/tests/bug-460010.c: Added test case.
10652
10653         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10654
10655 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10656
10657         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10658
10659         * support/regression/testfwk.c: removed workaround for bug #436344
10660
10661         * support/regression/tests/bp.c: use less memory with mcs51
10662
10663         * support/regression/tests/bug-441448.c: use less memory
10664
10665         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10666
10667         * support/regression/collate-results.py: typo
10668
10669 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10670
10671         * support/regression/tests/fetchoverlap.c: Added new test case.
10672
10673         * support/regression/tests/bp.c: Added new test case.
10674
10675         * support/regression/tests/bug-448984.c: Added new test case.
10676
10677         * support/regression/tests/pow2shifts.c: Added new test case.
10678
10679         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10680         (genlshTwo): Fixed right shift for count > 8.
10681
10682         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10683
10684 2001-09-08    <johan AT FRIJA>
10685
10686         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10687
10688 2001-09-07    <johan AT FRIJA>
10689
10690         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10691
10692         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10693
10694 2001-09-06    <johan AT FRIJA>
10695
10696         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10697         * bernhard noted me at this: "() equals to (void)" (1.38)
10698
10699 2001-09-05    <johan AT FRIJA>
10700
10701         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10702
10703 2001-09-04    <johan AT FRIJA>
10704
10705         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10706
10707
10708 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10709
10710         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10711
10712 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10713
10714         * link/z80/aslink.h: Fixed path for PATH_MAX
10715
10716 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10717
10718         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10719
10720         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10721
10722         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10723
10724         * 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.
10725
10726 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10727
10728         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10729         (genCmp): Fixed up genCmp for the GB with longs.
10730
10731         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10732
10733         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10734
10735         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10736
10737         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10738
10739 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10740
10741         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10742
10743 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10744
10745         * 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.
10746
10747         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10748
10749 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10750
10751         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10752
10753         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10754
10755 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10756
10757   * sim/ucsim/configure:    little improvement of Cygwin-detection
10758   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10759   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10760   * support/regression/tests/bug-221100.c: small changes for mcs51
10761   * support/regression/tests/bug-221168.c: small changes for mcs51
10762   * support/regression/tests/bug-227710.c: small changes for mcs51
10763   * support/regression/tests/staticinit.c: small changes for mcs51
10764   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10765   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10766   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10767
10768 $Revision$