bd70636419253b70850781fa33bb5426752ae5db
[fw/sdcc] / ChangeLog
1 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/SDCCicode.c (geniCodeLogic),
4         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
5
6 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
7
8         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
9           (genSend): bugfix, do not allocate and free twice,
10           (shiftRLong): handle partially overlapping aops
11         * support/regression/tests/bitopcse.c: fixed warning redefined idata
12
13 2006-03-08 Borut Razem <borut.razem AT siol.net>
14
15         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
16           for pic16
17
18 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
19
20         * support/regression/tests/bug1409955.c: new, added
21         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
22         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
23           (aopForSym, aopOp): increment asmop.allocated if reused,
24           (freeAsmop): decrement asmop.allocated and check for zero instead of
25           using asmop.freed,
26           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
27           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
28            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
29            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
30            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
31            genSignedRightShift, genRightShift, genDataPointerGet,
32            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
33            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
34             in reverse order from allocation,
35           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
36             added swappedLR to keep track
37         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
38           pdata & code for GCC, z80, gbz80 & hc08
39         * support/regression/tests/zeropad.c: moved defines to testfwk.h
40
41 2006-03-08 Raphael Neider <rneider AT web.de>
42
43         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
44
45 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
46
47         * device/include/mcs51/c8051f410.h: new SiLabs mcu
48         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
49         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
50
51 2006-03-06 Borut Razem <borut.razem AT siol.net>
52
53         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
54           made the linker quiet
55
56 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
57
58         * src/pic16/gen.c (genPcall): fixed bug #1443644
59         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
60         which dumps before the function entry point a data byte which represents
61         the number of the local variables used by the specified function, added
62         'xinst' for initial support for Extended Instruction Support,
63         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
64         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
65         port->fun_prefix anymore (may change later),
66         (genFunction, genEndFunction): do not store/restore local registers for
67         _main (this should take care the --main-return command line option in
68         the future),
69         (genOr): removed some legacy pic-port instructions,
70         * src/pic16/genarith.c (genAddLit): re-enabled old code because
71         performing operations with SFR's causes data to be written more than
72         once to each SFR. Perhaps SFRs should be handled in special cases...
73         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
74         pcode.h
75         * src/pic16/main.c (_process_pragma): stack bound checking did not take
76         into account for stack starting position,
77         (struct OPTIONS pic16_optionsTable): added command line argument
78         --extended or -y for Extended Instruction Support,
79         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
80         (deassignLRs): *** perhaps the most important change, old 'for' code
81         (commented out for reference), didn't account for some registers which
82         were left marked 'not free' after a pointer operation. The change
83         reduces register usage a lot in some cases
84
85 2006-03-04 Borut Razem <borut.razem AT siol.net>
86
87         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
88           _clean
89         * support/regression/tests/bug-524697.c: decreased array size for
90           mcs51 to fit into the internal RAM
91         * support/regression/Makefile.in: a little bit more verbose
92
93 2006-03-03 Borut Razem <borut.razem AT siol.net>
94
95         * support/regression/fwk/lib/testfwk.c,
96           support/regression/fwk/include/testfwk.h: introduced function
97           _prints(), nonrecursive _printn(), call _initEmu() from main()
98         * support/regression/ports/gbz80/support.asm,
99           support/regression/ports/ucz80/support.asm,
100           support/regression/ports/z80/support.asm,
101           support/regression/ports/ds390/support.c,
102           support/regression/ports/hc08/support.c,
103           support/regression/ports/host/support.c,
104           support/regression/ports/mcs51/support.c,
105           support/regression/ports/xa51/support.c: added empty _initEmu()
106           function
107         * support/regression/ports/pic16/gpsim.cmd,
108           support/regression/ports/pic16/spec.mk,
109           support/regression/ports/pic16/support.c,
110           support/regression/Makefile.in: added pic16 regression test
111
112 2006-03-01 Raphael Neider <rneider AT web.de>
113
114         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
115           genConstPointerGet): use safe way of generating MOVFF to cover
116             literals as well as registers, fixes bug #1440527
117         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
118             dereference
119           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
120             more correctly, fixes bug #1232186
121           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
122         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
123             gplink guess the correct processor in more cases, applied patch
124             from Till Riedel attached to and fixing bug #1436552
125
126 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
127
128         * support/regression/tests/array.c: added, contains check for #1434401
129         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
130
131 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
132
133         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
134         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
135         * device/include/mcs51/c8051f326.h,
136         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
137         * device/include/mcs51/c8051f000.h,
138         * device/include/mcs51/c8051f018.h,
139         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
140           PCON_IDLE,PCON_STOP and added sfr16 definitions
141
142 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
143
144         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
145           genGetWord): fixed bug 1409955
146
147 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
148
149         * device/include/hc08/mc68hc908gp32.h,
150         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
151
152 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
153
154         * src/SDCCast.c (constExprValue): return NULL if not a value
155         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
156         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
157         * support/regression/tests/bitfields.c: enabled signed bitfield for all
158
159 2006-02-13 Borut Razem <borut.razem AT siol.net>
160
161         * src/regression/ptrarg.c: added, fails due to bug #1430967
162         * src/regression/Makefile: ptrarg.c added, ...
163
164 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
165
166         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
167         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
168
169 2006-02-11 Borut Razem <borut.razem AT siol.net>
170
171         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
172           print "Processor: xxx" message to stdout only if --verbose
173
174 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
175
176         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
177         * support/regression/tests/bug1426356.c: added
178         * support/regression/tests/bitfields.c: removed 2 tests
179
180 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
181
182         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
183         * device/include/mcs51/c8051f330.h,
184         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
185           PCON_IDLE,PCON_STOP and added sfr16 definitions
186         * device/lib/_divsint.c,
187         * device/lib/_divuint.c,
188         * device/lib/_divulong.c,
189         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
190           register bank bug for small stackauto
191
192 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
193
194         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
195
196 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
197
198         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
199         * all.dsp: corrected several bin paths
200         * device/include/mcs51/c8051f120.h,
201         * device/include/mcs51/c8051f300.h,
202         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
203           to PCON_IDLE,PCON_STOP
204         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
205         * device/lib/printf_large.c (output_float): fixed bug 1388703
206         * support/regression/tests/bug1057979.c: added test for bug 1388703
207
208 2006-02-08 Raphael Neider <rneider AT web.de>
209
210         * src/pic/pcode.c (pciTRIS): fixed typo,
211           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
212           (LinkFlow): fixed handling of flows that end in a call,
213           (ReuseReg): perform safety check earlier
214         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
215             to work with flows at the beginning of a pBlock,
216             fixes #1426557 (Symbol not previously defined),
217           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
218             usage information
219           (RemoveUnusedRegisters): update register usage info
220         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
221             created, reuse existing ones instead
222         * src/pic/gen.c (genPcall): fixed #1424719
223
224 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
225
226         * link/z80/lkmain.c,
227         * link/z80/lklex.c,
228         * link/z80/lkdata.c,
229         * link/z80/aslink.h: fixed build on current cygwin:
230         replaced getline() by lk_getline()
231
232 2006-02-01 Borut Razem <borut.razem AT siol.net>
233
234         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
235           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
236           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
237           src/regression/bool1.c, src/regression/bool2.c,
238           src/regression/bool3.c, src/regression/call1.c,
239           src/regression/compare.c, src/regression/compare10.c,
240           src/regression/compare2.c, src/regression/compare3.c,
241           src/regression/compare4.c, src/regression/compare5.c,
242           src/regression/compare6.c, src/regression/compare7.c,
243           src/regression/compare8.c, src/regression/compare9.c,
244           src/regression/configword.c, src/regression/for.c,
245           src/regression/inline.c, src/regression/mult1.c,
246           src/regression/nestfor.c, src/regression/or1.c,
247           src/regression/pointer1.c, src/regression/ptrfunc.c,
248           src/regression/rotate1.c, src/regression/rotate2.c,
249           src/regression/rotate3.c, src/regression/rotate4.c,
250           src/regression/rotate5.c, src/regression/rotate6.c,
251           src/regression/rotate7.c, src/regression/string1.c,
252           src/regression/struct1.c, src/regression/sub.c,
253           src/regression/sub2.c, src/regression/switch1.c,
254           src/regression/while.c, src/regression/xor.c,
255           src/regression/create_stc, src/regression/simulate,
256           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
257           regression tests
258         * src/regression/gpsim_assert.h: added
259
260 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
261
262         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
263         ((void (code *) (void)) 0) ();
264         * as/hc08/aslex.c,
265         * as/hc08/aslink.h,
266         * as/hc08/asm.h,
267         * as/hc08/asmain.c,
268         * as/hc08/lkdata.c,
269         * as/hc08/lklex.c,
270         * as/hc08/lkmain.c,
271         * as/mcs51/aslex.c,
272         * as/mcs51/aslink.h,
273         * as/mcs51/asm.h,
274         * as/mcs51/asmain.c,
275         * as/mcs51/lkdata.c,
276         * as/mcs51/lklex.c,
277         * as/mcs51/lkmain.c,
278         * as/z80/aslex.c,
279         * as/z80/asm.h,
280         * as/z80/asmain.c: fixed build on current cygwin:
281         replaced getline() by as_getline()
282
283 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
284
285         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
286         declarator in the symbol chain
287         * src/SDCCsymt.h,
288         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
289         parameter list for function pointers
290         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
291         * support/regression/tests/bug-716242.c: added
292
293 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
294
295         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
296         offset if possible
297         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
298
299 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
300
301         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
302         inifinitely recurseable, added static
303         * support/regression/tests/bug-1408066.c: added
304
305 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
306
307         * src/SDCCicode.h,
308         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
309         renamed, added possibility to create "postLoopLbl"-labels
310         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
311         newiTempLoopHeaderLabel
312         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
313         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
314         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
315         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
316         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
317         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
318         (basicInduction): fixed bug #136564, made static,
319         (loopInduction): changed parameter of basicInduction, made static,
320         (addPostLoopBlock): added
321         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
322         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
323         findLoopEndSeq
324         * support/regression/tests/bug-136564.c: added
325         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
326         --std-sdcc99 to LIBSDCCFLAGS
327
328 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
329
330         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
331         while loop
332         * support/regression/tests/bug-1406131.c: added
333
334 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
335
336         * src/SDCCast.c (decorateType): fix promotion of unary minus
337         * src/SDCCsymt.c (computeType): beautified
338         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
339         (valUnaryPM, valComplement): fix sign and promotion,
340         (valNot): ANSI: result type is int (SDCC: unsigned char)
341         * support/regression/tests/uminus.c: speedup by removing superflous
342         test case 'int'
343         * support/regression/tests/onebyte.c: added promotion and signedness
344         tests for unary minus
345         * support/regressions/tests/bug-477927.c: disable warning about
346         uninitialized variables
347         * support/regression/tests/not.c: added
348
349 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
350
351         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
352         * src/mcs51/gen.c (gen51Code): show final register usage after
353         fillGaps in asm with --i-code-in-asm
354         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
355         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
356         incUsed, rliveClear, adjustIChain): made static,
357         (setFromRange): excluded because it's unused,
358         (findPrevUseSym, markWholeLoop): added,
359         (findPrevUse): rewritten; fixes bug 895992; now a complete search
360         through all branches of predecessors enables sdcc to emit the warning
361         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
362         (rlivePoint): made static, added parameter emitWarnings which is only
363         true during the first run out of two,
364         (findRecursiveSucc, findRecursivePred): removed,
365         (computeLiveRanges): made static, added parameter emitWarnings,
366         (dumpIcRlive): added for debugging only
367         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
368         removed prototype of setFromRange()
369         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
370         in call of computeLiveRanges()
371         * support/regression/tests/bug-895992.c: added
372         * support/regression/tests/bug-971834.c: added
373         * support/valdiag/tests/bug-895992.c: added
374         * support/valdiag/tests/bug-971834.c: added
375
376 2005-12-18 Raphael Neider <rneider AT web.de>
377
378         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
379           (genUnpackBits): improved code for direct operands,
380           (genPackBits): improved code for literal assignment to bitfields
381             and for direct destination operands (no FSR indirection),
382             prevented redundant AND, fixes #1362800,
383           (AccLsh): added parameter to disable masking of the result
384         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
385           skip instructions with side-effects (like incfsz),
386           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
387         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
388         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
389           fixes #1375263
390
391 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
392
393         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
394         volatile variables as spill location
395
396 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
397
398         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
399         replacing literals
400         * support/regression/tests/bug-1376320.c: added
401
402 2005-12-08 Raphael Neider <rneider AT web.de>
403
404         * src/pic/device.c: renamed is_shared to pic14_is_shared
405         * src/pic/gen.c (genIfx): re-enabled handling of sbits
406         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
407           (is_valid_identifier): added for above workaround
408
409 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
410
411         * device/lib/Makefile.in: fixed to enable port-specific-objects
412         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
413           char, thanks Hubert Sack
414         * doc/sdccman.lyx: documented --xstack-loc,
415           elaborated a bit more on interrupts and pitfalls,
416           removed "setjmp/longjmp unsupported",
417           documented some unsupported C99 features
418         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
419         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
420           if, thanks Hubert Sack
421         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
422         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
423           make make_library
424         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
425           regression tests can report resource usage (rfe 700441)
426         * support/regression/collate-results.py: report resource usage
427         * support/regression/ports/ds390/spec.mk,
428         * support/regression/ports/hc08/spec.mk,
429         * support/regression/ports/mcs51/spec.mk,
430         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
431         * support/regression/ports/ds390/uCsim.cmd,
432         * support/regression/ports/hc08/uCsim.cmd,
433         * support/regression/ports/mcs51/uCsim.cmd,
434         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
435         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
436           library, use the default one
437         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
438           building the library
439
440 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
441
442         * config.dsp: added dependency on .version and configure_vc.awk
443         * device/include/setjmp.h: updated for --stack-auto and --xstack
444         * device/include/mcs51/at89c51snd1c.h: corrected line endings
445         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
446         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
447         * device/lib/libsdcc.lib: added _setjmp
448         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
449           (decorateType): fixed bug 1372851,
450           (optimizeGetHbit): fixed warning
451         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
452           array initialisation
453         * support/regression/tests/bug1057979.c: added test for bug 1358192
454         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
455
456 2005-12-03 Borut Razem <borut.razem AT siol.net>
457
458         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
459           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
460
461 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
462
463         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
464         createIval): implement symbol independant "flexible array member",
465         (createIvalCharPtr): implemented flexible array initialisation with a
466         string
467         * src/SDCCsymt.c (copyStruct): removed,
468         (getSize): fixed misleading comment,
469         (getAllocSize): removed, the additional allocation size is now in
470         sym->flexArrayLength,
471         (checkStructFlexArray): new, syntax checks for flexible array members,
472         (compStructSize): added syntax checks for "flexible array members"
473         (copyStruct): removed,
474         (copyLinkChain): removed inefficient fix for bug 770487
475         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
476         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
477         symbol->flexArrayLength
478         * src/SDCCerr.c,
479         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
480         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
481         * support/regression/tests/structflexarray.c: added
482         * support/valdiag/tests/structflexiblearray.c: added
483
484 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
485
486         * src/SDCCast.c (decorateType): fixed bug 1368489
487         * support/Util/SDCCerr.c,
488         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
489
490 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
491
492         * device/include/mcs51/at89c51snd1c.h: added file submitted by
493           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
494
495 2005-11-27 Borut Razem <borut.razem AT siol.net>
496
497         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
498           support/cpp2/mkdeps.h: added command line option
499           -obj-ext=<extension> to SDCPP to define object file externion, used
500           for generation of make dependencies (-M)
501         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
502
503 2005-11-26 Borut Razem <borut.razem AT siol.net>
504
505         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
506           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
507           added pic and pic16 libraries
508
509 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
510
511         * device/include/float.h: Corrected typo in prototype of __fsgt
512
513 2005-11-25 Borut Razem <borut.razem AT siol.net>
514
515         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
516           added creation of model-mcs51-stack-auto libraries
517
518 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
519
520         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
521         and fields-list too
522         * src/SDCCast.c (createIvalArray): removed obsolete comment
523
524 2005-11-24 Borut Razem <borut.razem AT siol.net>
525
526         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
527           added missing device/lib/mcs51/crt*.asm sources
528
529 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
530
531         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
532
533 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
534
535         * device/lib/_fs2schar.c,
536         * device/lib/_fs2sint.c,
537         * device/lib/_fs2slong.c: optimized inline asm
538
539 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
540
541         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
542           Better handling of floats between -1.0 and 0.0.
543
544 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
545
546         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
547           (the missing "if"s prohibited removal of redundant labels)
548
549 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
550
551         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
552           Properly convert floats between -1.0 and 0.0 to long, int, and char
553           types (max integer value of negative floats tends to zero).
554         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
555           Removed changes made so to work properly with floats between
556           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
557           and _fs2char.c
558
559 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
560
561         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
562         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
563         (genCast) cosmetic change
564         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
565         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
566         from mcs51
567         * support/regression/tests/bitfields (testSignedBitfields): added
568
569 2005-11-18 Borut Razem <borut.razem AT siol.net>
570
571         * sdcc/device/lib/Makefile.in: remove all unnecessary files
572         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
573           introduced SILENT option to make building of pic16 libraries less
574
575 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
576
577         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
578           Now they work properly with floats between -1.0 and 0.0
579         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
580
581 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
582
583         * src/SDCCicode.c (printOperand): added missing else
584
585 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
586
587         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
588         reformatted for better readability
589         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
590         signed bitfields
591
592 2005-11-17 Borut Razem <borut.razem AT siol.net>
593
594         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
595           introduced SILENT option to make building of pic16 libraries less
596           verbose - used for nightly snapshot build
597         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
598           available on Win32 platforms.
599         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
600           medium, large, pic and pic16
601
602 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
603
604         * device/lib/printf_large.c: Temporary patch for bug 1358192:
605           printf("%f"...) sets fraction to zero.
606
607 2005-11-16 Raphael Neider <rneider AT web.de>
608
609         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
610           fixes #1357221
611         * src/pic/gen.c (genIfx): implemented for CARRY bit
612         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
613           to generic pointers, fixes #1357332,
614           (pic16_movLit2f): NEW,
615           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
616
617 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
618
619         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
620
621 2005-11-11 Raphael Neider <rneider AT web.de>
622
623         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
624         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
625           compute pointer's type from operand,
626           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
627           improved single bit reads, fixes bug #1353379
628
629 2005-11-09 Borut Razem <borut.razem AT siol.net>
630
631         * support/scripts/sdcc.nsi: added lib/pic to the package
632
633 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
634
635         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
636
637 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
638
639         * support/regression/tests/bug1348008.c: added
640         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
641         * support/regression/tests/bug1337835.c: updated comment
642
643 2005-11-06 Borut Razem <borut.razem AT siol.net>
644
645         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
646           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
647           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
648           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
649           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
650           dynamic construction of cl_error_class and derivates - 2.nd try
651
652 2005-11-05 Borut Razem <borut.razem AT siol.net>
653
654         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
655           bug, which caused Bus Errors on sparc solaris
656
657 2005-11-04 Borut Razem <borut.razem AT siol.net>
658
659         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
660           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
661           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
662           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
663           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
664           and derivates to resolve the initialization problem on OSX
665
666 2005-11-02 Borut Razem <borut.razem AT siol.net>
667
668         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
669           corrected typo - #include <winsock2.h>
670
671 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
672
673         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
674           (_asxxxx_mapping): added org directive for future enhancements
675
676 2005-11-01 Borut Razem <borut.razem AT siol.net>
677
678         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
679           enabled sockets on WIN32
680         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
681
682 2005-10-31 Borut Razem <borut.razem AT siol.net>
683
684         * support/regression/generate-cases.py: escape backslashes in {testcase}:
685           WIN32 backslash path delimiters should be escaped when used in C strings
686         * support/regression/tests/bitfields.c: exclude failing assertions for
687           __CYGWIN32__ and __MINGW32__ hosts
688
689 2005-10-30 Borut Razem <borut.razem AT siol.net>
690
691         * src/SDCCutil.c: corrected double comparison typo
692
693 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
694
695         * device/lib/medium/Makefile: added for new memory model medium
696         * device/include/asm/mcs51/features.h: updated for medium/pdata
697         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
698           added Multiply & Accumulate sbit's and MAC0_PAGE define
699         * device/include/mcs51/c8051f300.h: added sfr16 definitions
700         * device/include/mcs51/c8051f310.h: added sfr16 definitions
701         * device/lib/_mullong.c: update for medium model
702         * device/lib/incl.mk: added medium model
703         * doc/sdccman.lyx: documented medium model
704         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
705         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
706         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
707         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
708           (allocParms): set SCLS and OCLS to pdata for medium model
709         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
710           for pdata,
711           (powof2): return <0 if not power of 2
712         * src/avr/gen.c (genBitWise): use updated powof2
713         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
714           (shiftR2Left2Result): small optimization in setup, save acc when storing,
715           (shiftLLeftOrResult): use B if necessary
716         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
717         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
718         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
719         * support/regression/Makefile.in: added test-mcs51-medium
720         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
721
722 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
723
724         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
725         specifier unsigned
726         * device/lib/time.c (mktime): fixed bug 1334315
727
728 2005-10-28 Raphael Neider <rneider AT web.de>
729
730         * device/include/pic/p16f_common.inc: added common declarations
731         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
732
733 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
734
735         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
736           (aopPutUsesAcc): added to predict accumulator use,
737           (assignResultValue): save acc if necessary,
738           (genMinusDec): store result if indirectly addressed,
739           (genDivOneByte):  save acc if necessary,
740           (movLeft2Result): bugfix if left already in acc,
741           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
742             attention to accumulator use (esp. pdata),
743           (genReceive): receive pdata correctly
744         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
745         * src/SDCCicode.h: added isOperandInPagedSpace prototype
746
747 2005-10-27 Raphael Neider <rneider AT web.de>
748
749         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
750
751 2005-10-27 Raphael Neider <rneider AT web.de>
752
753         * .version: changed version to 2.5.4
754         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
755         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
756           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
757             arithmetics support routines
758         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
759         * device/lib/Makefile.in: also create installdir for pic
760
761         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
762           pic14 port as well
763         * src/pic/device.c (dump_sfr): rewritten to delegate register
764           placement to the linker (use `extern sym' rather than sym EQU addr),
765           (validAddress): fixed to check last specified address
766         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
767           (popGetLit): truncate literal value to 8 bit,
768           (popGet): moved assert to more appropriate place
769           (popGetExternal): create pCode operand from and mark the according
770             symbol as being `extern'
771           (popGetAddr): added sanity check on immediate's offset, provide
772             GPOINTER tag on demand
773           (aopPut): fixed for immediates,
774           (mov2w_op): move operand's address or contents to WREG (depending on
775             operand type), safer variant of mov2w,
776           (movwf,call_libraryfunc): NEW, handy abbreviations,
777           (get_argument_pcop,get_return_val_pcop,pass_argument,
778           get_returnvalue): interface for accessing function parameters and
779             return values,
780           (assignResultValuei,genRet): use new parameter/return value interface
781           (pic14_getDataSize): back to old version handling generic pointers,
782           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
783             provided implementation and/or fixed old one,
784           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
785             calls, removed legacy 8051 reference code
786           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
787           (loadSignToC): NEW, move the operands sign bit to CARRY,
788           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
789             genRightShiftSigned, accepts negative shift counts,
790           (setup_fsr): load FSR and adjust IRP (indirect memory access),
791           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
792             generic pointers, __data pointers and __code pointers,
793           (genUnpackBits,genPackBits): rewritten to work with generic pointers
794             and signed bitfields, limit bitfields to 8 bit,
795           (genDataPointerGet): fixed number of bytes read,
796           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
797           (genPointerGet,genPointerSet): fixed handling of __code pointers,
798             pointers to constant data are no longer assumed to point to __code
799             space, removed invalid pointer types,
800           (bitpatternFromVal): retrieve the PICs representation of an integer
801             or float literal,
802           (genDataPointerSet): fixed assigning to po_immediate operands,
803           (genGenPointerSet): implemented as library call,
804           (genIfx): fixed incorrect condition,
805           (genAddrOf): limit generic pointers' addresses to 2 bytes,
806             provide GPOINTER tag according to destination's storage class,
807           (genCast): added code to handle casting to generic pointers, added
808             sign-/zero extension of the result
809           (aop_isLitLike,op_isLitLike): fixed handling of immediates
810         * src/pic/gen.h: added macros to access IRP bit in STATUS register
811         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
812           extend the result
813         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
814           address/register resides in the shared banks
815           (emitSymbolToFile): improved to handle global and `pinned' symbols,
816             put all variables into separate sections (have the linker arrange
817             them)
818           (picglue): put init code and interrupt handlers in separate sections
819         * src/pic/main.c: added port specific options table, modified to PORT
820           structure to make GPOINTERs 3 byte, added pic14_options
821           (_pic14_do_link): private linking routine (update paths to libraries,
822             add libsdcc.lib by default)
823         * src/pic/main.h: declare pic14_options
824         * src/pic/pcode.c: fixed instructions i/o relations,
825           (RegCond): reverted to correct version,
826           (newpCodeOpLit): truncate literals to 8 bit,
827           (genericPrint): added debug output,
828           (getRegFromInstruction): fixed for various operand types, simplified
829           (BuildFlow): fixed broken handling of isntructions with labels
830           (LinkFlow): start at last instruction in flow (skip trailing comments),
831             pass the flow on to the next instruction after CALL
832           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
833           (insertPCodeInstruction): fixed inserting after a skip instruction,
834           (DoBankSelect): fixed for labeled instructions
835           (OptimizepBlock): honor --nopeep switch
836           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
837         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
838         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
839           (pCodeOptime2pCodes): allow disabling this optimization via
840             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
841             but is still buggy), started implementation of a dataflow based
842             pCode optimization (CSE + dead code elimination)
843           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
844         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
845           names are independant of the stack location and therefore portable across
846           devices
847
848 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
849
850         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
851           (selectSpil): fixed bug 1337835 by not spilling bit variables
852         * support/regression/tests/bug1337835.c: added test for this bug
853         * src/mcs51/peeph.def: restart after rule 3.c,
854           addded rules 263.x to optimize loading constants
855
856 2005-10-26 Raphael Neider <rneider AT web.de>
857
858         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
859         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
860           (genAssign): emit warning when casting literals to generic pointer
861             type, also applies when taking the address of a fixed variable,
862           (genCast): improved casting to generic pointers
863         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
864           extern variables, added verbose error message
865         * device/include/pic16/{string.h,errno.h}: added #pragma library c
866
867 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
868
869         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
870         carry must be complemented too
871         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
872         could be emitted by genMinus
873         * src/SDCCval.c (constVal): fixed bug 1305065
874
875 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
876
877         * src/SDCCast.c (addCast): added promotion for bit variables
878         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
879         promotion casts + optimisation
880         (optimizeGetWord): fix warning 'i' might be used uninitialized
881         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
882         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
883
884 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
885
886         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
887         all chars are promoted to int; promotion should be handled in SDCCast.c
888
889 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
890
891         * device/lib/_strcmp.c: Fixed bug 1326457
892
893 2005-10-11 Raphael Neider <rneider AT web.de>
894
895         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
896         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
897
898 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
899
900         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
901         * support/regression/tests/sfr16.c: added test for the sfr32 bug
902
903 2005-10-04 Raphael Neider <rneider AT web.de>
904
905         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
906           device/lib/pic16/pics.all: added pic18f1320
907         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
908
909 2005-09-30 Raphael Neider <rneider AT web.de>
910
911         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
912         * src/pic16/devices.inc: NEW, provides device descriptions
913         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
914
915 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
916
917         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
918           GETHBIT
919
920 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
921
922         * doc/sdccman.lyx: updated Highest Order Bit documentation,
923           documented Any Order Bit, Higher Order Byte and Higher Order Word
924         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
925         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
926           (optimizeGetAbit): new, to get any bit, not only the high bit,
927           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
928           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
929           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
930           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
931             RIGHT_OP: also try GETBYTE, GETWORD optimization,
932             GETABIT, GETBYTE, GETWORD: decorate them,
933           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
934           (ast_print): added GETABIT, GETBYTE, GETWORD
935         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
936         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
937           (geniCodeBinary): new generic binary icode,
938           (ast2iCode): added GETABIT, GETBYTE, GETWORD
939         * src/port.h: updated comment for PORT.hasExtBitOp
940         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
941           (genGetByte): new, to get a single byte,
942           (genGetWord): new, to get a word from a long,
943           (gen51Code): added GETABIT, GETBYTE, GETWORD
944         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
945
946 2005-09-23 Raphael Neider <rneider AT web.de>
947
948         * configure.in, configure: have device/lib/pic configured
949         * device/lib/Makefile.in: added model-pic14
950         * device/lib/clean.mk: added pic/ to clean rule
951         * device/lib/pic: added rudimentary pic14 library providing support
952           functions for multiplication/division/generic pointer access
953         * src/SDCCopt.c (convilong): mark support functions as extern
954           for pic14 port as well
955         * src/pic/gen.c (genMult): added assertions,
956           (genpic14Code): emit warning on unhandled iCodes
957         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
958         * src/pic/pcode.c (pCodeOpCopy),
959         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
960           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
961           SFR_REGISTER}), made safe for future extensions
962         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
963           instructions even if preceeded by SKIP instructions (also remove
964           them); removed unused code
965         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
966           prevents leaving parts of the structure uninitialized after copying
967
968 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
969
970         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
971           ago by me
972         * support/regression/tests/addsub.c: added test for the bug
973
974 2005-09-21 Raphael Neider <rneider AT web.de>
975
976         * device/include/pic16/pic18f1220.h,
977           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
978         * device/lib/pic16/Makefile.rules: added missing opening paren
979         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
980           are provided in genutils.c,
981           (genUminusFloat,genUminus,genCmpEq): added asserts on different
982           operand/result sizes,
983           (genCmp): assert on NULL pointers first, then check deref'ed values
984         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
985           result size
986
987 2005-09-18 Raphael Neider <rneider AT web.de>
988
989         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
990           as these are now unused,
991           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
992         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
993           local, avoids uninitialized pointer dereference on r->name
994         * src/pic16/ralloc.c (newReg): fixed indentation
995
996 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
997
998         * src/SDCCval.c (constVal): fixed bug 730366
999         * support/Util/SDCCerr.c,
1000         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1001
1002 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1003
1004         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1005
1006 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1007
1008         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1009
1010 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1011
1012         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1013           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1014         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1015           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1016         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1017         * packihx/packihx.c (hexDigit): made c unsigned char
1018         * as/mcs51/lklibr.c (fndsym),
1019         * link/z80/lkgb.c (gb),
1020         * link/z80/lklibr.c (fndsym),
1021         * link/z80/lkrloc.c (relr),
1022         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1023         * src/SDCC.lex (checkCurrFile, process_pragma),
1024         * src/SDCCglue.c (spacesToUnderscores),
1025         * src/SDCCmain.c (setParseWithComma, processFile),
1026         * src/asm.c (tvsprintf, printCLine),
1027         * src/avr/gen.c (emitcode, aopPut),
1028         * src/ds390/gen.c (emitcode),
1029         * src/hc08/gen.c (emitcode, emitinline),
1030         * src/mcs51/gen.c (emitcode, genInline),
1031         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1032           tokenizeLineNode),
1033         * src/pic/ralloc.c (debugLog),
1034         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1035           tokenizeLineNode),
1036         * src/pic16/ralloc.c (debugLog),
1037         * src/z80/main.c (_process_pragma):
1038            made all ctype.h function calls safe
1039         * src/SDCCopt.c: include math.h for fabs
1040         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1041           and used them throughout the code to make ctype.h function calls safe
1042         * src/ds390/main.c (asmLineNodeFromLineNode),
1043         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1044         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1045            unsigned char*
1046         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1047           (newpCodeAsmDir): made ctype.h function calls safe
1048         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1049           pic16_emitcode):  made lbp unsigned char*
1050         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1051           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1052         * src/xa51/gen.c (emitcode),
1053         * src/z80/gen.c (_emit2): made lbp unsigned char*
1054         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1055            char*
1056
1057 2005-09-05 Raphael Neider <rneider AT web.de>
1058
1059         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1060           access bank splitpoint
1061
1062 2005-09-05 Raphael Neider <rneider AT web.de>
1063
1064         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1065
1066 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1067
1068         * .version: changed to version 2.5.3
1069         * doc/sdccman.lyx: changed version to 2.5.3,
1070           documented --codeseg and --constseg and pragma codeseg and constseg,
1071           documented bit parameters (reentrant) and bit returning
1072         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1073            currFunc->recvSize, but is this ok for all ports?
1074           (ast2iCode): result of ~ on unsigned char must be cast to int for
1075            bool to work
1076         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1077           function pointers in bit space
1078         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1079           (processFuncArgs): call port.reg_parm() with reentrancy info
1080         * src/port.h,
1081         * src/avr/main.c,
1082         * src/ds390/main.c,
1083         * src/hc08/main.c,
1084         * src/pic/main.c,
1085         * src/pic16/main.c,
1086         * src/xa51/main.c,
1087         * src/z80/main.c: port.reg_parm prototype extended with
1088           "bool reentrant" parameter
1089         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1090           options.stackAuto for allocating bit register parameters
1091         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1092           (genSend): set BitBankUsed if it is,
1093           (selectRegBank): factored out of genCall for use in genPcall,
1094           (genCall): removed redundant dtype assignmen, use selectRegBank,
1095           (genPcall): handle returning in Carry properly, save in F0 if needed,
1096           (genReceive): handle bit register parameters
1097         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1098           (mcs51_assignRegisters): enable bit registers for all reentrant
1099            functions and don't set BitBankUsed unconditionally
1100         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1101         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1102         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1103
1104 2005-08-27 Borut Razem <borut.razem AT siol.net>
1105
1106         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1107         ppc-osx (Darwin) does not support -u option. It seems that it is
1108         supported only on Linux - GNU cp
1109
1110 2005-08-25 Borut Razem <borut.razem AT siol.net>
1111
1112         * sim/ucsim/gui.src/serio.src/Makefile.in,
1113           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1114           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1115           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1116           install and strip, since the strip at /usr/ccs/bin should be used
1117           on solaris
1118
1119 2005-08-24 Borut Razem <borut.razem AT siol.net>
1120
1121         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1122
1123 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1124
1125         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1126         ffffffffu
1127
1128 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1129
1130         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1131         * as/mcs51/lkmain.c (link_main): fixed warning
1132         * device/include/stdbool.h: ds390 has no advanced bit support yet
1133         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1134         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1135         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1136           and updated their macros
1137         * src/SDCCval.c (constVal): updated comment for renamed b_long
1138
1139 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1140
1141         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1142         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1143           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1144           (oprio): set priority for '['
1145         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1146            and adb_24_bit
1147         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1148         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1149         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1150         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1151           added overlayable BIT_BANK area
1152         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1153           (summary2): explain 'T' in legenda
1154         * as/mcs51/lkrloc.c: replaced old K&R style,
1155           (relr): added R_BIT processing,
1156           (errmsg): added "Bit-addressable relocation error",
1157           (adb_bit): added for converting from byte- to bit-addressable space,
1158           (adb_24_bit): added for converting from byte- to bit-addressable space
1159         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1160            used in reentrant functions now even as return value
1161         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1162         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1163           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1164         * src/SDCCglobl.h: added indicator BitBankUsed
1165         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1166            the bit registers b0-b7
1167         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1168           (geniCodeCast): fixed bug 1263853,
1169           (geniCodeLogicAndOr): put result in bool or char,
1170           (geniCodeReceive): added parameter func for accessing the return type,
1171           (geniCodeFunctionBody): pass func to geniCodeReceive
1172         * src/SDCCmain.c: added indicator BitBankUsed
1173         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1174         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1175           (checkSClass): don't put automatic bool/bit on stack,
1176           (checkFunction): removed check on function cannot return bit
1177         * src/SDCCsymt.h: added newBoolLink prototype
1178         * src/mcs51/gen.c (rb1regs): added bit registers,
1179           (movc): created for assigning to carry,
1180           (pushReg, popReg): created for pushing registers,
1181           (sameRegs): check both AOP_REG and AOP_CRY types,
1182           (aopOp): handle bit registers,
1183           (aopPut): optimization no self-assign,
1184           (saveRegisters): push reg->base (bits) only once for bit registers,
1185            and use pushReg,
1186           (unsaveRegisters): pop reg->base only once and use popReg,
1187           (assignResultValue): added parameter func and return in carry for bits,
1188           (genIpush): optimization no reload in A if not changed,
1189           (genSend): bit parameters in reentrant functions are passed in bit
1190            registers by first assigning to bits in B, then save registers and
1191            copy B to bits,
1192           (genCall): handle returning in Carry properly, save it in F0 if needed,
1193           (genPcall): updated assignResultValue call, this is not safe yet for bit
1194            returning function !!!
1195           (genFunction): don't generate equ's for bit registers and use pushReg,
1196           (genEndFunction): take care of bit returning functions and use popReg,
1197           (genRet): return bit in Carry,
1198           (genIfx): optimize bit registers and other directly addressable bits,
1199           (genReceive): updated assignResultValue call
1200         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1201           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1202            registers when using stack-auto
1203         * src/mcs51/ralloc.c (_G): added allBitregs,
1204           (regs8051): added the bit registers,
1205           (createStackSpil): use macro IS_BIT,
1206           (getRegBit): added to allocate a bit register, else spill,
1207           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1208           (updateRegUsage): factored out to ease stepping while debugging,
1209           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1210            also allocate bit registers,
1211           (fillGaps): handle bit registers,
1212           (findAllBitregs): added to create bit vector with all bit registers,
1213           (mcs51_allBitregs): returns this bit vector,
1214           (mcs51_assignRegisters): when using stack-auto use bit registers for
1215            passing parameters and creating local variables
1216         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1217
1218 2005-08-22 Borut Razem <borut.razem AT siol.net>
1219
1220         * device/lib/Makefile.in: replaced find option -or with -o
1221           to make it run on solaris
1222
1223 2005-08-22 Raphael Neider <rneider AT web.de>
1224
1225         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1226           fixes #1265442 (crash on Solaris)
1227
1228 2005-08-20 Borut Razem <borut.razem AT siol.net>
1229
1230         * configure, configure.in: added tests for libsocket and libnsl libraries,
1231           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1232           from support/regression/Makefile.in
1233         * support/regression/Makefile.in: added
1234         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1235         * sim/ucsim/libtool: regenerated on sparc-solaris
1236         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1237           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1238           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1239           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1240           sparc-solaris, which doesn't use GNU ld linker
1241         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1242         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1243
1244 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1245
1246         * src/mcs51/peeph.def: updated comments
1247
1248 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1249
1250         * device/lib/_gptrget.c,
1251         * device/lib/_gptrput.c: slightly shorter
1252         * doc/sdccman.lyx: incremented version
1253         * src/mcs51/peeph.def: moved peephole comments to the line of first
1254           change to better keep line correlation, reanimated 186.e
1255         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1256
1257 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1258
1259         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1260           David Saxton with quotes around file name.
1261
1262 2005-08-15 Borut Razem <borut.razem AT siol.net>
1263
1264         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1265           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1266           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1267           make tests run on x86_64 platform
1268
1269 2005-08-13 Raphael Neider <rneider AT web.de>
1270
1271         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1272           as it might be executed DURING a build (parallel make is wonderful)
1273
1274 2005-08-13 Raphael Neider <rneider AT web.de>
1275
1276         * device/lib/Makefile.in (port-specific-objects-pic16):
1277           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1278         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1279           dependency
1280         * device/lib/pic16/Makefile.rules: build subdirs before creating
1281           the library, removed builddir rule, create $(builddir) early in
1282           recurse rule, use empty recurse rule for leaf directories
1283         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1284           mkdir errors (race condition), removed duplicate suffix "hex"
1285           from clean rules
1286         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1287         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1288           prevents mkdir -p from aborting on Alpha
1289
1290 2005-08-12 Raphael Neider <rneider AT web.de>
1291
1292         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1293           db-statements in order to allow for arrays of pointers in code
1294           sections to be placed without interspersed 0-padding, fixes
1295           bug #1256215
1296         * (emitStatistics): fixed division by zero for pic18f1220
1297         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1298           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1299         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1300         * (pic16_pCodeConstString): keep track of already emitted string
1301           literals to prevent "duplicate definitions of symbol _str_NR"
1302         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1303           debug message
1304         * device/lib/Makefile.in: ignore failing PIC16 library builds
1305         * device/lib/pic16/Makefile: do not build if gputils are missing
1306         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1307
1308 2005-08-10 Raphael Neider <rneider AT web.de>
1309
1310         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1311           my last commit)
1312
1313 2005-08-10 Raphael Neider <rneider AT web.de>
1314
1315         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1316           Rokas' patch to add the new fixed point type "__fixed16x16"
1317         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1318           functions for __fixed16x16 arithmetics
1319         * device/lib/pic16: reimplemented the build system to support
1320           a separate build directory, better handling of libio (create
1321           the library in a separate subdir for each architecture) and
1322           easier configuration (centralized in Makefile.common)
1323
1324 2005-08-07 Raphael Neider <rneider AT web.de>
1325
1326         * src/pic16/gen.c (genrshTwo): fixed sign extension
1327         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1328         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1329           added T0CONbits
1330         * device/include/pic16/pic18f4220.h: NEW, header for
1331           pic18f4220 and pic18f4320
1332         * device/include/pic16/pic18fregs.h: added new devices,
1333           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1334         * device/include/pic16/signal.h: resolved name clashes
1335           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1336           to also allow testing for interrupt enable bits, added
1337           comments on how to use the macros
1338         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1339         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1340           register definitions for the devices
1341         * device/lib/pic16/pics.all: added new devices
1342         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1343           allocated memory
1344         * device/lib/pic16/libc/stdlib/memfree: do not count
1345           the block header as free memory
1346         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1347           simplified and added missing end-of-blocklist-marker
1348           (reported by Peter Onion, fixes #1252814)
1349         * (_mergeHeapBlock): fixed loop condition
1350         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1351           len==0, restructured code
1352         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1353           up a bit, reduced bitfield accesses, prevent endless loops
1354           in case of heap corruption
1355         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1356           "unreferenced arguments/must return a value" warnings
1357         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1358           replaced BAUDREG with SPBRG
1359         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1360           device/lib/pic16/debug/gstack/gstack.c: replaced
1361           _naked, _asm, _endasm with __naked, __asm, __endasm
1362
1363 2005-08-05 Raphael Neider <rneider AT web.de>
1364
1365         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1366           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1367
1368 2005-08-05 Borut Razem <borut.razem AT siol.net>
1369
1370         * device/lib/Makefile.in: added missing ';'
1371         * configure: removed ^M characters
1372
1373 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1374
1375         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1376           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1377           License
1378
1379 2005-08-04 Borut Razem <borut.razem AT siol.net>
1380
1381         * configure.in: pic16 libraries build 2nd try - enable running
1382           configure in device/lib/pic16
1383         * configure: regenerated from configure.in
1384         * device/lib/Makefile.in: create $(PORT)/bin directory
1385
1386 2005-08-03 Raphael Neider <rneider AT web.de>
1387
1388         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1389           to get/set values via pointers
1390         * (genUnpackBits,genPackBits): changed detection of
1391           ptr->bitfield vs. sym.bitfield, fixed access via generic
1392           pointers, removed dead (wrong) code for multibyte bitfields
1393         * (genNearPointerGet, genGenPointerGet): removed useless code,
1394           fixed bitfield detection, fixes #1250594
1395         * (genNearPointerSet): removed useless code
1396         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1397           and introduced macro pic16_emitpcode that conditionally emits
1398           the origin of the following pCode (useful for debugging SDCC)
1399         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1400         * (createDefmap): fixed handling of LFSR for --optimize-df
1401
1402 2005-08-02 Borut Razem <borut.razem AT siol.net>
1403
1404         * device/lib/Makefile.in: pic16 libraries build enabled since
1405           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1406
1407 2005-08-02 Raphael Neider <rneider AT web.de>
1408
1409         * src/pic16/gen.c (genPackBits): removed deprecated warning
1410         * (genGenPointerSet): fixed bitfield detection
1411
1412 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1413
1414         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1415
1416 2005-07-31 Raphael Neider <rneider AT web.de>
1417
1418         * device/lib/pic16/libdev/pic18f458.c,
1419           device/include/pic16/pic18f458.h: added missing T0CONbits
1420
1421 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1422
1423         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1424
1425 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1426
1427         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1428
1429 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1430
1431         * device/include/mcs51/at89c51ed2.h: added.
1432
1433 2005-07-23 Raphael Neider <rneider AT web.de>
1434
1435         * src/pic/gen.h: added emitpcode macro for debugging
1436         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1437           and replace by macro adding debug information on demand
1438         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1439         * (gencjne): tried to fix; replaced with correct (slower) code
1440         * (gen{Unp,P}ackBits): fixed single bit access
1441         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1442         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1443           previous instruction
1444         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1445           register has to be handled with care (forbidding movement
1446           of assignments/uses, removing assignments completely, ...)
1447         * (pCodeOptime2pCodes): make use of regIsSpecial
1448         * added lots of debugging output (commented out)
1449         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1450           from being reused as result UNLESS it is known to work
1451
1452 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1453
1454         * support/Util/dbuf.h: include <stddef.h> for size_t
1455         * .version: changed to version 2.5.2
1456
1457 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1458
1459         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1460
1461 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1462
1463         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1464           (genModOneByte): removed needless psha/pula
1465
1466 2005-07-22 Raphael Neider <rneider AT web.de>
1467
1468         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1469           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1470         * src/pic/gen.c (resolveIfx): do not "invent" labels
1471         * (genSkipc): changed to positive logic
1472         * (genSkipCond): removed as no longer needed
1473         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1474           backport from PIC16
1475         * (genLeftShift): check operands are in different registers
1476         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1477           INCF does not update CARRY...
1478         * src/pic/main.c: fixed _linkCmd
1479         * src/pic/pcode.c (unlinkpCode): added inactive code
1480         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1481           alive (do not assign result and operand overlapping registers)
1482
1483 2005-07-22 Raphael Neider <rneider AT web.de>
1484
1485         * src/pic/device.c (dump_sfr): replaced register declaration with
1486           call to emitSymbolToFile() to avoid duplicate symbols
1487         * (assignRelocatableRegisters): do not declare external symbols
1488         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1489           right (take size of type, not etype)
1490         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1491         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1492         * (packRegsForAccUse): disabled assignment of WREG as
1493           the result reg to prevent occurence of just fixed #1235003,
1494           fixes #1242954
1495         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1496           symbols (avoids duplicate symbols in .asm file)
1497         * (pic14emitRegularMap): use emitSymbolToFile()
1498         * src/pic/gen.c (aopOp): fixed spillLocation handling
1499         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1500         * (genDataPointerSet): removed unneccessary variables/output
1501
1502 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1503
1504         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1505         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1506
1507 2005-07-21 Raphael Neider <rneider AT web.de>
1508
1509         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1510           architecture cannot handle them efficiently, fixes bug #1235003
1511         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1512           check for empty sets before using them (fixes bug #1232190)
1513
1514 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1515
1516         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1517           (lnksect2): generate warnings for memory overlap
1518         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1519           constseg to set the name of these segments so you can instruct the linker
1520           to place them in banks
1521         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1522         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1523           added code_seg and const_seg to options
1524         * src/SDCCglue.c (emitMaps): use options.const_seg,
1525           (createInterruptVect): put interrupt vectors in segment HOME,
1526           (glue): put HOME before static segment and put the main glue in HOME,
1527           (glue): use options.code_seg
1528         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1529         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1530           these segments so you can instruct the linker to place them in banks
1531           (linkEdit): use code_loc for HOME segment which should be the first
1532           segment in code memory now
1533         * src/SDCCmem.c: fixed more stuff like bug 1238386
1534         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1535           (changePointer): don't change function pointers to code pointers for
1536           banked functions,
1537           (compareType): added exceptional check for banked function pointers
1538         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1539         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1540           after static in code memory
1541         * src/mcs51/gen.c: added aopLiteralLong prototype,
1542           (aopForSym): use getSize for functions,
1543           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1544           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1545           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1546           the segment,
1547           (genPcall): use call for literal function pointers and generate banked
1548           calls over the one trampoline so there's only one place for the user to
1549           modify according to his/hers hardware,
1550           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1551           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1552         * src/mcs51/main.c: added keyword banked,
1553           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1554         * support/Util/SDCCerr.c,
1555         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1556           needed for passing the bank and address to the trampoline
1557         * device/lib/mcs51/crtbank.asm: added for bankswitching
1558         * device/lib/mcs51/Makefile: added crtbank
1559
1560 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1561
1562         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1563           for fields at offset 0 of a struct or union as reported
1564           on 2005-07-07 in the developer mailing list.
1565
1566 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1567
1568         * src/SDCCmem.c: fixed bug 1238386
1569
1570 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1571
1572         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1573           (patch #1144962), added peephole 300, enabled 259.x
1574         * doc/sdccman.lyx: removed screenshot and provided link instead
1575
1576 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1577
1578         * doc/sdccman.lyx: added section about debugging with ddd
1579         * doc/figures/ddd_example.eps: screenshot of debugging session
1580
1581 2005-07-04 Raphael Neider <rneider AT web.de>
1582
1583         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1584           like CODE pointers, fixes #1115683
1585         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1586           call, fixes bugs #1232211, #1228110,
1587           fixed wrong casts to pCodeFlow from pCodeInstructions
1588
1589 2005-07-04 Raphael Neider <rneider AT web.de>
1590
1591         * src/pic/gen.c (popGet): changed assert to allow for
1592           bit operands
1593         * (popGetAddr): changed signature to provide
1594           an additional index, patched all call sites
1595         * (genCmpEq): handle literal-like operands correctly
1596         * (genAddrOf): added sanity checks on __code/__data pointers
1597         * (genAssign): added handling of symbols from __code section
1598         * (gencjne): do not generate code for comparisons whose result
1599           is neither stored nor used, fixes bug #1171114
1600         * (AccLsh, AccRsh): operate on operand instead of WREG
1601         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1602           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1603           by known count
1604         * rewrote complete shift-by-literal logic, commented unused
1605           functions out
1606         * (genConstPointerGet): get multiple bytes (if result size > 1),
1607           fixed handling of non-immediate addresses
1608         * (genPointerGet): handle CODE pointers like CONST pointers
1609         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1610         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1611           operand is to be treated as a literal or not
1612         * (mov2w,genPcall,genCmpEq),
1613           src/pic/genarith.c: use aop_isLitLike() to decide between
1614           literal/register contents
1615         * (addSign): added missing offset
1616         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1617           only emit comment in debug-mode,
1618           use {aop,op}_isLitLike throughout the file
1619         * src/pic/glue.c: fix initializers for pointers (work in progress)
1620         * src/pic/pcode.c (get_op): honor index on _const symbols
1621         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1622         * (dumppBlock): added pCode size estimation
1623         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1624           check for IS_SYMOP before OP_SYMBOL'ing
1625         * fixed indentation, compacted switch-statements
1626         * (allocReg): find free register and allocate it instead of
1627           allocating new registers all the time
1628         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1629           registers as its operands (necessary only for multibyte GETs)
1630
1631 2005-07-01 Raphael Neider <rneider AT web.de>
1632
1633         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1634           debugging .asm-output macros FENTRY + FEXIT
1635         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1636           way... I wonder...
1637         * (emitpComment): NEW, printf to pCode
1638         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1639           offset handling
1640         * (popGetAddr): NEW, variant of popGet to access an immediates
1641           high(er) bytes instead of the n'th byte of memory they reference,
1642           replaced popGet with popGetAddr where neccessary
1643         * (genDataPointerGet): reactivated and fixed implementation
1644         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1645           accesses
1646         * (genDataPointerSet): fixed multibyte assignments
1647         * (genpic14Code): fixed --i-code-in-asm handling
1648         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1649         * (genPlus): fixed index-out-of-bounds error
1650         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1651         * src/pic/ralloc.c: added debugging output macro FENTRY2
1652         * (spillThis): fixed indentation, enbraced for-body for clarity
1653         * (rematStr): commented out as now unused
1654         * (regTypeNum): commented out special spill case (overwrites
1655           arbitrary values)
1656         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1657
1658 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1659
1660         * doc/sdccman.lyx: documented sfr16/sfr32,
1661           added example for using storage class with function pointers
1662         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1663
1664 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1665
1666         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1667         * device/lib/_itoa.c,
1668         * device/lib/_ltoa.c: optimized codesize
1669         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1670           but don't know how to suppress the double warning.
1671         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1672         * support/Util/SDCCerr.c,
1673         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1674
1675 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1676
1677         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1678           fixed old K&R prototypes
1679         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1680         * device/lib/_gptrget.c,
1681         * device/lib/_gptrgetc.c,
1682         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1683           also new versions for small generic pointers and banked generic pointers
1684         * src/port.h: added const_name
1685         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1686         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1687         * src/SDCCcse.c (findPrevIc): check all associative operators
1688         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1689         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1690         * src/SDCCmem.c: updated comments,
1691           set far-space to 0 for pdata, results in optimized code
1692         * src/SDCCmem.h: added macro CONST_NAME
1693         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1694           moving the info into the highest bits, see also gptrget/gptrput
1695         * src/src.dsp: added sdcc.ico to project files
1696         * src/avr/gen.c (genCast): fixed bug 0x%d
1697         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1698         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1699           relation between ptr_type and DCL_TYPE,
1700           (genCast): fixed bug 0x%d
1701         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1702           (CODE)" for const_name
1703         * src/hc08/gen.c (genCast): fixed bug 0x%d
1704         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1705           (hc08_port): added "CONST (CODE)" for const_name
1706         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1707           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1708           between ptr_type and DCL_TYPE,
1709           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1710           operand* and took AOP() inside function so sfr-ness can be checked,
1711           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1712           new prototype,
1713           (genFunction, genEndFunction): optimized stack setup,
1714           (genMinus): optimized for literals with ending zeroes (in bytes),
1715           (genCast): fixed bug 0x%d
1716         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1717           (mcs51_port): added "CONST (CODE)" for const_name
1718         * src/mcs51/peeph.def: made rule 226 more generic
1719         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1720         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1721         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1722         * src/z80/main.c (z80_port): added NULL for const_name,
1723           (gbz80_port): added NULL for const_name
1724         * support/regression/tests/bug663539.c,
1725         * support/regression/tests/sfr16.c: new tests
1726
1727 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1728
1729         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1730
1731 2005-06-24 Raphael Neider <rneider AT web.de>
1732
1733         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1734           corrected typos...
1735         * device/include/pic16/signal.h: added USBIF
1736           and SIG_USB
1737
1738 2005-06-24 Raphael Neider <rneider AT web.de>
1739
1740         * device/lib/pic16/libdev/pic18f2455.c,
1741           device/include/pic16/pic18f2455.h: NEW
1742         * device/include/pic16/pic18fregs.h,
1743           device/lib/pic16/pics.all,
1744           src/pic16/device.c: added 18f2455
1745         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1746           device/include/pic16/{pic18f[68][567].h,usart.h}:
1747           replaced MULTIPLE_USARTS define with more relaible
1748           compatibility sfrs (for USART access)
1749
1750 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1751
1752         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1753           and the output asm file line is printed on two lines.
1754
1755 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1756
1757         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1758           BGT, BLE, BHI, and BLS instructions
1759         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1760           genCmpEq): removed
1761         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1762           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1763           fixes bug #1216342
1764         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1765
1766 2005-06-15 Raphael Neider <rneider AT web.de>
1767
1768         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1769         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1770         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1771           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1772           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1773
1774 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1775
1776         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1777           Marcel Telka in bug #1215704
1778
1779 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1780
1781         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1782           located in shared memory bank.
1783
1784 2005-05-31 Raphael Neider <rneider AT web.de>
1785
1786         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1787           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1788           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1789
1790 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1791
1792         * device/lib/_strncpy.c: fixed the fix
1793
1794 2005-05-26 Raphael Neider <rneider AT web.de>
1795
1796         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1797           initializers with \0, bug #1208187
1798         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1799           intializers with \0, bug #1208187
1800
1801 2005-05-26 Raphael Neider <rneider AT web.de>
1802
1803         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1804           initializers with \0, bug #1208187
1805         * src/pic16/main.c (_process_pragma): added sanity checks
1806           for stack position and size, emit warnings when appropriate
1807
1808 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1809
1810         * device/lib/_strncpy.c: fixed not filling with \0
1811
1812 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1813
1814         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1815           createFunction),
1816         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1817           compound_statement),
1818         * src/SDCCsymt.h,
1819         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1820
1821 2005-05-24 Raphael Neider <rneider AT web.de>
1822
1823         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1824
1825 2005-05-24 Raphael Neider <rneider AT web.de>
1826
1827         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1828           TRISE definitions, closes bug #1162453
1829
1830 2005-05-22 Raphael Neider <rneider AT web.de>
1831
1832         * src/pic16/main.c (_process_pragma): check for missing
1833           arguments to pragmas code and udata
1834         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1835           consistency fixes to match other headers (thanks to Jim Paris)
1836         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1837
1838 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1839
1840         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1841
1842 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1843
1844         * support/regression/tests/bug1198642.c: new test
1845         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1846         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1847         * support/scripts/resource.h,
1848         * support/scripts/resource.rc,
1849         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1850         * support/scripts/sdcc.ico: added 32x32 icon
1851
1852 2005-05-18 Raphael Neider <rneider AT web.de>
1853
1854         * device/lib/pic16/libdev/pic18f*.c,
1855         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1856           keywords to "__sfr" and "__at (X)"
1857         * device/include/pic16/pic18fregs.h: added pic18f4520
1858         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1859           #1203088 (MPLAB compatibility)
1860
1861 2005-05-17 Raphael Neider <rneider AT web.de>
1862
1863         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1864         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1865         * device/lib/pic16/pics.all: added new devices
1866         * src/pic16/device.c: added support for pic18f4520
1867
1868 2005-05-16 Raphael Neider <rneider AT web.de>
1869         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1870         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1871         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1872           convenience function for bit access
1873
1874 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1875
1876         * device/lib/printf_large.c: fixed bug 1193299
1877         * support/regression/tests/bug1057979.c: added test %3.3s
1878
1879 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1880
1881         * device/include/mcs51/8051.h,
1882         * device/include/mcs51/8052.h: made parseable with lint
1883         * device/include/mcs51/lint.h: added include file for (sp)lint
1884         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1885         * doc/cdbfileformat.lyx,
1886         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1887
1888 2005-05-14 Raphael Neider <rneider AT web.de>
1889
1890         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1891         * device/lib/pic16/libc/stdlib/itoa.c (new)
1892         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1893         * device/lib/pic16/libio/Makefile: exclude subdir according to
1894           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1895         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1896         * src/pic16/gen.c (genFunction): prevent annoying warning
1897         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1898           nameclashes on BeOS
1899         * support/cpp2/cppmain.c (cpp_output_string): new
1900         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1901           fixes bug 1116802
1902
1903 2005-05-13 Borut Razem <borut.razem AT siol.net>
1904
1905         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1906
1907 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1908
1909         * .version: changed to version 2.5.1; back to bleeding edge development
1910
1911 2005-05-11 Borut Razem <borut.razem AT siol.net>
1912
1913         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1914           generate PDF version 1.3 documents
1915
1916 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1917
1918         * .version: changed to version 2.5.0
1919
1920 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1921
1922         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1923
1924 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1925
1926         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1927         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1928         well as many smaller updates.
1929         * .version: changed to version 2.5.0-pre1
1930
1931 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1932
1933         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1934
1935 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1936
1937         * support/regression/tests/bug1185672.c: added
1938         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1939           bug 1185672
1940         * src/mcs51/gen.c (genCall): added comments, made it look safer
1941         * src/mcs51/gen.c (genEndFunction): simplified
1942
1943 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1944
1945         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1946
1947 2005-04-14 Borut Razem <borut.razem AT siol.net>
1948
1949         * fixed bug 1045046 - SIGSEGV with really simple code?:
1950           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1951           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1952
1953 2005-04-14 Borut Razem <borut.razem AT siol.net>
1954
1955         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1956           src/pic16/device.h: temporarily disabled experimental #inline pragma
1957           for 2.5.0 release
1958
1959 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1960
1961         * device/include/z80/stdio.h,
1962         * device/include/z80/string.h: removed these highly incomplete files so
1963           SDCC can use the default ones in device/include/
1964
1965 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1966
1967         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1968         gcc warning.
1969         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1970         fix sdcpp warnings.
1971
1972 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1973
1974         * device/include/malloc.h: removed redundant __reentrant prototypes
1975         * device/lib/_mullong.c: added working xstack variant in asm (C version
1976           doesn't pass regression tests)
1977         * device/lib/bpx.c: used __data and made bpx char for mcs51
1978         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1979           (createFunction): fixed bug with xstackPtr
1980         * src/SDCCcse.c: corrected comments
1981         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1982           (killDeadCode, eBBlockFromiCode): removed unused code
1983         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1984           corrected comments
1985         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1986           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1987           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1988           (genModOneByte): fixed warning in MSVC
1989         * src/mcs51/main.c (): added comments
1990         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1991
1992 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1993
1994         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1995
1996 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1997
1998         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1999
2000 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2001
2002         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2003         characters arrays of larger size than the declared one.
2004
2005 2005-04-10 Borut Razem <borut.razem AT siol.net>
2006
2007         * src/pic/gen.c (genInline),
2008           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2009           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2010           (findNextInstruction), (findPrevInstruction),
2011           (findInstructionUsingLabel),
2012           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2013         * src/pic/pcode.c (findLabel): added missing '\n'
2014         * src/src.dsp: added SDCCdwarf2.c to the project
2015
2016 2005-04-09 Borut Razem <borut.razem AT siol.net>
2017
2018         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2019
2020 2005-04-08 Raphael Neider <rneider AT web.de>
2021
2022         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2023           into the chain after a given one) and mergeDefmapSymbols (combine
2024           defmap entries for each symbol per pcode)
2025         * (createDefmap): have defmap entries merged in the end
2026         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2027           a symbol before replacing one access type's symbol, merge symbols in
2028           the end (replacement symbol might already have an entry)
2029         * (assignValnums): keep reference to written WREG intact
2030
2031 2005-04-08 Raphael Neider <rneider AT web.de>
2032
2033         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2034           Alpha)
2035
2036 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2037
2038         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2039         bytes
2040
2041 2005-04-07 Raphael Neider <rneider AT web.de>
2042
2043         * device/include/pic16/usart.h: added compatibility defines for
2044           devices with more than one USART
2045         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2046
2047 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2048
2049         * device/lib/Makefile.in: updated for port specific include
2050
2051 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2052
2053         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2054
2055 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2056
2057         * device/include/8051.h,
2058         * device/include/8052.h,
2059         * device/include/at89S8252.h,
2060         * device/include/at89c55.h,
2061         * device/include/at89x051.h,
2062         * device/include/at89x51.h,
2063         * device/include/at89x52.h,
2064         * device/include/mcs51reg.h,
2065         * device/include/reg51.h,
2066         * device/include/reg764.h,
2067         * device/include/regc515c.h,
2068         * device/include/sab80515.h: (re)moved these 12 files
2069         * device/include/mcs51/8051.h,
2070         * device/include/mcs51/8052.h,
2071         * device/include/mcs51/at89S8252.h,
2072         * device/include/mcs51/at89c55.h,
2073         * device/include/mcs51/at89x051.h,
2074         * device/include/mcs51/at89x51.h,
2075         * device/include/mcs51/at89x52.h,
2076         * device/include/mcs51/mcs51reg.h,
2077         * device/include/mcs51/reg51.h,
2078         * device/include/mcs51/reg764.h,
2079         * device/include/mcs51/regc515c.h,
2080         * device/include/mcs51/sab80515.h: and added them here
2081
2082 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2083
2084         * device/include/stdarg.h: changed SDCC specific keywords to double
2085           underlined form.
2086         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2087           mcs51 and ds390.
2088         * device/include/hc08/mc68hc908gp32.h,
2089         * device/include/hc08/mc68hc908jb8.h,
2090         * device/include/hc08/mc68hc908jkjl.h,
2091         * device/include/hc08/mc68hc908qy.h: fixed comments
2092         * device/include/mcs51/README: updated
2093         * device/include/mcs51/c8051f120.h: added PINRSF
2094         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2095         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2096           amidst code. Also inline is not supported.
2097
2098 2005-04-06 Raphael Neider <rneider AT web.de>
2099
2100         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2101         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2102           callers stack/frame pointers
2103
2104 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2105
2106         * device/include/pic16/usart.h: added, missing in previous commit,
2107         * device/include/pic16/adc.h: fixed typo,
2108         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2109         commit,
2110         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2111         <p18fxxx.inc>
2112         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2113         uninitialized because a bug appears with gplink
2114         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2115         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2116         complains for unrecognised option
2117
2118 2005-04-05 Raphael Neider <rneider AT web.de>
2119
2120         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2121           structs as well (using memcpy)
2122         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2123           on ISRs (GOTO has no label)
2124         * src/pic16/device.h: added OF_OPTIMIZE_DF
2125         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2126           new data flow analysis/optimization
2127         * src/pic16/pcode.c: added (prototypes for and implementation of)
2128           dataflow analysis functions, fixed pCodeInstructions' inCond and
2129           outCond values, made RCALL a branch instruction
2130         * (pic16_unlinkpCode): keep C line if possible
2131         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2132           C line moved if possible
2133         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2134         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2135           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2136         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2137           new flow)
2138         * (pic16_getJumptabpCode): NEW, needed in...
2139         * (LinkFlow): fixed handling of jumptables, calls and conditional
2140           branches
2141         * (pic16_InsertCommentAfter): NEW
2142         * (pic16_pCodeReplace): made verbose and flow preserving
2143         * (AnalyzeFlow): added call to data flow analysis
2144         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2145         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2146         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2147
2148 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2149
2150         * src/SDCCast.c (decorateType): fixed bug #1105626
2151
2152 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2153
2154         * device/include/asm/pic16/features.h,
2155         * pic18f*.h headers,
2156         * device/include/pic16/adc.h,
2157         * device/include/pic16/delay.h,
2158         * device/include/pic16/i2c.h,
2159         * device/include/pic16/malloc.h,
2160         * device/include/pic16/stdio.h,
2161         * device/include/pic16/stdlib.h,
2162         * device/include/pic16/string.h,
2163         * device/lib/pic16/libc/stdio/printf_tiny.c,
2164         * device/lib/pic16/libc/stdio/printf_small.c,
2165         * device/lib/pic16/libc/stdio/strmgpsim.c,
2166         * device/lib/pic16/libc/stdio/strmmssp.c,
2167         * device/lib/pic16/libc/stdio/strmusart.c,
2168         * device/lib/pic16/libc/stdio/vfprintf.c,
2169         * device/lib/pic16/libc/stdlib/ltoa.c,
2170         * device/lib/pic16/libc/stdlib/putchar.c,
2171         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2172         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2173         * device/lib/pic16/libc/stdlib/memchrram.c,
2174         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2175         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2176         * device/lib/pic16/libio/adc/adcbusy.c,
2177         * device/lib/pic16/libio/adc/adcread.c,
2178         * device/lib/pic16/libio/adc/adcsetch.c,
2179         * device/lib/pic16/libio/usart/ubaud.c,
2180         * device/lib/pic16/libio/usart/ubusy.c,
2181         * device/lib/pic16/libio/usart/udrdy.c,
2182         * device/lib/pic16/libio/usart/uopen.c,
2183         * device/lib/pic16/libio/usart/uputc.c,
2184         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2185         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2186         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2187         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2188         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2189         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2190         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2191         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2192         specific keywords to double underlined form,
2193         * device/lib/pic16/libc/Makefile.rules,
2194         * device/lib/pic16/libsdcc/Makefile.rules,
2195         * device/lib/pic16/libm/Makefile,
2196         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2197         to compile with C standard set in Makefile.common
2198         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2199         rand.c and crc.c in compilation process,
2200         * device/lib/pic16/libsdcc/int/divuint.c,
2201         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2202         `c' from signed to unsigned,
2203         * device/lib/pic16/startup/crt0.c,
2204         * device/lib/pic16/startup/crt0i.c,
2205         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2206         keywords to double underlined form, bug fixes in _do_cinit function
2207         which prevented the correct initialization of the .idata segment,
2208         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2209         core to enter a infinite loop
2210         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2211
2212 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2213
2214         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2215
2216 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2217
2218         * device/include/Makefile.in: add support for hc08 subdirectory
2219         * device/include/hc08/: new subdirectory
2220         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2221         Lucas Loizaga, thanks!
2222         * device/include/hc08/mc68hc908qy.h,
2223         * device/include/hc08/mc68hc908gp32.h,
2224         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2225         their own directory. Changed internal macro names to use the compiler
2226         reserved namespace. Changed SDCC specific keywords to double
2227         underlined form.
2228         * device/include/math.h,
2229         * device/include/malloc.h,
2230         * device/include/stdarg.h,
2231         * device/include/stdbool.h
2232         * device/include/string.h,
2233         * device/include/tinibios.h,
2234         * device/include/ds400rom.h,
2235         * device/include/8051.h,
2236         * device/include/8052.h,
2237         * device/include/80c51xa.h,
2238         * device/include/at89c55.h,
2239         * device/include/at89S8252.h,
2240         * device/include/at89x51.h,
2241         * device/include/at89x52.h,
2242         * device/include/ds80c390.h,
2243         * device/include/reg764.h,
2244         * device/include/regc515c.h,
2245         * device/include/sab80515.h,
2246         * device/include/mcs51/c8051f000.h,
2247         * device/include/mcs51/c8051f018.h,
2248         * device/include/mcs51/c8051f020.h,
2249         * device/include/mcs51/c8051f040.h,
2250         * device/include/mcs51/c8051f060.h,
2251         * device/include/mcs51/c8051f120.h,
2252         * device/include/mcs51/c8051f300.h,
2253         * device/include/mcs51/c8051f310.h,
2254         * device/include/mcs51/c8051f320.h,
2255         * device/include/mcs51/c8051f330.h,
2256         * device/include/mcs51/c8051f350.h,
2257         * device/include/z180.h: Changed SDCC specific keywords to double
2258         underlined form.
2259
2260 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2261
2262         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2263         18F4455,
2264         * (pic16_assignConfigWordValue): disable testing of configuration
2265         register value with config mask,
2266         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2267         function with port->fun_prefix,
2268         * (genFunction): when generating a naked interrupt function never
2269         create an absolute segment placed in interrupt vector address, place
2270         the actual interrupt function at IVA instead, when an interrupt
2271         function is generated with unspecified interrupt then do not create
2272         the absolute section,
2273         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2274         code for generating a call to generic pointer get/put function with
2275         a call to function pic16_callGenericPointer(),
2276         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2277         the call to the generic pointer get/put functions with prefixing the
2278         function name with port->fun_prefix,
2279         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2280         * src/pic16/main.c (_process_pragma): prefix function with
2281         port->fun_prefix,
2282         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2283         calling assembler, old 18Fxxxx macro is deprecated,
2284         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2285         PC_ASMDIR in while condition,
2286         * (findInstruction): add PC_ASMDIR in while condition,
2287         * (buildCallTree): prefix main with port->fun_prefix,
2288         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2289         identifier for variable with banked access in instructions BTFSS,
2290         BTFSC, BCF, BSF, BTG
2291         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2292         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2293         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2294         perform optimization when enviroment variable NO_REG_OPT is set,
2295         * (insideLRBlock): NEW, return 1 if register is inside an
2296         INF_LOCALREGS block,
2297         * (RemoveRegFromLRBlock): remove a register that is completely
2298         eliminated by register optimization, but it is still left in local
2299         register store/restore in/from stack block,
2300         * (Remove2pcodes): after removing register, check to see if it
2301         should be removed from local register store/restore in/from stack
2302         block,
2303         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2304         DUMMY_READ_VOLATILE,
2305
2306         * device/include/pic16/adc.h: minor prototype modifications and
2307         update,
2308         * device/include/pic16/malloc.h: added GPL notice various
2309         modifications,
2310         * device/include/pic16/stdint.h: NEW, standard header for ints
2311         * device/include/pic16/delay.h: NEW, header for delay functions,
2312         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2313         delay1mtcy,
2314         * device/include/pic16/signal.h: NEW, header providing helper macros
2315         for implementing signal handlers,
2316         * device/include/pic16/stdio.h: added prototypes for functions,
2317         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2318         prototypes for stdin and stdout, added macro PUTCHAR to
2319         automatically implement putchar function prototype,
2320         * device/include/pic16/usart.h: modified and updated USART library,
2321         * device/lib/pic16/libio/adc/,
2322         * device/lib/pic16/libio/i2c: some modifications to improve library
2323         performance,
2324         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2325         family of functions,
2326         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2327         family of functions and other sources,
2328         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2329         of the PIC18Fxx[28] devices,
2330         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2331         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2332         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2333         _do_cinit function, because the previous failed when local variables
2334         where not placed in the same memory bank,
2335         * device/lib/pic16/libsdcc/char/: various modifications to improve
2336         library performance,
2337         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2338         information on the new functions of the c library and more...
2339
2340 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2341
2342         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2343
2344 2005-03-26 Raphael Neider <rneider AT web.de>
2345
2346         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2347           if condition == CARRY)
2348         * (genCmp): adapted to new genSkipc semantics
2349         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2350           on rIfx (genCmp was broken)
2351
2352 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2353
2354         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2355         * src/z80/main.c (_keywords[]),
2356         * src/SDCCglobal.h (struct options),
2357         * src/SDCC.y,
2358         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2359         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2360         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2361         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2362         always available in leading double underscore form. The C99 support is
2363         mostly missing, but it's a start.
2364         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2365         reserved identifier "__data".
2366
2367 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2368
2369         * src/mcs51/peeph.def: fixed bug 1170013
2370
2371 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2372
2373         * device/include/mcs51reg.h: fixed bug 842007
2374
2375 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2376
2377         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2378         last time.
2379
2380 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2381
2382         * src/port.h (struct PORT),
2383         * src/avr/ralloc.c (avr_assignRegisters),
2384         * src/avr/main.c,
2385         * src/ds390/ralloc.c (ds390_assignRegisters),
2386         * src/ds390/main.c,
2387         * src/hc08/ralloc.c (hc08_assignRegisters),
2388         * src/hc08/main.c,
2389         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2390         * src/mcs51/main.c,
2391         * src/pic/ralloc.c (pic14_assignRegisters),
2392         * src/pic/main.c,
2393         * src/pic16/ralloc.c (pic16_assignRegisters),
2394         * src/pic16/main.c,
2395         * src/xa51/ralloc.c (xa51_assignRegisters),
2396         * src/xa51/main.c,
2397         * src/z80/ralloc.c (z80_assignRegisters),
2398         * src/z80/ralloc.h,
2399         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2400         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2401         * src/SDCCcse.h,
2402         * src/SDCCdflow.c (computeDataFlow),
2403         * src/SDCCdflow.h,
2404         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2405         * src/SDCCloop.h,
2406         * src/SDCCcflow.c (*),
2407         * src/SDCCcflow.h,
2408         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2409         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2410         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2411         immedDom() returning wrong block; probably fixes bug #1160833)
2412
2413 2005-03-20 Borut Razem <borut.razem AT siol.net>
2414
2415         * support/scripts/inc2h.pl: WIN32 port
2416
2417 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2418
2419         * device/lib/makefile.in: added abs.c and labs.c
2420
2421 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2422
2423         * device/include/stdint.h: added
2424         * device/lib/abs.c: added
2425         * device/lib/labs.c: added
2426         * device/include/stdlib.h: added abs() and labs() prototypes
2427         * device/lib/libsdcc.lib: added abs and labs
2428         * device/include/float.h,
2429         * device/lib/_fsmul.c,
2430         * device/lib/printf_fast.c,
2431         * device/lib/printf_tiny.c: updated comments
2432
2433 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2434
2435         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2436         bug #1164313
2437
2438 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2439
2440         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2441         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2442
2443 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2444
2445         * device/lib/printf_large.c: removed inline assembly for portability and
2446           readability. Use printf_fast if speed or size are more important.
2447         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2448         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2449
2450 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2451
2452         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2453         prevent compiler warning
2454
2455 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2456
2457         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2458         moved to level 0 and declared as static. Also they are explicit
2459         placed in access bank. This was necessery because some times they
2460         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2461         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2462         optimizations. Currently only compare to unsigned char is implemented,
2463         * src/pic16/gen.c: added fReturnIdx array,
2464         * (struct resolvedIfx) is moved to gen.h and made public,
2465         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2466         * (aopForSym): added an optimization to directly store in stack of
2467         the operand of a SEND iCode,
2468         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2469         but as registers instead (AOP_REG) using the fReturnIdx array,
2470         * (pic16_freeAsmop): remove the freed register from the
2471         _G.sregsAlloc field,
2472         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2473         a compare of 'WREG',
2474         * (pic16_popGetTempRegCond): changed function prototype, now
2475         function takes also a bitVector argument v which holds the current
2476         set of registers that are allocated for stack access by aopForSym,
2477         registers allocated in aopForSym for accessing stack symbols are not
2478         any more part of the functions usedRegs field,
2479         * (genCall): some times aopOp is called for a stack variable to be
2480         send, aopForSym might perform the push, if this is true make sure
2481         that genCall doesn't push the variable twice by testing _G.resDirect,
2482         * (genFunction): changed testing for unspecified interrupt number
2483         from 256 to INTNO_UNSPEC,
2484         * modified selection scheme of frame pointer generation. Previously
2485         if function did use local registers a frame pointer was generated,
2486         now a frame pointer is generated only if function has arguments
2487         (that need PLUSW2 register access), or has stack arguments, or the
2488         compiler is not instructed to omit the frame pointer,
2489         * (genEndFunction): before restoring local registers that were saved
2490         in the function preamble, also restore the registers that *might*
2491         have been allocated for stack access,
2492         * (genRet): removed some old comments,
2493         * (genCmp, the active (RN's) version): added a call to the
2494         pic16_genCmp_special function to perform the compare with a more
2495         robust and optimized way,
2496         * (genInline): a feature has been added in inline code generation,
2497         which allows a wildcard variable substitution when writing inline
2498         assembly. Code is incomplete and experimental therefore undocumented,
2499         * (genCast): changed order of aopOp for result and right to allow
2500         aopForSym to directly load the result if possible,
2501         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2502         perform an optimized compare on some selected special occasions,
2503         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2504         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2505         generate an IVT any more,
2506         * src/pic16/main.c (pic16_optionsTable): added command line option
2507         --optimize-cmp,
2508         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2509         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2510         macros,
2511         * src/pic16/NOTES: Raphael Neider added in list of active developers
2512         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2513         jumptable_end to prevent bug #,
2514         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2515         inCond and outCond fields,
2516         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2517         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2518         turn off register spilling,
2519         * (packRegsForOneUse): synced with other ports' versions although it
2520         is not used currently,
2521         * (pic16_packRegisters): added an optimization while reading
2522         structure bitfields, some registers may be saved (malloc code is
2523         decreased by 80 bytes)
2524
2525 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2526
2527         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2528         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2529         this can be optimized more?
2530
2531 2005-03-10 Raphael Neider <rneider AT web.de>
2532
2533         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2534           genNearPointerGet): (hopefully) fixed access to bitfields via
2535           pointers (p->bitN = x; and x = p->bitN; failed)
2536
2537 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2538
2539         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2540
2541 2005-03-09 Raphael Neider <rneider AT web.de>
2542
2543         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2544
2545 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2546
2547         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2548         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2549           (regTypeNum): set REG_BIT type if necessary
2550         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2551         * support/regression/tests/critical.c: check bug 1144613
2552
2553 2005-03-02 Raphael Neider <rneider AT web.de>
2554
2555         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2556
2557 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2558
2559         * src/avr/ralloc.c (serialRegAssign),
2560         * src/ds390/ralloc.c (serialRegAssign),
2561         * src/hc08/ralloc.c (serialRegAssign),
2562         * src/mcs51/ralloc.c (serialRegAssign),
2563         * src/pic/ralloc.c (serialRegAssign),
2564         * src/pic16/ralloc.c (serialRegAssign),
2565         * src/xa51/ralloc.c (serialRegAssign),
2566         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2567
2568 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2569
2570         * src/SDCCast.c (decorateType): fixed bug 1124787
2571
2572 2005-02-20 Hubert Sack <sack AT digiplan.de>
2573         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2574
2575         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2576         patch #1121755
2577
2578 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2579
2580         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2581         to keep the correct label reference count when adding/removing references
2582         to labels. A peephole file using this is appended to patch #1144962.
2583
2584 2005-02-14 Raphael Neider <rneider AT web.de>
2585
2586         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2587         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2588         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2589           retrievals of result operand's value on assignment
2590
2591 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2592
2593         * device/include/pic16/string.h: modified prototype for memccpy()
2594         to memccpy(void *, void *, char, size_t)
2595         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2596         check whether to omit frame pointer or not,
2597         * (genInline): convert all occurences of "\n" to LF in inline
2598         assembler blocks, this helps formatting the inline text,
2599         * (pic16_loadFSR0): modified prototype,
2600         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2601         removed some 8051 legacy code,
2602         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2603         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2604         before allocating temporary registers in functions,
2605
2606 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2607
2608         * support/regression/tests/bitvars.c: corrected the "fix"
2609
2610 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2611
2612         * support/regression/tests/bitvars.c,
2613         * support/regression/tests/bitwise.c,
2614         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2615
2616 2005-02-10 Raphael Neider <rneider AT web.de>
2617
2618         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2619           different size for Alpha
2620         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2621
2622 2005-02-09 Raphael Neider <rneider AT web.de>
2623
2624         * src/SDCC.lex(doPragma) : save and restore warning options as well
2625           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2626         * have #pragma less_pedantic set the errorlevel to WARNING
2627           (fixes #1117001)
2628         * (cloneOptimize) : fixed wrong malloc's size
2629         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2630           facilitate correct handling of #pragma (save|restore)
2631
2632 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2633
2634         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2635
2636 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2637
2638         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2639
2640 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2641
2642         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2643
2644 2005-02-02 Raphael Neider <rneider AT web.de>
2645
2646         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2647         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2648         * (pic16_storeForReturn): fixed to allow returning function pointers
2649         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2650         * device/include/pic16/{stddef.h,stdbool.h}: added
2651
2652 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2653
2654         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2655
2656 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2657
2658         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2659         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2660          appeared to be required
2661
2662 2005-01-31 Borut Razem <borut.razem AT siol.net>
2663
2664         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2665           include/mcs51 and include/z80 directories to the package
2666
2667 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2668
2669         * src/hc08/gen.c (genFunction): fixed bug #1112752
2670
2671 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2672
2673         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2674
2675 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2676
2677         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2678
2679 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2680
2681         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2682
2683 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2684
2685         * device/include/c8051fxxx.h: removed these 6 files
2686         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2687
2688 2005-01-26 Raphael Neider <rneider AT web.de>
2689
2690         * src/pic16/gen.c (genAssign): fixed assignment from longs
2691           in codespace (were cut to three bytes)
2692         * (genDummyRead): implemented (except for CODESPACE...),
2693           fixed bug #1108575
2694         * src/pic16/glue.c (emitStatistics): beautified
2695         * device/lib/pic16/libm/Makefile: added include path
2696
2697 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2698
2699         * src/z80/gen.c (aopPut): fixed bug #1103902
2700
2701 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2702
2703         * device/lib/expf.c: fixed bug #1095792
2704
2705 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2706
2707         * device/lib/pic16/libm: added Math library sources
2708
2709 2005-01-24 Raphael Neider <rneider AT web.de>
2710
2711         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2712           to enable upcast to pCodeOpReg2 (there is no type tag to
2713           differenciate the two and pic16_popGet2p cast into PCOR2)
2714         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2715           (sizeof(sectNames) changed to sizeof(sectName))
2716           Both patches fix segfaults under MinGW.
2717
2718 2005-01-23 Raphael Neider <rneider AT web.de>
2719
2720         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2721           Safe_[mc]?alloc()'ed variables
2722         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2723           of (byte sized) temporaries (assign them to WREG for now)
2724         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2725           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2726           this might fix SIGSEGVs on MinGW...
2727         * src/SDCCopt.c (killDeadCode): restored original behaviour
2728           (volatile operands might get thrown away though)
2729
2730 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2731
2732         * src/pic16/gen.c: fixed bug #1106975,
2733         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2734         pointer update, INTCON is saved, global interrupts are disabled and
2735         restored after updateing TOS.
2736         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2737         * added function attribute 'shadowregs' to take advantage of shadow
2738         registers,
2739         * added function attribute 'wparam' as an alternative to the wparam
2740         pragma,
2741         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2742         user declares a non-ISR function as 'shadowregs',
2743         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2744
2745 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2746
2747         * .version: bumped version number to 2.4.8
2748         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2749         pic16 port,
2750         * device/lib/pic16/libio/i2c/: I2C module support library,
2751         * device/include/pic16/i2c.h: I2C support library header,
2752         * device/lib/pic16/libc/stdio/: standard IO support sources,
2753         * (printf_small.c): printf_small() source, supports float print,
2754         * (printf_tiny.c): printf_tiny() source, does not support floats,
2755         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2756         enable global optimizations for entire library source, other
2757         Makefiles in the source tree are also modified to reflect this,
2758         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2759         function,
2760         * doc/sdccman.lyx: updated to reflect new changes,
2761         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2762         sym->onStack if-case,
2763         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2764         sbit, idata, _idata, xdata, _xdata,
2765         * added pragma library, to link an external library, (see doc),
2766         * removed command line options, --pomit-config-words, --pomit-ivt,
2767         --pleave-reset-vector,
2768         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2769         when calling assembler to reflect memory model used, also define
2770         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2771         reflect stack model used,
2772         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2773         on stack return NULL,
2774
2775 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2776
2777         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2778           of the operands is volatile. Fixes #1020220
2779
2780 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2781
2782         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2783         * (OptimizeRegUsage): make sure that there is really no other flow where
2784           the first pCode is used
2785
2786 2005-01-22 Raphael Neider <rneider AT web.de>
2787
2788         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2789           to fix #1106967 (pCode->seq are not set up correctly)
2790
2791 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2792
2793         * src/SDCCglue.c (glue): make sure code area is declared before the
2794         static initialization area.
2795
2796 2005-01-21 Raphael Neider <rneider AT web.de>
2797
2798         * device/lib/Makefile.in: fixed test for pic16 install dir
2799         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2800           optimizations
2801         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2802           added --optimize-goto compiler switch and pragma wparam documentation
2803         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2804         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2805           and PRODH closing bug #1071770 (peephole optimizer)
2806
2807 2005-01-19 Raphael Neider <rneider AT web.de>
2808
2809         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2810           cmdLine buffers (used when calling sdcpp...) are large enough
2811           (MAX_PATH=256 truncates arguments leading to system halts when
2812           used in MinGW...)
2813         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2814         * (genUminus): rewritten to for efficiency
2815         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2816           used uninitialized in some cases)
2817         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2818           copy the third byte from the int -- now assumes 0x80 (data memory)
2819         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2820           operands (genAddLit expects the iCode's operands to swapped as
2821           well), fixed leftover bytes (crashed for short left operands)
2822         * (pic16_genMinusDec): performance improvements, removed false
2823           PIC14 emitSKPNCs
2824         * (pic16_genMinus): fixed to cope with differently sized operands
2825         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2826           for --obanksel > 1
2827         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2828         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2829           new banksel optimization
2830         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2831           analysis for temporary registers (segfaults...)
2832         * src/pic16/peeph.def: added rule
2833
2834 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2835
2836         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2837         which converts a float number to its ASCII representation
2838         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2839         functions to convert the fractional and integer part of a float to ASCII,
2840         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2841         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2842         ram
2843         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2844         _STATMEM macros,
2845         * device/include/pic16/adc.h: added GPL info,
2846         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2847         a pCodeOp as tested operand,
2848         * (genNearPointerGet): optimized bit testing, does not use
2849         intermediate register for bit value, test directly instead with
2850         BTFSS, BTFSC, works only for single bits,
2851         * (genpic16Code): dump the name of the iCode in the asm,
2852         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2853         renamed to pic16_decodeOp,
2854         * (serialRegAssign): do not allocate a temporary register for iCode
2855         sequences that test a single bit for 1/0
2856
2857 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2858
2859         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2860         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2861         access stack and frame pointers. They are initially assigned to
2862         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2863         accessing SFRs. Updated all occurences of modification of stack or
2864         frame pointer in gen.c and pcode.c,
2865         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2866         assigning of a literal value to pointers,
2867         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2868         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2869         selected
2870
2871 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2872
2873         * doc/sdccman.lyx: update documentation about stack pragma, added
2874         some info for stack memory models
2875
2876 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2877
2878         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2879
2880 2005-01-08 Raphael Neider <rneider AT web.de>
2881
2882         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2883           udata sections to fix bug #1097823
2884
2885 2005-01-05 Raphael Neider <rneider AT web.de>
2886
2887         * src/pic16/gen.c (genGenericShift): added handling of differently
2888           sized left operand and result
2889
2890 2005-01-04 Raphael Neider <rneider AT web.de>
2891
2892         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2893         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2894           to hold the condition bit)
2895         * added new version of genCmp (old code available via #define)
2896         * added new version of genShiftLeft/genShiftRight in a generic
2897           way, now supports shifting by negative values
2898         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2899           shiftCount (expected by genGenericShift)
2900         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2901         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2902           dump
2903         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2904           is an invalid literal too...)
2905
2906 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2907
2908         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2909         from Raphael Neider,
2910         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2911         for 8-bit literals. This fixes some literal operands which are sign
2912         extended to 16-bits ints when instruction needs only 8-bits.
2913
2914 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2915
2916         * device/lib/logf.c: added mcs51 assembly version
2917         * device/lib/expf.c: added mcs51 assembly version
2918         * device/lib/_logexpf.c: new shared asm code for expf and logf
2919         * device/include/math.h: add defines for assembly math library
2920         * device/lib/Makefile.in: build new _logexpf.c
2921         * device/lib/libfloat.lib: use new _logexpf.c
2922
2923 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2924
2925         * src/pic/device.c
2926         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2927           device types which have less than 0x7f registers.
2928
2929 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2930
2931         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2932
2933 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2934
2935         * device/lib/printf_fast.c: only build on supported arch.
2936         * device/lib/printf_tiny.c: only build on supported arch.
2937         * device/lib/printf_fast_f.c: only build if asm float lib
2938         * device/lib/_fsget1arg.c: only build if asm float lib
2939         * device/lib/_fsget2args.c: only build if asm float lib
2940         * device/lib/_fsnormalize.c: only build if asm float lib
2941         * device/lib/_fsreturnval.c: only build if asm float lib
2942         * device/lib/_fsrshift.c: only build if asm float lib
2943         * device/lib/_fsswapargs.c: only build if asm float lib
2944         * device/include/stdio.h: don't provide print_fast,
2945           print_fast_f, print_tiny prototypes if --xstack used
2946
2947 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2948
2949         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2950         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2951           to the SOURCES
2952
2953 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2954
2955         * device/lib/printf_fast_f.c: same as printf_fast, but
2956           with floating point enabled
2957         * device/lib/printf_fast.c: minor tweaks
2958         * device/include/stdio.h: add printf_fast_f
2959
2960 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2961
2962         * src/SDCCmain.c: make --float-reent default for mcs51
2963         * device/lib/_fsadd.c: added mcs51 assembly version
2964         * device/lib/_fssub.c: added mcs51 assembly version
2965         * device/lib/_fsmul.c: added mcs51 assembly version
2966         * device/lib/_fsdiv.c: added mcs51 assembly version
2967         * device/lib/_fseq.c: added mcs51 assembly version
2968         * device/lib/_fsneq.c: added mcs51 assembly version
2969         * device/lib/_fsgt.c: added mcs51 assembly version
2970         * device/lib/_fslt.c: added mcs51 assembly version
2971         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2972         * device/lib/Makefile.in: add _fscmp to build
2973         * device/lib/libfloat.lib: add _fscmp to build
2974
2975 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2976
2977         * device/lib/_fs2slong.c: added mcs51 assembly version
2978         * device/lib/_fs2sint.c: added mcs51 assembly version
2979         * device/lib/_fs2schar.c: added mcs51 assembly version
2980         * device/lib/_fs2ulong.c: added mcs51 assembly version
2981         * device/lib/_fs2uint.c: added mcs51 assembly version
2982         * device/lib/_fs2uchar.c: added mcs51 assembly version
2983         * device/lib/_slong2fs.c: added mcs51 assembly version
2984         * device/lib/_sint2fs.c: added mcs51 assembly version
2985         * device/lib/_schar2fs.c: added mcs51 assembly version
2986         * device/lib/_ulong2fs.c: added mcs51 assembly version
2987         * device/lib/_uint2fs.c: added mcs51 assembly version
2988         * device/lib/_uchar2fs.c: added mcs51 assembly version
2989         * device/include/float.h: added #define to select asm vs c
2990
2991 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2992
2993         * device/lib/printf_fast.c: improvements to float output
2994         * device/include/float.h: add defines for assembly float library
2995         * device/lib/_fsget1arg.c: receive 1 float arg
2996         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2997         * device/lib/_fsnormalize.c: normalize a float
2998         * device/lib/_fsreturnval.c: return float, various helper routines
2999         * device/lib/_fsrshift.c: right shift a float's mantissa
3000         * device/lib/_fsswapargs.c: swap 2 floats
3001         * device/lib/Makefile.in: build these 6 new files for mcs51
3002         * device/lib/libfloat.lib: add these 6 files to the library
3003
3004 2004-12-26 Borut Razem <borut.razem AT siol.net>
3005
3006         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3007           built by gcc 3.4.2
3008
3009 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3010
3011         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3012           and fully reentrant and register bank neutral.
3013         * device/lib/printf_fast.c: added float (not enabled by default),
3014           added compact/slower integer (also not enabled by default),
3015           improved size/speed of fast integer code, other minor changes
3016         * device/include/stdio.h, device/lib/Makefile.in,
3017           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3018
3019 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3020
3021         * src/pic16/pcode.c: declaring variables other than at the start of a
3022           block is not supported in C by VC6.
3023
3024 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3025
3026         * applied a previous patch from Raphael Neider that wasn't included
3027         in the previous commits, which fixes infinite loops within jumptable
3028         improvements,
3029         * made some fixes that previous patches introduced
3030
3031 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3032
3033         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3034         that fixes an issue with AOP_PCODE asmop's offset,
3035         * (pic16_popCopyReg): update instance field too,
3036         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3037         function of pic port,
3038         * (genCmp, genAnd, genAssign),
3039         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3040
3041 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3042
3043         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3044         variables initial values to idata section,
3045         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3046         variables in some functions. This utilizes parmBytes field of iCode
3047         structure to hold the offset of the variable in stack. (might be
3048         able to use the stack field too?)
3049         * applied patch from Raphael Neider # ### , # ###
3050         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3051         variable initial values in idata section,
3052         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3053         for static variables with initial value
3054         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3055         applied fix in while loop from Raphael Neider.
3056
3057 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3058
3059         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3060         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3061         * src/ds390/ralloc.c (serialRegAssign): spill bits
3062         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3063         * support/Util/SDCCerr.c,
3064         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3065         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3066         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3067
3068 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3069
3070         * device/include/sdcc-lib.h: inserted LGPL, added includes
3071           asm/ds390/features.h and asm/mcs51/features.h
3072         * device/include/asm/default/features.h,
3073         * device/include/asm/gbz80/features.h,
3074         * device/include/asm/z80/features.h: added empty _AUTOMEM
3075           and _STATMEM
3076         * device/include/asm/ds390/features.h,
3077         * device/include/asm/mcs51/features.h: added files with defines for
3078           _AUTOMEM and _STATMEM indicating automatic and static storage class
3079         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3080         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3081         * src/SDCCicode.c (geniCodeCast),
3082         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3083         * src/SDCCloop.c (loopInduction): removed unused variable lr
3084         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3085           to convertToFcall to include char modulo (RFE 1065037), added check
3086           if left operand is unsigned and use abs of literal value
3087         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3088           as it doesn't work after conversion from peephole.def to peephole.rul
3089         * src/mcs51/gen.c (toBoolean): added check for size,
3090           (genModOneByte): optimized code for signed char modulo a literal
3091           power of 2 (thanks to Hubert Sack),
3092           (genRRC): removed unnecessary "clr c",
3093           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3094         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3095           jump optimization,
3096           swapped rules 256.c and 256.d,
3097           extended 256.d by using new multiple checks (thanks Erik),
3098           added rules 256.e and 256.f,
3099           updated rule 261.a and 261.b to new generated code
3100         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3101
3102 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3103
3104         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3105           induction related bugs, including first part of bug #1074377
3106
3107 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3108
3109         * applied patch from bug-report #1076292,
3110         * applied patches for genAnd and Goto-optimizations for Raphael
3111         Neider,
3112         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3113         dump a less iCode information,
3114         * src/pic16/device.h (pic16_options_t): added field debgen,
3115         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3116         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3117         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3118         puclic,
3119         * (various functions): added macros FENTRY and FENTRY2 to functions,
3120         to emit function prologue,
3121         * (various functions): fixed indentation,
3122         * (genNearPointerGet): fixed loading of FSR0,
3123         * (genPackBits): applied patch from Raphael Neider to fix updating
3124         of FSR0 and touching only the modified bits,
3125         * src/pic16/genarith.c (various functions): added macros FENTRY to
3126         emit function prologue in comments,
3127         * src/pic16/pcode.h: added functions debugf2, debugf3,
3128         * src/pic16/ralloc.c: partial fix for packForPush caused
3129         segmentation fault,
3130
3131 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3132
3133         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3134           <stsp AT users.sourceforge.net> with reversed byte order
3135         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3136
3137 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3138
3139         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3140           bug #1074377
3141         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3142         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3143
3144 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3145
3146         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3147
3148 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3149
3150         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3151           conditions,
3152           (setFromConditionArgs): friendly operand parser for peephole rules,
3153           (operandBaseName, operandsNotRelated): new peephole condition
3154           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3155           architecture specific register naming into account, handles n-way
3156           comparisons, and supports quoted literals
3157         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3158
3159 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3160
3161         * src/mcs51/peeph.def: fixed bug #1076940
3162
3163 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3164
3165         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3166
3167 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3168
3169         Adding support for replacing ljmps with sjmps in jumptables
3170         generated for switch statements. For now you need to set the
3171         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3172         Now 4 algorithms for mcs51 jumptable generation are used:
3173         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3174         addresses loaded pc-relative for up to 112 cases and stack-pushing
3175         target addresses loaded with offset from dptr for up to 256 cases.
3176
3177         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3178         * src/mcs51/main.c: adapted constants for switch table generation
3179         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3180
3181 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3182
3183         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3184         * support/regression/tests/bug1057979.c: added test for bug 1073386
3185
3186 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3187
3188         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3189         compilers
3190
3191 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3192
3193         * src/pic16/device.h,
3194         * src/pic16/genarith.c,
3195         * src/pic16/glue.c,
3196         * src/pic16/main.c,
3197         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3198
3199 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3200
3201         Large cummulative patch for pic16 port.
3202         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3203         to call when a stack overflow occurs,
3204         * (malloc.h): added CVS Id tag,
3205         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3206         variable,
3207         * added libc directory. The current version of LibC contains string
3208         functions, ctype functions and macros and some functions of the
3209         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3210         be extensively tested in the future. Standard disclaimer here.
3211         Library is not automatically build yet. But one can build it by
3212         invoking 'make' inside the libc directory.
3213         * added ADC library under libio. Preliminary version yet.
3214
3215         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3216         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3217         aopForRemat() now and not by pic16_aopOp(),
3218         * (pic16_popGetTempReg): removed warning messgae when allocating
3219         temporary registers, its a buggy feature and will be removed,
3220         * (pic16_popGet): set register instance field in AOP_CRY,
3221         * (pic16_outBitC): fixed for results in size greater than 1,
3222         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3223         * (pic16_storeForReturn): optimized return of 0,
3224         * (genCmp): experimental code for new genCmp which uses PIC18's
3225         special compare&skip instructions. Initial tests fail some times
3226         with variables grater than 1 byte in size, so new code is disabled,
3227         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3228         a single bit,
3229         * (genCast): began a fix to optimize the casting of a bit to another
3230         bit, now assigning a bitfield to another bitfield will fail, sorry,
3231         * src/pic16/main.c: disabled the use of lr-support feature,
3232         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3233         * added some function prototypes, added function _debugf prototype,
3234         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3235         bits with offset (case PO_GPR_BIT),
3236         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3237         command line,
3238         * (isBankInstruction): modified to return 0 for no banking instruction,
3239         and 1 for banking instruction,
3240         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3241         caused stop processing pCodes after a inline assembly block,
3242         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3243         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3244         registers when it shouldn't,
3245         * src/pic16/ralloc.c (allocReg): add preliminary support for
3246         supporting a limited set of temporary registers,
3247
3248 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3249
3250         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3251           genDataPointerSet): ensure assignments always copy in MSB to LSB
3252           order,
3253           (loadRegFromAop): recognize CLRH optimization,
3254           (genFunction): optimize RECEIVE iCodes in reentrant functions
3255
3256 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3257
3258         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3259           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3260           selected.
3261         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3262         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3263           contiguous with data
3264
3265 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3266
3267         * device/lib/_gptrget.c (_gptrget),
3268         * device/lib/_gptrgetc.c (_gptrgetc),
3269         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3270           instead of sjmp to ret
3271         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3272           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3273
3274 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3275
3276         * .version: bumped version to 2.4.7
3277         * device/lib/_gptrget.c (_gptrget): is now _naked
3278         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3279         * device/lib/_gptrput.c (_gptrput): is now _naked
3280         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3281           (createFunction): fixed xstack
3282         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3283         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3284           or bit either,
3285           (geniCodeCritical): store original interrupt state in an iTemp bit
3286           var unless stack-auto
3287         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3288         * src/SDCCmain.c (setIncludePath): added include/target to search path
3289         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3290         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3291           prototype,
3292           (processFuncArgs): put bit vars in bit area
3293         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3294           unsaveRBank): fixed xstack,
3295           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3296           (genFunction, genEndFunction): fixed xstack,
3297           (genAssign): optimization don't walk backwards through mem
3298         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3299         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3300         * support/regression/Makefile: also make library (for stack-auto) when
3301           making "all" and added "test-mcs51-xstack-auto"
3302         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3303         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3304         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3305         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3306         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3307           make-library by MAKE_LIBRARY
3308         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3309           regression tests for xstack
3310         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3311         * support/regression/tests/critical.c: test for critical on mcs51
3312
3313 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3314
3315         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3316           built version of sdcc instead of installed version
3317
3318 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3319
3320         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3321         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3322           vprintf.c now
3323         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3324         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3325           WARNING: remove device/lib/build/z80/printf.o by hand when
3326           updating from previous build!
3327         * device/lib/z80/printf.c: updated comment
3328         * support/regression/tests/bug1057979.c: test all ports now
3329         * support/regression/tests/bug1065458.c: file added
3330
3331 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3332
3333         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3334           *_start and *_end symbols for static functions
3335
3336 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3337
3338         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3339           and search crt0.o in all library paths,
3340           (setIncludePath): proper handling of --nostdinc,
3341           (setLibPath): proper handling of --nostdlib
3342         * support/regression/Makefile,
3343         * support/regression/ports/ds390/spec.mk,
3344         * support/regression/ports/gbz80/spec.mk,
3345         * support/regression/ports/hc08/spec.mk,
3346         * support/regression/ports/mcs51/spec.mk,
3347         * support/regression/ports/mcs51-large/spec.mk,
3348         * support/regression/ports/mcs51-stack-auto/spec.mk,
3349         * support/regression/ports/z80/spec.mk: use include and lib files from
3350           built version of sdcc instead of installed version
3351         * doc/sdccman.lyx: fixed typo in --nostdinc
3352
3353 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3354
3355         * src/pic/pcode.c,
3356         * src/pic/device.c,
3357         * src/pic/ralloc.c,
3358         * src/pic/gen.c : added support to generate code for struct bit fields.
3359
3360 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3361
3362         * as/xa51/xa_version.h,
3363         * device/include/errno.h,
3364         * device/include/regc515c.h,
3365         * device/lib/_itoa.c,
3366         * device/lib/_ltoa.c,
3367         * device/lib/ser_ir_cts_rts.c,
3368         * sim/ucsim/xa.src/glob.cc,
3369         * sim/ucsim/xa.src/inst_gen.cc,
3370         * sim/ucsim/xa.src/xa_bit.cc,
3371         * sim/ucsim/xa.src/xa_sfr.cc,
3372         * sim/ucsim/z80.src/inst_dd.cc,
3373         * sim/ucsim/z80.src/inst_fdcb.cc,
3374         * support/scripts/keil2sdcc.pl,
3375         * src/pic16/pic16.dsp,
3376         * src/pic16/pic16a.dsp: corrected cvs line endings
3377         * device/lib/printf_large.c: fixed bug 1057979
3378         * src/pic16/gen.c: fixed non-C standard code
3379         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3380         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3381         * support/regression/ports/mcs51/support.c: reload T1 asap
3382         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3383           pdata use and clear idata startup behaviour
3384         * support/regression/tests/bug1057979.c: added
3385
3386 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3387
3388         * device/examples/ds390/ow390/ad26.h,
3389         * device/examples/ds390/ow390/cnt1d.h,
3390         * device/examples/ds390/ow390/crcutil.c,
3391         * device/examples/ds390/ow390/ownet.h,
3392         * device/examples/ds390/ow390/owsesu.c,
3393         * device/examples/ds390/ow390/swt12.h,
3394         * device/examples/ds390/ow390/swtoper.c,
3395         * device/examples/ds390/ow390/temp10.h,
3396         * device/examples/ds390/ow390/thermodl.c,
3397         * device/examples/ds390/tinitalk/tinitalk.dsp,
3398         * device/examples/ds390/tinitalk/tinitalk.dsw,
3399         * device/examples/mcs51/clock/hw.h,
3400         * device/examples/mcs51/simple2/go.bat,
3401         * device/examples/serialcomm/windows/serial.h,
3402         * device/examples/xa51/dummy.c,
3403         * device/examples/xa51/hello.c,
3404         * device/include/80c51xa.h,
3405         * device/include/at89x051.h: corrected cvs line endings
3406
3407 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3408
3409         * src/pic16/main.c (options): added command line --gstack, to trace
3410         stack over/under flows,
3411         * added pragma 'wparam' to allow passing first byte of function
3412         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3413         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3414         call to __gstack_test function and sets up the symbol as extern,
3415         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3416         * popaop): added call to pic16_testStackOverflow,
3417         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3418         wparamList list,
3419         * (genCall, genPcall): now all parameters are passed via stack
3420         except in functions that are pass to wparam pragma in which WREG is
3421         used too,
3422         * (genPcall): REENTRANT flag is checked to see if variable prototype
3423         contains reentrant keyword, don't call a non-reentrant function, via
3424         a reentrant function pointer or vice versa, functions are never
3425         passed via WREG,
3426         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3427         D.Winkler,
3428         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3429         SIGSEGV when accessing a NULL register stucture,
3430         * (pic16_printGPointerType): modified to handle UPPER modifier for
3431         function initializers, changed prototype of function to simpler one,
3432         * (pic16_printIvalFuncPtr): check to see if function is already
3433         added in externs list,
3434         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3435         optimized a move from W to SFR with a move to the same register
3436         later after a CALL,
3437         * device/lib/pic16/debug: NEW directory, contains debug features
3438         which are enabled when linking with libdebug.lib, currently command
3439         line option --gstack enables stack pointer tracing for over/under
3440         flow, corresponding sources are in debug/gstack
3441
3442 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3443
3444         * doc/sdccman.lyx: updated SDCC version,
3445         * (PIC16 port): update list of command line options,
3446         * src/pic16/device.h (structure pic16_options_t): added field gstack
3447         to enable stack overflow tracing on push/pops,
3448         * src/pic16/device.c (statistics structure): added statistics
3449         structure,
3450         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3451         pic16_dump_int_registers): increase statistics counters for each
3452         * variable which is encountered
3453         * (pic16_dump_usection): emit each .udata variable to its own udata
3454         section,
3455         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3456         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3457         parameters via stack, otherwise use old scheme,
3458         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3459         assembler output file,
3460         * src/pic16/main.c: added command line options --gstack to enable
3461         push/pop tracing for stack overflow,
3462         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3463         instructions): added size of each instruction,
3464         * (pic16_countInstruction): estimate size of instructions in
3465         the_pFile list, inline assembly blocks are not counted,
3466         * (pic16_FixRegisterBanking): trace previous register usage, when
3467         banksel optimizations is greater than 0, don't emit a redudant
3468         banksel directive,
3469
3470 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3471
3472         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3473         * src/pic16/ralloc.c : applied same fix for pic16.
3474         * src/pic/gen.c : tidied it up a little.
3475
3476 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3477
3478         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3479         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3480
3481 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3482
3483         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3484
3485 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3486
3487         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3488         non-reentrant function __modsint in the interrupt function (thus
3489         corrupting math operations during serial I/O)
3490         * device/lib/ser_ir.c: as above, changed buffersize
3491         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3492         256.c,d for zeroing
3493         * doc/Makefile: added option -t for rsync
3494
3495 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3496
3497         * src/SDCCast.h (struct ast),
3498         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3499
3500 2004-10-20 Borut Razem <borut.razem AT siol.net>
3501
3502         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3503         package
3504
3505 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3506
3507         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3508         makefile targets,
3509         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3510         support functions to replace long sequences of MOVFF's from access
3511         bank registers to stack and vice versa,
3512         * src/pic16/device.h: added new field opt_flags, where optimization
3513         flags can be set to enable certain features,
3514         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3515         * pBlock, (genFunction, genEndFunction): surroung loop for
3516         saving/loading used registers in stack with PC_INFO pCodes,
3517         INF_LREGS. Code in between can then be optimized by pCode optimizer
3518         to support function calls,
3519         * (genDataPointerSet): fixed bug which loaded float fields in
3520         structures with corrupt data,
3521         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3522         in a standard way debug info on stderr. Feature used for developing
3523         and debugging only,
3524         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3525         obsolete chunks of code,
3526         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3527         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3528         * pic16/src/pcode.c (pic16_newpCodeInfo,
3529         * (pic16_newpCodeOpLocalRegs),
3530         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3531         feature,
3532         * (pic16_pCodeConstString): printing of the initial value of a
3533         symbol as a comment is inhibited since parsing was already done by
3534         copyStr and output is corrupt,
3535         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3536
3537 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3538
3539         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3540
3541 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3542
3543         * as/mcs51/lkarea.c: removed old K&R style,
3544           (lnksect): changed check on boundary error,
3545           (lnksect2): changed check on boundary error,
3546           (lnksect2): extend XSTK to end of page if size = 1
3547         * as/mcs51/lkmain.c: removed old K&R style,
3548           (Areas51): create l_IRAM symbol
3549         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3550         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3551           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3552         * device/lib/_mullong.c: added version to be compiled with xstack
3553         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3554         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3555         * device/lib/mcs51/crtxstack.asm: fixed comment
3556         * src/SDCCglue.c: maxInterrupts defaults to 0,
3557           (emitMaps): added pdata,
3558           (createInterruptVect): (re)moved default,
3559           (glue): added pdata,
3560           (glue): moved __start__xstack to XSTK with default size 1
3561         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3562           and options.float_rent when options.stackAuto is set,
3563           (linkEdit): only write XDATA_NAME if provided on command line
3564         * src/SDCCmem.h,
3565         * src/SDCCmem.c: added pdata
3566         * src/port.h: added pdata_name to PORT
3567         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3568           (saveRegisters, unsaveRegisters): removed usage of B,
3569           (genMinus): fixed accumulator clash,
3570           (genJumpTab): added comment, this needs another look
3571         * src/mcs51/gen.c: added check for "B in use" paranoia,
3572           added pushB() and popB()
3573         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3574           chance
3575         * src/avr/main.c,
3576         * src/ds390/main.c,
3577         * src/hc08/main.c,
3578         * src/mcs51/main.c,
3579         * src/pic/main.c,
3580         * src/pic16/main.c,
3581         * src/xa51/main.c,
3582         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3583           added PSEG (PAG,XDATA) or NULL to port specifier
3584         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3585         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3586           (_mcs51_genInitStartup): removed __start__xstack equ,
3587           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3588         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3589         * src/z80/gen.c (_rleAppend): fixed warnings
3590         * support/regression/tests/zeropad.c: added pdata test
3591         * .version: bumped to 2.4.6
3592
3593 2004-10-17 Borut Razem <borut.razem AT siol.net>
3594
3595         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3596         as a part of nightly build
3597
3598 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3599
3600         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3601         WREG holds the first byte function parameters,
3602         * (aopForSym): take special case for symbols which are in FARSPACE
3603         but in CODESPACE too,
3604         * (assignResultValue): modified to take into account _G.useWreg,
3605         * (genCall): don't use wreg for parameter passing when function is
3606         declared as reentrant, too, added optimization INCF to stack
3607         pointer when stack parameter count is 1,
3608         * (genFunction, genEndFunction): refurnished and fixed to not using
3609         wreg for passing parameters when function has varargs or is
3610         reentrant, fixed bug with symbol name compare for generating
3611         functions in absolute address,
3612         * (pic16_storeForReturn): refurnished,
3613         * (genCmp): began writing a new version of the function, not ready
3614         yet, therefore it is disabled,
3615         * (genAssign): do not read code memory when assigning a function to
3616         a pointer function,
3617         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3618         array of characters, not pointer,
3619         * (pic16initialComments): in debug mode emit an .ident directive for
3620         the assembler,
3621         * (_process_pragma): emit a new warning type (internal to pic16)
3622         when setting stack to default length, emit a similar warning when
3623         placing a function at absolute address and address is not word aligned
3624         * (_pic16_parseOptions): added 'return TRUE' statement,
3625         * (_pic16_linkEdit): if compiling a source, then add the source's
3626         file object, first in the list of objects to link,
3627
3628 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3629
3630         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3631         * src/pic/main.c : removed VC warning.
3632         * src/pic/gen.c : changed comment.
3633
3634 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3635
3636         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3637         reference to a deprecated symbol _GPTRREG was causing failure to
3638         link. Thanks G. M. Gallant for the info.
3639
3640 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3641
3642         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3643         comments for Bugs item #954788.
3644
3645 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3646
3647         * src/pic16/device.c (pic16_dump_gsection,
3648         * pic16_groupRegistersInSection): handle symbols declared to be in
3649         access bank differently,
3650         * src/pic16/gen.c (struct _G): added field resDirect,
3651         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3652         send values read from stack directly to result and don't allocate
3653         temporary values,
3654         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3655         same registers,
3656         * (pic16_sameRegsOfs): NEW,
3657         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3658         free because they were not allocated from temporary pool,
3659         * pic16_popRegFromString): workaround to fix a problem with
3660         allocating variables twice or never,
3661         * (genGenPointerGet): using PRODL instead of FSR0H,
3662         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3663         instead of FSR0H,
3664         * (genAssign): take advantage of the _G.resDirect flag,
3665         * (genCast): around line 11844, use mov2f instead of directly
3666         MOVFF'ing between operands to account for literal values,
3667         * src/pic16/genutils.c: some new debug functions for gpsim have been
3668         added,
3669         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3670         float with integer part only,
3671         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3672         place variables in access bank
3673         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3674         updated sources to reflect recent changes in gen.c
3675
3676 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3677
3678         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3679         sources that searched for headers in installation path, now the
3680         device/include/pic16 is used,
3681         * src/pic16/glue.c (pic16glue),
3682         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3683         .line directives if not in debug mode, this suppresses assembler's
3684         warnings for ignored directives
3685
3686 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3687
3688         * src/port.h: made reset_regparms prototype void parameter explicit.
3689         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3690         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3691         * doc/sdccman.lyx: documented warning disabling and how to use
3692           printf_large to make it print floats.
3693         * device/include/stdbool.h: NEW
3694         * device/lib/_atof.c,
3695         * device/lib/_divuint.c,
3696         * device/lib/_divulong.c,
3697         * device/lib/expf.c,
3698         * device/lib/printf_large.c,
3699         * device/lib/sincosf.c,
3700         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3701         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3702           a completely reentrant lib.
3703
3704 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3705
3706         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3707         * device/include/pic16/stdio.h: fixed bug with colon
3708
3709 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3710
3711         * device/include/pic16/stdio.h,
3712         * device/include/pic16/stdlib.h,
3713         * device/include/pic16/math.h: NEW
3714         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3715         declared as _naked to reduce overhead
3716         * device/lib/Makefile.in (target port-specific-objects-pic16):
3717         changed * to *.* so to ignore the CVS directory,
3718         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3719         stacked variables back in stack,
3720         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3721         corruption
3722
3723 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3724
3725         * .version: bumped version number to 2.4.5
3726         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3727         * support/Util/SDCCerr.c (messages structure): added entry for
3728         W_POSSBUG2
3729
3730         Large cumulative patch for pic16 port and libraries.
3731         * device/include/pic16/sdcc-lib.h,
3732         * device/include/pic16/stdarg.h,
3733         * device/include/asm/pic16/features.h,
3734         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3735         * device/include/pic16/float.h: changes reentrant keyword with
3736         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3737         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3738         updated target build-libraries to include objects from gptr,
3739         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3740         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3741         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3742         all function headings,
3743         * src/SDCCmain.c: added global parameter userIncDirsSet,
3744         * (parseCmdLine): when option -I is encountered add directory to
3745         userIncDirsSet too,
3746         * src/version.awk: added space between control and long,
3747         * src/pic16/NOTES: added some notes for the port,
3748         * src/pic16/gen.c: added prototype for mov2fp function,
3749         * (fReturnpic16[]): properly named return value registers,
3750         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3751         * (aopForSym): added code to handle symbols with onStack flag set,
3752         symbols onStack are allocated PTRSIZE bytes,
3753         * (aopFreeAsmop): handles special case where asmops are stack objects,
3754         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3755         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3756         added argument lock to trace flaws in allocating temporary registers
3757         when developing port,
3758         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3759         * (pic16_popRegFromString): reenabled allocating a direct register
3760         from string,
3761         * (assignResultValue): various beautifications,
3762         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3763         referenced function argument,
3764         * (genIpush): reenabled to allow stacked arguments, handles only
3765         ic->parmPush iCodes,
3766         * (genCall, genPcall): major changes to allow for variable argument
3767         functions, fixed a bug with falsely restoring stack pointer after
3768         returning from call,
3769         * (genFunction): pending code for critical function,
3770         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3771         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3772         * (genNearPointerGet): fixed bug with indirect reading, was always
3773         reading from INDF0
3774         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3775         pointers,
3776         * (genAddrOf): rewrote code to take address of a stacked function parameter
3777         * (genCast): fixed casting to generic pointer type,
3778         * src/pic16/gen.h: added AOP_STA,
3779         * (struct asmop): added field stk,
3780         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3781         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3782         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3783         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3784         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3785         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3786         generic pointers,
3787         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3788         and library paths,
3789         * (pic16_port structure): generic pointer size is set to 3,
3790         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3791         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3792         compiler warning,
3793         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3794         operand is an iTemp,
3795
3796 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3797
3798         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3799         * debugger/mcs51/simi.c: addapt new syntax of s51
3800
3801 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3802
3803         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3804         * src/pic16/pcode.c: commented out some calls to free() in order to
3805         fix bug #989576,
3806
3807 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3808
3809         * src/SDCCicode.h,
3810         * src/SDCCicode.c (isiCodeInFunctionCall),
3811         * src/avr/ralloc.c (selectSpil),
3812         * src/pic/ralloc.c (selectSpil),
3813         * src/pic16/ralloc.c (selectSpil),
3814         * src/ds390/ralloc.c (selectSpil),
3815         * src/hc08/ralloc.c (selectSpil),
3816         * src/xa51/ralloc.c (selectSpil),
3817         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3818         stack in the middle of a function call sequence (fixes bug #1020268)
3819         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3820         costs associated with the minimum switch case.
3821
3822 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3823
3824         * src/SDCC.lex: fixed bug #1030549
3825
3826 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3827
3828         * src/SDCCcse.h (struct cseDef),
3829         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3830         over a function call if the CSE is derived from a symbol whose
3831         address has been taken (fixes bug #1029883)
3832         * support/regression/tests/bug-1029883: a new regression test for
3833         this bug
3834
3835 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3836
3837         * src/hc08/gen.c (emitinline): fixed bug #1029778
3838         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3839         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3840         and starts toward RFE #905167)
3841
3842 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3843
3844         * src/pic16/gen.c (mov2f): New function to move an operand to
3845         another without considering if it is a literal or a register,
3846         * (pic16_sameRegs): don't check if they are both AOP_REG,
3847         * (AccRsh): removed andmask=0 lines,
3848         * (genLeftShift): duplicated to be improved in future versions,
3849         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3850         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3851         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3852         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3853         * (insertBankSwitch): fixed inserting banksel directives algorithm
3854         for instructions that follow a skip instruction, this fixes a report
3855         for broken subtraction code generation,
3856         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3857         iCode is a left op, just in case result and right share the same
3858         registers
3859
3860 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3861
3862         * src/hc08/main.c,
3863         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3864         preservation of HX
3865         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3866         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3867         on 2004-09-12; it was buggy
3868
3869 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3870
3871         * src/SDCCsymt.h: removed RESULT_CHECK
3872         * src/SDCCast.c,
3873         * src/SDCCglue.c,
3874         * src/SDCCval.c,
3875         * src/pic/glue.c,
3876         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3877
3878 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3879
3880         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3881         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3882         configuration values no more rejected by compiler, they are assigned
3883         to configuration registers with a warning message instead,
3884         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3885         the for-loop so last conf register is emitted too,
3886         * (_pic16_initPaths): link library libsdcc.lib by default,
3887         * (_hasNativeMulFor): modified test for multiplication according to
3888         Raphael Neider's remarks. Integer multiplication is also done with
3889         support functions,
3890         * device/include/pic16/pic18fregs.h: corrected type error in while
3891         testing and including 18f6720 header file
3892
3893 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3894
3895         * src/pic16/device.h (pic16_options): removed field use_crt,
3896         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3897         until an optimization to handle single bits is added,
3898         * (pic16_loadFSR0): moved before genUnpackBits,
3899         * (genAnd): some white lines removed,
3900         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3901         leave_reset flags in pic16_options when using crt modules,
3902
3903 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3904
3905         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3906           for bugs 898889 & 979599. Also used some safer print instructions.
3907
3908 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3909
3910         * src/pic16/device.h (pic16_options_t): added field use_crt,
3911         crt_name, no_crt,
3912         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3913         catch a probable future bug,
3914         * src/pic16/gen.c: aopIdx function commented out,
3915         * (genAssign): commented out old code which used aopIdx,
3916         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3917         code, added if conditionals to take into account the --use-crt
3918         command line options,
3919         * src/pic16/main.c (pic16_optionsTable): added new command line
3920         options, --use-crt= and --no-crt,
3921         * (_pic16_linkEdit): now the proper crt object is added in the
3922         linker command line except than when --no-crt is specified,
3923         * src/pic16/pcode.c,
3924         * src/pic16/pcode.h: added some structures and functions for a new
3925         optimization scheme to compansate for instruction overhead between
3926         same iCodes, this scheme is currently under development and is not
3927         working in any way,
3928         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3929         to && operator,
3930         * device/lib/pic16/startup/crt0i.c,
3931         * device/lib/pic16/startup/crt0iz.c: added global char variable
3932         __uflags to force the generation of an idata section
3933
3934 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3935
3936         * doc/Makefile,
3937         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3938         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3939
3940 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3941
3942         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3943         Frieder) and clarified the default code optimization mode
3944
3945 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3946
3947         * src/SDCC.lex (doPragma, process_pragma),
3948         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3949         "opt_code_size", and "opt_code_balanced"
3950         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3951         regrouped options by category, added support for category headers
3952         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3953         and "--opt-code-size"
3954         * doc/sdccman.lyx: documented these new options and pragmas
3955         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3956         preference into account
3957
3958 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3959
3960         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3961           geniCodePreDec): Fixed bug 904237 by generating a warning
3962         * src/SDCCerr.h,
3963         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3964
3965 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3966
3967         * src/pic/device.c : When no max ram set validate full memory range.
3968         * src/pic/pcode.c,
3969         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3970
3971 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3972
3973         * device/lib/_gptrget.c,
3974         * device/lib/_gptrput.c: updated comment
3975         * device/lib/calloc.c,
3976         * device/lib/free.c,
3977         * device/lib/malloc.c,
3978         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3979         * src/SDCCcse.c (cseBBlock),
3980         * src/SDCCicode.c (printOperand, geniCodeArray),
3981         * src/SDCCicode.h (struct operand): fixed bug 868103
3982         * support/regression/tests/bug-868103.c: added
3983         * src/SDCCast.c (searchLitOp),
3984         * src/SDCCcse.h (struct cseDef),
3985         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3986         * src/SDCCicode.h (struct operand),
3987         * src/SDCCsymt.h (struct sym_link),
3988         * src/avr/gen.c (hasInc),
3989         * src/ds390/gen.c (hasInc),
3990         * src/hc08/gen.c (genPlusIncr, hasInc),
3991         * src/mcs51/gen.c (hasInc),
3992         * src/pic16/glue.c (pic16_printIvalChar),
3993         * src/pic16/ralloc.c (regWithIdx),
3994         * src/xa51/gen.c (hasInc) : removed warnings
3995         * src/SDCCast.c (createBlock): added comment ???
3996         * src/hc08/ralloc.c: updated comments
3997
3998 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3999
4000         * doc/sdccman.lyx: updated section on switch statements, added
4001         section about semaphore locking
4002         * doc/Makefile: added option -info for latex2html
4003         * device/lib/_gptrget.c,
4004         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4005
4006 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4007
4008         * src/pic/device.h,
4009         * src/pic/device.c,
4010         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4011          maxram is less than 0x100.
4012
4013 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4014
4015         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4016
4017 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4018
4019         * src/port.h,
4020         * src/mcs51/main.c,
4021         * src/ds390/main.c,
4022         * src/z80/main.c,
4023         * src/hc08/main.c,
4024         * src/pic/main.c,
4025         * src/pic16/main.c,
4026         * src/avr/main.c,
4027         * src/xa51/main.c
4028         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4029         a jump table is the best form for a switch statement, including
4030         automatic insertion of missing cases to make the case range
4031         continuous. Developed in collaboration with Frieder Ferlemann.
4032
4033 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4034
4035         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4036         accumulator result if it needs sign extension
4037
4038 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4039
4040         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4041
4042 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4043
4044         * device/lib/gbz80/printf.c,
4045         * device/lib/z80/printf.c: removed define for NULL
4046
4047 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4048
4049         * as/xa51/xa_link.c,
4050         * device/examples/ds390/ow390/ad26.c,
4051         * device/examples/ds390/ow390/cnt1d.c,
4052         * device/examples/ds390/ow390/counter.c,
4053         * device/examples/ds390/ow390/ds2480.h,
4054         * device/examples/ds390/ow390/ds2480ut.c,
4055         * device/examples/ds390/ow390/findtype.c,
4056         * device/examples/ds390/ow390/gethumd.c,
4057         * device/examples/ds390/ow390/owllu.c,
4058         * device/examples/ds390/ow390/ownetu.c,
4059         * device/examples/ds390/ow390/swt12.c,
4060         * device/examples/ds390/ow390/swtloop.c,
4061         * device/examples/ds390/ow390/temp.c,
4062         * device/examples/ds390/ow390/temp10.c,
4063         * device/examples/ds390/ow390/thermo21.c,
4064         * device/examples/ds390/ow390/tinilnk.c,
4065         * device/examples/ds390/ow390/tstfind.c,
4066         * device/examples/serialcomm/windows/serial.cpp,
4067         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4068         * device/include/reg51.h: fixed line endings for cvs
4069
4070 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4071
4072         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4073         packRegsForAccUse, packRegisters): new accumulator register
4074         packing algorithm
4075         * support/regression/ports/hc08/support.c (_putchar): suppress
4076         warning of unused variable
4077         * src/SDCCicode.c: added SWAP entry to codeTable
4078
4079 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4080
4081         * device/lib/sprintf.c: forgot to add this file before previous commit
4082
4083 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4084
4085         * src/pic16/gen.c (genPackBits): added operand right in function
4086         parameters, load result directly if p_type is POINTER (that is
4087         called by genNearPointerSet)
4088         * (genUnPackBits): added operand left in function parameters,
4089         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4090         FSR0 if accessing bitfields,
4091
4092 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4093
4094         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4095           _print_format; updated printf, sprintf, vsprintf
4096         * device/include/asm/default/features.h: corrected comment/define
4097         * device/lib/Makefile.in: added sprintf.c
4098         * device/lib/libsdcc.lib: added sprintf module
4099         * device/lib/printf_large.c,
4100         * device/lib/vprintf.c,
4101         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4102           into these 3 files
4103         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4104         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4105         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4106           hc08 test
4107         * support/regression/tests/zeropad.c: define idata as data for hc08
4108
4109 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4110
4111         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4112         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4113         labels are referenced at least once (even if a reference is not found)
4114         * src/hc08/gen.c (emitcode): set isComment flag for comments
4115         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4116         loads), rules 6a..6b (optimize jumps to return)
4117
4118 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4119
4120         * device/lib/acosf.c (acosf),
4121         * device/lib/asinf.c (asinf),
4122         * device/lib/atanf.c (atanf),
4123         * device/lib/ceilf.c (ceilf),
4124         * device/lib/cosf.c (cosf),
4125         * device/lib/coshf.c (coshf),
4126         * device/lib/cotf.c (cotf),
4127         * device/lib/fabsf.c (fabsf),
4128         * device/lib/floorf.c (floorf),
4129         * device/lib/log10f.c (log10f),
4130         * device/lib/logf.c (logf),
4131         * device/lib/sinf.c (sinf),
4132         * device/lib/sinhf.c (sinhf),
4133         * device/lib/sqrtf.c (sqrtf),
4134         * device/lib/tanf.c (tanf),
4135         * device/lib/tanhf.c (tanhf),
4136         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4137         replaced all instances of "reentrant" in the library functions
4138         defined in math.h with this macro.
4139         * support/regression/tests/float_trans.c: reenabled test for hc08
4140
4141 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4142
4143         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4144         erroneously deleted
4145
4146 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4147
4148         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4149         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4150         multi-byte volatile operands are used
4151         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4152         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4153         initialization to area GSINIT0 so that it would always precede
4154         any static initializers in GSINIT
4155         * support/regression/tests/zeropad.c: fixed idata define for hc08
4156         * support/regression/tests/bug-927659.c,
4157         * support/regression/tests/float_trans.c: disabled tests for hc08
4158         pending missing library routines
4159         * .version: increased version number to 2.4.4 - hc08 port now passes
4160         regression tests
4161
4162
4163 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4164
4165         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4166         * Makefile.common.in,
4167         * as/Makefile,
4168         * as/hc08/Makefile.in,
4169         * as/mcs51/Makefile.in,
4170         * as/z80/Makefile.in,
4171         * debugger/mcs51/Makefile.in,
4172         * device/include/Makefile.in,
4173         * device/lib/Makefile.in,
4174         * doc/Makefile,
4175         * link/Makefile,
4176         * link/z80/Makefile.in,
4177         * packihx/Makefile.in,
4178         * sim/ucsim/main_in.mk,
4179         * sim/ucsim/avr.src/Makefile.in,
4180         * sim/ucsim/doc/Makefile.in,
4181         * sim/ucsim/gui.src/serio.src/Makefile.in,
4182         * sim/ucsim/hc08.src/Makefile.in,
4183         * sim/ucsim/s51.src/Makefile.in,
4184         * sim/ucsim/xa.src/Makefile.in,
4185         * sim/ucsim/z80.src/Makefile.in,
4186         * src/Makefile.in,
4187         * support/cpp2/Makefile.in,
4188         * support/librarian/Makefile,
4189         * support/makebin/Makefile: added DESTDIR to the install path proposed
4190         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4191         * doc/sdccman.lyx: added DESTDIR documentation
4192
4193 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4194
4195         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4196         instruction for interrupt handlers, use fast returns when returning
4197         from high priority interrupts
4198
4199 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4200
4201         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4202         code generation
4203         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4204         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4205         bugs, ported much of Bernhard's code from mcs51
4206         * src/mcs51/gen.c (genSend),
4207         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4208         than one when calling a reentrant function
4209         * device/lib/_mullong.c: defined an alternate struct layout for big
4210         endian ports (hc08)
4211
4212 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4213
4214         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4215         test
4216
4217 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4218
4219         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4220         are sane and complete before asking the port its prefered parameter
4221         passing method (fixes bug #1017633)
4222         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4223         and _ret3
4224
4225 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4226
4227         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4228         problem in bitfields >= 8 bits.
4229
4230 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4231
4232         * src/SDCCsymt.c: undid changes that were not meant to be committed
4233
4234 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4235
4236         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4237
4238 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4239
4240         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4241           copied and wrong bit got inverted
4242
4243 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4244
4245         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4246         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4247         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4248         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4249         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4250         assignments to bitfields at known addresses
4251         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4252         reads from bitfields at known addresses
4253         * src/hc08/ralloc.c (packRegisters),
4254         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4255         genhc08Code): optimize pointer get values used as conditionals
4256         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4257         and branch
4258
4259 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4260
4261         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4262         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4263         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4264         as conditionals
4265
4266 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4267
4268         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4269
4270 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4271
4272         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4273         related problems
4274
4275 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4276
4277         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4278
4279 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4280
4281         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4282         mcs51 port
4283
4284 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4285
4286         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4287
4288 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4289
4290         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4291         cases use more compact code.
4292
4293 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4294
4295         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4296
4297 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4298
4299         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4300
4301 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/SDCCsymt.h,
4304         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4305         parameter of changePointer() from symbol* to sym_link*
4306         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4307         * src/SDCCsymt.c (compareType): void* type is castable to other
4308         pointers, but not necesarily an exact match.
4309         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4310         is no longer blindly treated as an exact match.
4311         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4312
4313 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4314
4315         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4316
4317 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4318
4319         * src/pic/gen.c,
4320         * src/pic/pcode.c,
4321         * src/pic/ralloc.h,
4322         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4323
4324 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4325
4326         * src/pic/device.c,
4327         * src/pic/device.h,
4328         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4329
4330 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4331
4332         * src/mcs51/gen.c (emitcode): fixed bug #992819
4333
4334 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4335
4336         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4337           there's no need to make it worse
4338
4339 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4340
4341         * src/mcs51/ralloc.c (deassignLR),
4342         * src/ds390/ralloc.c (deassignLR),
4343         * src/hc08/ralloc.c (deassignLR),
4344         * src/z80/ralloc.c (deassignLR),
4345         * src/pic/ralloc.c (deassignLR),
4346         * src/pic16/ralloc.c (deassignLR),
4347         * src/avr/ralloc.c (deassignLR),
4348         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4349         rlivePoint): fixed another part of bug #971834
4350
4351 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4352
4353         * src/z80/main.c: enabled "critical" keyword
4354         * src/z80/mappings.i,
4355         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4356         functions (fixes bug #979646)
4357         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4358
4359 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4360
4361         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4362           such as c:\mydir.
4363
4364 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4365
4366         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4367           doesn't disable too much optimizations
4368
4369 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4370
4371         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4372
4373 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4374
4375         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4376
4377 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4378
4379         * src/pic/gen.c tidied up tabs
4380         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4381         * src/pic/main.c tidied up tabs
4382         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4383         * src/pic/pcoderegs.c tidied up tabs
4384         * src/pic/ralloc.c tidied up tabs
4385
4386 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4387
4388         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4389         to S_FIXED for pic16 port and when symbol is not in level 0,
4390         allocate for S_REGISTER storage class and pic16 port, too,
4391         * src/pic16/device.h: prototype for checkSym,
4392         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4393         * (pic16_assignConfigWordValue): test the value and the mask to
4394         validate that the value is suitable for the configuration word,
4395         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4396         collect extern declared symbols, don't emit symbol twice, check
4397         first if symbol is in publics set first,
4398         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4399         * added command line '--fstack' which enables an experimental
4400         feature for stack access, too buggy to be used yet...
4401         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4402         * (pic16_allocDirReg): when register has storage class S_REGISTER
4403         allocate in pic16_dynAccessRegs,
4404         * device/include/pic16/pic18f????.h: modified configuration word
4405         naming convention, words started as CONFIG0H but should be CONFIG1H
4406
4407 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4408
4409         * device/include/mcs51reg.h: fixed bug 970993
4410
4411 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4412
4413         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4414         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4415         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4416         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4417         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4418         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4419           error/warning numbers,
4420           added function setWarningDisabled()
4421         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4422         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4423           _memcmp.c _memmove.c calloc.c realloc.c free.c
4424         * support/regression/tests/malloc.c: added tests for new functionality
4425         * support/regression/tests/zeropad.c: added tests for truncated initializers
4426           and initialized char arrays starting with '\x0'
4427         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4428
4429 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4430
4431         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4432
4433 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4434
4435         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4436         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4437         peephole 177.e. Thanks to anonymous
4438
4439 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4440
4441         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4442         function isn't used in the source but referenced as a
4443         variable initializer then declare it as extern in .asm file
4444
4445 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4446
4447         * .version: increased version number to 2.4.3
4448
4449         Adding version extension according to ChangeLog CVS revision
4450         * src/Makefile.in (target all): added dependency 'version.h'
4451         * (rule version.h): added rule to create version.h from ChangeLog,
4452         * (rule dep): added dependency version.h,
4453         * src/version.awk: AWK script to create version.h
4454         * src/SDCCdwarf2.c (dwWriteModule),
4455         * src/SDCCglue.c (initialComments),
4456         * src/SDCCmain.c (printVersionInfo): modified to write after
4457         version string the version extension number,
4458         * src/SDCCutil.c: included "version.h"
4459         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4460         number,
4461         * src/SDCCutil.h: added prototype for getBuildNumber
4462
4463         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4464         includeDirsSet, too,
4465         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4466         const char [] is found in function prototype...
4467
4468         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4469         moving to WREG with source is already in WREG,
4470         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4471         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4472         * (aopForSym): stack'ed symbols are partially supported, added
4473         if-clause to support symbols in FARSPACE,
4474         * (sameRegs): added test for AOP_ACC to see if registers are same,
4475         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4476         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4477         * (pic16_popRegFromString): will not allocate a new register if it
4478         doesn't find one by name, bug may have introduced...
4479         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4480         * (genIpush): revived to use pic16 port's stack,
4481         * (genAddrOf): added incomplete case for stack'ed operand,
4482         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4483         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4484         can handle multibyte operands,
4485         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4486         * (pic16initialComments): added message for MPLAB compatibility
4487         mode enabled,
4488         * src/pic16/main.h: prototype for pic16_mplab_comp,
4489         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4490         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4491         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4492         because of increased complexity of procedure,
4493         * (_process_pragma): stack pragma changed to format 'stack pos len',
4494         emit symbol '_stack_end' to conform with gplink,
4495         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4496         to search for register,
4497         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4498         PO_GPR_REGISTER,
4499         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4500         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4501         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4502         case for PO_GPR_REGISTER,
4503         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4504         dies, the new era is ahead !...
4505         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4506         pic16_dynInternalRegs,
4507         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4508         * (pic16_allocDirReg): minor optimizations and bug fixes,
4509         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4510
4511         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4512         load stack and frame pointer with address of 'stack_end' symbol
4513
4514 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4515
4516         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4517         without source code but only variable initializers
4518
4519 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4520
4521         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4522         external are not declared as extern to reduce overhead while linking
4523
4524 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4525
4526         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4527
4528 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4529
4530         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4531           Yee Keat for the patch
4532         * src/SDCCast.c (decorateType): fixed bug #979599
4533         * src/ds390/gen.h: removed local fReturnSizeDS390
4534         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4535         * src/ds390/gen.c (genAnd, genOr, genXor),
4536         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4537
4538 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4539
4540         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4541         add relFilesSet to $3, manipulate $2 to handle linking of object
4542         files without source files in command line,
4543         * device/include/pic16 (all headers): added ID location macros,
4544         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4545         entries for ID location bytes,
4546         * (pic16_assignIdByteValue): NEW,
4547         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4548         added field dumpcalltree to pic16_options_t,
4549         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4550         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4551         emitting rFalseIfx label after check_carry label,
4552         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4553         pic16_emitDIRegs), NEW
4554         * (pic16glue): dump .calltree file when option --calltree found,
4555         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4556         * (_pic16_genAssemblerPreamble): emit ID locations after
4557         configuration registers,
4558         * (pic16_linkCmd): modifications of the link command,
4559         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4560         * (pic16_pCodeInitRegisters): don't init stack registers,
4561         * (pic16_findPrevInstruction): fixed bug,
4562         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4563         bug with immediate registers,
4564         * (buildCallTree): traces stack push and pop,
4565         * (pct2): dump also stack usage for each function,
4566         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4567         * (pic16_allocDirReg): various modifications,
4568         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4569         fixed to 1,
4570
4571 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4572
4573         * src/pic16/pcode.c: removed buggy double colon
4574
4575 2004-07-01 Borut Razem <borut.razem AT siol.net>
4576
4577         * support/scripts/sdcc.nsi: added include/pic16 to setup
4578
4579 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4580
4581         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4582         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4583         target 'clean',
4584         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4585         specific command line arguments. Also added sample lkr script
4586         for placing a variable at a specific memory bank.
4587         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4588         at a specific memory bank,
4589         * (pic16_dump_isection): fixed bug which caused string literals to
4590         be omitted when dumping idata section,
4591         * (pic16_groupRegistersInSection): added code to handle registers
4592         in specific memory banks,
4593         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4594         public, all references are renamed too,
4595         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4596         AOP_DPTR2,
4597         * (pic16_storeForReturn): added case to handle when dest is WREG,
4598         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4599         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4600         pic16_rel_udata, check to see if that register is marked as being
4601         a member of a specific memory bank,
4602         * (pic16_printIvalCharPtr): added code to add string literals either
4603         to code or the idata sections,
4604         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4605         also accept the 'udata' pragma,
4606         * src/pic16/main.h: new structure types sectName and sectSym
4607         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4608         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4609         * (pic16_findPrevInstruction): fixed, it returned nothing,
4610         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4611         instruction combinations,
4612         * (pic16_FixRegisterBanking): heavily reorganised,
4613         * (pic16_AnalyzeBanking): if generating banksel directives is
4614         disabled, then don't call FixRegisterBanking at all,
4615         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4616         completely removed,
4617         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4618
4619 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4620
4621         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4622         Phuah Yee Keat <yk.phuah AT nestac.com>
4623
4624 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4625
4626         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4627         correctly the IVT even if it is relocated to some other location
4628
4629 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4630
4631         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4632         * device/include/pic16/pic18f2220.h: NEW,
4633         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4634         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4635         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4636         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4637         nodefaultlibs, ivt_loc is the location of the interrupt vector
4638         table, and nodefaultlibs signs that default libraries should not be
4639         linked in link stage,
4640         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4641         according to --ivt-loc argument,
4642         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4643         when pragma stack is found,
4644
4645 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4646
4647         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4648         256 (range check), 257 (do while), 258.a-f (bit banging
4649         f.e. on 3-wire SPI bus)
4650
4651 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4652
4653         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4654         variables used exclusively within a loop
4655
4656 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4657
4658         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4659
4660 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4661
4662         * src/SDCClrange.c (computeClash): fixed bug #971834
4663
4664 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4665
4666         * src/mcs51/gen.c (genCmp): fixed bug #975903
4667         * src/hc08/gen.c (operandsEqu),
4668         * src/ds390/gen.c (operandsEqu),
4669         * src/z80/gen.c (operandsEqu),
4670         * src/pic/gen.c (operandsEqu),
4671         * src/pic16/gen.c (operandsEqu),
4672         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4673         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4674
4675 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4676
4677         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4678
4679 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4680
4681         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4682         default case in switch statement,
4683         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4684         to eliminate problem with initialisation of pointers, but problem
4685         still exists,
4686         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4687         * (emitStaticSegment): removed various lines emitting debug info,
4688         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4689         added processor registers for utilizing EEPROM,
4690         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4691         configurable and set 8
4692
4693 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4694
4695         * .version: increased version number to 2.4.2,
4696
4697         Cumulative patch for pic16 port
4698         * src/pic16/device.c: changed scheme to dump initial values for
4699         variables in idata segment, all print_idata* functions were removed,
4700         now the pic16_printIval* will be called,
4701         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4702         * _pic16_printPointerType, pic16_printPointerType,
4703         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4704         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4705         NEW, similar to the respective functions in SDCCglue.c,
4706         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4707         way, emitting hex bytes,
4708         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4709
4710 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4711
4712         * src/avr/ralloc.c (serialRegAssign),
4713         * src/xa51/ralloc.c (serialRegAssign),
4714         * src/pic/ralloc.c (serialRegAssign),
4715         * src/pic16/ralloc.c (serialRegAssign),
4716         * src/hc08/ralloc.c (serialRegAssign),
4717         * src/z80/ralloc.c (serialRegAssign),
4718         * src/ds390/ralloc.c (serialRegAssign),
4719         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4720
4721 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4722
4723         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4724         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4725
4726 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4727
4728         Cumulative patch for pic16 port:
4729         * src/pic16/device.h (typedef PIC16_device) modified fields for
4730         defining microcontrollers,
4731         * src/pic16/device.c: added new info for all devices in Pics16 array,
4732         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4733         to be optimised out by the pCode optimiser,
4734         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4735         specially, bug reported by G.M. Gallant,
4736         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4737         as force'd so that cannot be optimised out by pCode optimiser,
4738         * src/pic16/pcode.c,
4739         * src/pic16/pcodepeeph.c,
4740         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4741         they are disabled by default, but can be enabled explicit with
4742         command argument --denable-peeps, for testing,
4743         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4744         --pomit-ivt in COMPILE_FLAGS
4745
4746 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4747
4748         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4749           compilation on MSVC
4750
4751 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4752
4753         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4754
4755 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4756
4757         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4758         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4759
4760 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4761
4762         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4763         would only assign 0x300001 register.
4764
4765 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4766
4767         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4768         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4769
4770 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4771
4772         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4773         for ds80c400
4774         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4775         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4776         added peephole 254 (left shift), 255 (jump table)
4777
4778 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4779
4780         * device/lib/Makefile.in: removed comment line with model-pic16,
4781         * (target port-specific-objects-pic16): the libraries and objects
4782         are copied to the build directory form the device/lib/pic16/bin
4783         directory
4784
4785         Cumulative patch concerning pic16 port:
4786         * library directory has been re-organized,
4787         * added support for PIC18F1220,
4788         * added headers and library sources for chips 18f1220,18f6520,
4789         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4790
4791         * configuration registers setting has changed, now each supported
4792         device has a complete description of the registers it uses,
4793         * all initialisations are moved to idata sections, these section
4794         can be absolute or relocatable,
4795         * fixed initialisation of codespace variables,
4796         * fixed warning about PCLATU and gpsim,
4797         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4798         * (genAssign): use table reads when assigning from variables in codespace,
4799         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4800         char/int variables placed in codespace,
4801         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4802         registers set in .asm file, no need for --pomit-config-words anymore,
4803         * (pic16glue): some 8051 legacy segments are commented out
4804         (to be removed completely),
4805         * added support for alternative assembler and linker with --asm=
4806         and --link= command line arguments,
4807         * peepholes are disabled automatically in the port, no need to
4808         specify on command line,
4809         * port supports natively char/int/long multiplication, but converts
4810         all divisions to support functions,
4811         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4812         to the file set in variable $2,
4813         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4814         strings in ASCII format and not in hex,
4815         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4816         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4817         allocate proper register if iCodes aren't temporary,
4818
4819 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4820
4821         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4822
4823 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4824
4825         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4826         is commented out
4827
4828 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4829
4830         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4831         computed address is reused
4832         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4833         multi-byte bitfields
4834
4835 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4836
4837         * src/z80/gen.c: (genArrayInit): must check for pointers too
4838
4839 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4840
4841         * support/regression/tests/zeropad.c: never meant to commit the
4842           nestedstruct test: removed, added check for GCC version
4843
4844 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4845
4846         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4847         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4848         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4849           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4850           bugs 928906 and 954082 half-empty initializers
4851         * src/SDCCsymt.h,
4852         * src/SDCCsymt.c (getAllocSize): added for above fix
4853         * src/z80/gen.c (genArrayInit): fixed bug 741044
4854         * support/regression/tests/zeropad.c: added tests
4855
4856 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4857
4858         * src/pic16/device.c (pic16_dump_section): corrected bug which
4859         caused some symbols of the libraries to be misplaced
4860
4861 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4862
4863         * src/pic16/glue.c,
4864         * src/pic16/ralloc.h,
4865         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4866         to fix conflict with pic port
4867
4868 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4869
4870         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4871         externs configuration variables,
4872         * src/pic16/ralloc.h,
4873         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4874         prototype in header, commented out some debug messages
4875
4876 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4877
4878         * src/pic16/glue.c,
4879         * src/pic16/main.c,
4880         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4881         for gpasm COFF object generation. Thanks to D. Hawkins for
4882         his patch info
4883
4884 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4885
4886         * src/ds390/main.c,
4887         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4888         Brock for spotting this)
4889         * src/ds390/gen.c (genEndFunction),
4890         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4891         interrupt handler and critical. Disable push/pop optimizations when
4892         peephole optimizations disabled.
4893
4894 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4895
4896         Updated pic16 library sources and headers.
4897         * device/lib/pic16/pic18f*/ ,
4898         * device/include/pic16/*.h: modified to handle structured SFR
4899         definitions
4900
4901 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4902
4903         * src/port.h (PORT structure): added hook initPaths, now each
4904         port can declare its own default search paths,
4905         which can been seen with the --print-search-dirs option,
4906         see pic16 port for example,
4907         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4908         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4909         * (doPrintSearchDirs): NEW, replaces in a central manner the
4910         printing of search dirs which was split in set*Paths functions,
4911         * (main): added call to port->initPaths and doPrintSearchDirs,
4912         * src/avr/main.c,
4913         * src/ds390/main.c,
4914         * src/hc08/main.c,
4915         * src/izt/i186.c,
4916         * src/izt/tlcs900h.c,
4917         * src/mcs51/main.c,
4918         * src/pic/main.c,
4919         * src/pic16/main.c: modified port structures to reflect addition of
4920         initPaths hook,
4921
4922         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4923         * (pic16_dump_section): for registers in same address reserve memory once,
4924         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4925         to no_banksel,
4926         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4927         result is greater in size than right or left,
4928         * (pic16_genUMult8X8_8): there are some cases where the result can
4929         be 16 bits size, so handle these,
4930         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4931         * (pic16_outBitC): modified to emit pcodes,
4932         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4933         or not,
4934         * (genDivOneByte): implemented algorithm to divide 8-bits,
4935         * (genCmp): uncommented goto, but issues still exist,
4936         * (genAnd): fixed a bug with variables >8bits,
4937         * (genPackBits): optimization added that uses BCF/BSF to change a
4938         single bit,
4939         * (genAssign): fixed bug when assigning floating point literals,
4940         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4941         __sdcc_gsinit_startup label,
4942         * src/pic16/main.c (_pic16_init): removed search directory
4943         initialisations,
4944         * (_pic16_initPaths): NEW, used to initialise search directories,
4945         * (_hasNativeMulFor): support functions for all except char/int
4946         multiplication, and char division,
4947         * (PIC16_port struct): modified entry for native mul support,
4948         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4949         no_banksel option,
4950         * (buildCallTree): call to register_usage is ifdef'ed out,
4951
4952 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4953
4954         * device/include/string.h: applied Stas Sergeev's patch to make this
4955         header file compatible with the preprocessor -Wundef option
4956         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4957         failure (fixes bug #941458)
4958
4959 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4960
4961         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4962         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4963         that the variable, not the function, should be static
4964         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4965         to be consistent with non-literal case
4966
4967 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4968
4969         * src/SDCCast.c (isConformingBody): fixed bug #949967
4970         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4971         convilong): fixed bug #952086
4972
4973 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4974
4975         * src/SDCCmem.c (allocVariables): fixed bug #955321
4976
4977 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4978
4979         * src/hc08/main.c (_hc08_genAssemblerEnd),
4980         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4981         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4982         completely eliminated the use of a temporary file
4983         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4984         when more than one file linked
4985         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4986
4987 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4988
4989         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4990         which fixes bug #543481
4991         * support/regression/tests/bug-751703.c: fixed comments left from a
4992         cut and paste error
4993         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4994         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4995         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4996         scopes
4997         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4998         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4999         are now changed to underscores in moduleName
5000
5001 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5002
5003         * as/mcs51/lkmem.c: better fix for bug #954173
5004
5005 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5006         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5007
5008         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5009         * device/include/c8051f000.h,
5010         * device/include/c8051f120.h,
5011         * device/include/c8051f300.h,
5012         * device/include/c8051f310.h,
5013         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5014         PWM16) and detab'ed
5015
5016 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5017
5018         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5019         and mailing lists, doc'ed --no-peep-comments, removed reference
5020         to knoppix (newest version has no LyX/LaTeX), other minor changes
5021         * src/SDCCglue.c (glue): save 2 bytes stack space with
5022         option --main-return. The ljmp could probably be avoided too
5023
5024 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5025
5026         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5027
5028 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5029
5030         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5031         * src/SDCCopt.c (isLocalWithoutDef),
5032         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5033         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5034         (credit to Maarten Brock for patch #949363, on which this is based)
5035         * support/regression/tests/bug-751703.c: some test cases of extern used
5036         within inner scopes.
5037
5038 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5039
5040         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5041         SPEC_STRUCT
5042         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5043         struct definitions
5044         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5045         dwWriteLabel): fix to create valid debugger symbols even when
5046         the module name has non-alphanumeric symbols in it
5047         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5048         when a variable's allocation has been optimized away
5049
5050
5051 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5052
5053         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5054         * src/hc08/main.c,
5055         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5056         * src/mcs51/main.c,
5057         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5058         * src/ds390/main.c,
5059         * src/z80/gen.c (z80_emitDebuggerSymbol),
5060         * src/z80/main.c,
5061         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5062         * src/pic/main.c,
5063         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5064         * src/pic16/main.c,
5065         * src/avr/gen.c (avr_emitDebuggerSymbol),
5066         * src/avr/main.c,
5067         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5068         * src/xa51/main.c,
5069         * src/SDCCdebug.c (emitDebuggerSymbol),
5070         * src/SDCCdebug.h,
5071         * src/port.h: added a debugger struct to the port struct. Added a
5072         callback for defining debugger symbols
5073
5074         * src/SDCCast.c (createLabel),
5075         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5076         with isitmp = 1
5077         * src/SDCCicode.h,
5078         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5079         iCode back to the ast for the function
5080
5081         * src/hc08/ralloc.c (hc08_assignRegisters),
5082         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5083         unneeded fields from the regs struct.
5084         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5085         pushReg() & pullReg() functions instead of emitcode()
5086
5087         * src/hc08/gen.c (genLabel, genhc08Code),
5088         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5089
5090         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5091         debugger hooks
5092
5093         * src/hc08/gen.c (genEndFunction, genhc08Code),
5094         * src/hc08/gen.h,
5095         * src/mcs51/gen.c (genEndFunction, gen51Code),
5096         * src/mcs51/gen.h,
5097         * src/ds390/gen.c (genEndFunction, gen390Code),
5098         * src/ds390/gen.h,
5099         * src/z80/gen.c (genEndFunction, genZ80Code),
5100         * src/z80/gen.h,
5101         * src/z80/z80.h,
5102         * src/pic/gen.c (genEndFunction, genpic14Code),
5103         * src/pic/gen.h,
5104         * src/pic16/gen.c (genEndFunction, genpic16Code),
5105         * src/pic16/gen.h,
5106         * src/avr/gen.c (genEndFunction, genAVRCode),
5107         * src/avr/gen.h,
5108         * src/xa51/gen.c (genEndFunction, genXA51Code),
5109         * src/xa51/gen.h,
5110         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5111         specific code to cdbFile.c and out of the backend code generators
5112
5113         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5114         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5115         starting address is now 0
5116
5117         * as/hc08/asm.h,
5118         * as/hc08/m08pst.c,
5119         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5120         assembler directive for DWARF support
5121         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5122
5123         * src/src.dsp,
5124         * src/Makefile.in,
5125         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5126
5127 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5128
5129         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5130         and inappropriate peephole optimization in jump tables
5131
5132 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5133
5134         * as/hc08/m08pst.c,
5135         * src/SDCCglue.c: sdccopt works for the hc08 port now
5136
5137 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5138
5139         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5140
5141 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5142
5143         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5144
5145 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5146
5147         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5148         rules
5149         * src/SDCCmain.c,
5150         * src/SDCCglobl.h,
5151         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5152         comments from the peephole optimizer replacement rules
5153         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5154         symbols
5155         * src/SDCCcse.c (updateSpillLocation),
5156         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5157         equivalents
5158         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5159         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5160         objects far pointers
5161
5162 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5163
5164         * src/SDCCsymt.h: a missing part of my last change
5165         * src/pic/ralloc.c (regTypeNum),
5166         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5167
5168 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5169
5170         * src/SDCCicode.h,
5171         * src/SDCCicode.c (aggrToPtrDclType),
5172         * src/SDCCptropt.h,
5173         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5174         ptrPseudoSymConvert),
5175         * src/pic/ralloc.c (regTypeNum),
5176         * src/pic16/ralloc.c (regTypeNum),
5177         * src/hc08/ralloc.c (regTypeNum),
5178         * src/ds390/ralloc.c (regTypeNum),
5179         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5180         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5181
5182 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5183
5184         * link/z80/lkmain.c (afile),
5185         * as/hc08/lkmain.c (afile),
5186         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5187         prevent a pointer problem when a filename has no directory and
5188         no extension specified.
5189
5190 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5191
5192         * link/z80/lkmain.c (afile): allow periods in directory names
5193         * link/z80/lkmain.c (afile),
5194         * as/mcs51/lkmain.c (afile),
5195         * as/hc08/lkmain.c (afile): allow linker script file to have an
5196         extension other than ".lnk"
5197         * link/z80/lklex.c (getfid),
5198         * link/z80/lkmain.c (parse),
5199         * as/mcs51/lklex.c (getfid),
5200         * as/mcs51/lkmain.c (parse),
5201         * as/hc08/lklex.c (getfid),
5202         * as/hc08/lkmain.c (parse): Support comments in the linker script
5203         file on lines by themselves and after filenames
5204
5205 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5206
5207         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5208
5209 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5210
5211         * src/z80/peeph-z80.def: removed some peephole rules that don't
5212         work with multibyte arithmetic (fixed bug #937126)
5213         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5214         to registers and not global variables
5215         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5216         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5217         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5218         checking for assignments not internally generated (fixed bug #931895)
5219         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5220         structure member (fixed bug #930072)
5221
5222 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5223
5224         * src/SDCCmain.c (linkEdit),
5225         * src/hc08/main.c (_hc08_parseOptions),
5226         * as/hc08/Makefile.in,
5227         * as/hc08/aslink.h,
5228         * as/hc08/asm.h,
5229         * as/hc08/m08pst.c,
5230         * as/hc08/lkrloc.c (relr, rele),
5231         * as/hc08/lkarea.c (lnkarea)
5232         * as/hc08/lkmain.c (afile, parse),
5233         * as/hc08/lkelf.c: support for ELF output
5234         * as/hc08/lks19.c (s19),
5235         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5236
5237 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5238
5239         * as/mcs51/lkihx.c: Fixed bug #899105.
5240
5241 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5242
5243         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5244         .dsp files from Unix to DOS.
5245
5246 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5247
5248         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5249         function pointers; we have been compliant for several months now.
5250         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5251         change that was accidently commented out
5252         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5253         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5254         bug #922319
5255
5256 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5257
5258         * src/hc08/gen.c: output of all of the internal debugging information
5259         is now controlled by the D() macro; it is disabled by default
5260
5261 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5262
5263         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5264         harder to keep the same registers during a CAST iCode
5265         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5266         long via int can be done in a single cast, if the signedness is
5267         correct.
5268         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5269         putchar() in tinibios.c in ds390's library
5270
5271 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5272
5273         * src/SDCCast.c (decorateType): fixed bug #898889,
5274         cast result of a literal complement too
5275         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5276         fixed check for bitfields
5277
5278 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5279
5280         * src/SDCCicode.c (geniCodeLogic): made it static,
5281         (geniCodeLogicAndOr): added in order to fix bug #905492,
5282         (ast2iCode): fixed bug #905492
5283         * support/regression/tests/bug-905492.c: added
5284         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5285         (processParms): fixed bug #927659: don't copy parms, this will clear
5286         decorated flag
5287         * support/regression/tests/bug-927659.c: added
5288
5289 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5290
5291         * src/SDCCast.c (addCast): don't cast float to char
5292         * device/lib/libsdcc.lib: added _memmove
5293
5294 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5295
5296         * device/lib/large/Makefile: fixed parallel execution by
5297         replacing `make` by `$(MAKE)`
5298
5299 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5300
5301         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5302         offsets (fixes bug #923936)
5303
5304 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5305
5306         * device/lib/small/Makefile: fixed parallel execution by
5307         replacing `make` by `$(MAKE)`
5308
5309 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5310
5311         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5312
5313 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5314
5315         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5316         * src/regression/Makefile: Regression test was not running.
5317
5318 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5319
5320         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5321         complement if possible
5322         * src/SDCCval.c (valComplement),
5323         * src/SDCCicode.c (operandOperation): fixed complement of literal
5324         * support/regression/tests/onebyte.c (testComplement): added
5325
5326 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5327
5328         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5329         return an optimized tree; actually replace actParm with the new tree
5330         * src/SDCCast.h: added some parantheses to remove side effects
5331         * support/regression/tests/bug-920866.c
5332
5333 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5334         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5335         Bit operands were not being handled properly in the pic14 port.
5336         (now src/regression/add.c passes again).
5337
5338 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5339
5340         * src/SDCC.y (labeled_statement): case and default no longer require
5341         a following statement (RFE #893037)
5342
5343 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5344
5345         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5346         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5347         disabled (fixes bug #916294)
5348         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5349         "mov a,acc"; patch provided by Lenny Story
5350         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5351
5352 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5353
5354         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5355         functions
5356         * src/ds390/gen.c (genFunction, genEndFunction),
5357         * src/ds390/ralloc.c (ds390_assignRegisters),
5358         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5359         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5360         pushed if there are parameters passed on the stack. Also, a cleaner
5361         way to decide if r0/r1 should be pushed/popped. (Together they fix
5362         bug #918693)
5363
5364 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5365
5366         * doc/sdccman.lyx,
5367         * device/lib/mcs51/crtpagesfr.asm,
5368         * device/lib/mcs51/crtxinit.asm,
5369         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5370         to avoid confusion with Si Lab's SFRPAGE register.
5371
5372 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5373
5374         * src/SDCCglue.c (emitMaps): allow public sfr variables
5375         * src/SDCCglue.c (initialComments): include compiler build date
5376         with compiler version and put the timestamp of the generated
5377         assembly file on a serperate line to be less confusing.
5378         * src/port.h: added genInitStartup hook
5379         * src/avr/main.c,
5380         * src/ds390/main.c,
5381         * src/hc08/main.c,
5382         * src/pic/main.c,
5383         * src/pic16/main.c,
5384         * src/xa51/main.c,
5385         * src/z80/main.c: genInitStartup initialize as NULL (default to
5386         historical behaviour)
5387         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5388         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5389         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5390         library instead of hard coding it into the compiler.
5391         * support/regression/ports/mcs51-stack-auto/spec.mk,
5392         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5393         * device/lib/mcs51/Makefile,
5394         * device/lib/small/Makefile,
5395         * device/lib/large/Makefile,
5396         * device/lib/mcs51/crtpagesfr.asm,
5397         * device/lib/mcs51/crtstart.asm,
5398         * device/lib/mcs51/crtxclear.asm,
5399         * device/lib/mcs51/crtxinit.asm,
5400         * device/lib/mcs51/crtclear.asm,
5401         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5402         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5403         and into user configurable files.
5404         * device/lib/clean.mk: clean mcs51 directory too
5405         * support/regression/tests/longlit.c: added static to T1 declaration
5406         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5407         accesses in the initialization code
5408
5409 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5410
5411         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5412         OSCTRIMVAL as noted in bug #916008
5413
5414 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5415
5416         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5417         in loops with multiple exits (reported as incorrect registers
5418         used by Martin Helmling in Sdcc-user list)
5419
5420 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5421
5422         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5423         made ds390 register extensions look less like error messages
5424
5425 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5426
5427         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5428         reported by Adam Wozniak in Sdcc-user list
5429
5430 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5431
5432         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5433         arithmetic optimizations, added debug output
5434
5435 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5436
5437         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5438         * sdcc.spec: updated and split sdcc into 3 rpms
5439         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5440         needed for literals of LEFT_OP and '+'
5441         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5442         introduced RESULT_TYPE_NOPROM
5443         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5444         left shift
5445         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5446         limited promotion to int only for '*'
5447         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5448
5449 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5450
5451         * src/pic16/gen.c (genSkip),
5452         (genc16bit2lit), (gencjneshort): commented out
5453         (is_LitOp): new helper function, checks operand type
5454         (genCmpEq): rewritten
5455
5456 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5457
5458         * support/regression/tests/bug-908454.c: added
5459
5460 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5461
5462         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5463         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5464         (geniCodeCast): cosmetic, don't preserve bit storage class
5465         (geniCodeLeftShift): added promotion
5466         (geniCodeLogic): fixed regression
5467         * src/SDCCsymt.c (computeTypeOr): accept bits too
5468         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5469
5470 2004-03-07  Borut Razem <borut.razem AT siol.net>
5471
5472         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5473
5474 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5475
5476         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5477         version of pic16_genPackRegisters which does not check if ic is a
5478         CAST operator,
5479         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5480         function cause string1.c regression test fails
5481
5482 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5483
5484         * sim/ucsim/configure.in,
5485         * sim/ucsim/configure,
5486         * sim/ucsim/doc/Makefile.in: use docdir
5487         * src/SDCC.y: fixed sbit atrributes
5488         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5489         * src/SDCCast.c (decorateType): |^& need special promotion handling
5490         * src/SDCCast.h,
5491         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5492         * src/SDCCsymt.h (computeType),
5493         * src/SDCCicode.c: computeType() needs op
5494         * src/SDCCsymt.c (checkTypeSanity),
5495         * doc/sddman.lyx: "plain" bitfields are unsigned
5496         * src/SDCCsymt.c (computeTypeOr): added
5497         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5498         |^& ops
5499         * src/SDCCval.c (val*): computeType() needs op
5500         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5501         * support/regression/tests/onebyte.c: added tests for |^&
5502
5503 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5504
5505         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5506         for writing icode into asm output.
5507
5508 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5509
5510         * src/pic16/device.c: added some debug lines enabled
5511         with macro DEBUG_CHECK,
5512         * src/pic16/genarith.c: more debug in genPlus,
5513         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5514         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5515         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5516         * (aopForSym): onStack symbols are re-placed in data memspace,
5517         and onStack flag is cleared,
5518         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5519         copy temporary pcodeop,
5520         * (genPcall): added warning for not updating PCLATU,
5521         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5522         always true for pic16 port,
5523         * (genMultOneWord): NEW, supports integer multiplication,
5524         * (genMult): modified to call genMultOneWord,
5525         * (ifxForOp): added warning when return NULL,
5526         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5527         flag is set before call to operandFromSymbol for implicit
5528         added structures,
5529         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5530         options.intlong_rent are set by default,
5531         * (_hasNativeMulFor): modified to allow port generation of integer
5532         multiplication,
5533         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5534         set regtype to REG_SFR for all registers, restricting seting the
5535         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5536
5537 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5538
5539         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5540         more than 500 times in the regression tests
5541
5542 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5543
5544         * support/Util/SDCCerr.h,
5545         * support/Util/SDCCerr.c,
5546         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5547         enumerator_list),
5548         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5549         for symbol conflicts.
5550         * support/valdiags/tests/enum.c,
5551         * support/valdiags/tests/tentdecl.c,
5552         * support/valdiags/tests/struct.c: expect possible error messages
5553         referring to original symbol definitions.
5554         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5555         * src/SDCCsymt.h,
5556         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5557
5558 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5559
5560         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5561
5562 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5563
5564         * src/pic16/ralloc.c (newReg): fixed bug #908929
5565
5566 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5567
5568         * src/ds390/gen.c: added missing #include "main.h"
5569
5570 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5571
5572         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5573         checking if symbol is already in set,
5574         * src/pic16/device.h: prototype for checkAddSym,
5575         * src/pic16/gen.c: (_G): added entry interruptvector,
5576         * (assignResultValue): removed some commented out lines,
5577         * (genFunction): check for ISR via sym->type, absolute section for
5578         interrupt code is created via a new pBlock, the goto instruction is
5579         placed now correctly at the interrupt vector position, changed all
5580         references from ivec to _G.interruptvector,
5581         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5582         is the interrupt is a high priority one, same for return from ISR,
5583         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5584         externs to calls of checkAddSym,
5585         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5586         pic16_pcode_verbose flag is set,
5587         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5588         * src/pic16/pcoderegs.c: message about how many registers are saved
5589         will only be emitted if pic16_pcode_verbose flag is set,
5590
5591 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5592
5593         * src/ds390/ralloc.h,
5594         * src/ds390/ralloc.c (ds390_regWithIdx),
5595         * src/ds390/gen.c (emitcode),
5596         * src/ds390/main.h,
5597         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5598         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5599         ds390operandCompare, getRegsRead, getRegsWritten,
5600         initializeAsmLineNode): customized instruction size calculation for
5601         ds390, started basis for some register optimizations
5602         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5603         corresponding assembly output
5604         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5605         missing push/pop of r0/r1. Optimized push/pops
5606
5607 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5608
5609         * src/mcs51/main.c (instructionSize): fixed ACALL size
5610         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5611
5612 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5613
5614         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5615         the sorting of rlist with NULL elements
5616         * (print_idataType, print_idata): NEW to create idata sections
5617         * src/pic16/device.h: idataSymSet new variable
5618         * src/pic16/gen.c (genFunction): fixed some bugs in string
5619         comparing, improved the absolute section creation for ISRs,
5620         added FSR0L/FSR0H in registers that are saved in an ISR,
5621         * (genInline): fixed the processing of inline snippets,
5622         now they undergo no process by the peephole optimizer
5623         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5624         are placed in idataSymSet,
5625         * (pic16emitStaticSeg): extern symbols are added in externs,
5626         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5627         switching when aboslute variables are placed in access bank memory
5628         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5629         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5630         commented out with #if,
5631         * (pic16_packRegisters): reintroduce the check for CAST because some
5632         symbols are not correctly handled,
5633         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5634         pCodeInstruction instead of pCode,
5635         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5636         pCodeAsmDir definition,
5637         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5638         directive, then the argument directive is emitted without the leading
5639         tab, hack for inline labels which must be in the first column,
5640         * (compareLabel,pic16_findNextInstruction),
5641         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5642         * (insertBankSwitch): modified for the new pCodeAsmDir,
5643
5644 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5645         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5646
5647         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5648         instance,
5649         * (pushSide): commented out with #if,
5650         * (assignResultValue): fixed some typos in saving
5651         registers,
5652         * (genPcall): FIXED and sync'ed with genCall,
5653         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5654         * (genNearPointerGet): fixed to handle some more cases,
5655         implementation scheme via table reads,
5656         * (genConstPointerGet): modified to access code memory correct,
5657         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5658         and improved to handle some cases
5659         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5660         instead of "RETLW" for init data
5661         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5662         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5663         variables are placed in access bank memory (<0x80 and >=0xf80),
5664         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5665         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5666         TBLWT_POSTDEC,TBLWT_PREINC
5667         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5668         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5669         directives
5670         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5671         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5672         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5673         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5674
5675 2004-02-29  Borut Razem <borut.razem AT siol.net>
5676
5677         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5678         support/Util/findme.h, support/Util/system.h: enhance binary relative
5679         search for lib and include by using findProgramPath()
5680
5681 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5682
5683         * src/SDCCpeeph.h,
5684         * src/SDCCpeeph.c (pcDistance),
5685         * src/port.h,
5686         * src/mcs51/ralloc.h,
5687         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5688         * src/mcs51/main.h,
5689         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5690         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5691         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5692         size calculation port specific, started basis for some register
5693         optimizations
5694         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5695         missing push/pop of r0/r1. Optimized push/pops
5696         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5697         * device/lib/_modsint.c (_modsint),
5698         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5699         and stack version so regression tests pass
5700
5701 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5702
5703         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5704         * src/SDCCast.c (decorateType): catch another small optimization
5705         with '?' operator
5706         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5707         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5708         modified to finally use computeType() all over SDCC,
5709         see Feature Request #877103
5710         * src/SDCCval.h: cosmetic
5711         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5712         valCompare(); regression tested in muldiv.c
5713         * support/regression/tests/muldiv.c (testMod): mod sign follows
5714         dividend only
5715
5716 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5717
5718         * src/SDCCast.c (decorateType): fixed bug #902362
5719         * doc/INSTALL.txt: fixed install instructions for win32
5720
5721 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5722
5723         * device/include/Makefile.in (install): fixed by replacing spaces
5724         by tabs
5725         * doc/README.txt,
5726         * doc/INSTALL.txt: updated for release
5727         * doc/sdccman.lyx: added warning for --xstack being buggy
5728
5729 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5730
5731         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5732         to eliminate build warnings.
5733         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5734
5735 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5736            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5737
5738         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5739         removed -penable-stack, added comment for stack pragma, added
5740         warning for not initializing the stack/frame registers, removed
5741         comment at interrupts section
5742
5743         Stack is made permanent, there is no ability to disable stack usage.
5744         * src/pic16/device.h,
5745         * src/pic16/device.c: removed all references to USE_STACK macro,
5746         * src/pic16/device.c (pic16_dump_section): when no elements in
5747         rlist, free rlist before return,
5748         * (pic16_dump_int_registers): NEW, internal registers are a new set
5749         of general purpose registers reused by each function,
5750         * (checkAddReg): returns 1 if registers is added to set,
5751         * (pic16_groupRegistersInSection): when a registers is of type
5752         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5753         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5754         SRCASECMP macro is moved here from device.c
5755         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5756         PO_PCLATU, PO_PRODL, PO_PRODH,
5757         * (pic16_pCodeOpType, genMinus,
5758         changed compares to "a" register, with AOP_ACC,
5759         * (pic16_genPlus): fixed some bugs and indented properly,
5760         * (pic16_addSign): changed size to size+offset in the MOVWF
5761         instruction,
5762         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5763         multiply 8-bit operand by literal, result is 8-bit,
5764         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5765         multiply 2 8-bit operand, result is 8-bit,
5766         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5767         genUMult8X*_16,
5768         * src/pic16/gen.c: changed accUse to contain WREG only,
5769         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5770         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5771         true, do not use immediate addressing any more unless sym is a
5772         pointer in codespace,
5773         * (aopForRemat): do not use immediate addressing when symbol not in
5774         codespace and when symbol's address is requested,
5775         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5776         accUse size (= 1),
5777         * (aopGet): added case for AOP_ACC and don't return "accumulator
5778         bug" but WREG instead,
5779         * (popGetTempReg): pushes contents of temporary register in stack,
5780         * (popReleaseTempReg): pops contents of temporary register from
5781         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5782         * (pic16_popGet): separated case AOP_ACC to return register WREG
5783         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5784         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5785         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5786         the use of immediate pointers to certain cases only.
5787
5788         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5789         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5790         * (assignResultValue, genCall, genRet): modified to use the new
5791         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5792         genPcall is still broken,
5793         * (genFunction): added code to create 'A' type pBlocks when
5794         interrupt functions are generated, code not extensively tested yet,
5795         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5796         * (genEndFunction): modified so ISRs pop stored registers from stack,
5797         * (genMultOneByte): cleanup,
5798         * (AccRsh): added flag andmask, to and result with appropriate mask,
5799         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5800         * (genDataPointerGet): fixed and reenabled its use,
5801         * (genNearDataPointerGet): bugs fixed,
5802         * (genDataPointerSet): bugs fixed,
5803         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5804         pic16_DumpSymbol, pic16_DumpOp,
5805         * src/pic16/genutils.h: function prototypes for the above functions,
5806         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5807         pointers,
5808         * (pic16emitRegularMap): many many many improvements, but needs a
5809         major cleanup,
5810         * src/pic16/main.c: enable_stack in pic16_options is removed,
5811         * (_pic16_parseOptions): removed command line options -penable-stack,
5812         * (_process_pragma): emit stack symbol only when stack pragma is
5813         processed,
5814         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5815         redirected to FSR0L/FSR0H pair,
5816         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5817         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5818         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5819         for immediates,
5820         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5821         * (dumpPicOptype): NEW,
5822         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5823         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5824         with movff instruction,
5825         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5826         added pic16_int_regs, some packRegsFor* functions are commented out,
5827         because produce errors,
5828         * src/pic16/NOTES: minor modifications
5829
5830 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5831
5832         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5833         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5834         --pack-iram.
5835         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5836         * as/mcs51/lkaomf51.c: fixed bug #895763
5837
5838 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5839
5840         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5841
5842 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5843
5844         * doc/sdccman.lyx: added details about the HC08 storage classes and
5845         interrupts, fixed the register usage info for z80 & gbz80
5846
5847 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5848
5849         * doc/sdccman.lyx: added more pic16 port documentation
5850         * device/include/pic16/: added header pic18fregs.h
5851
5852 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5853
5854         * doc/sdccman.lyx: added Vangelis' contribution
5855
5856 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5857
5858         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5859         extend to the next CALL or PCALL, not just to the next CALL.
5860
5861 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5862
5863         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5864
5865 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5866
5867         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5868         bug #895752 and a better fix for bug #716790
5869
5870 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5871
5872         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5873
5874 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5875
5876         * doc/sdccman.lyx: minor changes, minor changed
5877
5878 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5879
5880         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5881         which can't handle SDCC_NEWONEBYTEOPS,
5882         (geniCodeMultiply): removed conversion from mult to shift for pic14
5883         and pic16
5884
5885 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5886
5887         * src/hc08/gen.h,
5888         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5889         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5890         thus fixing bug #895406
5891
5892 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5893
5894         * device/lib/_modsint.c,
5895         * device/lib/_modslong.c: sign follows divisor only
5896         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5897         signs or signedness can be ignored
5898         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5899         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5900         added optimization for IFX,
5901         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5902         arguments;
5903         reenabled optimization for IFX, which was removed on 2004-01-11
5904         * src/SDCCast.h: added return type IFX
5905         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5906         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5907         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5908         SDCC_OLDONEBYTEOPS selects the old behaviour
5909         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5910         changed again and commented promotion rule
5911         * src/SDCCval.c (valDiv): promotion no longer necessary
5912         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5913         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5914         rewritten
5915         * support/regression/tests/onebyte.c: added
5916
5917 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5918
5919         * gen.c (genInline): reverted to old code for assemnling inline
5920         code because of bug reported James Chadd
5921
5922 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5923
5924         * ralloc.h: missing declarations from previous patch,
5925         seems that patch for ralloc.h was never applied, fixed
5926
5927 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5928            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5929
5930         * pcode.c,
5931         * pcode.h,
5932         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5933         indirect addressing. Marked FSR0 as deprecated
5934         * gen.c (pointerCode): commented out, not needed now
5935         (pic16_popGet2p): new MOVFF helper function
5936         (genGenPointerGet),
5937         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5938         (shiftRLong): removed duplicate debugging info
5939
5940 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5941
5942         * src/ds390/gen.c (genNearPointerGet),
5943         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5944         optimization with bits, but not bitfields.
5945         * src/ds390/ralloc.c (packRegisters),
5946         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5947
5948 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5949
5950         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5951
5952 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5953
5954         * src/SDCCsymt.h,
5955         * src/SDCCicode.c (operandFromSymbol),
5956         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5957         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5958         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5959         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5960         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5961         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5962         bug #892038
5963         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5964         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5965         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5966         * src/SDCCsymt.c (newSymbol),
5967         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5968         enumerator_list),
5969         * src/SDCCval.h,
5970         * src/SDCCval.c (newiList): fixed bug #885705
5971
5972 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5973
5974         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5975         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5976
5977 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5978
5979         * device/include/c8051f120.h,
5980         * device/include/c8051f300.h,
5981         * device/include/c8051f310.h: added/updated header files for Silicon
5982         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5983         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5984         in new section Submitting patches
5985
5986 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5987
5988         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5989         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5990         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5991         genGenPointerSet),
5992         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5993         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5994         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5995         genGenPointerSet),
5996         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5997         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5998         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5999         genGenPointerSet),
6000         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6001         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6002         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6003         genGenPointerSet): fixed bug #892400
6004         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6005         to eliminate build warnings.
6006         * src/SDCCast.c (processParms),
6007         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6008         fixed bug 751859
6009         * support/valdiag/valdiag.py: added GCC to the list of defines active
6010         when compiling with gcc
6011
6012 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6013
6014         * support/Util/SDCCerr.h,
6015         * support/Util/SDCCerr.c,
6016         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6017         with an incomplete type (fixed bug #883734)
6018         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6019
6020 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6021
6022         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6023
6024 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6025
6026         * src/SDCCast.c (decorateType),
6027         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6028         function pointer implementation
6029         * support/regression/tests/funptrs.c: added tests to verify both forms
6030         of function pointers work correctly. Added tests to verify parameters
6031         are passed in the correct order.
6032
6033 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6034
6035         * device.c (regCompare): registers are sorted by ascending
6036         address and increasing size,
6037         * main.c (_pic16_finaliseOptions): removed the declaration
6038         of compiler macro MCU. Now a macro of the format pic18fxxxx
6039         will be defined from the command line
6040
6041 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6042             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6043
6044         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6045         PCOP_RLCF was overwritten!
6046         * gen.c (genSkip): commented out calls to pic16_emitcode,
6047         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6048         * (genlshTwo),
6049         * (genRRC): added debugging info,
6050         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6051         overwritten while shifting,
6052         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6053         overwritten while shifting,
6054         * (AccLsh),
6055         * (AccRsh),
6056         * (shiftLLeftOrResult),
6057         * (shiftRLeftOrResult),
6058         * (shiftRLong),
6059         * (shiftLLong): Implemented with pic16_emitpcode
6060         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6061         * (genLeftShift): Fixed bug, operand for shift by variable always
6062         was "and"ed with 0x0f,
6063         * (genLeftShiftLiteral),
6064         * (genrshTwo),
6065         * (genRightShiftLiteral): added debugging info,
6066         * (genrshFour): added comment,
6067         * (genRightShift): determined signedness from operand "left"
6068         instead of "result"
6069
6070 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6071
6072         * src/SDCCicode.c (geniCodeParms),
6073         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6074         function pointers, fixed function pointer bugs #861242 and #861896
6075
6076 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6077
6078         * device/include/c8051f000.h,
6079         * device/include/c8051f120.h,
6080         * device/include/c8051f300.h: added header files for Silicon
6081         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6082
6083 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6084
6085         * src/SDCCast.c (processParams): added new type flow and restructured
6086         (gatherAutoInit): added new type flow
6087         (addCast): cosmetic changes
6088         (getLeftResultType): added new type flow for array indices, patch
6089         provided by Stas, see FR #877103
6090         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6091         array index patch by Stas
6092         * src/SDCCast.h: added prototype getResultTypeFromType()
6093         * src/SDCCval.h,
6094         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6095         * src/pic/glue.c (pic14emitStaticSeg),
6096         * src/pic16/glue.c (pic16emitStaticSeg),
6097         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6098         for initialization of symbols
6099         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6100         * support/Util/SDCCerr.h:
6101         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6102         * .version: bumped version number to 2.3.8
6103         * device/include/Makefile.in (install),
6104         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6105         avoid warnings
6106
6107 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6108
6109         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6110         Slade Rich fixed an optimization bug
6111         * src/pic/pcodepeep.c,
6112         * src/pic/pcoderegs.c
6113         * doc/Makefile (install): added test for directory
6114
6115 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6116
6117         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6118         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6119         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6120         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6121         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6122         * as/mcs51/asexpr.c (term),
6123         * as/hc08/asexpr.c (term): fixed bug #887146
6124
6125 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6126
6127         * src/z80/gen.c (genMult): handle single byte result product
6128         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6129         DUMMY_READ_VOLATILE (fixed bug #886367)
6130
6131 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6132
6133         * support/regression/tests/libmullong.c: fixed logic, on little endian
6134         hosts we ended without a mullong_wrapper()
6135
6136 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6137
6138         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6139         virus/worm forged address usage.
6140
6141 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6142
6143         Fixed promotion, it should be done on AST level:
6144         * src/SDCCast.c (addCast): added promotion to int
6145         (decorateType): updated call to upCast()
6146         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6147         usualUnaryConversions()
6148
6149 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6150
6151         * support/regression/tests/literalop.c (mulWrapper): Added a
6152         wrapper to remove integer overflow warnings.
6153
6154         * support/regression/tests/float_trans.c: Made work on host.
6155
6156         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6157         location of sz80.
6158
6159         * support/regression/generate-cases.py (main): Changed from inline
6160         to a main method.
6161
6162         * doc/Makefile (install): Changed to depth first to get rid of
6163         missing directory install warning.
6164
6165         * as/Makefile (install-doc): Made work on Mac.
6166
6167 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6168
6169         * src/SDCCast.c: added an additional type flow in decorateType() of
6170         opposite direction, see feature request #860006; it's enabled at runtime
6171         by setting the environment variable SDCC_NEWTYPEFLOW
6172         * src/SDCCast.h: changed prototype of decorateType()
6173         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6174         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6175         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6176         see feature request #877103
6177         * src/SDCCval.c: updated call of decorateType()
6178         (valBitwise): fixed bug #882876
6179         (valMinus): added promotion
6180         (valLogicAndOr): result is unsigned
6181         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6182         * src/SDCCsymt.c (computeType),
6183         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6184         must not cause an unsigned operation
6185         * src/pic/glue (pic14emitRegularMap),
6186         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6187
6188 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6189
6190         * src/pic/pcode.c (PCodeID): commented out left over debug code
6191
6192 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6193
6194         * support/valdiag/tests/overflow.c: added shift tests
6195         * src/pic/device.c,
6196         * src/pic/gen.c,
6197         * src/pic/gen.h,
6198         * src/pic/glue.c,
6199         * src/pic/main.c,
6200         * src/pic/pcode.c,
6201         * src/pic/pcode.h,
6202         * src/pic/pcodepeep.c,
6203         * src/pic/pcoderegs.c,
6204         * src/pic/ralloc.c,
6205         * src/pic/ralloc.h: applied patch from Slade Rich;
6206         added support for multiple code pages and multiple RAM banks on the
6207         PIC 14 port. The ASM files now no longer simply assume all the
6208         code / RAM are in the same page / bank. This means the linker can
6209         safely allocate code/RAM of separate ASM files to different pages/banks.
6210         * doc/sdccman.lyx: added Slade's tips
6211         * src/mcs51/peeph.def: fixed bug #880768
6212
6213 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6214
6215         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6216         * src/SDCCast.c (decorateType): fixed bug #880197
6217
6218 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6219
6220         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6221         getopt.h.
6222
6223         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6224         strtof is not part of C89 and isn't included with Mac OS X.
6225
6226 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6227
6228         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6229         shiftL2Left2Result): fixed bug #879326
6230         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6231         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6232         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6233         address fetch for clr instruction
6234         * device/lib/hc08/_mulint.c: created optimized assembly version
6235         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6236
6237 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6238
6239         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6240         proposed in FR #877103
6241
6242 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6243
6244         * src/SDCCval.c (cheapestVal): added missing checks
6245         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6246         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6247
6248 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6249
6250         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6251         equal operands
6252
6253 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6254
6255         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6256         loaded with the linker search paths (-L arguments) and the libraries
6257         to be linked with the current source (-l arguments). Changes
6258         currently will affect only the pic16 port.
6259         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6260         include path the port specific paths and port specific libraries,
6261         * gplink command now contains the $3 argument,
6262         * src/pic16/device.h,
6263         * src/pic16/device.c,: structure PIC_device is made public and
6264         renamed to PIC16_device, the same for variable Pics which is renamed
6265         to Pics16. Updated all references to them.
6266         * src/pic16/glue.c (pic16glue): corrected bug with code
6267         initialization which bypassed the variable initializations block.
6268
6269         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6270         COMPILE_FLAGS and added the --nostdinc option
6271
6272 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6273
6274         * device/include/mc68hc908jb8.h: Register defs for another member
6275         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6276
6277 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6278
6279         Documenting changes from previous commits.
6280         * configure.in (version 1.56),
6281         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6282         when generating output files to configure the pic16 library,
6283         but now I've commented it out, since gputils aren't installed in the
6284         SF compile farm, so library won't compile
6285
6286         * device/lib/Makefile.in (version 1.56): initially I've added in
6287         target 'all' the prerequestive 'model-pic16' so it compiled the
6288         pic16 library, but now I've commented it out for the same reasons
6289         above,
6290         * added targets 'model-pic16' and 'objects-pic16' to compile the
6291         library
6292         * added target 'port-specific-objects-pic16' to handle the
6293         generated libraries and copy them into the build/ directory
6294         * added target 'clean-intermediate-pic16' to clean intermediate
6295         files into pic16 directory
6296         * in target 'installdirs' added line to create directory pic16 in
6297         the installation path
6298
6299         * device/include/Makefile.in (version 1.11): in target 'install'
6300         added lines to copy all header files to installation path,
6301         * in target 'installdirs' added line create directory for pic16
6302         headers in the installation path
6303
6304 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6305
6306         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6307          a function call
6308
6309 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6310
6311         * configure,
6312         * device/lib/configure.in,
6313         * device/lib/configure: fixed for autoconf 2.57
6314
6315 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6316
6317         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6318         option so that it actually works. Made it specific to the z80, since
6319         the gbz80 doesn't have these kinds of I/O ports.
6320
6321 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6322
6323         * device/include/z180.h,
6324         * device/lib/_memcpy.c,
6325         * device/lib/_memmove.c,
6326         * device/lib/_mulint.c,
6327         * device/lib/ser_ir.c,
6328         * device/lib/ser_ir_cts_rts.c,
6329         * device/lib/_strcmp.c,
6330         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6331         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6332         portmode; added deprecation warning for bank= and protmode= forms.
6333         Also, guard against buffer overflow.
6334         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6335
6336 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6337
6338         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6339         changed interrupt vector table generation to only emit declared vectors.
6340         * device/include/Makefile.in: added missing backslash
6341         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6342
6343 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6344
6345         Mainly changes to support compilation of the device libraries
6346         * src/pic16/device.c: stack is allocated via symbol and not
6347         via literal number. The symbol is placed in the corresponding
6348         position of the data ram
6349         * (pic16_dump_section): relocatable and absolute uninitialized
6350         data are now emitted in sorted order to reduce section naming,
6351         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6352         weren't marked as being in the access bank,
6353
6354 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6355
6356         Added portion of GNU PIC Library under the directory
6357         device/include/pic16 and device/lib/pic16. These files
6358         contain the declarations of SFRs for the PIC18Fxx2 devices.
6359         The directory is initialized via configure from toplevel.
6360
6361 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6362
6363         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6364         the spilllocations to be compared correctly
6365
6366 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6367
6368         * src/SDCCast.c (decorateType): fixed bug introduced today
6369
6370 2004-01-12  Borut Razem <borut.razem AT siol.net>
6371
6372         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6373         doc/sdccman.lyx: upper case pragmas are deprecated
6374
6375 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6376
6377         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6378         in simpler and even better code
6379
6380 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6381
6382         * src/SDCCicode.c (operandOperation): fixed bug #874819
6383         * src/SDCCast.c (decorateType): fixed
6384         char foo (unsigned long ul) { return ul > 0; }
6385
6386 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6387
6388         * doc/sdccman.lyx: Moved and added some sections, small changes
6389         all over. Telling LaTeX to be less strict with word spacing
6390         to better keep the right margin. Changed some notes about
6391         maintainance of the ports in section 3.2.1 - is it OK like this?
6392
6393 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6394
6395         SDCC source changes:
6396         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6397         convilong): modified to inform the pic16 port that builtin functions
6398         are external
6399
6400         PIC16 PORT specific changes:
6401         * src/pic16/device.c pic16_dump_equates() added,
6402         processor registers declared internally by the port are emitted in
6403         the translation as equates,
6404         * src/pic16/gen.c: inline code is passed unprocessed to the
6405         translation,
6406         * (pic16_popGetLit2): fnuction modified to take second operand as
6407         pCodeOp pointer and not as literal,
6408         * (popRegFromIdx): prefixed with pic16_,
6409         * (pic16_popCombine2): modified to receive already allocated pCode
6410         operands,
6411         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6412         * (genFunction): initializes local stack frame and pushes on stack
6413         all the registers used by this function,
6414         * (genEndFunction): restores all registers from stack and restores
6415         stack frame,
6416         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6417         improvements,
6418         * (pic16glue): changed the program startup sequence,
6419         * added new dbName code 'A' for functions placed in absolute section
6420         * src/pic16/main.c: added function attribute _naked,
6421         * added pragma 'code' to place a fnuction at an absolute address,
6422         * added command line arguments --debug-ralloc and --pcode-verbose,
6423         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6424         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6425         * (pic16_newpCodeOpLit2): modified to take the second operand as
6426         pCodeOp pointer,
6427         * (pic16_printpBlock): modified to emit each function in a separate
6428         section,
6429         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6430         UPPER for immediate operands,
6431         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6432         instruction,
6433         * src/pic16/peeph.def: all peepholes with movff are commented out,
6434         because there is a problem in the pcode peep optimizer,
6435         * src/pic16/ralloc.c: the register allocator can now reuse local
6436         function symbols for another function. This saves register usage.
6437         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6438
6439         Added file src/pic16/NOTES with information about program writing on
6440         the current port version.
6441
6442 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6443
6444         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6445         and peephole 252 (array access)
6446
6447 2004-01-09  Borut Razem <borut.razem AT siol.net>
6448
6449         * src/SDCCmain.c : fixed #872250: -l command line defined library
6450           files are scanned before standard library files
6451
6452 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6453
6454         * src/SDCCast.c (decorateType): fixed bug #874046
6455
6456 2004-01-09  Borut Razem <borut.razem AT siol.net>
6457
6458         * support/scripts/sdcc.nsi: remove previous installation
6459
6460 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6461
6462         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6463         bytes for last interrupt vector (mcs51)
6464         * sdcc.spec: fixed typo
6465
6466 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6467
6468         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6469         gen51Code): more efficient parameter receive for --model-large
6470         ("bug" #845294)
6471
6472 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6473
6474         * src/ds390/main.c,
6475         * src/z80/main.c: added missed needLinkerScript flags (more than
6476         one port structure defined in these file)
6477         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6478         bug #795325
6479
6480 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6481
6482         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6483         * src/port.h: added flag needLinkerScript in port->linker
6484         structure to inform whether to create a .lnk file or not,
6485         * src/avr/main.c,
6486         * src/ds390/main.c,
6487         * src/hc08/main.c,
6488         * src/mcs51/main.c,
6489         * src/pic/main.c,
6490         * src/pic16/main.c,
6491         * src/xa51/main.c,
6492         * src/z80/main.c: changed appropriately to configure
6493         needLinkerScript flag
6494         * src/pic/gen.c,
6495         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6496         * src/pic/glue.c: added variable udata_section_name to
6497         override default uninitialized data segment definition for
6498         devices only with SHAREBANK memory (reported from Erik Epetrich)
6499         * (pic14emitOverlay): modified to emit a commented overlay segment
6500         directive when no overlay data exist
6501         * (picglue): modified to emit uninitialized data segment
6502         according to udata_section_name
6503         * src/pic/main.c (_pic14_parseOptions): added command line
6504         options --udata-section-name=[name] to override default
6505         udata definition name
6506         * modified _linkCmd and _asmCmd to include compiler passed
6507         arguments via -W option
6508         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6509         object file from '.rel' to '.o' in port->linker structure,
6510         changed size of fptr from 2 to 3 in port structure
6511
6512 2004-01-07  Borut Razem <borut.razem AT siol.net>
6513
6514         * support/scripts/sdcc.nsi: update PATH
6515         * support/scripts/sdcc.ico: craeted
6516
6517 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6518
6519         * device/include/Makefile.in: fix install
6520         * doc/Makefile: fix install
6521
6522 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6523
6524         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6525         in bug #860505
6526         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6527         how the function variable allocation summary is displayed; also
6528         include information about variables allocated to the overlay
6529         segment
6530
6531 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6532
6533         * as/mcs51/lkmain.c: Help about -Y option
6534         * as/mcs51/lkarea.c: Fixed gcc warnings
6535
6536 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6537
6538         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6539         fixed warning
6540         * support/valdiag/tests/overflow.c: added
6541         * src/SDCCast.c (decorateType),
6542         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6543         LEFT_OP (left shift)
6544
6545 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6546
6547         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6548         (default behaviour).
6549
6550 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6551
6552         A python script to validate compiler diagnostic messages. It can be
6553         used to verify that sdcc complains about bad c source code and
6554         gives a good location of the error.
6555         * support/valdiag/Makefile,
6556         * support/valdiag/valdiag.py,
6557         * support/valdiag/tests/*
6558
6559 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6560
6561         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6562         * src/SDCCsymt.c (newEnumType),
6563         * src/SDCCsymt.h
6564         * support/Util/SDCCerr.c,
6565         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6566         enum related bugs.
6567         * support/regression/tests/enum.c: added test for enum values that
6568         require at least 2 bytes of storage.
6569
6570 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6571
6572         * src/common.h: added ifndef/define/endif macros
6573         around the header file.
6574         Bug reported from Jesus Calvino-Fraga
6575
6576 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6577
6578         * sdcc.spec: updated
6579         * device/include/Makefile.in: don't install CVS directories
6580         * device/lib/Makefile.in: added removal of CVS directories after install
6581         * doc/Makefile: fixed install, added local_icons
6582         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6583         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6584         * src/ds390/gen.c (genRightShift): fixed bug #870788
6585         * src/SDCCast.c (decorateType): fixed bug #870781
6586
6587 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6588
6589         PIC16 port related changes:
6590         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6591         added variable stackPos,
6592
6593         * gen.c: genCall, assignResultValue: added support for
6594         pushing/retrieving function parameters to/from stack,
6595         genFunction,genEndFunction: setup stack frame for the
6596         generated function,
6597         genAddrOf: will be changed according to bug 863624
6598
6599         * added files genutils.c and genutils.h which contain gen*
6600         debugged and optimised functions extracted from gen.c
6601
6602         * glue.c: added variable 'externs' which holds extern symbols,
6603         pic16emitRegularMap: is modified to properly handle relocatable
6604          symbols under the new scheme,
6605         pic16createInterruptVect: is modified
6606         pic16printPublics: is modified to emit 'global' assembler directives,
6607         added pic16_printExterns to print extern symbols,
6608         pic16glue: initializes stack/frame pointer in the beginning of
6609         the assembly output. Temporary hack, will be corrected later,
6610         because gplink yet does not support stack and SDCC does not
6611         yet support a type of crt0.o object to create the final binary.
6612
6613         * Removed many lines that contain 8051 legacy code.
6614         * The code is finally placed under a 'code' directive.
6615         * Added port specific options.
6616
6617         * _process_pragma: simplified since now we do not need *special*
6618         include file to define SFR registers. But a separate header
6619         will be needed. This will be developed later.
6620         * _pic16_parseOptions: added, parses port specific options:
6621         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6622         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6623         --preplace-udata-with=
6624
6625         * _pic16_setDefaultOptions: modified to initialize section names,
6626         but hack is temporarly out of order since it needs improvement.
6627         * _pic16_genAssemblerPreamble: configuration words are emitted by
6628         their address instead of their name. This part is incomplete and
6629         supports only the 18Fxx2 devices. Other devices will emit an error
6630         during assembly since they do not contain the same set of config
6631         registers
6632         * _pic16_genIVT: is modified,
6633
6634         * pcode.c: added definitions for some hardware registers that are needed
6635         for stack support
6636         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6637         All PCI entries are updated. Now LFSR is supported.
6638         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6639         * added pic16_newpCodeOpLit2 to support instructions with
6640         two literal arguments
6641         * pic16_pCode2str: corrected code that emits assembler instructions
6642         with two literal operands and those that have an access bit modifier
6643         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6644         this fixes a bug which caused some labels to be lost, when an
6645         assembler directive was added, i.e. banksel,
6646         * pic16_FixRegisterBanking: improved logic that causes the insertion
6647         of bank switching,
6648         * InlineFunction: functions that are called once, are not any more
6649         inlined. This can be a port option in the future,
6650
6651         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6652
6653         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6654         hold the corresponding uninitialized symbols,
6655         * pic16_allocProcessorRegister: registers have explicit marked the
6656         accessBank field,
6657         * pic16_allocInternalRegister: registers are explicit marked as
6658         not used,
6659         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6660         processing list, so bit registers were lost,
6661         *
6662
6663         * ralloc.h: added field 'accessBank' and original symbol operand
6664         in register definition,
6665         * removed the field isMapped from register definition,
6666
6667         ** Several functions have been removed from various sources:
6668         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6669         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6670         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6671         pic16_assignRelocatableRegisters
6672
6673         ** others have been introduced:
6674         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6675         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6676
6677 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6678
6679         * support/scripts/inc2h.pl: changed definition of BIT_AT
6680         to emit 'sbit at' instead of 'bit at'. This was a request.
6681
6682         PIC16 port related preliminary changes:
6683         * gen.c: prefixed function popRegFromString with
6684         pic16_ and all references to it corrected
6685         * pcode.c: all pic16_pc_* hardware registers prefixed
6686         with underscore (_),
6687         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6688         * ralloc.c: newReg(): when register is REG_SFR then
6689         set address to rIdx,
6690         pic16_allocProcessorRegister(): marks register wasUsed=0
6691         pic16_writeUsedRegs(): added a call to assign processor
6692         registers via pic16_assignFixedRegisters
6693
6694 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6695
6696         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6697         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6698         variables in unused register banks.  Also the SSEG is placed
6699         wherever there is enough space for it, and IDATA can be anywhere
6700         in internal RAM.  For now compile using -Wl-Y[stack_size].
6701         The mem file is different for this option as well, since it
6702         makes no sense of talking about DSEG lenght.
6703
6704 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6705
6706         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6707         in certain cases, e.g. when ROM assignment, patch provided
6708         from Albert den Haan.
6709
6710 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6711
6712         Many signedness and type propagation fixes:
6713         * src/SDCCicode.c: made geniCodeCast() static
6714         replaced SPEC_ by IS_ (cosmetic)
6715         (operandOperation): fixed div and mod operation
6716         (usualBinaryConversions): added support for promotion of char
6717         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6718         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6719         (geniCodeAdd): an array index will stay unsigned, even if promoted
6720         from char to int
6721         (geniCodeArray): ditto
6722         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6723         * src/SDCCsymt.c (computeType): added more support for char;
6724         promotion of char is selectable by promoteCharToInt, fixed signedness
6725         for all cases
6726         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6727         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6728         * src/SDCCval (val*): replaced signedness calculation by
6729         computeType()
6730         rearranged if-branches (cosmetic)
6731         (valShift): added warning W_SHIFT_CHANGED
6732         (valCompare): fixed problem with different types
6733         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6734         * support/regression/tests/literalop.c: added many cases
6735         * support/regression/tests/ast_constant_folding.c: changed finally to
6736         'unsigned int'
6737         * .version: new year, new version: 2.3.7
6738         * src/SDCCmain.c (main): applied patch #866468
6739         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6740         provided by Scott Bronson
6741         * doc/sdccman.lyx: updated documentation for sdcdb
6742         updated and added chapter tips
6743
6744 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6745
6746         * src/SDCCsymt.h: missing from yesterday's commits
6747
6748 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6749
6750         * src/SDCC.y (struct_or_union_specifier),
6751         * support/Util/SDCCerr.c,
6752         * support/Util/SDCCerr.h: verify that struct & union tags are used
6753         as declared.
6754
6755 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6756
6757         * src/SDCCglobl.h: missing from yesterday's commits
6758
6759 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6760
6761         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6762         sft_attributes, struct_declaration, parameter_declaration,
6763         type_name, start_block, declaration_list),
6764         * src/SDCC.lex (check_type): support redefinition of typedef names
6765
6766 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6767
6768         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6769         aligned xdata arrays. Erik helped me with the if clause.
6770
6771 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6772
6773         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6774         warning
6775
6776 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6777
6778         * src/SDCCast.h,
6779         * src/SDCCast.c (newAst_),
6780         * src/SDCCicode.h,
6781         * src/SDCCicode.c (ast2iCode, newiCode),
6782         * src/SDCCglobl.h,
6783         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6784         expr, statement, expression_statement, selection_statement,
6785         iteration_statement, expr_opt, jump_statement): foundation for tracking
6786         sequence points
6787         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6788         point code too)
6789
6790 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6791
6792         * support/Util/SDCCerr.c,
6793         * src/SDCCast.h,
6794         * src/SDCCast.c (createCase, createDefault, decorateType),
6795         * src/SDCClabel.c (labelUnreach),
6796         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6797         to error messages.
6798         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6799         (with thanks to Stas Sergeev)
6800         * device/include/time.h,
6801         * device/lib/time.c (CheckTime): suppress unreachable code warning
6802
6803 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6804
6805         * src/SDCCast.c (createIvalCharPtr),
6806         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6807         bug #753752)
6808         * support/regression/tests/nullstring.c: tests for these two bugs
6809
6810 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6811
6812         * support/Util/SDCCerr.h,
6813         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6814         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6815         about storage class and 'at' used inside struct or union
6816         * src/SDCCBBlock.c (iCodeFromeBBlock),
6817         * src/SDCCcse.c (ifxOptimize),
6818         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6819         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6820         printIval, emitStaticSeg, emitOverlay),
6821         * src/SDCClabel.c (deleteIfx),
6822         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6823         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6824         gatherAutoInit, processParms),
6825         * support/Util/SDCCerr.h,
6826         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6827         reporting for post-parse errors.
6828
6829 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6830
6831         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6832         implicit casts via union; they don't work on big endian systems
6833         (possible fix for bug #861138)
6834
6835 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6836
6837         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6838         * src/mcs51/main.c: fixed the fix for bug #737001
6839
6840 2003-12-15  Borut Razem <borut.razem AT siol.net>
6841
6842         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6843
6844 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6845
6846         * support/makebin/makebin.c: put output in binary mode
6847
6848 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6849
6850         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6851         xdata and data memory on startup. Set the environment variable
6852         SDCC_NOGENRAMCLEAR to disable this.
6853         * src/mcs51/peephole.def,
6854         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6855         (allows non-interrupt and interrupt code to safely compete for a resource
6856         without the non-interrupt code having to disable interrupts)
6857
6858 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6859
6860         * src/SDCCicode.c (geniCodeAdd),
6861         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6862         with valFromType if type might be a pointer and host is big endian).
6863         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6864         types, not just integer types.
6865         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6866         multiply defined with mismatching "at" address.
6867
6868 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6869
6870         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6871         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6872         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6873         with embedded nulls (fixed bug #753752)
6874
6875 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6876
6877         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6878         Apparently this did not see much testing (endless loop)
6879
6880 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6881
6882         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6883
6884 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6885
6886         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6887         gracefully handle NULL memmap pointers
6888
6889 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6890
6891         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6892         instead of deleting the iCode when an operand is volatile
6893         * src/z80/gen.c (genDummyRead),
6894         * src/mcs51/gen.c (genDummyRead),
6895         * src/ds390/gen.c (genDummyRead),
6896         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6897         not just IC_RIGHT
6898         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6899         * src/SDCC.y: fixed bug #850420
6900
6901 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6902
6903         Applied z80 i/o port patch from Peter Townson and fixed some operators
6904         to better handle operands in A register.
6905         * device/include/z180.h
6906         * src/SDCC.y
6907         * src/SDCCglue.c
6908         * src/z80/gen.c
6909         * src/z80/gen.h
6910         * src/z80/main.c
6911         * src/z80/peeph-z80.def
6912         * src/z80/peeph.def
6913         * src/z80/z80.h
6914
6915 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6916
6917         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6918
6919 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6920
6921         * device/lib/hc08/_mullong.c: Removed extra #endif
6922
6923 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6924
6925         * sim/ucsim/hc08.src/inst.cc,
6926         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6927         carries from x to h
6928         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6929         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6930         * device/include/stdarg.h: fixed varargs for hc08
6931         * device/lib/Makefile.in,
6932         * device/lib/hc08/Makefile,
6933         * device/lib/hc08/_mulint.c,
6934         * device/lib/hc08/_mullong.c: fixed some endian problems
6935
6936 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6937
6938         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6939         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6940         * device/lib/_gptrget.c,
6941         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6942
6943 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6944
6945         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6946         * src/SDCCast.c (astErrors): fixed bug #846007
6947         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6948
6949 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6950
6951         * src/SDCCast.c (decorateType): disabled a transformation I added in
6952         revision 1.188 (access to fields of a structure at an absolute address);
6953         it breaks with bitfields, extern declarations, and gcse analysis.
6954         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6955         could be assigned through a pointer, so don't complain.
6956         * src/SDCCast.c (astErrors),
6957         * src/SDCCast.h,
6958         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6959
6960 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6961
6962         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6963         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6964         output of __config directives, since gpasm now supports them
6965         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6966         pre-processor macro, i.e. -DMCU=p18f452
6967         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6968         and modified to handle 'cast' icode similarly to '=' icode
6969         * src/pic16/device.h (typedef struct PIC_device): added field
6970         'extMIface' to indicate that chip has external memory interface
6971         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6972         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6973         18F8720
6974
6975 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6976
6977         * src/SDCC.y (pointer): fixed bug #846006
6978         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6979         * src/SDCCast.c (decorateType): fixed bug #846009
6980         * src/ds390/peeph.def,
6981         * src/ds390/gen.c (genAnd, genOr),
6982         * src/mcs51/peeph.def,
6983         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6984
6985 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6986
6987         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6988         * src/SDCCdflow.c
6989         * src/SDCCcse.c
6990         * src/SDCCcse.h
6991         * src/SDCCBBlock.h
6992         * src/SDCCBBlock.c
6993
6994 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6995
6996         fixed bug #845089
6997         * src/SDCCbitv.h,
6998         * src/SDCCbitv.c: added function to free a bitvector
6999         * src/SDCClrange.h,
7000         * src/SDCClrange.c: added function to recompute the liveranges
7001         * src/avr/ralloc.c,
7002         * src/ds390/ralloc.c,
7003         * src/hc08/ralloc.c,
7004         * src/mcs51/ralloc.c,
7005         * src/pic/ralloc.c,
7006         * src/pic16/ralloc.c,
7007         * src/xa51/ralloc.c,
7008         * src/z80/ralloc.c: recompute the liveranges after register packing
7009
7010 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7011
7012         * src/SDCCloop.c (newInduction): fixed bug #845630
7013
7014 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7015
7016         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7017         inadvertantly left behind from my 2003-11-12 change
7018
7019 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7020
7021         Updated headers I neglected to commit yesterday.
7022         * src/SDCClrange.h,
7023         * src/SDCCicode.h
7024
7025 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7026
7027         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7028         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7029         * src/SDCCopt.c (eBBlockFromiCode),
7030         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7031         the creation of the key hash table from the sequencing so it can be used
7032         earlier (for some GCSE bug fixes still pending)
7033
7034 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7035
7036         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7037         * support/regression/tests/addsub.c: testing genPlus shortcut
7038
7039 2003-11-15  Borut Razem <borut.razem AT siol.net>
7040
7041         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7042
7043 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7044
7045         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7046         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7047         ordering is immaterial.
7048         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7049
7050 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7051
7052         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7053         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7054         (SIGSEV) of bug #840381
7055         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7056         unlink new file before rename if new and old filenames are the same)
7057
7058 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7059
7060         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7061         uninitialized variables) for the mcs51. Set environment variable
7062         SDCC_GENRAMCLEAR to test.
7063         xdata initialization slightly shorter
7064
7065 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7066
7067         * src/SDCCsymt.h,
7068         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7069         #838241 & 780691 (basicly the same bug)
7070         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7071         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7072
7073 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7074
7075         * src/SDCCmain.c (linkEdit): "fix" #834252
7076
7077 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7078
7079         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7080         * src/SDCCast.h,
7081         * src/SDCC.y: fixed bug #819403
7082
7083 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7084
7085         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7086         the reentrant attribute.
7087         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7088         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7089         simulation
7090         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7091         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7092         erroneously reduced to a literal.
7093         * src/hc08/ralloc.c (packRegisters, rematStr),
7094         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7095         some cases
7096
7097 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7098
7099         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7100         * doc/sdccman.lyx: changed from 'article' to 'book'
7101         * doc/Makefile: readded test_suite_spec and cdbfileformat
7102
7103 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7104
7105         * device/include/stdlib.h: include malloc.h to comply with ANSI
7106         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7107
7108 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7109
7110         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7111         * doc/clean.mk: also remove *.out files
7112         * doc/sdccman.lyx: some additions, larger top/bottom margins
7113
7114 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7115
7116         * src/SDCC.y: fixed bug #837365
7117         * support/regression/tests/bitopcse.c
7118         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7119         a symbol (might be valop instead)
7120         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7121         * device/lib/clean.mk: added hc08 to the cleaning list
7122
7123 2003-11-04  Borut Razem <borut.razem AT siol.net>
7124
7125         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7126           made 2003-11-04
7127         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7128           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7129           malloc is declared in standard stdlib.h
7130
7131 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7132
7133         * device/lib/hc08/Makefile: need to clean .rel not .o files
7134         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7135
7136 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7137
7138         * src/port.h,
7139         * src/hc08/main.c,
7140         * src/mcs51/main.c,
7141         * src/ds390/main.c,
7142         * src/z80/main.c,
7143         * src/avr/main.c,
7144         * src/pic/main.c,
7145         * src/pic16/main.c,
7146         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7147         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7148         tests (which uses the port's oclsExpense function)
7149         * src/SDCC.y,
7150         * src/SDCCast.c,
7151         * src/SDCCicode.c,
7152         * src/hc08/gen.c,
7153         * src/ds390/gen.c,
7154         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7155
7156 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7157
7158         * src/SDCCcse.c (ifxOptimize),
7159         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7160         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7161         deleting the IFX iCode.
7162         * src/hc08/ralloc.c: reduced unneeded slocs
7163         * src/hc08/gen.c: fixed bug in asmopToBoolean
7164
7165 2003-11-04  Borut Razem <borut.razem AT siol.net>
7166
7167         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7168           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7169           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7170           transferred to configure
7171
7172 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7173
7174         Use headers defined in the C[++] standards:
7175         * sim/ucsim/gui.src/serio.src/fileio.cc
7176         * sim/ucsim/gui.src/serio.src/frontend.cc
7177         * sim/ucsim/gui.src/serio.src/main.cc
7178         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7179         * support/Util/NewAlloc.c
7180         * as/hc08/lklibr.c
7181         * as/mcs51/lklibr.c
7182         * as/z80/aslist.c
7183         * as/z80/assym.c
7184
7185 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7186
7187         * Added MSVC projects for hc08 assembler and linker:
7188         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7189         /as/hc08/link_hc08.dsp
7190
7191 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7192
7193         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7194
7195 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7196
7197         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7198
7199 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7200
7201         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7202
7203 2003-10-31  Borut Razem <borut.razem AT siol.net>
7204
7205         * support/cpp2/cpplib.h,
7206           support/cpp2/cpplib.c,
7207           support/cpp2/cpplex.c,
7208           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7209           to switch _asm block preprocessing on / off. Default is
7210           #pragma preproc_asm +
7211
7212 2003-10-31  Borut Razem <borut.razem AT siol.net>
7213
7214         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7215           when outputting comment blocks (when executed with -C option) and
7216           _asm (SDCPP specific) blocks
7217
7218 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7219
7220         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7221
7222 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7223
7224         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7225
7226 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7227
7228         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7229         * src/SDCCast.c (decorateType): fixed bug #832664
7230
7231 2003-10-31  Borut Razem <borut.razem AT siol.net>
7232
7233         * support\cpp2\cpplex.c: fixed for SDCPP:
7234           comments(when executed with -C option) and _asm blocks
7235           were included even if they where in skipped #if block.
7236           Applied solution from GCC cpp 3.3.2
7237
7238 2003-10-31  Borut Razem <borut.razem AT siol.net>
7239
7240         * src/SDCC.lex: sdcc now understands both formats:
7241           '# <line_number> <file_name>' and
7242           '#line <line_number> <file_name>'
7243         * support/cpp2/cppmain.c: sdcpp now generates the standard
7244           '# <line_number> <file_name>' instead of former
7245           '#line <line_number> <file_name>'
7246
7247 2003-10-30  Borut Razem <borut.razem AT siol.net>
7248
7249         * support/cpp2/cpphash.h,
7250         * support/cpp2/cpplib.h
7251         * support/cpp2/cpplex.c,
7252         * support/cpp2/cppmain.c,
7253         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7254
7255 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7256
7257         Fixed a number of problems revealed by bug #827883.
7258         * src/SDCCloop.c (loopInvariants): Spill location of the
7259         result operand should be recomputed if extracted from
7260         a loop. Also, don't extract assignments of an iTemp
7261         from a literal.
7262         * src/SDCCast.c (isConformingBody): loop reversal should
7263         not occur if the control variable is involved with a
7264         relational operator.
7265
7266 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7267
7268         * .version: bumped to 2.3.6 to reflect the big improvements
7269         made by Erik and Klaus. Thanks!
7270
7271 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7272
7273         Replaced the livrange code.
7274         * src/SDCClrange.c: added new LR code
7275         * src/SDCCloop.c,
7276         * src/SDCCBBlock.h: removed remainig parts from old LR code
7277         * src/ds390/ralloc.c,
7278         * src/ds390/gen.c: minor fixes to make it work with new code
7279
7280 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7281
7282         * as/hc08/asm.h,
7283         * as/hc08/lkrloc.c,
7284         * src/hc08/gen.c,
7285         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7286         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7287         (tweaked fix for bug #818696)
7288
7289 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7290
7291         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7292
7293 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7294
7295         * src/SDCCmain.c,
7296         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7297         * src/mcs51/gen.c (gencjneshort),
7298         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7299         more efficient (per Scott Bronson's suggestion)
7300
7301 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7302
7303         Extended the semantics of the critical keyword to include
7304         individual statements. See RFE #827755 and #799831
7305         * src/SDCC.y
7306         * src/SDCCicode.c
7307         * src/SDCCopt.c
7308         * src/SDCCast.c
7309         * support/Util/SDCCerr.c
7310         * support/Util/SDCCerr.h
7311         * src/mcs51/gen.c
7312         * src/ds390/gen.c
7313         * src/hc08/gen.c
7314
7315 2003-10-19  Borut Razem <borut.razem AT siol.net>
7316
7317         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7318
7319 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7320
7321         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7322         Fixed bug #818696
7323         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7324         and predecrement operand is displayed
7325
7326 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7327
7328         * src/SDCCval.c (valMinus): fixed bug #826041
7329
7330 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7331
7332         Some hc08 related updates that I missed earlier
7333         * sim/ucsim/stypes.h
7334         * support/regression/ports/hc08/spec.mk
7335
7336 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7337
7338         New target "hc08" for the Motorola 68hc08 family of micros
7339
7340         * configure
7341         * configure.in
7342         * Makefile
7343         * src/hc08/*
7344         * src/SDCCmain.c
7345         * src/port.h
7346         * sim/ucsim/hc08.src/*
7347         * sim/ucsim/configure.in
7348         * src/ucsim/configure
7349         * sim/ucsim/packages_in.mk
7350         * as/hc08/*
7351         * as/Makefile
7352         * device/include/mc68hc908qy.h
7353         * device/lib/hc08/*
7354         * device/lib/Makefile.in
7355         * support/regression/ports/hc08/*
7356         * support/regression/Makefile
7357
7358 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7359
7360         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7361         regression test
7362         * src/ds390/gen.c (genCast): fixed bug #821957
7363
7364 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7365
7366         * device/lib/logf.c: "fixed" overlay bug
7367         * support/regression/ports/host/spec.mk: added m library
7368         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7369         * support/regression/tests/float_trans: added (for Eric)
7370
7371 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7372
7373         * src/mcs51/gen.c (genCpl): fixed bug
7374         http://sf.net/mailarchive/message.php?msg_id=6263915
7375
7376 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7377
7378         * src/SDCCast.c (decorateType): added extended constant folding
7379         * src/SDCCsymt.c (computeType): cleanup
7380         * src/SDCCval.c (valShift): minor optimization
7381         * support/regression/tests/ast_constant_folding.c: added
7382
7383 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7384
7385         * src/SDCCmain.c: removed some unintended changes
7386
7387 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7388
7389         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7390         * src/z80/gen.c: fixed part of bug #817589
7391         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7392
7393 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7394
7395         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7396         * src/SDCCcflow.c
7397         * src/SDCCcse.c
7398         * src/SDCCdflow.c
7399         * src/SDCClabel.c
7400         * src/SDCClrange.c
7401         * src/SDCCmem.c
7402         * src/SDCCopt.c
7403         * src/SDCCpeeph.c
7404         * src/SDCCset.c
7405         * src/avr/ralloc.c
7406         * src/ds390/ralloc.c
7407         * src/izt/ralloc.c
7408         * src/mcs51/ralloc.c
7409         * src/pic/ralloc.c
7410         * src/pic16/ralloc.c
7411         * src/xa51/ralloc.c
7412         * src/z80/ralloc.c
7413         * src/z80/gen.c: removed unused label "release:"
7414
7415 2003-10-06  Borut Razem <borut.razem AT siol.net>
7416
7417         * src/SDCC.lex: removed definition of unused variables
7418           save_optimize and save_options
7419
7420 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7421
7422         * clean.mk: removed '=' in "-maxdepth=1"
7423         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7424         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7425
7426 2003-10-06  Borut Razem <borut.razem AT siol.net>
7427
7428         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7429           my_unput() replaced by unput()
7430
7431 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7432
7433         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7434         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7435         type-punned pointer will break strict-aliasing rules"
7436         Old LR behaviour is again default; Klaus' LR can be choosen by
7437         defining the environment variable LRKLAUS
7438         * src/SDCCBBlock.h
7439         * src/SDCCloop.c
7440         * src/SDCClrange.c
7441         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7442         * clean.mk: fixed removal of files in bin/CVS/
7443         * device/lib/clean.mk: fixed removal of directories small and large
7444         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7445         * src/SDCCicode.c,
7446         * src/SDCCval.c: removed superflous test for pedantic
7447
7448 2003-10-05  Borut Razem <borut.razem AT siol.net>
7449
7450         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7451           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7452           message "unmatched #pragma SAVE and #pragma RESTORE"
7453
7454 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7455
7456         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7457           assembly, critical functions, atomic, nojtbound)
7458
7459 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7460
7461         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7462         * src/SDCCBBlock.h
7463         * src/SDCCloop.c
7464         * src/SDCCloop.h
7465         * src/SDCClrange.c
7466
7467 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7468
7469         * src/z80/gen.h,
7470         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7471         * src/mcs51/gen.h
7472         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7473         * src/ds390/gen.h
7474         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7475         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7476         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7477
7478 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7479
7480         * src/z80/gen.c (genRet): fixed bug #524753
7481         * src/z80/gen.c (genCast): fixed internal error on cast from
7482         pointer to long
7483         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7484         fix for bug #477835 to the z80
7485         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7486         for tracking iCodes in the peephole optimizer for z80
7487
7488 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7489
7490         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7491         the other part of bug #814548
7492         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7493
7494 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7495
7496         * src/SDCCcse.c: fixed part of bug #814548
7497
7498 2003-09-28  Borut Razem <borut.razem AT siol.net>
7499
7500         * src/asm.c: rewrite of printILine() to use temporary file instead
7501           a pipe
7502         * src/xa51/main.c: commented out declaration of int rewinds
7503
7504 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7505
7506         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7507
7508 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7509
7510         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7511         * src/asm.c (printILine): Fixed bug #811015
7512
7513 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7514
7515         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7516         freeing.
7517
7518 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7519
7520         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7521         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7522         to correctly handle general case of AOP_PAIRPTR
7523         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7524
7525 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7526
7527         * src/mcs51/ralloc.c (fillGaps),
7528         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7529         register positioning bug)
7530
7531 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7532
7533         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7534
7535 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7536
7537         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7538         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7539         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7540         (ralloc doesn't intentionally do this now, but perhaps later)
7541         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7542         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7543         register positioning bugs (Fixed bug #762602 and #795325)
7544         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7545         (Fixed bug #808779)
7546         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7547         lines that --i-code-in-asm generates
7548
7549 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7550
7551         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7552         trying to fclose a FILE* that was already closed.
7553
7554 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7555
7556         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7557         of const struct should be treated as if const themselves)
7558
7559 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7560
7561         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7562
7563 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7564
7565         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7566         Unix (/n) and DOS (/r/n) line terminations.
7567
7568 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7569
7570         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7571         bug #613775
7572
7573 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7574
7575         * src/mcs51/gen.c (genFunction, genEndFunction),
7576         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7577         and restore of EA so that stack offsets to parameters are
7578         correct when using both critical and reentrant/stack-auto.
7579         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7580         size (can be triggered in error if sloc is shared between
7581         different sized objects)
7582         * device/include/float.h: fixed macros to explicitly use
7583         unsigned long where needed
7584
7585 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7586
7587         Feature req. 799831: added code to allow nesting of critical functions
7588         * src/mcs51/gen.c (genFunction, genEndFunction)
7589         * src/ds390/gen.c (genFunction, genEndFunction)
7590
7591 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7592
7593         * src/SDCCsymt.c (sclsFromPtr),
7594         * src/SDCCsymt.h,
7595         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7596         support for standard C idiom of memory mapped variables; for
7597         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7598         to xdata int at 0x1234 tempvar = 1.
7599         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7600         provided by Akiya ISHIDA
7601
7602 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7603
7604         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7605         * src/SDCCval.c (constVal): added reduction from int to char
7606         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7607         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7608         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7609         to ignore the sign
7610         * support/regression/tests/shifts.c: fixed
7611
7612 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7613
7614         * src/z80/gen.c (genXor): Fixed bug #805445
7615
7616 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7617
7618         Fixed bug #621531 (const & volatile confusion in the type chain).
7619         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7620         refer to the const or volatile state of the pointer itself.
7621
7622         * src/SDCCast.c
7623         * src/SDCCglue.c
7624         * src/SDCCicode.c
7625         * src/SDCCsymt.c
7626         * src/SDCCval.c
7627         * src/SDCC.y
7628         * src/SDCCsymt.h
7629         * src/pic/gen.c
7630         * src/pic/ralloc.c
7631         * src/pic16/gen.c
7632         * src/pic16/ralloc.c
7633         * support/regression/tests/const.c
7634
7635 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7636
7637         When checking for duplicated modules, use absolute paths
7638         instead of relative paths.  Files changed:
7639
7640         * as/mcs51/lklib.c
7641         * link/z80/lklib.c
7642
7643 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7644
7645         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7646
7647 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7648
7649         * device/include/string.h: added size_t typedef, changed
7650         prototypes to use size_t, eliminated separate reentrant and
7651         non-reentrant declarations, added _memmove declaration
7652         * device/lib/_memcpy.c: changed to use size_t instead of int,
7653         changed /4 to >>2 to avoid division library call
7654         * device/lib/_memcmp.c,
7655         * device/lib/_memset.c,
7656         * device/lib/_strncat.c,
7657         * device/lib/_strncpy.c,
7658         * device/lib/_strncmp.c: changed to use size_t instead of int
7659         * device/lib/_memmove.c: new file (fixed bug #772294)
7660         * device/lib/Makefile.in: added _memmove.c
7661         * device/lib/z80/asm_strings.s: fixed bug #772290
7662         * support/regression/tests/bitfields.c: attempt to fix host assertion
7663         failure on amd64-unknown-linux2.2
7664
7665 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7666
7667         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7668         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7669         * as/z80/asmain.c (main): fixed bug #801766
7670
7671 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7672
7673         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7674         compilers
7675
7676 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7677
7678         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7679         reported in bug #800609
7680
7681 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7682
7683         * Top header beautifications in src/pic16 directory:
7684           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7685           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7686           pcoderegs.h, ralloc.c, ralloc.h
7687         * main.c: added top header and GPL license notice
7688         * pcode.c: fixed the if-conditional warning
7689
7690 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7691
7692         * device/lib/_mullong.c: replaced int by short for gcc
7693
7694 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7695
7696         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7697         and JUMPTABLE iCodes properly now (worked by accident before)
7698         * src/mcs51/gen.c (leftRightUseAcc),
7699         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7700         iCode properly now. Use getSize instead of nRegs since a & b
7701         aren't part of the nRegs tally.
7702
7703 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7704
7705         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7706         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7707           before instructions that use the _STATUS register
7708
7709 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7710
7711         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7712         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7713         fetching of the pointer
7714         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7715         copied from genNearPointerSet()
7716         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7717         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7718         If they pop r0/r1 they must be called in the opposite order than aopOp().
7719         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7720         (resp. --stack-auto), prepared for --xstack
7721
7722 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7723
7724         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7725
7726 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7727
7728         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7729         these ports have their own __sdcc_external_start()
7730
7731 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7732
7733         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7734         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7735         type for bits was changed. It resulted in bit variables becoming
7736         global, which is not permitted in PIC 14 assembly output.
7737
7738 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7739
7740         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7741
7742 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7743
7744         Z80 and MCS51 linkers complaint if a public symbol is defined
7745         in more than one library module:
7746
7747         * as/mcs51/lklib.c
7748         * link/z80/lklib.c
7749         * as/mcs51/Makefile.in
7750
7751 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7752
7753         A few small changes that speed up the peephole optimizer.
7754
7755         * src/SDCCpeeph.c
7756
7757 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7758
7759         Try to make the peephole optimizer smarter by maintaining
7760         an association between the assembly source code and the
7761         iCodes that originated them. Put this information to use
7762         with a new peephole rule condition "notVolatile" so that
7763         the rules can be aggressive yet still safe.
7764
7765         * src/SDCCpeeph.c
7766         * src/SDCCpeeph.h
7767         * src/mcs51/gen.c
7768         * src/mcs51/peeph.def
7769
7770 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7771
7772         Fixed bug #741761
7773
7774         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7775         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7776         if the left or right operand symbols have the accuse flag set.
7777
7778 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7779
7780         Changed the type of the result of the ! (NOT) operator to char;
7781         previously it returned the same type as the source. This allows
7782         us to eliminate all the genFloatNot functions (all of its target
7783         implementations were very buggy) since !float can use the same
7784         code as !long now.
7785
7786         * src/SDCCicode.c (ast2iCode): ! returns char
7787         * src/mcs51/gen.c (genNot, genNotFloat),
7788         * src/ds390/gen.c (genNot, genNotFloat),
7789         * src/z80/gen.c (genNot, genNotFloat),
7790         * src/pic/gen.c (genNot, genNotFloat),
7791         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7792
7793 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7794
7795         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7796         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7797            during interrupts. Ensure WSAVE is located at a shared bank address.
7798         2. Fixed page selection in some places
7799         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7800            the registers name strings.
7801         4. Fixed "signed / unsigned compare" compiler warnings.
7802         5. The PIC port manages its own allocation of the general purpose
7803            registers, but makes no attempt to reuse them. As a result when
7804            compiling it soon runs out of general purpose registers. Some
7805            additional code was added to the files pcode.c and device.c to walk
7806            through the function call tree and rename the registers so that they
7807            get reused.
7808
7809         * src/pic/device.c
7810         * src/pic/gen.c
7811         * src/pic/glue.c
7812         * src/pic/pcode.c
7813         * src/pic/pcode.h
7814         * src/pic/ralloc.c
7815         * src/pic/ralloc.h
7816         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7817         genPlus() & genMinus() when the result is the same as left or right
7818
7819 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7820
7821         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7822
7823 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7824
7825         Made bitfield a distinct type from bit so that bitfields
7826         convert as per ANSI C and bits retain their traditional
7827         boolean style behaviour. Implemented bitfield support in
7828         the z80 port.
7829
7830         * src/SDCCsymt.h,
7831         * src/SDCCsymt.c,
7832         * src/SDCCast.c,
7833         * src/cdbFile.c,
7834         * src/mcs51/gen.c,
7835         * src/ds390/gen.c: bit v bitfield split
7836         * src/z80/gen.c: New support for bitfields
7837         * support/regression/tests/bitfields.c: reenabled z80,
7838         added more tests
7839
7840 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7841
7842         Rules 246.x, 247.x relate to bitfields, the others speed up
7843         access to xdata mapped I/O devices.
7844
7845         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7846
7847 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7848
7849         Cleaned up genPackBits and genUnpackBits and added two helper
7850         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7851         for literal assignments in genPackBits (thanks to Frieder for
7852         reminding me).
7853
7854         * src/mcs51/gen.c
7855         * src/ds390/gen.c
7856
7857 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7858
7859         Fixed bug #748310 (pointer to function type mishandled when the
7860         function name is omitted). Also fixed a SIGSEGV when a function
7861         attribute (reentrant, etc) is used on a non-function or on a
7862         function but misplaced before the parameter list.
7863
7864         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7865         bug #748310
7866         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7867         * support/Util/SDCCerr.h,
7868         * support/Util/SDCCerr.c: Added func attr misuse error msg
7869
7870 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7871
7872         Fixed bug #787649 by anonymous
7873         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7874         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7875
7876 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7877
7878         Fixed numerous bitfield problems.
7879
7880         * src/SDCC.y: More bitfield related error checking
7881         * src/SDCCsymt.h,
7882         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7883         * support/Util/SDCCerr.h,
7884         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7885         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7886         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7887         * support/regression/tests/bitfields.c: tests added
7888
7889 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7890
7891         Made the constant following the "interrupt" keyword optional. If
7892         omitted, the function will not automatically be given an entry
7893         in the interrupt vector table (similar to #pragma NOIV, but
7894         less syntacticly kludgy). The interrupt number is also now
7895         range checked. Also fixed a bug in the high order bit example
7896         in the manual.
7897
7898         * src/SDCC.y
7899         * src/SDCCmem.c
7900         * src/SDCCglue.c
7901         * src/SDCCsymt.h
7902         * support/Util/SDCCerr.c
7903         * support/Util/SDCCerr.h
7904         * doc/sdccman.lyx
7905
7906 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7907
7908         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7909         * src/SDCCicode.c (operandOperation): rewritten some ops
7910         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7911         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7912         other type
7913         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7914         be re-activated by defining REDUCE_LITERALS)
7915         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7916         unsigned, but are signed by default
7917         * src/SDCCval.c (constVal): rearranged
7918         * src/SDCCval.c (valMod): preliminary fix
7919         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7920         * support/regression/literalop.c: added, work in progress
7921
7922 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7923
7924         Generate warnings for useless declarations like "char data;"
7925         that don't do what new users expect.
7926
7927         * src/SDCC.y
7928         * support/Util/SDCCerr.h
7929         * support/Util/SDCCerr.c
7930
7931 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7932
7933         * src/SDCCval.c (valMult): fix overflow detection of negative int
7934
7935 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7936
7937         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7938
7939         Changes to support big endian targets:
7940
7941         * src/ports.h
7942         * src/SDCCglue.c
7943         * src/avr/main.c
7944         * src/ds390/main.c
7945         * src/izt/i186.c
7946         * src/mcs51/main.c
7947         * src/pic/main.c
7948         * src/pic16/main.c
7949         * src/xa51/main.c
7950         * src/z80/main.c
7951
7952 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7953
7954         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7955         * device/lib/time.c: fixed warning "integer overflow in expression"
7956
7957 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7958
7959         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7960         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7961         constants are unsigned; added recognition of "u" flag for unsigned
7962         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7963         * src/SDCCval.c (valDiv, valMod): fixed signdness
7964         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7965         signedness of modulo, left and right shift
7966         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7967         * support/Util/SDCCerr.h: added warning W_INT_OVL
7968         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7969         * src/SDCCast.c (ast_print): improved output of constants
7970
7971 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7972
7973         Fixed some warnings when building with MSVC:
7974
7975         * as\mcs51\asdata.c
7976         * as\z80\asdata.c
7977         * as\mcs51\asm.h
7978         * as\z80\asm.h
7979         * link\z80\aslink.h
7980         * link\z80\lkdata.c
7981         * link\z80\lkeval.c
7982         * link\z80\lkgb.c
7983         * link\z80\lkihx.c
7984         * link\z80\lks19.c
7985         * link\z80\lksym.c
7986         * support\cpp2\cpplib.c
7987         * src\ds390\gen.c
7988         * src\mcs51\gen.c
7989
7990 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7991
7992         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7993
7994 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7995
7996         * support\librarian\clean.mk: Do not remove Makefile.
7997         * support\librarian\Makefile: added.
7998
7999 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8000
8001         Added librarian to MSVC build:
8002         * all.dsp
8003         * sdcc.dsw
8004         * support\librarian\librarian.dsp
8005
8006         'configure' not needed for librarian, removed:
8007         * support\librarian\configure
8008         * support\librarian\configure.in
8009         * support\librarian\config_in.h
8010         * support\librarian\Makefile.in
8011
8012         Hopefully these ones built the librarian and the rest of sdcc properly:
8013         * Makefile
8014         * Makefile.common.in
8015
8016         Messed up 'configure', so revert to previous version:
8017         * configure
8018         * configure.in
8019
8020 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8021
8022         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8023         there, while the mantissa of a double is "only" 53 bits wide.
8024
8025 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8026
8027         Adding sdcclib to the build.  MSVC project coming soon.
8028         Files added/changed:
8029
8030         * support\librarian\clean.mk
8031         * support\librarian\configure
8032         * support\librarian\configure.in
8033         * support\librarian\config_in.h
8034         * support\librarian\Makefile.bcc
8035         * support\librarian\Makefile.in
8036         * support\librarian\sdcclib.c
8037         * Makefile.bcc
8038         * Makefile
8039         * Makefile.common.in
8040         * configure
8041         * configure.in
8042
8043 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8044
8045         Linker now complaints if linked modules have conflicting options, for
8046         example, one compiled using --model-large and another one compiled with
8047         --model-small.  The following files were modified:
8048
8049         * as\mcs51\asdata.c
8050         * as\mcs51\aslink.h
8051         * as\mcs51\asm.h
8052         * as\mcs51\asmain.c
8053         * as\mcs51\asout.c
8054         * as\mcs51\i51pst.c
8055         * as\mcs51\lkdata.c
8056         * as\mcs51\lklibr.c
8057         * as\mcs51\lkmain.c
8058         * as\z80\asdata.c
8059         * as\z80\asm.h
8060         * as\z80\asmain.c
8061         * as\z80\asout.c
8062         * as\z80\z80pst.c
8063         * link\z80\aslink.h
8064         * link\z80\lkdata.c
8065         * link\z80\lklibr.c
8066         * link\z80\lkmain.c
8067         * src\SDCCglue.c
8068
8069 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8070
8071         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8072         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8073
8074 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8075
8076         * src/z80/mappings.i: fix _mul[us][int,long] entries
8077
8078 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8079
8080         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8081
8082 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8083
8084         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8085         * support/regression/tests/bitopcse.c: added
8086         fixed warning:
8087         * src/avr/gen.c:
8088         * src/pic/gen.c:
8089         * src/pic16/gen.c:
8090         * src/z80/gen.c:
8091         * src/xa51/gen.c:
8092
8093 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8094
8095         added support for new library format to z80, gbz80 linkers:
8096         *link/z80/aslink.h
8097         *link/z80/lklex.c
8098         *link/z80/lklib.c
8099         *link/z80/lklist.c
8100
8101 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8102
8103         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8104         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8105
8106 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8107
8108         added DUMMY_READ_VOLATILE:
8109         * src/SDCC.y:
8110         * src/avr/gen.c:
8111         * src/xa51/gen.c:
8112         * src/z80/gen.c:
8113         * src/pic/gen.c:
8114         * src/pic16/gen.c:
8115         * src/mcs51/gen.c:
8116         * src/ds390/gen.c:
8117         * src/SDCCcse.c (algebraicOpts): many improvements
8118         * src/SDCCcse.h: removed algebraicOpts()
8119         * src/SDCCicode.c (picDummyRead): added
8120
8121 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8122
8123         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8124         "Insufficient space in data memory".
8125
8126 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8127
8128         * src/mcs51/gen.c: fixed bug #771358
8129         * src/z80/gen.c: fixed bug #759087
8130
8131 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8132
8133         * src/pic16/glue.c: minor cleanup by Vangelis
8134
8135 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8136
8137         * device/include/regc515c.h: fixed #758477
8138         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8139         * device/lib/_gptrput.c: saved a few bytes
8140         * my tab spacing is 8, yours too?)
8141         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8142         * device/lib/serial.c: process RX bytes earlier than TX bytes
8143         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8144
8145 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8146
8147         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8148
8149 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8150
8151     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8152
8153 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8154
8155         * device/lib/Makefile.in: bad fix, reverted to 1.43
8156
8157 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8158
8159         * device/lib/Makefile.in: added missing z80 object files
8160
8161 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8162
8163         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8164         pic16 progress by Vangelis:
8165         * src/SDCCglobl.h:
8166         * src/SDCCmain.c:
8167         * src/pic/Makefile:
8168         * src/pic:
8169         * pic/Makefile:
8170         * pic16/device.c:
8171         * pic16/device.h:
8172         * pic16/gen.c:
8173         * pic16/gen.h:
8174         * pic16/genarith.c:
8175         * pic16/glue.c:
8176         * pic16/main.c:
8177         * pic16/pcode.c:
8178         * pic16/pcode.h:
8179         * pic16/pcodepeep.c:
8180         * pic16/peeph.def:
8181
8182 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8183
8184     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8185
8186 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8187
8188     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8189     added gbz80 build to MSVC project.
8190     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8191     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8192     from 8051 stuff and setup so it links using a .lnk file.
8193
8194 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8195
8196     * support/librarian/sdcclib.c: sdcc librarian.
8197     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8198     with sdcclib.
8199
8200 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8201
8202     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8203
8204 2003-07-02  Borut Razem <borut.razem AT siol.net>
8205
8206         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8207         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8208         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8209         src/xa51/main.c, src/z80/main.c:
8210         virtualization of glue() function: each port has it's own glue function,
8211         which is accessed by do_glue function pointer in PORT.general structure
8212
8213 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8214
8215         * DS800C400 fun, improved ROM interface and tinibios.
8216
8217 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8218
8219         * More support for DS80C400. Now includes beginning of interface to ROM.
8220
8221 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8222
8223         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8224
8225 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8226
8227         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8228
8229 2003-06-19  Borut Razem <borut.razem AT siol.net>
8230
8231         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8232
8233 2003-06-19  Borut Razem <borut.razem AT siol.net>
8234
8235         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8236         fixed Z80 port - crt0.o: cannot open.
8237
8238 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8239
8240         * support/Util/MySystem.c (merge_command): revert bad fix
8241
8242 2003-06-18  Borut Razem <borut.razem AT siol.net>
8243
8244         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8245
8246 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8247
8248         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8249         option --use-stdout sends errors to stdout instead of stderr.
8250
8251 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8252
8253         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8254
8255 2003-06-15  Borut Razem <borut.razem AT siol.net>
8256
8257         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8258         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8259         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8260         fixed width array of pointers replaced with sets;
8261         multiple include and lib paths ared transferred to preprocessor and linker
8262         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8263         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8264         fixed width array of pointers
8265         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8266         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8267         fixupPath(), getPathDifference()
8268         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8269         fixed width array of pointers
8270
8271 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8272
8273         * src/pic16/ralloc.c: fix warnings
8274         * src/pic16/pcode.c: fix warning
8275
8276 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8277
8278          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8279         know all the details, but essentially this set of changes enable
8280         the pic16 port to generate movff instructions and generate assembler
8281         directives,
8282         * src/SDCCmain.c:
8283         * src/pic16/gen.c:
8284         * src/pic16/glue.c:
8285         * src/pic16/pcode.c:
8286         * src/pic16/device.c:
8287         * src/pic16/main.c:
8288         * src/pic16/pcode.h:
8289         * src/pic16/pcoderegs.c:
8290         * src/pic16/ralloc.c:
8291         * src/pic16/ralloc.h:
8292
8293 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8294
8295         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8296         added option --vc, so sdcc errors and warnings are compatible with
8297         Microsoft Visual Studio.
8298
8299 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8300
8301         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8302           device/lib/libfloat.lib: added atof function.
8303
8304 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8305
8306         * doc/sdccman.lyx: updated to Lyx 1.3
8307         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8308         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8309         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8310
8311 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8312
8313         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8314
8315 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8316
8317         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8318           additions to the "related tools/documentation" section
8319
8320 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8321
8322         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8323
8324 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8325
8326         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8327         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8328
8329 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8330
8331         * doc/sdccman.lyx: fix double dash and other minor things
8332         * doc/Makefile: fix double dash
8333
8334 2003-05-28  Karl Bongers(patches from Martin Helmling)
8335         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8336           condition and ignore commands.
8337
8338 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8339
8340         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8341           is in parts still quite out of date, I did changes as far as I felt makes sense
8342           for a non-native english speaker.
8343           Please feel free to add to the manual or to correct my changes.
8344         * doc/Makefile: undid touching the date of intermediate tex files.
8345
8346 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8347
8348         * doc/sdccman.lyx: Manual has an index now
8349
8350 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8351
8352         Finalize muluint/mulsint and mululong/mulslong merging:
8353         * device/lib/_mulint.c
8354         * device/lib/_mullong.c
8355         * device/lib/gbz80/mul.s
8356         * device/lib/gbz80/stubs.s
8357         * device/lib/z80/mul.s
8358         * device/lib/z80/stubs.s
8359         * src/SDCCsymt.c (initCSupport)
8360
8361 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8362
8363         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8364         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8365           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8366           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8367           instead of /Zm500.
8368
8369 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8370
8371         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8372           the regression tests I'm not brave enough to enable 245.b, 245.c
8373         * doc/sdccman.lyx: added latex preamble for hyperref package.
8374           Using pdflatex this will give you a hyperlinked pdf file with
8375           bookmarks. (prepend '%' before /usepackage if this breaks something)
8376
8377 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8378
8379          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8380
8381 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8382
8383         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8384
8385 2003-05-21    <johan AT balder>
8386
8387         * src/SDCCglue.c (printIval): fixed bug #739934
8388
8389 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8390
8391         Applied patch from bug 737905 (renamed yylineo to mylineno):
8392         * src/altlex.c
8393         * src/SDCCast.c
8394         * src/SDCglobl.h
8395         * src/SDCC.lex
8396         * src/SDCCsymt.c
8397         * src/SDCCval.c
8398         * src/pic16/pcode.c: Cleaned warnings
8399         * src/pic16/pcodeflow.c: Cleaned warnings
8400         * src/pic16/pcoderegs.c: Cleaned warnings
8401
8402 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8403
8404         * src/pic16/pcode.c: Cleaned warnings
8405         * src/pic16/pcodepeep.c: Cleaned warnings
8406         * src/pic16/ralloc.c: Cleaned warnings
8407
8408 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8409
8410         * doc/sdccman.lyx: fixed bug 739745
8411         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8412
8413 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8414
8415         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8416         it can be defined with CFLAGS when running configure
8417         * src/SDCCmain.c: fixed compiling + linking with object files
8418
8419 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8420
8421         * configure.in: configure for pic16 port,
8422             added --disable-pic16-port
8423         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8424         * src/SDCCmain.c: linkOptions is changed to set *,
8425             added if/endif conditional macros to remove options help
8426             messages from optionsTable when a port is not configured, added
8427             support for the PIc16 port in the ports table, when executing
8428             the compiler with no port specified on command line, a default
8429             port is selected with the new macro DEFAULT_PORT which is
8430             defined in port.h, in setDefaultOptions() linkOptions is removed
8431             from initialization assignment, since now it is a set,
8432             parseCmdLine uses setParseWithComma for linkOptions, in
8433             linkEdit() linkOptions are accessed with new function indexSet()
8434             which returns the i'th item of a set variable. See SDCCset.c, in
8435             linkEdit() when calling buildCmdLine(), added linkOptions as
8436             last argument. Now users can pass arguments to gplink via the
8437             -Wl option, main() uses pic16glue() to glue up pic16 programs
8438         * src/SDCCpeeph.c: various changes to support pic16
8439         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8440             return the i'th item of the set
8441         * src/SDCCset.h: added function prototype for indexSet()
8442         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8443         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8444         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8445             added macro DEFAULT_PORT
8446         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8447         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8448             generated
8449         * src/pic16/glue.c: commented out some error producing lines
8450         * src/pic16/main.c: __config directives are commented out to stop
8451             gpasm complaining and test the linkage with gplink, _linkCmd and
8452             _asmCmd changed to be more gplink and gpasm friendly
8453         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8454             produced an error when parsed, peep rule 12 is added to utilize
8455             movff, but it is commented out since the pCode does not support
8456             yet a command with 2 address arguments
8457
8458 2003-05-18    <johan AT balder>
8459
8460         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8461         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8462 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8463
8464         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8465   Added feature to script commands from file.
8466
8467 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8468
8469         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8470         * src/SDCCutil.c: include ctype.h for win32
8471
8472 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8473
8474         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8475
8476 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8477
8478         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8479   Fixed so you can set breakpoints prior to run, run does not stop
8480   on entry now.  Add tbreak.  Other enhancements and fixes for use
8481   with ddd.
8482
8483 2003-05-12  Borut Razem <borut.razem AT siol.net>
8484
8485         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8486
8487 2003-05-11  Borut Razem <borut.razem AT siol.net>
8488
8489         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8490         the path of bin directory, so that PATH is the only env. variable, which has to be set
8491         in case of standard installation.
8492         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8493         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8494         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8495
8496 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8497
8498         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8499         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8500         temp files are in the port dir; clean the gen/test directory when
8501         generating new test.c
8502         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8503         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8504         * support/regression/tests/zeropad.c: added
8505
8506 2003-05-09    <johan AT balder>
8507
8508         * src/SDCCglue.c: fixed bug #597940
8509
8510 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8511
8512         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8513   cache sfr, optimize next,step, fix off by one sourceline,
8514   support ddd list function.
8515         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8516
8517 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8518
8519         * support/regression/HTMLgen.py: added compare_s2f()
8520         * support/regression/Makefile: redo 1.27
8521         * support/regression/generate-cases.py: redo 1.5
8522
8523 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8524
8525         * support/regression/tests/float.c: workaround 33 bit hex constant
8526         * support/regression/tests/simplefloat.c: fix division for host
8527
8528 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8529
8530         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8531         that tame's the PIC's over-aggressive optimizer.
8532
8533 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8534
8535          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8536          support for MSVC.
8537
8538 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8539
8540         Initial support for DS80C400. "Hello world" runs on TINIm400
8541         (with polled I/O).
8542
8543 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8544
8545          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8546          * Some notes on ddd usage added in debugger/README
8547          Martin Helmling adding more features and fixes for ddd GUI debugger.
8548          Code added for nexti, stepi, up, down, and other adjustments.
8549
8550 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8551
8552         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8553         * src/pic/peeph.def Added two rules to optimize carry manipulation
8554         * src/pic/* removed debug printfs
8555
8556 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8557
8558         * debugger/mcs51/cmd.c: added header newalloc.h
8559
8560 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8561
8562         * as/Makefile: new EXEEXT
8563         * as/z80/Makefile: remove trailing slash of BUILDIR
8564         * as/z80/clean.mk: new EXEEXT
8565         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8566         * support/cpp2/Makefile.in: new EXEEXT
8567         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8568
8569 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8570
8571         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8572         EXEEXT was introduced to fix all related problems with targets
8573         "clean", "install" and "uninstall"; a couple of further flaws
8574         especially with "clean" have been fixed too
8575         * as/mcs51/Makefile.in
8576         * as/mcs51/clean.mk
8577         * as/z80/Makefile
8578         * Makefile
8579         * clean.mk
8580         * debugger/mcs51/Makefile.in
8581         * debugger/mcs51/clean.mk
8582         * link/z80/Makefile
8583         * link/z80/Makefile.in
8584         * link/z80/clean.mk
8585         * link/Makefile
8586         * packihx/Makefile.in
8587         * packihx/clean.mk
8588         * sim/ucsim/Makefile
8589         * sim/ucsim/clean.mk
8590         * sim/ucsim/avr.src/Makefile.in
8591         * sim/ucsim/avr.src/clean.mk
8592         * sim/ucsim/s51.src/Makefile.in
8593         * sim/ucsim/s51.src/clean.mk
8594         * sim/ucsim/xa.src/Makefile.in
8595         * sim/ucsim/xa.src/clean.mk
8596         * sim/ucsim/z80.src/Makefile.in
8597         * sim/ucsim/z80.src/clean.mk
8598         * sim/ucsim/main_in.mk
8599         * sim/ucsim/packages_in.mk
8600         * sim/ucsim/gui.src/Makefile.in
8601         * sim/ucsim/gui.src/serio.src/Makefile.in
8602         * sim/ucsim/gui.src/serio.src/clean.mk
8603         * src/Makefile.in
8604         * src/clean.mk
8605         * support/cpp2/Makefile.in
8606         * support/cpp2/clean.mk
8607         * support/makebin/Makefile
8608         * support/makebin/clean.mk
8609         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8610         * doc/sdccman.lyx: --program-suffix no longer needed
8611
8612 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8613
8614          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8615          Martin Helmling added support for ddd GUI debugger.
8616          Code added to display assembly, set variables, and other commands
8617          to interface to ddd.
8618
8619 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8620
8621         * as/Makefile: fix target clean
8622         * as/clean.mk: fix target clean
8623         * as/z80/clean.mk: fix target clean
8624
8625 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8626
8627         * Makefile.common.in: added  AT EXEEXT AT
8628         * configure.in: removed all mingw32 stuff
8629         * configure: rebuilt from configure.in
8630         * doc/sdccman.lyx: updated section "installation"
8631         * support/scripts/sdcc_mingw32: adapted to configure
8632         * support/scripts/sdcc_cygwin_mingw32: added
8633
8634 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8635
8636         * src/pic Added object file support for the PIC port
8637         * src/pic Applied patch from Craig Franklin (this started the object file support)
8638         * src/regression Updated the PIC regression tests for object files
8639
8640 2003-04-20  Borut Razem <borut.razem AT siol.net>
8641
8642         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8643           lklex.c: In function `getfid':
8644           lklex.c:203: warning: array subscript has type `char'
8645         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8646           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8647         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8648           stack handling macros
8649
8650 2003-04-19  Borut Razem <borut.razem AT siol.net>
8651
8652         * "handling space characters in file path" task:
8653         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8654         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8655         * support/Util/MySystem.h: make it self-sufficient
8656         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8657           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8658           handling space characters in file path
8659         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8660           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8661         * support/Util/MySystem.c: handling space characters in executable's path
8662
8663 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8664
8665         * as/z80/Makefile: fix permanent rebuild of z80
8666         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8667         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8668
8669 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8670
8671         * src/SDCCopt.c: add special case optimization to replace modulo by
8672           a power of two with a bitwise AND.
8673
8674 2003-04-18    <johan AT balder>
8675
8676         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8677
8678 2003-04-17    <johan AT balder>
8679
8680         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8681         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8682
8683 2003-04-13  Borut Razem <borut.razem AT siol.net>
8684
8685         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8686         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8687           fixed mingw problem in adl_NORMALIZE_PATH
8688
8689 2003-04-12  Borut Razem <borut.razem AT siol.net>
8690
8691         * fixed "#pragma SAVE/RESTORE can not be nested":
8692         * src/SDCC.lex: reworked pragma handling functions
8693         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8694         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8695
8696 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8697
8698         * src/SDCCutil.c (pathEquivalent): defined but not used
8699         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8700         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8701         * configure: rebuilt from configure.in
8702         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8703         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8704         * device/include/Makefile.in: replace sdcc_datadir
8705         * device/lib/Makefile.in: replace sdcc_datadir
8706         * Makefile.common.in: add LDFLAGS from configure
8707         * packihx/Makefile.in: use LDFLAGS
8708         * src/Makefile.in: use LDFLAGS
8709         * support/cpp2/Makefile.in: add LDFLAGS from configure
8710         * support/makebin/Makefile: use LDFLAGS
8711         * .version: bumped version number to 2.3.5
8712
8713 2003-04-12  Borut Razem <borut.razem AT siol.net>
8714
8715         * completed "different paths" task:
8716         * src/SDCCmacro.c: fixed bug in handling quotes
8717         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8718         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8719
8720 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8721
8722         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8723
8724 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8725
8726         * ds390/gen.c ds390/peeph.def: fix bug 706781
8727
8728 2003-04-11  Borut Razem <borut.razem AT siol.net>
8729
8730         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8731
8732 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8733
8734         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8735         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8736          set - this bit used to not be set...).
8737         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8738           bad code in PIC Port
8739         * src/regression/and2.c added to test bug 609268
8740         * src/regression/Makefile added and2.c to regression test
8741
8742
8743 2003-04-08    <johan AT CP255758-A>
8744
8745         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8746         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8747         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8748
8749 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8750
8751         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8752         fix bug #487815
8753         * support/cpp2/Makefile.in: fix bug #487815
8754         * configure: rebuilt from configure.in
8755         * Makefile.common.in: docdir changed, new path suffixes
8756         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8757         * sdcc_vc_in.h: reflect changes from sdccconf.h
8758         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8759         * src/SDCCutil.h: remove BINDIR hack
8760         * doc/sdccman.lyx: update new path hierarchy
8761
8762 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8763
8764         * src/SDCCpeeph.c: added okToRemoveSLOC test
8765
8766 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8767
8768         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8769
8770 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8771
8772         * src/SDCCpeeph.c: added labelIsReturnOnly test
8773         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8774
8775 2003-04-05    <johan AT balder>
8776
8777         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8778         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8779         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8780         * src/SDCCast.c: fixed a warning
8781         * src/SDCCast.h: fixed a warning
8782         * src/SDCCicode.c (operandFromAst): fixed a warning
8783
8784 2003-04-04    <johan AT balder>
8785
8786         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8787         * src/SDCCast.c (decorateType): fixed bug #715076
8788         * src/SDCC.y: fixed bug #702907
8789
8790 2003-04-03    <johan AT balder>
8791
8792         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8793         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8794         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8795         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8796         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8797
8798 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8799
8800         * _decdptr.c: fix return values
8801         * _gptrget.c: fix return values
8802         * _gptrgetc.c: fix return values
8803         * _gptrput.c: fix return values
8804         * _mulint.c: fix return values
8805         * as/z80/Makefile: fix 'make -j' problem
8806
8807 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8808
8809         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8810         * configure.in: big cleanup, updated to autoconf 2.5x
8811         * configure: rebuilt from configure.in
8812         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8813         * sdcc_vc_in.h: reflect changes from sdccconf.h
8814         * doc/Makefile: fixed a flaw in "make install"
8815
8816 2003-04-02    <johan AT balder>
8817
8818         * src/ds390/gen.c (genCmp): no comments
8819         * src/mcs51/gen.c (genCmp): no comments
8820         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8821         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8822
8823 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8824
8825         * support/regression/generate-cases.py: place generated file in given sub directory
8826         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8827         * support/regression/Makefile: improvements for 'make -j';
8828         side effect: it's simpler and faster now
8829
8830 2003-03-31  Borut Razem <borut.razem AT siol.net>
8831
8832         * src/z80/main.c: link-{port} and as-{port} defined without path
8833         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8834
8835 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8836
8837         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8838
8839 2003-03-30  Borut Razem <borut.razem AT siol.net>
8840
8841         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8842           changed type of list parameter to set
8843         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8844         * src/port.h: changed type of do_assemble() parameter to set
8845         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8846           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8847           definition of "cppoutfilename" macro with NULL value in preProcess()
8848         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8849         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8850         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8851           replaced with set *binPathSet
8852         * shash_add() deallocates the item, if allready exsists, before adding the new one
8853         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8854
8855 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8856
8857         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8858           a nested for loop bug in the PIC port
8859         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8860           for loops
8861
8862 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8863
8864         * support/Util/dbuf.h: remove C++ stuff to make it portable
8865
8866 2003-03-28  Borut Razem <borut.razem AT siol.net>
8867
8868         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8869           literal strings in stringLiteral()
8870         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8871         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8872           to the project
8873
8874 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8875
8876         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8877
8878 2003-03-26    <johan AT balder>
8879
8880         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8881         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8882         * src/SDCCast.c (decorateType): fixed " -v < 3"
8883
8884 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8885
8886         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8887         Added Lenny Story's debug infrastructure changes:
8888         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8889         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8890         * src/cdbFile.c: added
8891         * src/SDCCdebug.c: added
8892         * src/SDCCdebug.h: added
8893         * src/SDCCast.c (createFunction)
8894         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8895         * src/SDCCmain.c (parseCmdLine, main)
8896         * src/SDCCmem.c (redoStackOffsets)
8897         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8898         * src/SDCCsymt.h
8899         * src/common.h
8900         * src/avr/gen.c (genAVRCode)
8901         * src/ds390/gen.c (gen390Code)
8902         * src/mcs51/gen.c (gen51Code)
8903         * src/pic/gen.c (genpic14Code)
8904         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8905         * src/xa51/gen.c (genXA51Code)
8906         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8907
8908 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8909
8910         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8911         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8912
8913 2003-03-22    <johan AT balder>
8914
8915         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8916
8917 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8918
8919         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8920         * doc/cdbfileformat.lyx: added, written by Lenny Story
8921         * doc/Makefile: added cdbfileformat.lyx
8922         * doc/clean.mk: added cdbfileformat.lyx
8923
8924 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8925
8926         * src/mcs51/peeph.def: fix bug #705773
8927
8928 2003-03-20    <johan AT balder>
8929
8930         An sfr/sbit can have an "at #" AND an initializer
8931         * src/SDCCsymt.c (checkSClass):
8932         * src/SDCCmem.c (allocGlobal):
8933         * src/SDCCmem.c (allocLocal):
8934         * src/SDCCast.c (createBlock):
8935
8936 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8937
8938         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8939
8940 2003-03-16    <johan AT balder>
8941
8942         Undid the hackup of const and volatile, the problem is much bigger
8943         * src/SDCC.y:1.65
8944         * src/SDCCast.c:1.171
8945         * src/SDCCglue.c:1.138
8946         * src/SDCCicode.c:1.146
8947         * src/SDCCsymt.c:1.150
8948         * src/SDCCval.c:1.65
8949
8950 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8951
8952         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8953         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8954
8955 2003-03-13    <johan AT balder>
8956
8957         Hackup const and volatile modifiers in type chains a bit:
8958         * src/SDCC.y:1.63
8959         * src/SDCCast.c:1.169
8960         * src/SDCCglue.c:1.136
8961         * src/SDCCicode.c:1.143
8962         * src/SDCCsymt.c1.146
8963         * src/SDCCsymt.h1.59
8964         * src/SDCCval.c:1.63
8965
8966 2003-03-12    <johan AT balder>
8967
8968         * src/SDCCBBlock.h: more LRH debugging junk
8969         * src/SDCCcflow.h: more LRH debugging junk
8970         * src/SDCCloop.c: more LRH debugging junk
8971         * src/SDCC.y (struct_declaration): fixed bug #697590
8972         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8973         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8974         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8975
8976 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8977         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8978         test function names must now match exactly).
8979         * src/SDCCcse.c: added special case in findCheaperOp to allow
8980         extending a short integer. Makes less awful code for bug 700121 test case.
8981
8982 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8983
8984         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8985         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8986
8987 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8988
8989         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8990         actually called (operandsNotEqual() was called for all
8991         operandsNotEqualX tests).
8992
8993 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8994
8995         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8996         with shorter literals. Fixes bug 700121.
8997
8998 2003-03-11    <johan AT balder>
8999
9000         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9001
9002 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9003
9004         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9005         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9006
9007 2003-03-10  Borut Razem <borut.razem AT siol.net>
9008
9009         * src/SDCCmain.c: pipe preprocessor's output
9010         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9011         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9012         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9013         which closes all pipes in pipeSet set
9014         * src/SDCCset.c: free deleted item in function deleteSetItem()
9015         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9016         moved from z80 to src subproject
9017         * .version: increased version number to 2.3.4
9018
9019 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9020
9021         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9022         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9023         * support/regression/ports/xa51/spec.mk: fix typo
9024
9025 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9026
9027         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9028
9029 2003-03-09  Borut Razem <borut.razem AT siol.net>
9030
9031         * src/SDCCmain.c: pipe preprocessor's output
9032         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9033         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9034         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9035         which closes all pipes in pipeSet set
9036         * src/SDCCset.c: free deleted item in function deleteSetItem()
9037         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9038         moved from z80 to src subproject
9039
9040 2003-03-09  Borut Razem <borut.razem AT siol.net>
9041
9042         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9043         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9044         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9045         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9046         * src/SDCCglobl.h: unification of WIN32 native definitions
9047
9048 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9049
9050         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9051
9052 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9053
9054         * src/configure.in:   check for endianess (even while cross-compiling)
9055         * src/configure:      check for endianess (even while cross-compiling)
9056         * src/configure_in.h: check for endianess (even while cross-compiling)
9057         * src/avr/gen.c:        remove old endianess stuff
9058         * src/mcs51/gen.c:      remove old endianess stuff
9059         * src/ds390/gen.c:      remove old endianess stuff
9060         * src/pic/gen.c:        remove old endianess stuff
9061         * src/pic/genarith.c:   remove old endianess stuff
9062         * src/pic/glue.c:       fix endianess check
9063         * src/pic16/gen.c:      remove old endianess stuff
9064         * src/pic16/genarith.c: remove old endianess stuff
9065         * src/pic16/glue.c:     fix endianess check
9066         * src/xa51/gen.c:       remove old endianess stuff
9067         * src/z80/gen.c:        fix endianess check
9068         * src/SDCCglue.c:       fix endianess check
9069         * src/ds390/peeph.def: fix bug 700036
9070
9071 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9072
9073         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9074         * src/configure: find appropriate data-types on host for SDCC's int and long
9075         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9076         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9077         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9078
9079 2003-03-07    <johan AT balder>
9080
9081         Just a big NOOP:
9082                 some minor cleanups before the big shot
9083                 OP_DEFS and OP_USES now use Kevin's protection
9084                 new option --nolabelopt
9085
9086         * src/SDCCBBlock.c:
9087         * src/SDCCast.c,:
9088         * src/SDCCcflow.c:
9089         * src/SDCCcse.c:
9090         * src/SDCCicode.c:
9091         * src/SDCCicode.h:
9092         * src/SDCClabel.c:
9093         * src/SDCCloop.c:
9094         * src/SDCCmain.c:
9095         * src/ds390/ralloc.c:
9096         * src/mcs51/ralloc.c:
9097         * src/pic/ralloc.c:
9098         * src/xa51/ralloc.c:
9099         * src/z80/ralloc.c:
9100
9101 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9102
9103         * src/pic/pcode.c (get_op): fix 64 bit warnings
9104         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9105         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9106         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9107         * support/regression/tests/malloc.c: fix 64 bit warnings
9108
9109 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9110
9111         * src/mcs51/gen.c (genMinus): fixed bug 696436
9112
9113 2003-03-02  Borut Razem <borut.razem AT siol.net>
9114
9115         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9116
9117 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9118
9119         * configure.in: test for mkstemp
9120         * sdccconf_in.h: add HAVE_MKSTEMP
9121
9122 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9123
9124         * device/include/ctype.h: removed warning while using --stack-auto
9125         * device/include/malloc.h: removed warning while using --stack-auto
9126         * device/include/string.h: removed warning while using --stack-auto
9127
9128 2003-02-23  Borut Razem <borut.razem AT siol.net>
9129
9130         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9131         because NDEBUG is defined (see man assert)
9132         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9133
9134 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9135
9136         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9137         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9138
9139 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9140
9141         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9142         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9143
9144 2003-02-18    <johan AT balder>
9145
9146         * as/mcs51/asmain.c (asmbl): module can start with a digit
9147         * as/z80/asmain.c (asmbl): module can start with a digit
9148
9149 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9150
9151         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9152         * src/asm.c: fix pipe() for Mingw32
9153
9154 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9155
9156         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9157         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9158         make -V work again; --c1mode reads now from stdin
9159         * doc/sdccman.lyx: added --c1mode
9160         * support/Util/SDCCerr.c: new messages for c1 mode
9161         * support/Util/SDCCerr.h: new messages for c1 mode
9162         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9163
9164 2003-02-15    <johan AT balder>
9165
9166         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9167
9168 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9169
9170         * doc/sdccman.lyx: Environment variables, -o and other minor things
9171
9172 2003-02-14    <johan AT balder>
9173
9174         * src/xa51/main.c: before anyone really tries to use it :)
9175
9176         * Install doc's in share/sdcc/doc
9177         * removed some obsolete files
9178         * Do a proper make distclean and uninstall
9179         M Makefile.common.in
9180         R sdccbuild.sh
9181         M as/Makefile
9182         M device/include/Makefile.in
9183         M device/lib/Makefile.in
9184         M doc/sdccman.lyx
9185         M link/Makefile
9186         M sim/ucsim/doc/Makefile.in
9187         M src/clean.mk
9188         R src/avr/peeph.rul
9189         R src/xa51/peeph.rul
9190         M support/cpp2/Makefile.in
9191         M support/makebin/Makefile
9192
9193
9194 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9195
9196         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9197
9198 2003-02-10  Borut Razem <borut.razem AT siol.net>
9199
9200         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9201         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9202         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9203         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9204         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9205         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9206         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9207         src/z80/Makefile.bcc: Borland Makefile cleanup
9208         * as/z80/Makefile.bcc: Added Borland Makefile
9209         * support/cpp2/borland.h: Removed
9210
9211 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9212
9213         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9214         * src/SDCC.lex: new pragma NOIV
9215         * src/SDCCglobl.h: new pragma NOIV
9216         * src/SDCCmem.c: new pragma NOIV
9217
9218 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9219
9220         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9221
9222 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9223
9224         * src/SDCCmain.c: signal handling is switched off by --debug
9225         * doc/Makefile: small fix for install; use clean.mk again
9226         * doc/clean.mk: clean *.pdf and *.html too
9227
9228 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9229
9230         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9231         * device/lib/printfl.c: fix a ds390 bug by making it portable
9232         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9233         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9234         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9235         * debugger/mcs51/cmd.c: converted multi-line string literals
9236         * sim/ucsim/globals.cc: converted multi-line string literals
9237         * src/SDCCmain.c: introduced signal handler to remove temp files
9238         * doc/Makefile: small tweaks, implement clean
9239         * doc: removed generated files
9240
9241 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9242
9243         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9244         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9245         Address Record is not correctly generated for DS390."
9246
9247 2003-02-02  Borut Razem <borut.razem AT siol.net>
9248
9249         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9250         * as/mcs51/asm.h: fixed compilation with Borland C
9251         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9252         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9253         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9254         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9255         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9256         src/z80/Makefile.bcc: delete $(LIB) only if exist
9257         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9258
9259 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9260
9261         * device/include/malloc.h: introduced NULL
9262         * device/include/string.h: introduced NULL
9263         * device/include/stdlib.h: introduced NULL
9264         * device/lib/_memcpy.c: removed NULL
9265         * device/lib/_strcat.c: removed NULL
9266         * device/lib/_strchr.c: removed NULL
9267         * device/lib/_strcmp.c: removed NULL
9268         * device/lib/_strcpy.c: removed NULL
9269         * device/lib/_strcspn.c: removed NULL
9270         * device/lib/_strlen.c: removed NULL
9271         * device/lib/_strncat.c: removed NULL
9272         * device/lib/_strncmp.c: removed NULL
9273         * device/lib/_strncpy.c: removed NULL
9274         * device/lib/_strpbrk.c: removed NULL
9275         * device/lib/_strrchr.c: removed NULL
9276         * device/lib/_strspn.c: removed NULL
9277         * device/lib/_strstr.c: removed NULL
9278         * device/lib/_strtok.c: removed NULL
9279         * device/lib/malloc.c: removed NULL, include own header
9280
9281 2003-02-02    <johan AT balder>
9282
9283         * 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
9284         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9285         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9286         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9287         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9288         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9289
9290 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9291
9292         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9293         area 'DATA'"
9294
9295 2003-02-01    <johan AT balder>
9296
9297         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9298
9299 2003-01-31    <johan AT CP255758-A>
9300
9301         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9302
9303 2003-01-30    <johan AT balder>
9304
9305         * src/SDCCBBlock.c: automatic bug detection
9306         * src/SDCCicode.c: automatic bug detection
9307
9308 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9309
9310         * src/SDCCglobl.h:   now --xram-size 0 works
9311         * src/SDCCmain.c:    now --xram-size 0 works
9312
9313 2003-01-29    <johan AT balder>
9314
9315         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9316
9317 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9318
9319         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9320         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9321         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9322         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9323         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9324         * src/SDCCmain.c:    Added options --xram-size and --code-size
9325
9326 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9327
9328         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9329         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9330
9331 2003-01-27    <johan AT balder>
9332
9333         * src/SDCC.y: fixed bug #613764
9334
9335 2003-01-26    <johan AT balder>
9336
9337         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9338         * src/SDCCsymt.h: fixed bug #673374
9339         * src/SDCCglue.c: fixed bug #661910
9340         * src/SDCCast.c: fixed bug #458099 and 673374
9341
9342 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9343
9344         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9345         * as/mcs51/strcmpi.h: added
9346         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9347         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9348         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9349         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9350         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9351         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9352         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9353         * as/mcs51/Makefile.aslink: new module strcmpi
9354         * as/mcs51/Makefile.asx8051: new module strcmpi
9355         * as/mcs51/Makefil.bcc: new module strcmpi
9356         * as/mcs51/Makefile.in: new module strcmpi
9357         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9358
9359 2003-01-26    <johan AT balder>
9360
9361         * src/SDCCglue.c: reverted back to 1.124
9362         * src/SDCCast.c: reverted back to 1.156
9363         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9364
9365 2003-01-25    <johan AT balder>
9366
9367         * src/SDCCglue.c: A better fix for bug #661910
9368         * src/SDCCast.c: A better fix for bug #661910
9369         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9370
9371 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9372
9373         * src/Makefile.in: remove spawn.o
9374         * src/SDCCmain.c: remove spawn.h
9375         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9376         * src/spawn.c: removed
9377         * src/spawn.h: removed
9378         * support/regression/ports/ds390/spec.mk: link with -r
9379
9380 2003-01-24    <johan AT CP255758-A>
9381
9382         * src/ds390/gen.c (aopOp): fixed bug #667458
9383         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9384         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9385         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9386
9387 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9388
9389         * src/mcs51/peeph.def: better assembler identation by Frieder
9390         * src/mcs51/gen.c: better assembler identation by Frieder
9391
9392 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9393
9394         * as/z80/string.h: removed for gcc 3.2
9395         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9396         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9397
9398 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9399
9400         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9401         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9402         * support/regression/Makefile: separate temp files for ports
9403         * support/regression/generate-cases.py: separate temp files for ports
9404         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9405         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9406
9407 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9408
9409         * moved tinitalk to device/examples/ds390
9410
9411 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9412
9413         * as/mcs51/lkmem.c: rflag is for DS390
9414         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9415         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9416                          (linkEdit): move mem- and map-files the same way as ihx-files
9417         * src/z80/main.c (_setDefaultOptions): removed --generic
9418         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9419         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9420         * src/pic/glue.c (picglue): --c1mode works again
9421         * src/pic16/glue.c (pic16glue): --c1mode works again
9422         * src/asm.c (printCLine): fix #660034
9423
9424 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9425
9426         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9427         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9428         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9429         * as/mcs51/lkmem (summary): better fix for sp problem
9430         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9431         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9432         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9433                                               remove --stack-after-data
9434
9435 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9436
9437         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9438         * src/SDCCutil.c (join): ugly bug: missing '\0'
9439         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9440
9441 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9442
9443         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9444         * src/port.h: typo
9445         * src/pic/main.c (_asmCmd): gpasm supports -o
9446         * src/z80/main.c: more general macros
9447         * device/lib/Makefile.in: remove intermediate files
9448
9449 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9450
9451         * .version: Bumped version number to 2.3.3
9452         * src/SDCCBBlock.c: new option -o
9453         * src/SDCCglobl.h: new option -o
9454         * src/SDCCglue.c: new option -o
9455         * src/SDCCmain.c: new option -o
9456         * src/asm.c: new option -o
9457         * src/ds390/main.c: new option -o
9458         * src/pic/glue.c: new option -o
9459         * src/pic/pcode.c: new option -o
9460         * src/pic/ralloc.c: new option -o
9461         * src/pic16/glue.c: new option -o
9462         * src/pic16/pcode.c: new option -o
9463         * src/pic16/ralloc.c: new option -o
9464         * src/z80/main.c: new option -o
9465         * device/lib/Makefile.in: use -o
9466         * support/regression/ports/ds390/spec.mk: use -o
9467         * support/regression/ports/gbz80/spec.mk: use -o
9468         * support/regression/ports/mcs51/spec.mk: use -o
9469         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9470         * support/regression/ports/z80/spec.mk: use -o
9471         * support/regression/ports/ucz80/spec.mk: use -o
9472         * support/regression/ports/xa51/spec.mk: use -o
9473         * support/regression/fwk/lib/timeout.c: fix usage string
9474
9475 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9476         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9477
9478 2003-01-07    <johan AT balder>
9479
9480         * src/SDCCast.c (decorateType): fixed bug #600035
9481
9482 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9483         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9484         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9485         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9486         * src/pic/pcode.c: outcommented unused variable to remove warnings
9487         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9488
9489 2003-01-06    <karl AT turbobit.com>
9490         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9491    regression tests.
9492
9493 2003-01-06    <johan AT balder>
9494
9495         * src/SDCCicode.c: fixed array add
9496
9497 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9498         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9499         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9500
9501 2003-01-04    <johan AT balder>
9502
9503         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9504
9505 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9506         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9507
9508 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9509         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9510         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9511
9512 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9513         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9514
9515 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9516         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9517
9518 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9519         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9520
9521 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9522
9523     * in \sdcc\as\mcs51\ changed these files in order to create an
9524     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9525     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9526     following files to include the previous two files: aslink.dsp,
9527     Makefile.aslink, Makefile.bcc, and Makefile.in.
9528
9529     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9530     .adb instead of .cdb
9531
9532 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9533
9534         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9535         value from option --iram-size.
9536
9537 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9538
9539         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9540         dram[] array.
9541
9542 2002-09-18    <wiml AT hhhh.org>
9543
9544         * SDCClrange.h: exposed setFromRange() and setToRange()
9545         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9546           packRegsForAccUse() (bug 542397)
9547         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9548           multiple times and emitting the fetch operations more than once
9549           added aopGetUsesAcc() function to allow binary operators to
9550           fetch their operands in the correct order; made genMinus() emit
9551           compact code for X = LITERAL - Y
9552
9553 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9554         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9555         sprintf() in line 1267.
9556
9557 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9558         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9559         like ports.
9560
9561 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9562         Changes to aslink (All the changes are marked with 'JCF'):
9563
9564         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9565         summary().
9566
9567         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9568         area BSEG.  Also moves, if possible, the DATA area down into the internal
9569         ram so more space is available.
9570
9571         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9572         sflag.
9573
9574         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9575         not bytes.  Function summary() which creates a memory usage summary
9576         file with extension .mem.  Reports of overlaping stack and small stack
9577         size.  If the space for the stack is less than 16 bytes aslink trows a
9578         warning.
9579
9580         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9581         the 8051.  Option 'y' for memory summary output file.
9582
9583         Changes to sdcc (All the changes are marked with 'JCF'):
9584
9585         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9586
9587         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9588         overlaying area for it (uses RegBankUsed[4]).
9589
9590         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9591         bank zero as used by default.  By default aslink locates the stack
9592         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9593         the creation of the .mem file.  Delegates the allocation of data area
9594         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9595         the begining of the stack area to aslink.
9596
9597         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9598         glue() in SDCCglue.c creates an area for it.
9599
9600 2002-09-03  Borut Razem <borut.razem AT siol.net>
9601         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9602         sdcc/src/pic/glue.c:
9603         introduced atexit() handler for teporay files removal in case of
9604         errors, assertions, ...
9605
9606 2002-08-29  Borut Razem <borut.razem AT siol.net>
9607         * sdcc/support/cpp2/auto-host_vc_in.h:
9608         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9609         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9610         Maybe there is a similar problem with BORLANDC? It should be checked!
9611
9612         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9613         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9614         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9615         was not executed, and the compiler (cl) launched a warning:
9616         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9617
9618 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9619         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9620
9621 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9622         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9623
9624         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9625           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9626           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9627           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9628           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9629           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9630           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9631         - added Release configuration in VS projects
9632         - review of compiler an linker options
9633         - VC .exe files are generated in bin_vc directory, not to interfere
9634           with binaries generated from other projects (cygwin, mingw, bcc ...)
9635
9636         * sdcc/src/yacc.dsp: added
9637
9638         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9639         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9640         and insert the version number definitions from .version
9641
9642         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9643
9644         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9645         added - genarate auto-host.h using auto-host_vc_in.h as template
9646
9647         * sdcc/sdcc_vc.h,
9648         removed from CVS, generated automatically
9649
9650 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9651         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9652
9653 2002-08-11  Borut Razem <borut.razem AT siol.net>
9654         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9655
9656 2002-08-10  Borut Razem <borut.razem AT siol.net>
9657         * src/SDCCmain.c (main):
9658         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9659         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9660         The consequence was that some temporary files were not removed.
9661
9662         * src/SDCCglue.c:
9663         unification of code in functions tempfilename() and tempfile():
9664         function tempnam() is defined in Visual Studio 6.0 and .NET
9665
9666         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9667
9668         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9669           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9670         - removed compiler command line option /WX: Treats all warnings as errors
9671         - update a list of source files, included into the project
9672
9673         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9674           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9675         changed project type to Generic Project so that can be correcly converted to VS.NET project
9676
9677         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9678
9679         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9680
9681         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9682
9683         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9684         added return 0 statements after assert() to make compiler happy
9685
9686         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9687         added newline in the def file to keep MSC compiler satisfied
9688
9689         * sdcc/src/z80/gen.c:
9690         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9691           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9692         - solved MSC error in function aopDump()
9693
9694         * sdcc_vc.h: define PREFIX as "\\sdcc"
9695
9696 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9697         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9698
9699 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9700         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9701         - Rewrote the register banking algorithm.
9702         - Added pCode live-range analysis to registers (for now, only non-used and
9703         singly-used registers optimized away)
9704
9705         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9706
9707         * 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.
9708
9709 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9710         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9711
9712 2002-04-22  Michael Hope  <michaelh AT vroom>
9713
9714         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9715
9716         * configure.in (DD_COPT): Added include support required for gbdk.
9717
9718         * .version: Bumped version number just to increase it.
9719
9720         * src/SDCCmain.c: Added -nostdinc to the default options.
9721
9722 2002-04-15  Michael Hope  <michaelh AT vroom>
9723
9724         * device/lib/z80/printf.c (sprintf): Added.
9725
9726         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9727
9728         * src/z80/peeph.def: Added transpose redundent load rule.
9729
9730         * src/z80/main.c: Added force callee saves for jaune.
9731
9732         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9733
9734         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9735
9736 2002-03-28  Johan Knol  <johan AT balder>
9737
9738         * src/SDCCval.c: fixed bug #532436
9739
9740 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9741         * /src/port.h:
9742         Added "char *Processor" field to the port structure.
9743
9744         * /src/SDCCmain.c:
9745         Added -p option. Allows port dependent processor to be specified.
9746
9747         * all ports:
9748         Initialized the new field char *Processor field to NULL in all ports
9749
9750         * /src/pic/*:
9751         Compiler generated registers for interrupt context saving
9752         were not getting allocated.
9753
9754 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9755
9756         * /src/SDCCast.c:
9757         Fixed left shift. Will promote the left side of a left shift
9758         if a) left shifting more than size of operand or b) when assigned
9759         to something size > size of left side
9760
9761 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9762         * src/pic/*
9763         tons of changes. Register allocation has been
9764         rewritten. Added customization for the various PICs. Flow
9765         analysis is restructured. ...
9766
9767         * src/pic/device.h:
9768         Added
9769
9770         * src/pic/device.c:
9771         Added. device.c is a PIC port hack to accomodate variations
9772         in PIC devices.
9773
9774 2002-03-13  Michael Hope  <michaelh AT vroom>
9775
9776         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9777
9778 2002-03-04  johanknol  <johanknol AT manik>
9779
9780         * /src/SDCCval.c: fixed
9781
9782         const unsigned char arr[][2] = { { 0, 1 } };
9783         t18.c:1: error: Initializer element is not constant
9784
9785 2002-03-04  bela  <bela AT manik>
9786
9787         * /device/include/mcs51reg.h:
9788         ds89c420 register definition update
9789
9790 2002-03-03    <johan AT FRIJA>
9791
9792         * support/Util/SDCCerr.c: did something, but don't no why anymore
9793
9794         * support/regression/tests/bug-524691.c: made it a little less shy
9795
9796         * src/SDCCast.c (decorateType): fixed bug #524697
9797
9798         * src/SDCCast.c: made some lineno improvements
9799
9800         * src/SDCCval.c (getNelements): changed warning to error
9801
9802         * src/SDCCglue.c (printIvalArray): changed warning to error
9803
9804         * src/SDCCicode.c: fixed a warning for mingw
9805
9806         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9807
9808         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9809
9810 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9811
9812         * src/ds390/peeph.def:
9813         Added some more peephole rules
9814
9815         * src/ds390/gen.c: Various fixes & enhancements
9816
9817         * src/SDCClrange.c, src/SDCClrange.h:
9818         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9819
9820         * src/ds390/ralloc.c:
9821         various fixes & enhancements (ds390) specific
9822
9823         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9824         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9825         from rallocs.
9826
9827         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9828
9829 2002-03-02    <johan AT FRIJA>
9830
9831         * src/SDCCast.c (decorateType): fixed bug #524708
9832
9833         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9834
9835         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9836
9837 2002-03-01  Michael Hope  <michaelh AT vroom>
9838
9839         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9840
9841         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9842
9843 2002-03-01    <johan AT FRIJA>
9844
9845         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9846
9847         * src/SDCCast.c (decorateType): fixed bug #524209
9848
9849         * src/SDCCval.c (valNot): fixed bug #524195
9850
9851 2002-02-26    <johan AT balder>
9852
9853         * src/xa51/gen.c: fixed a warning
9854
9855         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9856
9857         * src/SDCCast.c (decorateType): fixed bug #522534
9858
9859 2002-02-23    <johan AT balder>
9860
9861         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9862
9863 2002-02-22    <johan AT balder>
9864
9865         * src/SDCCast.c: fixed bug #514865
9866
9867         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9868
9869 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9870
9871         * sdcc/src/SDCCloop.c:
9872         Previous fix was not good. basic blocks that have "break" or "return" are
9873         not really partof a loop , but live ranges used in these blocks should
9874         be live thru the entire loop, so set partOfLoop but don't add them to
9875         loop region
9876
9877 2002-02-21    <johan AT FRIJA>
9878
9879         * src/SDCCcse.c: fixed bug #514308
9880
9881 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9882
9883         * src/SDCCloop.c:
9884         Fixed BUG #519583. If a conditional block ended in a return/break
9885         statement inside a loop, it was not being considered part of the loop.
9886
9887         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9888
9889 2002-02-10  Karl Bongers <karl AT turbobit.com>
9890
9891         * debugger/*:
9892         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9893         with lots of comments and notes.
9894
9895         * device/examples/test2.c:
9896         Fix bug, "red" variable not being initialized(compiler complained).
9897
9898         * device/examples/Makefile, examples/test3.c:
9899         Add Makefile in device/examples folder, compiles test3.c
9900         for use as a multiple module SDCDB test case.
9901
9902         * sim/ucsim/cmd.src/cmdset.cc:
9903         Took out debug printfs in ucsim "next" command.
9904
9905         * sim/ucsim/xa.src:
9906         Karl and Johan start ucsim XA support.  Most dissassembly working,
9907         about 75% emulation done(plenty of work remaining).
9908
9909         * sim/ucsim/z80.src:
9910         Add Z80 support to ucsim, add test-ucz80 regression test,
9911         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9912         Notice z80 compiler fails on examples/test3.c/crc code.
9913
9914 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9915
9916         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9917         Added support for --parms-in-bank1
9918
9919         * src/ds390/peeph.def:
9920         added a few more peephole optimzations
9921
9922         * src/ds390/main.c:
9923         1) added __builtin_inp & __builtin_outp used to read in data of given length
9924            from a memory mapped port
9925         2) added __builtin_memcmp
9926         3) added __builtin_swapw swap bytes of a short
9927
9928         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9929         1) handle multiple send & receives from register bank1
9930         2) ralloc can now allocate DPTR1 to some liveRanges
9931
9932         * src/SDCCsymt.c, src/SDCCsymt.h:
9933         changes to handle multiple sends & receives
9934
9935         * src/SDCCptropt.h:
9936         added some pointer arithmetic optimization
9937
9938         * src/SDCCptropt.c:
9939         added some pointer arithmetic optimizations but not stable yet so not
9940         called from anywhere (will get this working shortly)
9941
9942         * src/SDCCopt.c: fixed for multiple sends & receives
9943
9944         * src/SDCCmain.c:
9945         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9946         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9947            set preprocessor defines (depending on options)
9948
9949         * src/SDCCicode.c, src/SDCCicode.h:
9950         changes made to handle multiple sends & receives
9951
9952         * src/SDCCglobl.h:
9953         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9954
9955         * src/SDCCcse.c, src/SDCCcse.h:
9956         added function findbackward def (to be used in upcoming optimization)
9957
9958         * src/SDCCcflow.c, src/SDCCcflow.h:
9959         added function returnAtEnd - to determine if a basic block terminates with
9960         a RETURN iCode
9961
9962         * src/SDCCast.c, src/SDCCast.h:
9963         added option parms-in-bank1
9964
9965         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9966         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9967         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9968         adjusted for --parms-in-bank1 option
9969
9970         * device/include/string.h:
9971         donot redefine "reentrant" keyword
9972
9973         * device/include/ds80c390.h: Added some more SFRs
9974
9975 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9976
9977         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9978
9979 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9980
9981         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9982
9983 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9984
9985         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9986
9987 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9988
9989         * Added --xram-movc option
9990
9991 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9992
9993         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9994
9995 2002-01-11  Johan Knol
9996
9997         * Added math lib of Jesus Calvino-Fraga
9998
9999 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10000
10001         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10002         * support/regression/Makefile: new target test-mcs51-stack-auto
10003         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10004
10005 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10006
10007         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10008
10009 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10010
10011         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10012
10013 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10014
10015         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10016
10017         * src/SDCCglue.h: add definition for printIvalChar()
10018
10019 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10020
10021         * src/SDCCast.c: fix #498138 by Johan
10022
10023         * src/SDCCglue.c: fix #498138 by Johan
10024
10025 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10026
10027         * support/regression/Makefile: fix clean
10028
10029         * support/regression/ports/ds390/support.c: fix transmission of last character
10030
10031 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10032
10033         * /sdcc/src/ds390/gen.c:
10034         a) improved computing address of stack variable
10035         b) took out some #if 0 code
10036         c) improved parmBytes adjustment
10037         d) improved genPlusIncr & genMinusIncr
10038         e) genCmp could generate bad code (when left assigned to DPTR)
10039         f) Fixed bug in hasInc
10040
10041         * /sdcc/src/ds390/ralloc.c:
10042         a) packRegsForSupport could mess up live information (Fixed)
10043         b) packRegsDPTRuse could be incorrect for left & right shift
10044
10045         * /sdcc/src/mcs51/ralloc.c:
10046         packRegsForSupport could mess up the live information (Fixed)
10047
10048         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10049
10050         * /sdcc/src/SDCCast.c:
10051         can reverse a loop even if function call is present as long
10052         as the loop control variable is local & is not passed as parameter
10053
10054 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10055
10056         * /sdcc/ChangeLog: *** empty log message ***
10057
10058         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10059         More builtin function additions for TININative
10060
10061         * /sdcc/src/ds390/ralloc.c:
10062         Had broken the regression testsuite
10063
10064         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10065
10066         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10067         Added funcattr hasStackParms will be set for reentrant functions when there
10068         are paramteres on the stack, this helps in minimizing frame pointer generation
10069         typeFromStr can handle function pointers now
10070
10071         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10072         *** empty log message ***
10073
10074 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10075
10076         * /src/ds390/gen.c, /src/ds390/main.c:
10077         More builtin function additions for TININative
10078
10079         * /src/ds390/ralloc.c:
10080         Had broken the regression testsuite
10081
10082         * /src/SDCCast.c: Fixed a bug in dumptree
10083
10084         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10085         Added funcattr hasStackParms will be set for reentrant functions when there
10086         are paramteres on the stack, this helps in minimizing frame pointer generation
10087         typeFromStr can handle function pointers now
10088
10089         * /doc/builtins.txt, /doc/TININative.txt:
10090         *** empty log message ***
10091
10092
10093 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10094
10095         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10096         ALPHA version for -mTININative
10097
10098         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10099         updated to reflect changes in the port structure
10100
10101         * /src/port.h:
10102         added function do_assemble (similar to do_link) if non-null this function
10103         will be called to do assembly (-mTININative) requires a multi command
10104         assembly
10105         added function genAssemblerEnd will be called to generate assembler Epilogue
10106
10107         * /src/SDCCsymt.c:
10108         added _JavaNative to debug info printing
10109
10110         * /src/SDCCmain.c: added option --tini-libid
10111         added port->do_assemble function (-mTININative) has a multi command assemble
10112
10113         * /src/SDCCglue.c: Disabled "constExpr" check
10114         added port->genAssemblerEnd function
10115
10116         * /src/SDCCglobl.h: Added option --tini-libid value
10117
10118         * /src/SDCCast.h:
10119         tookout optimizeCompare from the header (has no external references)
10120
10121         * /src/SDCCast.c: made one more function "static"
10122
10123 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10124
10125         * src/z80/mappings.i: Added z80asm support.
10126
10127         * src/z80/main.c: Added z80asm support on --asm=z80asm
10128
10129         * src/z80/gen.c: Fixed asm portability issues.
10130
10131         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10132
10133         * src/SDCCglue.c (printExterns): Added global/extern split.
10134
10135 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10136
10137         * support/regression/Makefile: added test for mcs51 model large
10138
10139         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10140
10141         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10142
10143 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10144
10145         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10146
10147 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10148
10149         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10150
10151         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10152
10153 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10154
10155         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10156
10157         * support/regression/tests/simplefloat.c: Port to mcs51.
10158
10159 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10160         * support/regression/tests/bug-485362.c: Added.
10161
10162         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10163
10164         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10165
10166         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10167
10168         * src/z80/gen.c (aopDump): Added a dump function.
10169
10170 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10171         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10172
10173         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10174
10175         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10176
10177         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10178
10179         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10180
10181         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10182
10183         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10184
10185         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10186
10187         * support/regression/ports/ds390/support.c: Use tinibios.
10188
10189         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10190
10191 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10192
10193         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10194         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10195
10196         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10197
10198         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10199
10200 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10201
10202         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10203
10204         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10205         (packRegsForIYUse): Created and optimised.
10206
10207 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10208
10209         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10210 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10211
10212         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10213
10214         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10215
10216         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10217
10218 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10219
10220         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10221
10222         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10223
10224 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10225
10226         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10227
10228         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10229
10230         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10231
10232 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10233
10234         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10235         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10236         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10237
10238         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10239
10240         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10241         (genNotFloat): Added.
10242         (genUminusFloat): Added.
10243
10244         * device/lib/z80/Makefile: Added floating pt stubs.
10245
10246         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10247
10248         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10249
10250         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10251
10252 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10253
10254         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10255
10256         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10257
10258         * sdcc/support/regression/Makefile: Add port ds390.
10259
10260         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10261
10262         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10263
10264         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10265
10266         * sdcc/support/regression/ports/ds390/support.c: Added.
10267
10268         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10269
10270         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10271
10272         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10273
10274 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10275
10276         * device/include/malloc.h: Added z80 and gbz80 support.
10277
10278         * device/lib/gbz80/heap.s: Added.
10279
10280         * device/lib/z80/heap.s: Added.
10281
10282         * device/lib/malloc.c: Added z80 and gbz80 support.
10283
10284         * support/regression/tests/malloc.c (testMalloc): Added.
10285
10286         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10287
10288         * support/regression/tests/bug-478094.c: Added.
10289
10290         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10291
10292 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10293
10294         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10295
10296         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10297
10298         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10299
10300         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10301
10302         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10303
10304 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10305
10306         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10307
10308 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10309
10310         * support/regression/tests/bug-477927.c: Added.
10311
10312         * src/z80/peeph.def: Added minor rules.
10313
10314         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10315
10316         * src/z80/peeph.def: Added jump optimisation modification.
10317
10318 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10319
10320         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10321
10322 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10323
10324         * support/regression/tests/funptrs.c: Added.
10325
10326 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10327
10328         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10329
10330 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10331
10332         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10333
10334         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10335
10336         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10337         (movLeft2ResultLong): Created.
10338
10339         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10340         (joinPushes): Added.  Joins two char pushes into a word push.
10341
10342 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10343
10344         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10345
10346         * support/makebin/Makefile (install): Added creation of dest dir.
10347
10348 2001-10-24 Karl Bongers <karl AT turbobit.com>
10349
10350         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10351
10352 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10353
10354         * src/z80/ralloc.c: Turned off faulty pack for one use.
10355
10356         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10357
10358         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10359
10360 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10361
10362         * support/regression/Makefile: Improved clean
10363
10364         * support/regression/ports/gbz80/spec.mk: Added clean
10365
10366         * support/regression/ports/host/spec.mk: Added clean
10367
10368         * support/regression/ports/z80/spec.mk: Added clean
10369
10370         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10371
10372         * support/regression/ports/mcs51/timeout.c: little improvements
10373
10374 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10375
10376         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10377
10378         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10379
10380         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10381
10382 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10383
10384         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10385
10386         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10387
10388 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10389         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10390
10391         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10392
10393         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10394
10395         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10396
10397         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10398
10399         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10400
10401         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10402
10403         * support/regression/tests/longor.c: Added.
10404
10405 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10406
10407         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10408
10409         * as/mcs51/aslink.h: define PATH_MAX
10410
10411         * as/mcs51/asm.h: define PATH_MAX
10412
10413         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10414
10415         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10416
10417         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10418
10419         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10420
10421         * src/SDCCglobl.h: define PATH_MAX
10422
10423         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10424
10425         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10426
10427 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10428
10429         * src/z80/gen.c (gencjneshort): Fixed
10430
10431         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10432
10433 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10434
10435         * support/regression/tests/bug-469671.c: Added.
10436
10437         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10438
10439 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10440
10441         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10442
10443         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10444
10445 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10446
10447         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10448
10449         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10450
10451         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10452
10453         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10454
10455         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10456
10457         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10458
10459         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10460
10461 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10462
10463         * 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.
10464
10465         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10466
10467         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10468
10469 2001-10-07    <johan AT FRIJA>
10470
10471         * device/lib/gets.c (gets): fixed the return value.
10472
10473 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10474         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10475
10476         * 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.
10477
10478         * 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.
10479
10480         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10481
10482         * src/pic/gen.c: Removed Safe_strdup.
10483
10484         * configure.in: Added option to enable libgc support.
10485
10486         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10487         (bitVectUnion): Optimised.
10488         (bitVectIntersect): Optimised.
10489         (bitVectBitsInCommon): Optimised.
10490         (bitVectCplAnd): Optimised.
10491
10492         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10493
10494 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10495
10496         * src/SDCCmain.c: distinguish between assembler debug and plain options
10497
10498         * src/avr/main.c:   remove standard assembler options
10499
10500         * src/ds390/main.c: remove standard assembler options
10501
10502         * src/mcs51/main.c: remove standard assembler options
10503
10504         * src/port.h: removed "PENDING" comment
10505
10506 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10507
10508         * src/device/lib/_mulint.c  : new, with assember functions
10509
10510         * src/device/lib/_mullong.c : new, with assember functions
10511
10512         * src/device/lib/_divuint.c : with assember functions
10513
10514         * src/device/lib/_divsint.c : with assember functions
10515
10516         * src/device/lib/_divulong.c: with assember functions
10517
10518         * src/device/lib/_divslong.c: with assember functions
10519
10520         * src/device/lib/_moduint.c : with assember functions
10521
10522         * src/device/lib/_modsint.c : with assember functions
10523
10524         * src/device/lib/_modulong.c: with assember functions
10525
10526         * src/device/lib/_modslong.c: with assember functions
10527
10528         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10529
10530         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10531
10532         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10533                                       replaced _mululong.c and _mulslong.c by _mullong.c
10534
10535 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10536
10537         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10538
10539 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10540
10541         * src/SDCCglue.c: test, if win32api is available for MINGW
10542
10543 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10544
10545         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10546         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10547         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10548         * support/regression/ports/host/spec.mk: removed GENERIC
10549         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10550         * support/regression/ports/z80/spec.mk: removed GENERIC
10551
10552 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10553
10554         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10555
10556         * support/regression/tests/bug-467035.c: Created.
10557
10558 2001-10-01    <johan AT FRIJA>
10559
10560         * src/SDCC.y: fixed bug #466586 part 1
10561
10562 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10563
10564         * SDCCicode.c: z80 has no generic pointers
10565         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10566
10567 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10568
10569         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10570
10571 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10572
10573         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10574
10575         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10576
10577 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10578
10579         * configure.in: Fixed up so that ucsim is only configured once.
10580
10581         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10582
10583         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10584         (getPathDifference): As above.
10585
10586         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10587
10588         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10589
10590 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10591         * .version: Updated to 2.3.1
10592
10593         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10594         Added copyright header.
10595
10596         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10597         (assemble): Added support for macro based assembler commands.
10598         (linkEdit): Added support for macro based linker commands.
10599         (preProcess): Changed the pre-processor to use macros.
10600         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10601         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10602
10603         * device/lib/z80/crt0.s: Added module name for debugging.
10604
10605 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10606
10607         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10608
10609         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10610
10611         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10612
10613         * src/Makefile.in: Added SDCCmacro and SDCCutil
10614
10615 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10616
10617         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10618
10619 2001-09-16    <johan AT FRIJA>
10620
10621         * 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.
10622
10623 2001-09-15    <johan AT FRIJA>
10624
10625         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10626         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10627
10628 2001-09-11    <johan AT FRIJA>
10629
10630         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10631
10632 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10633
10634         * support/regression/tests/bug-460444.c: Added test case.
10635
10636         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10637         (genCast): Added justification for all of the asserts.
10638
10639 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10640
10641         * support/regression/support.c: _xdata replaced by xdata
10642
10643         * support/regression/spec.mk: removed _generic
10644
10645 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10646
10647         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10648
10649         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10650         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10651
10652         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10653
10654         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10655
10656         * support/regression/tests/bug-460010.c: Added test case.
10657
10658         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10659
10660 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10661
10662         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10663
10664         * support/regression/testfwk.c: removed workaround for bug #436344
10665
10666         * support/regression/tests/bp.c: use less memory with mcs51
10667
10668         * support/regression/tests/bug-441448.c: use less memory
10669
10670         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10671
10672         * support/regression/collate-results.py: typo
10673
10674 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10675
10676         * support/regression/tests/fetchoverlap.c: Added new test case.
10677
10678         * support/regression/tests/bp.c: Added new test case.
10679
10680         * support/regression/tests/bug-448984.c: Added new test case.
10681
10682         * support/regression/tests/pow2shifts.c: Added new test case.
10683
10684         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10685         (genlshTwo): Fixed right shift for count > 8.
10686
10687         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10688
10689 2001-09-08    <johan AT FRIJA>
10690
10691         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10692
10693 2001-09-07    <johan AT FRIJA>
10694
10695         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10696
10697         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10698
10699 2001-09-06    <johan AT FRIJA>
10700
10701         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10702         * bernhard noted me at this: "() equals to (void)" (1.38)
10703
10704 2001-09-05    <johan AT FRIJA>
10705
10706         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10707
10708 2001-09-04    <johan AT FRIJA>
10709
10710         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10711
10712
10713 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10714
10715         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10716
10717 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10718
10719         * link/z80/aslink.h: Fixed path for PATH_MAX
10720
10721 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10722
10723         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10724
10725         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10726
10727         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10728
10729         * 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.
10730
10731 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10732
10733         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10734         (genCmp): Fixed up genCmp for the GB with longs.
10735
10736         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10737
10738         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10739
10740         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10741
10742         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10743
10744 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10745
10746         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10747
10748 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10749
10750         * 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.
10751
10752         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10753
10754 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10755
10756         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10757
10758         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10759
10760 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10761
10762   * sim/ucsim/configure:    little improvement of Cygwin-detection
10763   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10764   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10765   * support/regression/tests/bug-221100.c: small changes for mcs51
10766   * support/regression/tests/bug-221168.c: small changes for mcs51
10767   * support/regression/tests/bug-227710.c: small changes for mcs51
10768   * support/regression/tests/staticinit.c: small changes for mcs51
10769   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10770   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10771   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10772
10773 $Revision$