* support/regression/tests/bug1409955.c: new, added
[fw/sdcc] / ChangeLog
1 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * support/regression/tests/bug1409955.c: new, added
4         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
5         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
6           (aopForSym, aopOp): increment asmop.allocated if reused,
7           (freeAsmop): decrement asmop.allocated and check for zero instead of
8           using asmop.freed,
9           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
10           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
11            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
12            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
13            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
14            genSignedRightShift, genRightShift, genDataPointerGet,
15            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
16            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
17             in reverse order from allocation,
18           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
19             added swappedLR to keep track
20         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
21           pdata & code for GCC, z80, gbz80 & hc08
22         * support/regression/tests/zeropad.c: moved defines to testfwk.h
23
24 2006-03-08 Raphael Neider <rneider AT web.de>
25
26         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
27
28 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
29
30         * device/include/mcs51/c8051f410.h: new SiLabs mcu
31         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
32         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
33
34 2006-03-06 Borut Razem <borut.razem AT siol.net>
35
36         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
37           made the linker quiet
38
39 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
40
41         * src/pic16/gen.c (genPcall): fixed bug #1443644
42         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
43         which dumps before the function entry point a data byte which represents
44         the number of the local variables used by the specified function, added
45         'xinst' for initial support for Extended Instruction Support,
46         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
47         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
48         port->fun_prefix anymore (may change later),
49         (genFunction, genEndFunction): do not store/restore local registers for
50         _main (this should take care the --main-return command line option in
51         the future),
52         (genOr): removed some legacy pic-port instructions,
53         * src/pic16/genarith.c (genAddLit): re-enabled old code because
54         performing operations with SFR's causes data to be written more than
55         once to each SFR. Perhaps SFRs should be handled in special cases...
56         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
57         pcode.h
58         * src/pic16/main.c (_process_pragma): stack bound checking did not take
59         into account for stack starting position,
60         (struct OPTIONS pic16_optionsTable): added command line argument
61         --extended or -y for Extended Instruction Support,
62         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
63         (deassignLRs): *** perhaps the most important change, old 'for' code
64         (commented out for reference), didn't account for some registers which
65         were left marked 'not free' after a pointer operation. The change
66         reduces register usage a lot in some cases
67
68 2006-03-04 Borut Razem <borut.razem AT siol.net>
69
70         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
71           _clean
72         * support/regression/tests/bug-524697.c: decreased array size for
73           mcs51 to fit into the internal RAM
74         * support/regression/Makefile.in: a little bit more verbose
75
76 2006-03-03 Borut Razem <borut.razem AT siol.net>
77
78         * support/regression/fwk/lib/testfwk.c,
79           support/regression/fwk/include/testfwk.h: introduced function
80           _prints(), nonrecursive _printn(), call _initEmu() from main()
81         * support/regression/ports/gbz80/support.asm,
82           support/regression/ports/ucz80/support.asm,
83           support/regression/ports/z80/support.asm,
84           support/regression/ports/ds390/support.c,
85           support/regression/ports/hc08/support.c,
86           support/regression/ports/host/support.c,
87           support/regression/ports/mcs51/support.c,
88           support/regression/ports/xa51/support.c: added empty _initEmu()
89           function
90         * support/regression/ports/pic16/gpsim.cmd,
91           support/regression/ports/pic16/spec.mk,
92           support/regression/ports/pic16/support.c,
93           support/regression/Makefile.in: added pic16 regression test
94
95 2006-03-01 Raphael Neider <rneider AT web.de>
96
97         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
98           genConstPointerGet): use safe way of generating MOVFF to cover
99             literals as well as registers, fixes bug #1440527
100         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
101             dereference
102           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
103             more correctly, fixes bug #1232186
104           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
105         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
106             gplink guess the correct processor in more cases, applied patch
107             from Till Riedel attached to and fixing bug #1436552
108
109 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
110
111         * support/regression/tests/array.c: added, contains check for #1434401
112         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
113
114 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
115
116         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
117         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
118         * device/include/mcs51/c8051f326.h,
119         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
120         * device/include/mcs51/c8051f000.h,
121         * device/include/mcs51/c8051f018.h,
122         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
123           PCON_IDLE,PCON_STOP and added sfr16 definitions
124
125 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
126
127         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
128           genGetWord): fixed bug 1409955
129
130 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
131
132         * device/include/hc08/mc68hc908gp32.h,
133         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
134
135 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
136
137         * src/SDCCast.c (constExprValue): return NULL if not a value
138         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
139         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
140         * support/regression/tests/bitfields.c: enabled signed bitfield for all
141
142 2006-02-13 Borut Razem <borut.razem AT siol.net>
143
144         * src/regression/ptrarg.c: added, fails due to bug #1430967
145         * src/regression/Makefile: ptrarg.c added, ...
146
147 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
148
149         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
150         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
151
152 2006-02-11 Borut Razem <borut.razem AT siol.net>
153
154         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
155           print "Processor: xxx" message to stdout only if --verbose
156
157 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
158
159         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
160         * support/regression/tests/bug1426356.c: added
161         * support/regression/tests/bitfields.c: removed 2 tests
162
163 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
164
165         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
166         * device/include/mcs51/c8051f330.h,
167         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
168           PCON_IDLE,PCON_STOP and added sfr16 definitions
169         * device/lib/_divsint.c,
170         * device/lib/_divuint.c,
171         * device/lib/_divulong.c,
172         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
173           register bank bug for small stackauto
174
175 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
176
177         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
178
179 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
180
181         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
182         * all.dsp: corrected several bin paths
183         * device/include/mcs51/c8051f120.h,
184         * device/include/mcs51/c8051f300.h,
185         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
186           to PCON_IDLE,PCON_STOP
187         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
188         * device/lib/printf_large.c (output_float): fixed bug 1388703
189         * support/regression/tests/bug1057979.c: added test for bug 1388703
190
191 2006-02-08 Raphael Neider <rneider AT web.de>
192
193         * src/pic/pcode.c (pciTRIS): fixed typo,
194           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
195           (LinkFlow): fixed handling of flows that end in a call,
196           (ReuseReg): perform safety check earlier
197         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
198             to work with flows at the beginning of a pBlock,
199             fixes #1426557 (Symbol not previously defined),
200           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
201             usage information
202           (RemoveUnusedRegisters): update register usage info
203         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
204             created, reuse existing ones instead
205         * src/pic/gen.c (genPcall): fixed #1424719
206
207 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
208
209         * link/z80/lkmain.c,
210         * link/z80/lklex.c,
211         * link/z80/lkdata.c,
212         * link/z80/aslink.h: fixed build on current cygwin:
213         replaced getline() by lk_getline()
214
215 2006-02-01 Borut Razem <borut.razem AT siol.net>
216
217         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
218           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
219           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
220           src/regression/bool1.c, src/regression/bool2.c,
221           src/regression/bool3.c, src/regression/call1.c,
222           src/regression/compare.c, src/regression/compare10.c,
223           src/regression/compare2.c, src/regression/compare3.c,
224           src/regression/compare4.c, src/regression/compare5.c,
225           src/regression/compare6.c, src/regression/compare7.c,
226           src/regression/compare8.c, src/regression/compare9.c,
227           src/regression/configword.c, src/regression/for.c,
228           src/regression/inline.c, src/regression/mult1.c,
229           src/regression/nestfor.c, src/regression/or1.c,
230           src/regression/pointer1.c, src/regression/ptrfunc.c,
231           src/regression/rotate1.c, src/regression/rotate2.c,
232           src/regression/rotate3.c, src/regression/rotate4.c,
233           src/regression/rotate5.c, src/regression/rotate6.c,
234           src/regression/rotate7.c, src/regression/string1.c,
235           src/regression/struct1.c, src/regression/sub.c,
236           src/regression/sub2.c, src/regression/switch1.c,
237           src/regression/while.c, src/regression/xor.c,
238           src/regression/create_stc, src/regression/simulate,
239           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
240           regression tests
241         * src/regression/gpsim_assert.h: added
242
243 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
244
245         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
246         ((void (code *) (void)) 0) ();
247         * as/hc08/aslex.c,
248         * as/hc08/aslink.h,
249         * as/hc08/asm.h,
250         * as/hc08/asmain.c,
251         * as/hc08/lkdata.c,
252         * as/hc08/lklex.c,
253         * as/hc08/lkmain.c,
254         * as/mcs51/aslex.c,
255         * as/mcs51/aslink.h,
256         * as/mcs51/asm.h,
257         * as/mcs51/asmain.c,
258         * as/mcs51/lkdata.c,
259         * as/mcs51/lklex.c,
260         * as/mcs51/lkmain.c,
261         * as/z80/aslex.c,
262         * as/z80/asm.h,
263         * as/z80/asmain.c: fixed build on current cygwin:
264         replaced getline() by as_getline()
265
266 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
267
268         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
269         declarator in the symbol chain
270         * src/SDCCsymt.h,
271         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
272         parameter list for function pointers
273         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
274         * support/regression/tests/bug-716242.c: added
275
276 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
277
278         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
279         offset if possible
280         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
281
282 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
283
284         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
285         inifinitely recurseable, added static
286         * support/regression/tests/bug-1408066.c: added
287
288 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
289
290         * src/SDCCicode.h,
291         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
292         renamed, added possibility to create "postLoopLbl"-labels
293         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
294         newiTempLoopHeaderLabel
295         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
296         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
297         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
298         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
299         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
300         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
301         (basicInduction): fixed bug #136564, made static,
302         (loopInduction): changed parameter of basicInduction, made static,
303         (addPostLoopBlock): added
304         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
305         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
306         findLoopEndSeq
307         * support/regression/tests/bug-136564.c: added
308         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
309         --std-sdcc99 to LIBSDCCFLAGS
310
311 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
312
313         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
314         while loop
315         * support/regression/tests/bug-1406131.c: added
316
317 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
318
319         * src/SDCCast.c (decorateType): fix promotion of unary minus
320         * src/SDCCsymt.c (computeType): beautified
321         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
322         (valUnaryPM, valComplement): fix sign and promotion,
323         (valNot): ANSI: result type is int (SDCC: unsigned char)
324         * support/regression/tests/uminus.c: speedup by removing superflous
325         test case 'int'
326         * support/regression/tests/onebyte.c: added promotion and signedness
327         tests for unary minus
328         * support/regressions/tests/bug-477927.c: disable warning about
329         uninitialized variables
330         * support/regression/tests/not.c: added
331
332 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
333
334         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
335         * src/mcs51/gen.c (gen51Code): show final register usage after
336         fillGaps in asm with --i-code-in-asm
337         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
338         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
339         incUsed, rliveClear, adjustIChain): made static,
340         (setFromRange): excluded because it's unused,
341         (findPrevUseSym, markWholeLoop): added,
342         (findPrevUse): rewritten; fixes bug 895992; now a complete search
343         through all branches of predecessors enables sdcc to emit the warning
344         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
345         (rlivePoint): made static, added parameter emitWarnings which is only
346         true during the first run out of two,
347         (findRecursiveSucc, findRecursivePred): removed,
348         (computeLiveRanges): made static, added parameter emitWarnings,
349         (dumpIcRlive): added for debugging only
350         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
351         removed prototype of setFromRange()
352         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
353         in call of computeLiveRanges()
354         * support/regression/tests/bug-895992.c: added
355         * support/regression/tests/bug-971834.c: added
356         * support/valdiag/tests/bug-895992.c: added
357         * support/valdiag/tests/bug-971834.c: added
358
359 2005-12-18 Raphael Neider <rneider AT web.de>
360
361         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
362           (genUnpackBits): improved code for direct operands,
363           (genPackBits): improved code for literal assignment to bitfields
364             and for direct destination operands (no FSR indirection),
365             prevented redundant AND, fixes #1362800,
366           (AccLsh): added parameter to disable masking of the result
367         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
368           skip instructions with side-effects (like incfsz),
369           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
370         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
371         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
372           fixes #1375263
373
374 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
375
376         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
377         volatile variables as spill location
378
379 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
380
381         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
382         replacing literals
383         * support/regression/tests/bug-1376320.c: added
384
385 2005-12-08 Raphael Neider <rneider AT web.de>
386
387         * src/pic/device.c: renamed is_shared to pic14_is_shared
388         * src/pic/gen.c (genIfx): re-enabled handling of sbits
389         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
390           (is_valid_identifier): added for above workaround
391
392 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
393
394         * device/lib/Makefile.in: fixed to enable port-specific-objects
395         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
396           char, thanks Hubert Sack
397         * doc/sdccman.lyx: documented --xstack-loc,
398           elaborated a bit more on interrupts and pitfalls,
399           removed "setjmp/longjmp unsupported",
400           documented some unsupported C99 features
401         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
402         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
403           if, thanks Hubert Sack
404         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
405         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
406           make make_library
407         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
408           regression tests can report resource usage (rfe 700441)
409         * support/regression/collate-results.py: report resource usage
410         * support/regression/ports/ds390/spec.mk,
411         * support/regression/ports/hc08/spec.mk,
412         * support/regression/ports/mcs51/spec.mk,
413         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
414         * support/regression/ports/ds390/uCsim.cmd,
415         * support/regression/ports/hc08/uCsim.cmd,
416         * support/regression/ports/mcs51/uCsim.cmd,
417         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
418         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
419           library, use the default one
420         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
421           building the library
422
423 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
424
425         * config.dsp: added dependency on .version and configure_vc.awk
426         * device/include/setjmp.h: updated for --stack-auto and --xstack
427         * device/include/mcs51/at89c51snd1c.h: corrected line endings
428         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
429         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
430         * device/lib/libsdcc.lib: added _setjmp
431         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
432           (decorateType): fixed bug 1372851,
433           (optimizeGetHbit): fixed warning
434         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
435           array initialisation
436         * support/regression/tests/bug1057979.c: added test for bug 1358192
437         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
438
439 2005-12-03 Borut Razem <borut.razem AT siol.net>
440
441         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
442           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
443
444 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
445
446         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
447         createIval): implement symbol independant "flexible array member",
448         (createIvalCharPtr): implemented flexible array initialisation with a
449         string
450         * src/SDCCsymt.c (copyStruct): removed,
451         (getSize): fixed misleading comment,
452         (getAllocSize): removed, the additional allocation size is now in
453         sym->flexArrayLength,
454         (checkStructFlexArray): new, syntax checks for flexible array members,
455         (compStructSize): added syntax checks for "flexible array members"
456         (copyStruct): removed,
457         (copyLinkChain): removed inefficient fix for bug 770487
458         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
459         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
460         symbol->flexArrayLength
461         * src/SDCCerr.c,
462         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
463         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
464         * support/regression/tests/structflexarray.c: added
465         * support/valdiag/tests/structflexiblearray.c: added
466
467 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
468
469         * src/SDCCast.c (decorateType): fixed bug 1368489
470         * support/Util/SDCCerr.c,
471         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
472
473 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
474
475         * device/include/mcs51/at89c51snd1c.h: added file submitted by
476           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
477
478 2005-11-27 Borut Razem <borut.razem AT siol.net>
479
480         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
481           support/cpp2/mkdeps.h: added command line option
482           -obj-ext=<extension> to SDCPP to define object file externion, used
483           for generation of make dependencies (-M)
484         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
485
486 2005-11-26 Borut Razem <borut.razem AT siol.net>
487
488         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
489           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
490           added pic and pic16 libraries
491
492 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
493
494         * device/include/float.h: Corrected typo in prototype of __fsgt
495
496 2005-11-25 Borut Razem <borut.razem AT siol.net>
497
498         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
499           added creation of model-mcs51-stack-auto libraries
500
501 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
502
503         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
504         and fields-list too
505         * src/SDCCast.c (createIvalArray): removed obsolete comment
506
507 2005-11-24 Borut Razem <borut.razem AT siol.net>
508
509         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
510           added missing device/lib/mcs51/crt*.asm sources
511
512 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
513
514         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
515
516 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
517
518         * device/lib/_fs2schar.c,
519         * device/lib/_fs2sint.c,
520         * device/lib/_fs2slong.c: optimized inline asm
521
522 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
523
524         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
525           Better handling of floats between -1.0 and 0.0.
526
527 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
528
529         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
530           (the missing "if"s prohibited removal of redundant labels)
531
532 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
533
534         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
535           Properly convert floats between -1.0 and 0.0 to long, int, and char
536           types (max integer value of negative floats tends to zero).
537         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
538           Removed changes made so to work properly with floats between
539           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
540           and _fs2char.c
541
542 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
543
544         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
545         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
546         (genCast) cosmetic change
547         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
548         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
549         from mcs51
550         * support/regression/tests/bitfields (testSignedBitfields): added
551
552 2005-11-18 Borut Razem <borut.razem AT siol.net>
553
554         * sdcc/device/lib/Makefile.in: remove all unnecessary files
555         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
556           introduced SILENT option to make building of pic16 libraries less
557
558 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
559
560         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
561           Now they work properly with floats between -1.0 and 0.0
562         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
563
564 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
565
566         * src/SDCCicode.c (printOperand): added missing else
567
568 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
569
570         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
571         reformatted for better readability
572         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
573         signed bitfields
574
575 2005-11-17 Borut Razem <borut.razem AT siol.net>
576
577         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
578           introduced SILENT option to make building of pic16 libraries less
579           verbose - used for nightly snapshot build
580         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
581           available on Win32 platforms.
582         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
583           medium, large, pic and pic16
584
585 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
586
587         * device/lib/printf_large.c: Temporary patch for bug 1358192:
588           printf("%f"...) sets fraction to zero.
589
590 2005-11-16 Raphael Neider <rneider AT web.de>
591
592         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
593           fixes #1357221
594         * src/pic/gen.c (genIfx): implemented for CARRY bit
595         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
596           to generic pointers, fixes #1357332,
597           (pic16_movLit2f): NEW,
598           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
599
600 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
601
602         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
603
604 2005-11-11 Raphael Neider <rneider AT web.de>
605
606         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
607         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
608           compute pointer's type from operand,
609           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
610           improved single bit reads, fixes bug #1353379
611
612 2005-11-09 Borut Razem <borut.razem AT siol.net>
613
614         * support/scripts/sdcc.nsi: added lib/pic to the package
615
616 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
617
618         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
619
620 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
621
622         * support/regression/tests/bug1348008.c: added
623         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
624         * support/regression/tests/bug1337835.c: updated comment
625
626 2005-11-06 Borut Razem <borut.razem AT siol.net>
627
628         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
629           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
630           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
631           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
632           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
633           dynamic construction of cl_error_class and derivates - 2.nd try
634
635 2005-11-05 Borut Razem <borut.razem AT siol.net>
636
637         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
638           bug, which caused Bus Errors on sparc solaris
639
640 2005-11-04 Borut Razem <borut.razem AT siol.net>
641
642         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
643           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
644           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
645           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
646           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
647           and derivates to resolve the initialization problem on OSX
648
649 2005-11-02 Borut Razem <borut.razem AT siol.net>
650
651         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
652           corrected typo - #include <winsock2.h>
653
654 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
655
656         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
657           (_asxxxx_mapping): added org directive for future enhancements
658
659 2005-11-01 Borut Razem <borut.razem AT siol.net>
660
661         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
662           enabled sockets on WIN32
663         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
664
665 2005-10-31 Borut Razem <borut.razem AT siol.net>
666
667         * support/regression/generate-cases.py: escape backslashes in {testcase}:
668           WIN32 backslash path delimiters should be escaped when used in C strings
669         * support/regression/tests/bitfields.c: exclude failing assertions for
670           __CYGWIN32__ and __MINGW32__ hosts
671
672 2005-10-30 Borut Razem <borut.razem AT siol.net>
673
674         * src/SDCCutil.c: corrected double comparison typo
675
676 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
677
678         * device/lib/medium/Makefile: added for new memory model medium
679         * device/include/asm/mcs51/features.h: updated for medium/pdata
680         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
681           added Multiply & Accumulate sbit's and MAC0_PAGE define
682         * device/include/mcs51/c8051f300.h: added sfr16 definitions
683         * device/include/mcs51/c8051f310.h: added sfr16 definitions
684         * device/lib/_mullong.c: update for medium model
685         * device/lib/incl.mk: added medium model
686         * doc/sdccman.lyx: documented medium model
687         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
688         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
689         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
690         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
691           (allocParms): set SCLS and OCLS to pdata for medium model
692         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
693           for pdata,
694           (powof2): return <0 if not power of 2
695         * src/avr/gen.c (genBitWise): use updated powof2
696         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
697           (shiftR2Left2Result): small optimization in setup, save acc when storing,
698           (shiftLLeftOrResult): use B if necessary
699         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
700         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
701         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
702         * support/regression/Makefile.in: added test-mcs51-medium
703         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
704
705 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
706
707         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
708         specifier unsigned
709         * device/lib/time.c (mktime): fixed bug 1334315
710
711 2005-10-28 Raphael Neider <rneider AT web.de>
712
713         * device/include/pic/p16f_common.inc: added common declarations
714         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
715
716 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
717
718         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
719           (aopPutUsesAcc): added to predict accumulator use,
720           (assignResultValue): save acc if necessary,
721           (genMinusDec): store result if indirectly addressed,
722           (genDivOneByte):  save acc if necessary,
723           (movLeft2Result): bugfix if left already in acc,
724           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
725             attention to accumulator use (esp. pdata),
726           (genReceive): receive pdata correctly
727         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
728         * src/SDCCicode.h: added isOperandInPagedSpace prototype
729
730 2005-10-27 Raphael Neider <rneider AT web.de>
731
732         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
733
734 2005-10-27 Raphael Neider <rneider AT web.de>
735
736         * .version: changed version to 2.5.4
737         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
738         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
739           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
740             arithmetics support routines
741         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
742         * device/lib/Makefile.in: also create installdir for pic
743
744         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
745           pic14 port as well
746         * src/pic/device.c (dump_sfr): rewritten to delegate register
747           placement to the linker (use `extern sym' rather than sym EQU addr),
748           (validAddress): fixed to check last specified address
749         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
750           (popGetLit): truncate literal value to 8 bit,
751           (popGet): moved assert to more appropriate place
752           (popGetExternal): create pCode operand from and mark the according
753             symbol as being `extern'
754           (popGetAddr): added sanity check on immediate's offset, provide
755             GPOINTER tag on demand
756           (aopPut): fixed for immediates,
757           (mov2w_op): move operand's address or contents to WREG (depending on
758             operand type), safer variant of mov2w,
759           (movwf,call_libraryfunc): NEW, handy abbreviations,
760           (get_argument_pcop,get_return_val_pcop,pass_argument,
761           get_returnvalue): interface for accessing function parameters and
762             return values,
763           (assignResultValuei,genRet): use new parameter/return value interface
764           (pic14_getDataSize): back to old version handling generic pointers,
765           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
766             provided implementation and/or fixed old one,
767           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
768             calls, removed legacy 8051 reference code
769           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
770           (loadSignToC): NEW, move the operands sign bit to CARRY,
771           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
772             genRightShiftSigned, accepts negative shift counts,
773           (setup_fsr): load FSR and adjust IRP (indirect memory access),
774           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
775             generic pointers, __data pointers and __code pointers,
776           (genUnpackBits,genPackBits): rewritten to work with generic pointers
777             and signed bitfields, limit bitfields to 8 bit,
778           (genDataPointerGet): fixed number of bytes read,
779           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
780           (genPointerGet,genPointerSet): fixed handling of __code pointers,
781             pointers to constant data are no longer assumed to point to __code
782             space, removed invalid pointer types,
783           (bitpatternFromVal): retrieve the PICs representation of an integer
784             or float literal,
785           (genDataPointerSet): fixed assigning to po_immediate operands,
786           (genGenPointerSet): implemented as library call,
787           (genIfx): fixed incorrect condition,
788           (genAddrOf): limit generic pointers' addresses to 2 bytes,
789             provide GPOINTER tag according to destination's storage class,
790           (genCast): added code to handle casting to generic pointers, added
791             sign-/zero extension of the result
792           (aop_isLitLike,op_isLitLike): fixed handling of immediates
793         * src/pic/gen.h: added macros to access IRP bit in STATUS register
794         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
795           extend the result
796         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
797           address/register resides in the shared banks
798           (emitSymbolToFile): improved to handle global and `pinned' symbols,
799             put all variables into separate sections (have the linker arrange
800             them)
801           (picglue): put init code and interrupt handlers in separate sections
802         * src/pic/main.c: added port specific options table, modified to PORT
803           structure to make GPOINTERs 3 byte, added pic14_options
804           (_pic14_do_link): private linking routine (update paths to libraries,
805             add libsdcc.lib by default)
806         * src/pic/main.h: declare pic14_options
807         * src/pic/pcode.c: fixed instructions i/o relations,
808           (RegCond): reverted to correct version,
809           (newpCodeOpLit): truncate literals to 8 bit,
810           (genericPrint): added debug output,
811           (getRegFromInstruction): fixed for various operand types, simplified
812           (BuildFlow): fixed broken handling of isntructions with labels
813           (LinkFlow): start at last instruction in flow (skip trailing comments),
814             pass the flow on to the next instruction after CALL
815           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
816           (insertPCodeInstruction): fixed inserting after a skip instruction,
817           (DoBankSelect): fixed for labeled instructions
818           (OptimizepBlock): honor --nopeep switch
819           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
820         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
821         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
822           (pCodeOptime2pCodes): allow disabling this optimization via
823             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
824             but is still buggy), started implementation of a dataflow based
825             pCode optimization (CSE + dead code elimination)
826           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
827         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
828           names are independant of the stack location and therefore portable across
829           devices
830
831 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
832
833         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
834           (selectSpil): fixed bug 1337835 by not spilling bit variables
835         * support/regression/tests/bug1337835.c: added test for this bug
836         * src/mcs51/peeph.def: restart after rule 3.c,
837           addded rules 263.x to optimize loading constants
838
839 2005-10-26 Raphael Neider <rneider AT web.de>
840
841         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
842         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
843           (genAssign): emit warning when casting literals to generic pointer
844             type, also applies when taking the address of a fixed variable,
845           (genCast): improved casting to generic pointers
846         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
847           extern variables, added verbose error message
848         * device/include/pic16/{string.h,errno.h}: added #pragma library c
849
850 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
851
852         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
853         carry must be complemented too
854         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
855         could be emitted by genMinus
856         * src/SDCCval.c (constVal): fixed bug 1305065
857
858 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
859
860         * src/SDCCast.c (addCast): added promotion for bit variables
861         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
862         promotion casts + optimisation
863         (optimizeGetWord): fix warning 'i' might be used uninitialized
864         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
865         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
866
867 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
868
869         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
870         all chars are promoted to int; promotion should be handled in SDCCast.c
871
872 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
873
874         * device/lib/_strcmp.c: Fixed bug 1326457
875
876 2005-10-11 Raphael Neider <rneider AT web.de>
877
878         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
879         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
880
881 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
882
883         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
884         * support/regression/tests/sfr16.c: added test for the sfr32 bug
885
886 2005-10-04 Raphael Neider <rneider AT web.de>
887
888         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
889           device/lib/pic16/pics.all: added pic18f1320
890         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
891
892 2005-09-30 Raphael Neider <rneider AT web.de>
893
894         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
895         * src/pic16/devices.inc: NEW, provides device descriptions
896         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
897
898 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
899
900         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
901           GETHBIT
902
903 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
904
905         * doc/sdccman.lyx: updated Highest Order Bit documentation,
906           documented Any Order Bit, Higher Order Byte and Higher Order Word
907         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
908         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
909           (optimizeGetAbit): new, to get any bit, not only the high bit,
910           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
911           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
912           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
913           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
914             RIGHT_OP: also try GETBYTE, GETWORD optimization,
915             GETABIT, GETBYTE, GETWORD: decorate them,
916           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
917           (ast_print): added GETABIT, GETBYTE, GETWORD
918         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
919         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
920           (geniCodeBinary): new generic binary icode,
921           (ast2iCode): added GETABIT, GETBYTE, GETWORD
922         * src/port.h: updated comment for PORT.hasExtBitOp
923         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
924           (genGetByte): new, to get a single byte,
925           (genGetWord): new, to get a word from a long,
926           (gen51Code): added GETABIT, GETBYTE, GETWORD
927         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
928
929 2005-09-23 Raphael Neider <rneider AT web.de>
930
931         * configure.in, configure: have device/lib/pic configured
932         * device/lib/Makefile.in: added model-pic14
933         * device/lib/clean.mk: added pic/ to clean rule
934         * device/lib/pic: added rudimentary pic14 library providing support
935           functions for multiplication/division/generic pointer access
936         * src/SDCCopt.c (convilong): mark support functions as extern
937           for pic14 port as well
938         * src/pic/gen.c (genMult): added assertions,
939           (genpic14Code): emit warning on unhandled iCodes
940         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
941         * src/pic/pcode.c (pCodeOpCopy),
942         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
943           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
944           SFR_REGISTER}), made safe for future extensions
945         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
946           instructions even if preceeded by SKIP instructions (also remove
947           them); removed unused code
948         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
949           prevents leaving parts of the structure uninitialized after copying
950
951 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
952
953         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
954           ago by me
955         * support/regression/tests/addsub.c: added test for the bug
956
957 2005-09-21 Raphael Neider <rneider AT web.de>
958
959         * device/include/pic16/pic18f1220.h,
960           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
961         * device/lib/pic16/Makefile.rules: added missing opening paren
962         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
963           are provided in genutils.c,
964           (genUminusFloat,genUminus,genCmpEq): added asserts on different
965           operand/result sizes,
966           (genCmp): assert on NULL pointers first, then check deref'ed values
967         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
968           result size
969
970 2005-09-18 Raphael Neider <rneider AT web.de>
971
972         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
973           as these are now unused,
974           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
975         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
976           local, avoids uninitialized pointer dereference on r->name
977         * src/pic16/ralloc.c (newReg): fixed indentation
978
979 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
980
981         * src/SDCCval.c (constVal): fixed bug 730366
982         * support/Util/SDCCerr.c,
983         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
984
985 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
986
987         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
988
989 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
990
991         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
992
993 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
994
995         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
996           (hex2dec): made hex_digit unsigned char, removed ascii dependance
997         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
998           (hex2dec): made hex_digit unsigned char, removed ascii dependance
999         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1000         * packihx/packihx.c (hexDigit): made c unsigned char
1001         * as/mcs51/lklibr.c (fndsym),
1002         * link/z80/lkgb.c (gb),
1003         * link/z80/lklibr.c (fndsym),
1004         * link/z80/lkrloc.c (relr),
1005         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1006         * src/SDCC.lex (checkCurrFile, process_pragma),
1007         * src/SDCCglue.c (spacesToUnderscores),
1008         * src/SDCCmain.c (setParseWithComma, processFile),
1009         * src/asm.c (tvsprintf, printCLine),
1010         * src/avr/gen.c (emitcode, aopPut),
1011         * src/ds390/gen.c (emitcode),
1012         * src/hc08/gen.c (emitcode, emitinline),
1013         * src/mcs51/gen.c (emitcode, genInline),
1014         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1015           tokenizeLineNode),
1016         * src/pic/ralloc.c (debugLog),
1017         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1018           tokenizeLineNode),
1019         * src/pic16/ralloc.c (debugLog),
1020         * src/z80/main.c (_process_pragma):
1021            made all ctype.h function calls safe
1022         * src/SDCCopt.c: include math.h for fabs
1023         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1024           and used them throughout the code to make ctype.h function calls safe
1025         * src/ds390/main.c (asmLineNodeFromLineNode),
1026         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1027         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1028            unsigned char*
1029         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1030           (newpCodeAsmDir): made ctype.h function calls safe
1031         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1032           pic16_emitcode):  made lbp unsigned char*
1033         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1034           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1035         * src/xa51/gen.c (emitcode),
1036         * src/z80/gen.c (_emit2): made lbp unsigned char*
1037         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1038            char*
1039
1040 2005-09-05 Raphael Neider <rneider AT web.de>
1041
1042         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1043           access bank splitpoint
1044
1045 2005-09-05 Raphael Neider <rneider AT web.de>
1046
1047         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1048
1049 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1050
1051         * .version: changed to version 2.5.3
1052         * doc/sdccman.lyx: changed version to 2.5.3,
1053           documented --codeseg and --constseg and pragma codeseg and constseg,
1054           documented bit parameters (reentrant) and bit returning
1055         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1056            currFunc->recvSize, but is this ok for all ports?
1057           (ast2iCode): result of ~ on unsigned char must be cast to int for
1058            bool to work
1059         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1060           function pointers in bit space
1061         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1062           (processFuncArgs): call port.reg_parm() with reentrancy info
1063         * src/port.h,
1064         * src/avr/main.c,
1065         * src/ds390/main.c,
1066         * src/hc08/main.c,
1067         * src/pic/main.c,
1068         * src/pic16/main.c,
1069         * src/xa51/main.c,
1070         * src/z80/main.c: port.reg_parm prototype extended with
1071           "bool reentrant" parameter
1072         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1073           options.stackAuto for allocating bit register parameters
1074         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1075           (genSend): set BitBankUsed if it is,
1076           (selectRegBank): factored out of genCall for use in genPcall,
1077           (genCall): removed redundant dtype assignmen, use selectRegBank,
1078           (genPcall): handle returning in Carry properly, save in F0 if needed,
1079           (genReceive): handle bit register parameters
1080         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1081           (mcs51_assignRegisters): enable bit registers for all reentrant
1082            functions and don't set BitBankUsed unconditionally
1083         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1084         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1085         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1086
1087 2005-08-27 Borut Razem <borut.razem AT siol.net>
1088
1089         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1090         ppc-osx (Darwin) does not support -u option. It seems that it is
1091         supported only on Linux - GNU cp
1092
1093 2005-08-25 Borut Razem <borut.razem AT siol.net>
1094
1095         * sim/ucsim/gui.src/serio.src/Makefile.in,
1096           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1097           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1098           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1099           install and strip, since the strip at /usr/ccs/bin should be used
1100           on solaris
1101
1102 2005-08-24 Borut Razem <borut.razem AT siol.net>
1103
1104         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1105
1106 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1107
1108         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1109         ffffffffu
1110
1111 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1112
1113         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1114         * as/mcs51/lkmain.c (link_main): fixed warning
1115         * device/include/stdbool.h: ds390 has no advanced bit support yet
1116         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1117         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1118         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1119           and updated their macros
1120         * src/SDCCval.c (constVal): updated comment for renamed b_long
1121
1122 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1123
1124         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1125         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1126           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1127           (oprio): set priority for '['
1128         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1129            and adb_24_bit
1130         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1131         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1132         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1133         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1134           added overlayable BIT_BANK area
1135         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1136           (summary2): explain 'T' in legenda
1137         * as/mcs51/lkrloc.c: replaced old K&R style,
1138           (relr): added R_BIT processing,
1139           (errmsg): added "Bit-addressable relocation error",
1140           (adb_bit): added for converting from byte- to bit-addressable space,
1141           (adb_24_bit): added for converting from byte- to bit-addressable space
1142         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1143            used in reentrant functions now even as return value
1144         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1145         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1146           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1147         * src/SDCCglobl.h: added indicator BitBankUsed
1148         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1149            the bit registers b0-b7
1150         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1151           (geniCodeCast): fixed bug 1263853,
1152           (geniCodeLogicAndOr): put result in bool or char,
1153           (geniCodeReceive): added parameter func for accessing the return type,
1154           (geniCodeFunctionBody): pass func to geniCodeReceive
1155         * src/SDCCmain.c: added indicator BitBankUsed
1156         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1157         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1158           (checkSClass): don't put automatic bool/bit on stack,
1159           (checkFunction): removed check on function cannot return bit
1160         * src/SDCCsymt.h: added newBoolLink prototype
1161         * src/mcs51/gen.c (rb1regs): added bit registers,
1162           (movc): created for assigning to carry,
1163           (pushReg, popReg): created for pushing registers,
1164           (sameRegs): check both AOP_REG and AOP_CRY types,
1165           (aopOp): handle bit registers,
1166           (aopPut): optimization no self-assign,
1167           (saveRegisters): push reg->base (bits) only once for bit registers,
1168            and use pushReg,
1169           (unsaveRegisters): pop reg->base only once and use popReg,
1170           (assignResultValue): added parameter func and return in carry for bits,
1171           (genIpush): optimization no reload in A if not changed,
1172           (genSend): bit parameters in reentrant functions are passed in bit
1173            registers by first assigning to bits in B, then save registers and
1174            copy B to bits,
1175           (genCall): handle returning in Carry properly, save it in F0 if needed,
1176           (genPcall): updated assignResultValue call, this is not safe yet for bit
1177            returning function !!!
1178           (genFunction): don't generate equ's for bit registers and use pushReg,
1179           (genEndFunction): take care of bit returning functions and use popReg,
1180           (genRet): return bit in Carry,
1181           (genIfx): optimize bit registers and other directly addressable bits,
1182           (genReceive): updated assignResultValue call
1183         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1184           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1185            registers when using stack-auto
1186         * src/mcs51/ralloc.c (_G): added allBitregs,
1187           (regs8051): added the bit registers,
1188           (createStackSpil): use macro IS_BIT,
1189           (getRegBit): added to allocate a bit register, else spill,
1190           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1191           (updateRegUsage): factored out to ease stepping while debugging,
1192           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1193            also allocate bit registers,
1194           (fillGaps): handle bit registers,
1195           (findAllBitregs): added to create bit vector with all bit registers,
1196           (mcs51_allBitregs): returns this bit vector,
1197           (mcs51_assignRegisters): when using stack-auto use bit registers for
1198            passing parameters and creating local variables
1199         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1200
1201 2005-08-22 Borut Razem <borut.razem AT siol.net>
1202
1203         * device/lib/Makefile.in: replaced find option -or with -o
1204           to make it run on solaris
1205
1206 2005-08-22 Raphael Neider <rneider AT web.de>
1207
1208         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1209           fixes #1265442 (crash on Solaris)
1210
1211 2005-08-20 Borut Razem <borut.razem AT siol.net>
1212
1213         * configure, configure.in: added tests for libsocket and libnsl libraries,
1214           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1215           from support/regression/Makefile.in
1216         * support/regression/Makefile.in: added
1217         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1218         * sim/ucsim/libtool: regenerated on sparc-solaris
1219         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1220           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1221           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1222           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1223           sparc-solaris, which doesn't use GNU ld linker
1224         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1225         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1226
1227 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1228
1229         * src/mcs51/peeph.def: updated comments
1230
1231 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1232
1233         * device/lib/_gptrget.c,
1234         * device/lib/_gptrput.c: slightly shorter
1235         * doc/sdccman.lyx: incremented version
1236         * src/mcs51/peeph.def: moved peephole comments to the line of first
1237           change to better keep line correlation, reanimated 186.e
1238         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1239
1240 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1241
1242         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1243           David Saxton with quotes around file name.
1244
1245 2005-08-15 Borut Razem <borut.razem AT siol.net>
1246
1247         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1248           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1249           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1250           make tests run on x86_64 platform
1251
1252 2005-08-13 Raphael Neider <rneider AT web.de>
1253
1254         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1255           as it might be executed DURING a build (parallel make is wonderful)
1256
1257 2005-08-13 Raphael Neider <rneider AT web.de>
1258
1259         * device/lib/Makefile.in (port-specific-objects-pic16):
1260           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1261         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1262           dependency
1263         * device/lib/pic16/Makefile.rules: build subdirs before creating
1264           the library, removed builddir rule, create $(builddir) early in
1265           recurse rule, use empty recurse rule for leaf directories
1266         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1267           mkdir errors (race condition), removed duplicate suffix "hex"
1268           from clean rules
1269         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1270         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1271           prevents mkdir -p from aborting on Alpha
1272
1273 2005-08-12 Raphael Neider <rneider AT web.de>
1274
1275         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1276           db-statements in order to allow for arrays of pointers in code
1277           sections to be placed without interspersed 0-padding, fixes
1278           bug #1256215
1279         * (emitStatistics): fixed division by zero for pic18f1220
1280         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1281           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1282         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1283         * (pic16_pCodeConstString): keep track of already emitted string
1284           literals to prevent "duplicate definitions of symbol _str_NR"
1285         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1286           debug message
1287         * device/lib/Makefile.in: ignore failing PIC16 library builds
1288         * device/lib/pic16/Makefile: do not build if gputils are missing
1289         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1290
1291 2005-08-10 Raphael Neider <rneider AT web.de>
1292
1293         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1294           my last commit)
1295
1296 2005-08-10 Raphael Neider <rneider AT web.de>
1297
1298         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1299           Rokas' patch to add the new fixed point type "__fixed16x16"
1300         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1301           functions for __fixed16x16 arithmetics
1302         * device/lib/pic16: reimplemented the build system to support
1303           a separate build directory, better handling of libio (create
1304           the library in a separate subdir for each architecture) and
1305           easier configuration (centralized in Makefile.common)
1306
1307 2005-08-07 Raphael Neider <rneider AT web.de>
1308
1309         * src/pic16/gen.c (genrshTwo): fixed sign extension
1310         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1311         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1312           added T0CONbits
1313         * device/include/pic16/pic18f4220.h: NEW, header for
1314           pic18f4220 and pic18f4320
1315         * device/include/pic16/pic18fregs.h: added new devices,
1316           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1317         * device/include/pic16/signal.h: resolved name clashes
1318           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1319           to also allow testing for interrupt enable bits, added
1320           comments on how to use the macros
1321         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1322         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1323           register definitions for the devices
1324         * device/lib/pic16/pics.all: added new devices
1325         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1326           allocated memory
1327         * device/lib/pic16/libc/stdlib/memfree: do not count
1328           the block header as free memory
1329         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1330           simplified and added missing end-of-blocklist-marker
1331           (reported by Peter Onion, fixes #1252814)
1332         * (_mergeHeapBlock): fixed loop condition
1333         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1334           len==0, restructured code
1335         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1336           up a bit, reduced bitfield accesses, prevent endless loops
1337           in case of heap corruption
1338         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1339           "unreferenced arguments/must return a value" warnings
1340         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1341           replaced BAUDREG with SPBRG
1342         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1343           device/lib/pic16/debug/gstack/gstack.c: replaced
1344           _naked, _asm, _endasm with __naked, __asm, __endasm
1345
1346 2005-08-05 Raphael Neider <rneider AT web.de>
1347
1348         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1349           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1350
1351 2005-08-05 Borut Razem <borut.razem AT siol.net>
1352
1353         * device/lib/Makefile.in: added missing ';'
1354         * configure: removed ^M characters
1355
1356 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1357
1358         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1359           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1360           License
1361
1362 2005-08-04 Borut Razem <borut.razem AT siol.net>
1363
1364         * configure.in: pic16 libraries build 2nd try - enable running
1365           configure in device/lib/pic16
1366         * configure: regenerated from configure.in
1367         * device/lib/Makefile.in: create $(PORT)/bin directory
1368
1369 2005-08-03 Raphael Neider <rneider AT web.de>
1370
1371         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1372           to get/set values via pointers
1373         * (genUnpackBits,genPackBits): changed detection of
1374           ptr->bitfield vs. sym.bitfield, fixed access via generic
1375           pointers, removed dead (wrong) code for multibyte bitfields
1376         * (genNearPointerGet, genGenPointerGet): removed useless code,
1377           fixed bitfield detection, fixes #1250594
1378         * (genNearPointerSet): removed useless code
1379         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1380           and introduced macro pic16_emitpcode that conditionally emits
1381           the origin of the following pCode (useful for debugging SDCC)
1382         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1383         * (createDefmap): fixed handling of LFSR for --optimize-df
1384
1385 2005-08-02 Borut Razem <borut.razem AT siol.net>
1386
1387         * device/lib/Makefile.in: pic16 libraries build enabled since
1388           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1389
1390 2005-08-02 Raphael Neider <rneider AT web.de>
1391
1392         * src/pic16/gen.c (genPackBits): removed deprecated warning
1393         * (genGenPointerSet): fixed bitfield detection
1394
1395 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1396
1397         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1398
1399 2005-07-31 Raphael Neider <rneider AT web.de>
1400
1401         * device/lib/pic16/libdev/pic18f458.c,
1402           device/include/pic16/pic18f458.h: added missing T0CONbits
1403
1404 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1405
1406         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1407
1408 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1409
1410         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1411
1412 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1413
1414         * device/include/mcs51/at89c51ed2.h: added.
1415
1416 2005-07-23 Raphael Neider <rneider AT web.de>
1417
1418         * src/pic/gen.h: added emitpcode macro for debugging
1419         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1420           and replace by macro adding debug information on demand
1421         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1422         * (gencjne): tried to fix; replaced with correct (slower) code
1423         * (gen{Unp,P}ackBits): fixed single bit access
1424         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1425         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1426           previous instruction
1427         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1428           register has to be handled with care (forbidding movement
1429           of assignments/uses, removing assignments completely, ...)
1430         * (pCodeOptime2pCodes): make use of regIsSpecial
1431         * added lots of debugging output (commented out)
1432         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1433           from being reused as result UNLESS it is known to work
1434
1435 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1436
1437         * support/Util/dbuf.h: include <stddef.h> for size_t
1438         * .version: changed to version 2.5.2
1439
1440 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1441
1442         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1443
1444 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1445
1446         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1447           (genModOneByte): removed needless psha/pula
1448
1449 2005-07-22 Raphael Neider <rneider AT web.de>
1450
1451         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1452           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1453         * src/pic/gen.c (resolveIfx): do not "invent" labels
1454         * (genSkipc): changed to positive logic
1455         * (genSkipCond): removed as no longer needed
1456         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1457           backport from PIC16
1458         * (genLeftShift): check operands are in different registers
1459         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1460           INCF does not update CARRY...
1461         * src/pic/main.c: fixed _linkCmd
1462         * src/pic/pcode.c (unlinkpCode): added inactive code
1463         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1464           alive (do not assign result and operand overlapping registers)
1465
1466 2005-07-22 Raphael Neider <rneider AT web.de>
1467
1468         * src/pic/device.c (dump_sfr): replaced register declaration with
1469           call to emitSymbolToFile() to avoid duplicate symbols
1470         * (assignRelocatableRegisters): do not declare external symbols
1471         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1472           right (take size of type, not etype)
1473         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1474         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1475         * (packRegsForAccUse): disabled assignment of WREG as
1476           the result reg to prevent occurence of just fixed #1235003,
1477           fixes #1242954
1478         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1479           symbols (avoids duplicate symbols in .asm file)
1480         * (pic14emitRegularMap): use emitSymbolToFile()
1481         * src/pic/gen.c (aopOp): fixed spillLocation handling
1482         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1483         * (genDataPointerSet): removed unneccessary variables/output
1484
1485 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1486
1487         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1488         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1489
1490 2005-07-21 Raphael Neider <rneider AT web.de>
1491
1492         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1493           architecture cannot handle them efficiently, fixes bug #1235003
1494         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1495           check for empty sets before using them (fixes bug #1232190)
1496
1497 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1498
1499         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1500           (lnksect2): generate warnings for memory overlap
1501         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1502           constseg to set the name of these segments so you can instruct the linker
1503           to place them in banks
1504         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1505         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1506           added code_seg and const_seg to options
1507         * src/SDCCglue.c (emitMaps): use options.const_seg,
1508           (createInterruptVect): put interrupt vectors in segment HOME,
1509           (glue): put HOME before static segment and put the main glue in HOME,
1510           (glue): use options.code_seg
1511         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1512         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1513           these segments so you can instruct the linker to place them in banks
1514           (linkEdit): use code_loc for HOME segment which should be the first
1515           segment in code memory now
1516         * src/SDCCmem.c: fixed more stuff like bug 1238386
1517         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1518           (changePointer): don't change function pointers to code pointers for
1519           banked functions,
1520           (compareType): added exceptional check for banked function pointers
1521         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1522         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1523           after static in code memory
1524         * src/mcs51/gen.c: added aopLiteralLong prototype,
1525           (aopForSym): use getSize for functions,
1526           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1527           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1528           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1529           the segment,
1530           (genPcall): use call for literal function pointers and generate banked
1531           calls over the one trampoline so there's only one place for the user to
1532           modify according to his/hers hardware,
1533           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1534           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1535         * src/mcs51/main.c: added keyword banked,
1536           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1537         * support/Util/SDCCerr.c,
1538         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1539           needed for passing the bank and address to the trampoline
1540         * device/lib/mcs51/crtbank.asm: added for bankswitching
1541         * device/lib/mcs51/Makefile: added crtbank
1542
1543 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1544
1545         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1546           for fields at offset 0 of a struct or union as reported
1547           on 2005-07-07 in the developer mailing list.
1548
1549 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1550
1551         * src/SDCCmem.c: fixed bug 1238386
1552
1553 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1554
1555         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1556           (patch #1144962), added peephole 300, enabled 259.x
1557         * doc/sdccman.lyx: removed screenshot and provided link instead
1558
1559 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1560
1561         * doc/sdccman.lyx: added section about debugging with ddd
1562         * doc/figures/ddd_example.eps: screenshot of debugging session
1563
1564 2005-07-04 Raphael Neider <rneider AT web.de>
1565
1566         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1567           like CODE pointers, fixes #1115683
1568         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1569           call, fixes bugs #1232211, #1228110,
1570           fixed wrong casts to pCodeFlow from pCodeInstructions
1571
1572 2005-07-04 Raphael Neider <rneider AT web.de>
1573
1574         * src/pic/gen.c (popGet): changed assert to allow for
1575           bit operands
1576         * (popGetAddr): changed signature to provide
1577           an additional index, patched all call sites
1578         * (genCmpEq): handle literal-like operands correctly
1579         * (genAddrOf): added sanity checks on __code/__data pointers
1580         * (genAssign): added handling of symbols from __code section
1581         * (gencjne): do not generate code for comparisons whose result
1582           is neither stored nor used, fixes bug #1171114
1583         * (AccLsh, AccRsh): operate on operand instead of WREG
1584         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1585           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1586           by known count
1587         * rewrote complete shift-by-literal logic, commented unused
1588           functions out
1589         * (genConstPointerGet): get multiple bytes (if result size > 1),
1590           fixed handling of non-immediate addresses
1591         * (genPointerGet): handle CODE pointers like CONST pointers
1592         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1593         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1594           operand is to be treated as a literal or not
1595         * (mov2w,genPcall,genCmpEq),
1596           src/pic/genarith.c: use aop_isLitLike() to decide between
1597           literal/register contents
1598         * (addSign): added missing offset
1599         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1600           only emit comment in debug-mode,
1601           use {aop,op}_isLitLike throughout the file
1602         * src/pic/glue.c: fix initializers for pointers (work in progress)
1603         * src/pic/pcode.c (get_op): honor index on _const symbols
1604         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1605         * (dumppBlock): added pCode size estimation
1606         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1607           check for IS_SYMOP before OP_SYMBOL'ing
1608         * fixed indentation, compacted switch-statements
1609         * (allocReg): find free register and allocate it instead of
1610           allocating new registers all the time
1611         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1612           registers as its operands (necessary only for multibyte GETs)
1613
1614 2005-07-01 Raphael Neider <rneider AT web.de>
1615
1616         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1617           debugging .asm-output macros FENTRY + FEXIT
1618         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1619           way... I wonder...
1620         * (emitpComment): NEW, printf to pCode
1621         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1622           offset handling
1623         * (popGetAddr): NEW, variant of popGet to access an immediates
1624           high(er) bytes instead of the n'th byte of memory they reference,
1625           replaced popGet with popGetAddr where neccessary
1626         * (genDataPointerGet): reactivated and fixed implementation
1627         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1628           accesses
1629         * (genDataPointerSet): fixed multibyte assignments
1630         * (genpic14Code): fixed --i-code-in-asm handling
1631         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1632         * (genPlus): fixed index-out-of-bounds error
1633         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1634         * src/pic/ralloc.c: added debugging output macro FENTRY2
1635         * (spillThis): fixed indentation, enbraced for-body for clarity
1636         * (rematStr): commented out as now unused
1637         * (regTypeNum): commented out special spill case (overwrites
1638           arbitrary values)
1639         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1640
1641 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1642
1643         * doc/sdccman.lyx: documented sfr16/sfr32,
1644           added example for using storage class with function pointers
1645         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1646
1647 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1648
1649         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1650         * device/lib/_itoa.c,
1651         * device/lib/_ltoa.c: optimized codesize
1652         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1653           but don't know how to suppress the double warning.
1654         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1655         * support/Util/SDCCerr.c,
1656         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1657
1658 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1659
1660         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1661           fixed old K&R prototypes
1662         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1663         * device/lib/_gptrget.c,
1664         * device/lib/_gptrgetc.c,
1665         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1666           also new versions for small generic pointers and banked generic pointers
1667         * src/port.h: added const_name
1668         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1669         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1670         * src/SDCCcse.c (findPrevIc): check all associative operators
1671         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1672         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1673         * src/SDCCmem.c: updated comments,
1674           set far-space to 0 for pdata, results in optimized code
1675         * src/SDCCmem.h: added macro CONST_NAME
1676         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1677           moving the info into the highest bits, see also gptrget/gptrput
1678         * src/src.dsp: added sdcc.ico to project files
1679         * src/avr/gen.c (genCast): fixed bug 0x%d
1680         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1681         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1682           relation between ptr_type and DCL_TYPE,
1683           (genCast): fixed bug 0x%d
1684         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1685           (CODE)" for const_name
1686         * src/hc08/gen.c (genCast): fixed bug 0x%d
1687         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1688           (hc08_port): added "CONST (CODE)" for const_name
1689         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1690           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1691           between ptr_type and DCL_TYPE,
1692           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1693           operand* and took AOP() inside function so sfr-ness can be checked,
1694           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1695           new prototype,
1696           (genFunction, genEndFunction): optimized stack setup,
1697           (genMinus): optimized for literals with ending zeroes (in bytes),
1698           (genCast): fixed bug 0x%d
1699         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1700           (mcs51_port): added "CONST (CODE)" for const_name
1701         * src/mcs51/peeph.def: made rule 226 more generic
1702         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1703         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1704         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1705         * src/z80/main.c (z80_port): added NULL for const_name,
1706           (gbz80_port): added NULL for const_name
1707         * support/regression/tests/bug663539.c,
1708         * support/regression/tests/sfr16.c: new tests
1709
1710 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1711
1712         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1713
1714 2005-06-24 Raphael Neider <rneider AT web.de>
1715
1716         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1717           corrected typos...
1718         * device/include/pic16/signal.h: added USBIF
1719           and SIG_USB
1720
1721 2005-06-24 Raphael Neider <rneider AT web.de>
1722
1723         * device/lib/pic16/libdev/pic18f2455.c,
1724           device/include/pic16/pic18f2455.h: NEW
1725         * device/include/pic16/pic18fregs.h,
1726           device/lib/pic16/pics.all,
1727           src/pic16/device.c: added 18f2455
1728         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1729           device/include/pic16/{pic18f[68][567].h,usart.h}:
1730           replaced MULTIPLE_USARTS define with more relaible
1731           compatibility sfrs (for USART access)
1732
1733 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1734
1735         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1736           and the output asm file line is printed on two lines.
1737
1738 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1739
1740         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1741           BGT, BLE, BHI, and BLS instructions
1742         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1743           genCmpEq): removed
1744         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1745           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1746           fixes bug #1216342
1747         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1748
1749 2005-06-15 Raphael Neider <rneider AT web.de>
1750
1751         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1752         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1753         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1754           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1755           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1756
1757 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1758
1759         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1760           Marcel Telka in bug #1215704
1761
1762 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1763
1764         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1765           located in shared memory bank.
1766
1767 2005-05-31 Raphael Neider <rneider AT web.de>
1768
1769         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1770           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1771           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1772
1773 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1774
1775         * device/lib/_strncpy.c: fixed the fix
1776
1777 2005-05-26 Raphael Neider <rneider AT web.de>
1778
1779         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1780           initializers with \0, bug #1208187
1781         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1782           intializers with \0, bug #1208187
1783
1784 2005-05-26 Raphael Neider <rneider AT web.de>
1785
1786         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1787           initializers with \0, bug #1208187
1788         * src/pic16/main.c (_process_pragma): added sanity checks
1789           for stack position and size, emit warnings when appropriate
1790
1791 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1792
1793         * device/lib/_strncpy.c: fixed not filling with \0
1794
1795 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1796
1797         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1798           createFunction),
1799         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1800           compound_statement),
1801         * src/SDCCsymt.h,
1802         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1803
1804 2005-05-24 Raphael Neider <rneider AT web.de>
1805
1806         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1807
1808 2005-05-24 Raphael Neider <rneider AT web.de>
1809
1810         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1811           TRISE definitions, closes bug #1162453
1812
1813 2005-05-22 Raphael Neider <rneider AT web.de>
1814
1815         * src/pic16/main.c (_process_pragma): check for missing
1816           arguments to pragmas code and udata
1817         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1818           consistency fixes to match other headers (thanks to Jim Paris)
1819         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1820
1821 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1822
1823         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1824
1825 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1826
1827         * support/regression/tests/bug1198642.c: new test
1828         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1829         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1830         * support/scripts/resource.h,
1831         * support/scripts/resource.rc,
1832         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1833         * support/scripts/sdcc.ico: added 32x32 icon
1834
1835 2005-05-18 Raphael Neider <rneider AT web.de>
1836
1837         * device/lib/pic16/libdev/pic18f*.c,
1838         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1839           keywords to "__sfr" and "__at (X)"
1840         * device/include/pic16/pic18fregs.h: added pic18f4520
1841         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1842           #1203088 (MPLAB compatibility)
1843
1844 2005-05-17 Raphael Neider <rneider AT web.de>
1845
1846         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1847         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1848         * device/lib/pic16/pics.all: added new devices
1849         * src/pic16/device.c: added support for pic18f4520
1850
1851 2005-05-16 Raphael Neider <rneider AT web.de>
1852         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1853         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1854         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1855           convenience function for bit access
1856
1857 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1858
1859         * device/lib/printf_large.c: fixed bug 1193299
1860         * support/regression/tests/bug1057979.c: added test %3.3s
1861
1862 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1863
1864         * device/include/mcs51/8051.h,
1865         * device/include/mcs51/8052.h: made parseable with lint
1866         * device/include/mcs51/lint.h: added include file for (sp)lint
1867         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1868         * doc/cdbfileformat.lyx,
1869         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1870
1871 2005-05-14 Raphael Neider <rneider AT web.de>
1872
1873         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1874         * device/lib/pic16/libc/stdlib/itoa.c (new)
1875         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1876         * device/lib/pic16/libio/Makefile: exclude subdir according to
1877           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1878         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1879         * src/pic16/gen.c (genFunction): prevent annoying warning
1880         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1881           nameclashes on BeOS
1882         * support/cpp2/cppmain.c (cpp_output_string): new
1883         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1884           fixes bug 1116802
1885
1886 2005-05-13 Borut Razem <borut.razem AT siol.net>
1887
1888         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1889
1890 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1891
1892         * .version: changed to version 2.5.1; back to bleeding edge development
1893
1894 2005-05-11 Borut Razem <borut.razem AT siol.net>
1895
1896         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1897           generate PDF version 1.3 documents
1898
1899 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1900
1901         * .version: changed to version 2.5.0
1902
1903 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1904
1905         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1906
1907 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1908
1909         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1910         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1911         well as many smaller updates.
1912         * .version: changed to version 2.5.0-pre1
1913
1914 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1915
1916         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1917
1918 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1919
1920         * support/regression/tests/bug1185672.c: added
1921         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1922           bug 1185672
1923         * src/mcs51/gen.c (genCall): added comments, made it look safer
1924         * src/mcs51/gen.c (genEndFunction): simplified
1925
1926 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1927
1928         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1929
1930 2005-04-14 Borut Razem <borut.razem AT siol.net>
1931
1932         * fixed bug 1045046 - SIGSEGV with really simple code?:
1933           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1934           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1935
1936 2005-04-14 Borut Razem <borut.razem AT siol.net>
1937
1938         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1939           src/pic16/device.h: temporarily disabled experimental #inline pragma
1940           for 2.5.0 release
1941
1942 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1943
1944         * device/include/z80/stdio.h,
1945         * device/include/z80/string.h: removed these highly incomplete files so
1946           SDCC can use the default ones in device/include/
1947
1948 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1949
1950         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1951         gcc warning.
1952         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1953         fix sdcpp warnings.
1954
1955 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1956
1957         * device/include/malloc.h: removed redundant __reentrant prototypes
1958         * device/lib/_mullong.c: added working xstack variant in asm (C version
1959           doesn't pass regression tests)
1960         * device/lib/bpx.c: used __data and made bpx char for mcs51
1961         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1962           (createFunction): fixed bug with xstackPtr
1963         * src/SDCCcse.c: corrected comments
1964         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1965           (killDeadCode, eBBlockFromiCode): removed unused code
1966         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1967           corrected comments
1968         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1969           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1970           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1971           (genModOneByte): fixed warning in MSVC
1972         * src/mcs51/main.c (): added comments
1973         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1974
1975 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1976
1977         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1978
1979 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1980
1981         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1982
1983 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1984
1985         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1986         characters arrays of larger size than the declared one.
1987
1988 2005-04-10 Borut Razem <borut.razem AT siol.net>
1989
1990         * src/pic/gen.c (genInline),
1991           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1992           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1993           (findNextInstruction), (findPrevInstruction),
1994           (findInstructionUsingLabel),
1995           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1996         * src/pic/pcode.c (findLabel): added missing '\n'
1997         * src/src.dsp: added SDCCdwarf2.c to the project
1998
1999 2005-04-09 Borut Razem <borut.razem AT siol.net>
2000
2001         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2002
2003 2005-04-08 Raphael Neider <rneider AT web.de>
2004
2005         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2006           into the chain after a given one) and mergeDefmapSymbols (combine
2007           defmap entries for each symbol per pcode)
2008         * (createDefmap): have defmap entries merged in the end
2009         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2010           a symbol before replacing one access type's symbol, merge symbols in
2011           the end (replacement symbol might already have an entry)
2012         * (assignValnums): keep reference to written WREG intact
2013
2014 2005-04-08 Raphael Neider <rneider AT web.de>
2015
2016         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2017           Alpha)
2018
2019 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2020
2021         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2022         bytes
2023
2024 2005-04-07 Raphael Neider <rneider AT web.de>
2025
2026         * device/include/pic16/usart.h: added compatibility defines for
2027           devices with more than one USART
2028         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2029
2030 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2031
2032         * device/lib/Makefile.in: updated for port specific include
2033
2034 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2035
2036         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2037
2038 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2039
2040         * device/include/8051.h,
2041         * device/include/8052.h,
2042         * device/include/at89S8252.h,
2043         * device/include/at89c55.h,
2044         * device/include/at89x051.h,
2045         * device/include/at89x51.h,
2046         * device/include/at89x52.h,
2047         * device/include/mcs51reg.h,
2048         * device/include/reg51.h,
2049         * device/include/reg764.h,
2050         * device/include/regc515c.h,
2051         * device/include/sab80515.h: (re)moved these 12 files
2052         * device/include/mcs51/8051.h,
2053         * device/include/mcs51/8052.h,
2054         * device/include/mcs51/at89S8252.h,
2055         * device/include/mcs51/at89c55.h,
2056         * device/include/mcs51/at89x051.h,
2057         * device/include/mcs51/at89x51.h,
2058         * device/include/mcs51/at89x52.h,
2059         * device/include/mcs51/mcs51reg.h,
2060         * device/include/mcs51/reg51.h,
2061         * device/include/mcs51/reg764.h,
2062         * device/include/mcs51/regc515c.h,
2063         * device/include/mcs51/sab80515.h: and added them here
2064
2065 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2066
2067         * device/include/stdarg.h: changed SDCC specific keywords to double
2068           underlined form.
2069         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2070           mcs51 and ds390.
2071         * device/include/hc08/mc68hc908gp32.h,
2072         * device/include/hc08/mc68hc908jb8.h,
2073         * device/include/hc08/mc68hc908jkjl.h,
2074         * device/include/hc08/mc68hc908qy.h: fixed comments
2075         * device/include/mcs51/README: updated
2076         * device/include/mcs51/c8051f120.h: added PINRSF
2077         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2078         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2079           amidst code. Also inline is not supported.
2080
2081 2005-04-06 Raphael Neider <rneider AT web.de>
2082
2083         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2084         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2085           callers stack/frame pointers
2086
2087 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2088
2089         * device/include/pic16/usart.h: added, missing in previous commit,
2090         * device/include/pic16/adc.h: fixed typo,
2091         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2092         commit,
2093         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2094         <p18fxxx.inc>
2095         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2096         uninitialized because a bug appears with gplink
2097         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2098         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2099         complains for unrecognised option
2100
2101 2005-04-05 Raphael Neider <rneider AT web.de>
2102
2103         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2104           structs as well (using memcpy)
2105         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2106           on ISRs (GOTO has no label)
2107         * src/pic16/device.h: added OF_OPTIMIZE_DF
2108         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2109           new data flow analysis/optimization
2110         * src/pic16/pcode.c: added (prototypes for and implementation of)
2111           dataflow analysis functions, fixed pCodeInstructions' inCond and
2112           outCond values, made RCALL a branch instruction
2113         * (pic16_unlinkpCode): keep C line if possible
2114         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2115           C line moved if possible
2116         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2117         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2118           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2119         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2120           new flow)
2121         * (pic16_getJumptabpCode): NEW, needed in...
2122         * (LinkFlow): fixed handling of jumptables, calls and conditional
2123           branches
2124         * (pic16_InsertCommentAfter): NEW
2125         * (pic16_pCodeReplace): made verbose and flow preserving
2126         * (AnalyzeFlow): added call to data flow analysis
2127         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2128         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2129         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2130
2131 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2132
2133         * src/SDCCast.c (decorateType): fixed bug #1105626
2134
2135 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2136
2137         * device/include/asm/pic16/features.h,
2138         * pic18f*.h headers,
2139         * device/include/pic16/adc.h,
2140         * device/include/pic16/delay.h,
2141         * device/include/pic16/i2c.h,
2142         * device/include/pic16/malloc.h,
2143         * device/include/pic16/stdio.h,
2144         * device/include/pic16/stdlib.h,
2145         * device/include/pic16/string.h,
2146         * device/lib/pic16/libc/stdio/printf_tiny.c,
2147         * device/lib/pic16/libc/stdio/printf_small.c,
2148         * device/lib/pic16/libc/stdio/strmgpsim.c,
2149         * device/lib/pic16/libc/stdio/strmmssp.c,
2150         * device/lib/pic16/libc/stdio/strmusart.c,
2151         * device/lib/pic16/libc/stdio/vfprintf.c,
2152         * device/lib/pic16/libc/stdlib/ltoa.c,
2153         * device/lib/pic16/libc/stdlib/putchar.c,
2154         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2155         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2156         * device/lib/pic16/libc/stdlib/memchrram.c,
2157         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2158         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2159         * device/lib/pic16/libio/adc/adcbusy.c,
2160         * device/lib/pic16/libio/adc/adcread.c,
2161         * device/lib/pic16/libio/adc/adcsetch.c,
2162         * device/lib/pic16/libio/usart/ubaud.c,
2163         * device/lib/pic16/libio/usart/ubusy.c,
2164         * device/lib/pic16/libio/usart/udrdy.c,
2165         * device/lib/pic16/libio/usart/uopen.c,
2166         * device/lib/pic16/libio/usart/uputc.c,
2167         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2168         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2169         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2170         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2171         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2172         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2173         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2174         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2175         specific keywords to double underlined form,
2176         * device/lib/pic16/libc/Makefile.rules,
2177         * device/lib/pic16/libsdcc/Makefile.rules,
2178         * device/lib/pic16/libm/Makefile,
2179         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2180         to compile with C standard set in Makefile.common
2181         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2182         rand.c and crc.c in compilation process,
2183         * device/lib/pic16/libsdcc/int/divuint.c,
2184         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2185         `c' from signed to unsigned,
2186         * device/lib/pic16/startup/crt0.c,
2187         * device/lib/pic16/startup/crt0i.c,
2188         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2189         keywords to double underlined form, bug fixes in _do_cinit function
2190         which prevented the correct initialization of the .idata segment,
2191         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2192         core to enter a infinite loop
2193         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2194
2195 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2196
2197         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2198
2199 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2200
2201         * device/include/Makefile.in: add support for hc08 subdirectory
2202         * device/include/hc08/: new subdirectory
2203         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2204         Lucas Loizaga, thanks!
2205         * device/include/hc08/mc68hc908qy.h,
2206         * device/include/hc08/mc68hc908gp32.h,
2207         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2208         their own directory. Changed internal macro names to use the compiler
2209         reserved namespace. Changed SDCC specific keywords to double
2210         underlined form.
2211         * device/include/math.h,
2212         * device/include/malloc.h,
2213         * device/include/stdarg.h,
2214         * device/include/stdbool.h
2215         * device/include/string.h,
2216         * device/include/tinibios.h,
2217         * device/include/ds400rom.h,
2218         * device/include/8051.h,
2219         * device/include/8052.h,
2220         * device/include/80c51xa.h,
2221         * device/include/at89c55.h,
2222         * device/include/at89S8252.h,
2223         * device/include/at89x51.h,
2224         * device/include/at89x52.h,
2225         * device/include/ds80c390.h,
2226         * device/include/reg764.h,
2227         * device/include/regc515c.h,
2228         * device/include/sab80515.h,
2229         * device/include/mcs51/c8051f000.h,
2230         * device/include/mcs51/c8051f018.h,
2231         * device/include/mcs51/c8051f020.h,
2232         * device/include/mcs51/c8051f040.h,
2233         * device/include/mcs51/c8051f060.h,
2234         * device/include/mcs51/c8051f120.h,
2235         * device/include/mcs51/c8051f300.h,
2236         * device/include/mcs51/c8051f310.h,
2237         * device/include/mcs51/c8051f320.h,
2238         * device/include/mcs51/c8051f330.h,
2239         * device/include/mcs51/c8051f350.h,
2240         * device/include/z180.h: Changed SDCC specific keywords to double
2241         underlined form.
2242
2243 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2244
2245         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2246         18F4455,
2247         * (pic16_assignConfigWordValue): disable testing of configuration
2248         register value with config mask,
2249         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2250         function with port->fun_prefix,
2251         * (genFunction): when generating a naked interrupt function never
2252         create an absolute segment placed in interrupt vector address, place
2253         the actual interrupt function at IVA instead, when an interrupt
2254         function is generated with unspecified interrupt then do not create
2255         the absolute section,
2256         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2257         code for generating a call to generic pointer get/put function with
2258         a call to function pic16_callGenericPointer(),
2259         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2260         the call to the generic pointer get/put functions with prefixing the
2261         function name with port->fun_prefix,
2262         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2263         * src/pic16/main.c (_process_pragma): prefix function with
2264         port->fun_prefix,
2265         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2266         calling assembler, old 18Fxxxx macro is deprecated,
2267         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2268         PC_ASMDIR in while condition,
2269         * (findInstruction): add PC_ASMDIR in while condition,
2270         * (buildCallTree): prefix main with port->fun_prefix,
2271         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2272         identifier for variable with banked access in instructions BTFSS,
2273         BTFSC, BCF, BSF, BTG
2274         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2275         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2276         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2277         perform optimization when enviroment variable NO_REG_OPT is set,
2278         * (insideLRBlock): NEW, return 1 if register is inside an
2279         INF_LOCALREGS block,
2280         * (RemoveRegFromLRBlock): remove a register that is completely
2281         eliminated by register optimization, but it is still left in local
2282         register store/restore in/from stack block,
2283         * (Remove2pcodes): after removing register, check to see if it
2284         should be removed from local register store/restore in/from stack
2285         block,
2286         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2287         DUMMY_READ_VOLATILE,
2288
2289         * device/include/pic16/adc.h: minor prototype modifications and
2290         update,
2291         * device/include/pic16/malloc.h: added GPL notice various
2292         modifications,
2293         * device/include/pic16/stdint.h: NEW, standard header for ints
2294         * device/include/pic16/delay.h: NEW, header for delay functions,
2295         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2296         delay1mtcy,
2297         * device/include/pic16/signal.h: NEW, header providing helper macros
2298         for implementing signal handlers,
2299         * device/include/pic16/stdio.h: added prototypes for functions,
2300         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2301         prototypes for stdin and stdout, added macro PUTCHAR to
2302         automatically implement putchar function prototype,
2303         * device/include/pic16/usart.h: modified and updated USART library,
2304         * device/lib/pic16/libio/adc/,
2305         * device/lib/pic16/libio/i2c: some modifications to improve library
2306         performance,
2307         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2308         family of functions,
2309         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2310         family of functions and other sources,
2311         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2312         of the PIC18Fxx[28] devices,
2313         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2314         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2315         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2316         _do_cinit function, because the previous failed when local variables
2317         where not placed in the same memory bank,
2318         * device/lib/pic16/libsdcc/char/: various modifications to improve
2319         library performance,
2320         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2321         information on the new functions of the c library and more...
2322
2323 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2324
2325         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2326
2327 2005-03-26 Raphael Neider <rneider AT web.de>
2328
2329         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2330           if condition == CARRY)
2331         * (genCmp): adapted to new genSkipc semantics
2332         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2333           on rIfx (genCmp was broken)
2334
2335 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2336
2337         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2338         * src/z80/main.c (_keywords[]),
2339         * src/SDCCglobal.h (struct options),
2340         * src/SDCC.y,
2341         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2342         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2343         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2344         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2345         always available in leading double underscore form. The C99 support is
2346         mostly missing, but it's a start.
2347         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2348         reserved identifier "__data".
2349
2350 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2351
2352         * src/mcs51/peeph.def: fixed bug 1170013
2353
2354 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2355
2356         * device/include/mcs51reg.h: fixed bug 842007
2357
2358 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2359
2360         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2361         last time.
2362
2363 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2364
2365         * src/port.h (struct PORT),
2366         * src/avr/ralloc.c (avr_assignRegisters),
2367         * src/avr/main.c,
2368         * src/ds390/ralloc.c (ds390_assignRegisters),
2369         * src/ds390/main.c,
2370         * src/hc08/ralloc.c (hc08_assignRegisters),
2371         * src/hc08/main.c,
2372         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2373         * src/mcs51/main.c,
2374         * src/pic/ralloc.c (pic14_assignRegisters),
2375         * src/pic/main.c,
2376         * src/pic16/ralloc.c (pic16_assignRegisters),
2377         * src/pic16/main.c,
2378         * src/xa51/ralloc.c (xa51_assignRegisters),
2379         * src/xa51/main.c,
2380         * src/z80/ralloc.c (z80_assignRegisters),
2381         * src/z80/ralloc.h,
2382         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2383         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2384         * src/SDCCcse.h,
2385         * src/SDCCdflow.c (computeDataFlow),
2386         * src/SDCCdflow.h,
2387         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2388         * src/SDCCloop.h,
2389         * src/SDCCcflow.c (*),
2390         * src/SDCCcflow.h,
2391         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2392         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2393         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2394         immedDom() returning wrong block; probably fixes bug #1160833)
2395
2396 2005-03-20 Borut Razem <borut.razem AT siol.net>
2397
2398         * support/scripts/inc2h.pl: WIN32 port
2399
2400 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2401
2402         * device/lib/makefile.in: added abs.c and labs.c
2403
2404 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2405
2406         * device/include/stdint.h: added
2407         * device/lib/abs.c: added
2408         * device/lib/labs.c: added
2409         * device/include/stdlib.h: added abs() and labs() prototypes
2410         * device/lib/libsdcc.lib: added abs and labs
2411         * device/include/float.h,
2412         * device/lib/_fsmul.c,
2413         * device/lib/printf_fast.c,
2414         * device/lib/printf_tiny.c: updated comments
2415
2416 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2417
2418         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2419         bug #1164313
2420
2421 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2422
2423         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2424         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2425
2426 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2427
2428         * device/lib/printf_large.c: removed inline assembly for portability and
2429           readability. Use printf_fast if speed or size are more important.
2430         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2431         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2432
2433 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2434
2435         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2436         prevent compiler warning
2437
2438 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2439
2440         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2441         moved to level 0 and declared as static. Also they are explicit
2442         placed in access bank. This was necessery because some times they
2443         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2444         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2445         optimizations. Currently only compare to unsigned char is implemented,
2446         * src/pic16/gen.c: added fReturnIdx array,
2447         * (struct resolvedIfx) is moved to gen.h and made public,
2448         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2449         * (aopForSym): added an optimization to directly store in stack of
2450         the operand of a SEND iCode,
2451         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2452         but as registers instead (AOP_REG) using the fReturnIdx array,
2453         * (pic16_freeAsmop): remove the freed register from the
2454         _G.sregsAlloc field,
2455         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2456         a compare of 'WREG',
2457         * (pic16_popGetTempRegCond): changed function prototype, now
2458         function takes also a bitVector argument v which holds the current
2459         set of registers that are allocated for stack access by aopForSym,
2460         registers allocated in aopForSym for accessing stack symbols are not
2461         any more part of the functions usedRegs field,
2462         * (genCall): some times aopOp is called for a stack variable to be
2463         send, aopForSym might perform the push, if this is true make sure
2464         that genCall doesn't push the variable twice by testing _G.resDirect,
2465         * (genFunction): changed testing for unspecified interrupt number
2466         from 256 to INTNO_UNSPEC,
2467         * modified selection scheme of frame pointer generation. Previously
2468         if function did use local registers a frame pointer was generated,
2469         now a frame pointer is generated only if function has arguments
2470         (that need PLUSW2 register access), or has stack arguments, or the
2471         compiler is not instructed to omit the frame pointer,
2472         * (genEndFunction): before restoring local registers that were saved
2473         in the function preamble, also restore the registers that *might*
2474         have been allocated for stack access,
2475         * (genRet): removed some old comments,
2476         * (genCmp, the active (RN's) version): added a call to the
2477         pic16_genCmp_special function to perform the compare with a more
2478         robust and optimized way,
2479         * (genInline): a feature has been added in inline code generation,
2480         which allows a wildcard variable substitution when writing inline
2481         assembly. Code is incomplete and experimental therefore undocumented,
2482         * (genCast): changed order of aopOp for result and right to allow
2483         aopForSym to directly load the result if possible,
2484         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2485         perform an optimized compare on some selected special occasions,
2486         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2487         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2488         generate an IVT any more,
2489         * src/pic16/main.c (pic16_optionsTable): added command line option
2490         --optimize-cmp,
2491         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2492         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2493         macros,
2494         * src/pic16/NOTES: Raphael Neider added in list of active developers
2495         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2496         jumptable_end to prevent bug #,
2497         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2498         inCond and outCond fields,
2499         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2500         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2501         turn off register spilling,
2502         * (packRegsForOneUse): synced with other ports' versions although it
2503         is not used currently,
2504         * (pic16_packRegisters): added an optimization while reading
2505         structure bitfields, some registers may be saved (malloc code is
2506         decreased by 80 bytes)
2507
2508 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2509
2510         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2511         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2512         this can be optimized more?
2513
2514 2005-03-10 Raphael Neider <rneider AT web.de>
2515
2516         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2517           genNearPointerGet): (hopefully) fixed access to bitfields via
2518           pointers (p->bitN = x; and x = p->bitN; failed)
2519
2520 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2521
2522         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2523
2524 2005-03-09 Raphael Neider <rneider AT web.de>
2525
2526         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2527
2528 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2529
2530         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2531         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2532           (regTypeNum): set REG_BIT type if necessary
2533         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2534         * support/regression/tests/critical.c: check bug 1144613
2535
2536 2005-03-02 Raphael Neider <rneider AT web.de>
2537
2538         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2539
2540 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2541
2542         * src/avr/ralloc.c (serialRegAssign),
2543         * src/ds390/ralloc.c (serialRegAssign),
2544         * src/hc08/ralloc.c (serialRegAssign),
2545         * src/mcs51/ralloc.c (serialRegAssign),
2546         * src/pic/ralloc.c (serialRegAssign),
2547         * src/pic16/ralloc.c (serialRegAssign),
2548         * src/xa51/ralloc.c (serialRegAssign),
2549         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2550
2551 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2552
2553         * src/SDCCast.c (decorateType): fixed bug 1124787
2554
2555 2005-02-20 Hubert Sack <sack AT digiplan.de>
2556         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2557
2558         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2559         patch #1121755
2560
2561 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2562
2563         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2564         to keep the correct label reference count when adding/removing references
2565         to labels. A peephole file using this is appended to patch #1144962.
2566
2567 2005-02-14 Raphael Neider <rneider AT web.de>
2568
2569         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2570         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2571         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2572           retrievals of result operand's value on assignment
2573
2574 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2575
2576         * device/include/pic16/string.h: modified prototype for memccpy()
2577         to memccpy(void *, void *, char, size_t)
2578         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2579         check whether to omit frame pointer or not,
2580         * (genInline): convert all occurences of "\n" to LF in inline
2581         assembler blocks, this helps formatting the inline text,
2582         * (pic16_loadFSR0): modified prototype,
2583         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2584         removed some 8051 legacy code,
2585         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2586         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2587         before allocating temporary registers in functions,
2588
2589 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2590
2591         * support/regression/tests/bitvars.c: corrected the "fix"
2592
2593 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2594
2595         * support/regression/tests/bitvars.c,
2596         * support/regression/tests/bitwise.c,
2597         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2598
2599 2005-02-10 Raphael Neider <rneider AT web.de>
2600
2601         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2602           different size for Alpha
2603         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2604
2605 2005-02-09 Raphael Neider <rneider AT web.de>
2606
2607         * src/SDCC.lex(doPragma) : save and restore warning options as well
2608           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2609         * have #pragma less_pedantic set the errorlevel to WARNING
2610           (fixes #1117001)
2611         * (cloneOptimize) : fixed wrong malloc's size
2612         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2613           facilitate correct handling of #pragma (save|restore)
2614
2615 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2616
2617         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2618
2619 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2620
2621         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2622
2623 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2624
2625         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2626
2627 2005-02-02 Raphael Neider <rneider AT web.de>
2628
2629         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2630         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2631         * (pic16_storeForReturn): fixed to allow returning function pointers
2632         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2633         * device/include/pic16/{stddef.h,stdbool.h}: added
2634
2635 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2636
2637         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2638
2639 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2640
2641         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2642         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2643          appeared to be required
2644
2645 2005-01-31 Borut Razem <borut.razem AT siol.net>
2646
2647         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2648           include/mcs51 and include/z80 directories to the package
2649
2650 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2651
2652         * src/hc08/gen.c (genFunction): fixed bug #1112752
2653
2654 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2655
2656         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2657
2658 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2659
2660         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2661
2662 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2663
2664         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2665
2666 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2667
2668         * device/include/c8051fxxx.h: removed these 6 files
2669         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2670
2671 2005-01-26 Raphael Neider <rneider AT web.de>
2672
2673         * src/pic16/gen.c (genAssign): fixed assignment from longs
2674           in codespace (were cut to three bytes)
2675         * (genDummyRead): implemented (except for CODESPACE...),
2676           fixed bug #1108575
2677         * src/pic16/glue.c (emitStatistics): beautified
2678         * device/lib/pic16/libm/Makefile: added include path
2679
2680 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2681
2682         * src/z80/gen.c (aopPut): fixed bug #1103902
2683
2684 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2685
2686         * device/lib/expf.c: fixed bug #1095792
2687
2688 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2689
2690         * device/lib/pic16/libm: added Math library sources
2691
2692 2005-01-24 Raphael Neider <rneider AT web.de>
2693
2694         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2695           to enable upcast to pCodeOpReg2 (there is no type tag to
2696           differenciate the two and pic16_popGet2p cast into PCOR2)
2697         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2698           (sizeof(sectNames) changed to sizeof(sectName))
2699           Both patches fix segfaults under MinGW.
2700
2701 2005-01-23 Raphael Neider <rneider AT web.de>
2702
2703         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2704           Safe_[mc]?alloc()'ed variables
2705         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2706           of (byte sized) temporaries (assign them to WREG for now)
2707         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2708           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2709           this might fix SIGSEGVs on MinGW...
2710         * src/SDCCopt.c (killDeadCode): restored original behaviour
2711           (volatile operands might get thrown away though)
2712
2713 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2714
2715         * src/pic16/gen.c: fixed bug #1106975,
2716         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2717         pointer update, INTCON is saved, global interrupts are disabled and
2718         restored after updateing TOS.
2719         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2720         * added function attribute 'shadowregs' to take advantage of shadow
2721         registers,
2722         * added function attribute 'wparam' as an alternative to the wparam
2723         pragma,
2724         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2725         user declares a non-ISR function as 'shadowregs',
2726         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2727
2728 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2729
2730         * .version: bumped version number to 2.4.8
2731         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2732         pic16 port,
2733         * device/lib/pic16/libio/i2c/: I2C module support library,
2734         * device/include/pic16/i2c.h: I2C support library header,
2735         * device/lib/pic16/libc/stdio/: standard IO support sources,
2736         * (printf_small.c): printf_small() source, supports float print,
2737         * (printf_tiny.c): printf_tiny() source, does not support floats,
2738         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2739         enable global optimizations for entire library source, other
2740         Makefiles in the source tree are also modified to reflect this,
2741         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2742         function,
2743         * doc/sdccman.lyx: updated to reflect new changes,
2744         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2745         sym->onStack if-case,
2746         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2747         sbit, idata, _idata, xdata, _xdata,
2748         * added pragma library, to link an external library, (see doc),
2749         * removed command line options, --pomit-config-words, --pomit-ivt,
2750         --pleave-reset-vector,
2751         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2752         when calling assembler to reflect memory model used, also define
2753         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2754         reflect stack model used,
2755         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2756         on stack return NULL,
2757
2758 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2759
2760         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2761           of the operands is volatile. Fixes #1020220
2762
2763 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2764
2765         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2766         * (OptimizeRegUsage): make sure that there is really no other flow where
2767           the first pCode is used
2768
2769 2005-01-22 Raphael Neider <rneider AT web.de>
2770
2771         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2772           to fix #1106967 (pCode->seq are not set up correctly)
2773
2774 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2775
2776         * src/SDCCglue.c (glue): make sure code area is declared before the
2777         static initialization area.
2778
2779 2005-01-21 Raphael Neider <rneider AT web.de>
2780
2781         * device/lib/Makefile.in: fixed test for pic16 install dir
2782         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2783           optimizations
2784         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2785           added --optimize-goto compiler switch and pragma wparam documentation
2786         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2787         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2788           and PRODH closing bug #1071770 (peephole optimizer)
2789
2790 2005-01-19 Raphael Neider <rneider AT web.de>
2791
2792         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2793           cmdLine buffers (used when calling sdcpp...) are large enough
2794           (MAX_PATH=256 truncates arguments leading to system halts when
2795           used in MinGW...)
2796         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2797         * (genUminus): rewritten to for efficiency
2798         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2799           used uninitialized in some cases)
2800         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2801           copy the third byte from the int -- now assumes 0x80 (data memory)
2802         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2803           operands (genAddLit expects the iCode's operands to swapped as
2804           well), fixed leftover bytes (crashed for short left operands)
2805         * (pic16_genMinusDec): performance improvements, removed false
2806           PIC14 emitSKPNCs
2807         * (pic16_genMinus): fixed to cope with differently sized operands
2808         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2809           for --obanksel > 1
2810         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2811         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2812           new banksel optimization
2813         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2814           analysis for temporary registers (segfaults...)
2815         * src/pic16/peeph.def: added rule
2816
2817 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2818
2819         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2820         which converts a float number to its ASCII representation
2821         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2822         functions to convert the fractional and integer part of a float to ASCII,
2823         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2824         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2825         ram
2826         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2827         _STATMEM macros,
2828         * device/include/pic16/adc.h: added GPL info,
2829         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2830         a pCodeOp as tested operand,
2831         * (genNearPointerGet): optimized bit testing, does not use
2832         intermediate register for bit value, test directly instead with
2833         BTFSS, BTFSC, works only for single bits,
2834         * (genpic16Code): dump the name of the iCode in the asm,
2835         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2836         renamed to pic16_decodeOp,
2837         * (serialRegAssign): do not allocate a temporary register for iCode
2838         sequences that test a single bit for 1/0
2839
2840 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2841
2842         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2843         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2844         access stack and frame pointers. They are initially assigned to
2845         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2846         accessing SFRs. Updated all occurences of modification of stack or
2847         frame pointer in gen.c and pcode.c,
2848         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2849         assigning of a literal value to pointers,
2850         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2851         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2852         selected
2853
2854 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2855
2856         * doc/sdccman.lyx: update documentation about stack pragma, added
2857         some info for stack memory models
2858
2859 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2860
2861         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2862
2863 2005-01-08 Raphael Neider <rneider AT web.de>
2864
2865         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2866           udata sections to fix bug #1097823
2867
2868 2005-01-05 Raphael Neider <rneider AT web.de>
2869
2870         * src/pic16/gen.c (genGenericShift): added handling of differently
2871           sized left operand and result
2872
2873 2005-01-04 Raphael Neider <rneider AT web.de>
2874
2875         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2876         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2877           to hold the condition bit)
2878         * added new version of genCmp (old code available via #define)
2879         * added new version of genShiftLeft/genShiftRight in a generic
2880           way, now supports shifting by negative values
2881         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2882           shiftCount (expected by genGenericShift)
2883         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2884         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2885           dump
2886         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2887           is an invalid literal too...)
2888
2889 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2890
2891         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2892         from Raphael Neider,
2893         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2894         for 8-bit literals. This fixes some literal operands which are sign
2895         extended to 16-bits ints when instruction needs only 8-bits.
2896
2897 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2898
2899         * device/lib/logf.c: added mcs51 assembly version
2900         * device/lib/expf.c: added mcs51 assembly version
2901         * device/lib/_logexpf.c: new shared asm code for expf and logf
2902         * device/include/math.h: add defines for assembly math library
2903         * device/lib/Makefile.in: build new _logexpf.c
2904         * device/lib/libfloat.lib: use new _logexpf.c
2905
2906 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2907
2908         * src/pic/device.c
2909         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2910           device types which have less than 0x7f registers.
2911
2912 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2913
2914         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2915
2916 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2917
2918         * device/lib/printf_fast.c: only build on supported arch.
2919         * device/lib/printf_tiny.c: only build on supported arch.
2920         * device/lib/printf_fast_f.c: only build if asm float lib
2921         * device/lib/_fsget1arg.c: only build if asm float lib
2922         * device/lib/_fsget2args.c: only build if asm float lib
2923         * device/lib/_fsnormalize.c: only build if asm float lib
2924         * device/lib/_fsreturnval.c: only build if asm float lib
2925         * device/lib/_fsrshift.c: only build if asm float lib
2926         * device/lib/_fsswapargs.c: only build if asm float lib
2927         * device/include/stdio.h: don't provide print_fast,
2928           print_fast_f, print_tiny prototypes if --xstack used
2929
2930 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2931
2932         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2933         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2934           to the SOURCES
2935
2936 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2937
2938         * device/lib/printf_fast_f.c: same as printf_fast, but
2939           with floating point enabled
2940         * device/lib/printf_fast.c: minor tweaks
2941         * device/include/stdio.h: add printf_fast_f
2942
2943 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2944
2945         * src/SDCCmain.c: make --float-reent default for mcs51
2946         * device/lib/_fsadd.c: added mcs51 assembly version
2947         * device/lib/_fssub.c: added mcs51 assembly version
2948         * device/lib/_fsmul.c: added mcs51 assembly version
2949         * device/lib/_fsdiv.c: added mcs51 assembly version
2950         * device/lib/_fseq.c: added mcs51 assembly version
2951         * device/lib/_fsneq.c: added mcs51 assembly version
2952         * device/lib/_fsgt.c: added mcs51 assembly version
2953         * device/lib/_fslt.c: added mcs51 assembly version
2954         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2955         * device/lib/Makefile.in: add _fscmp to build
2956         * device/lib/libfloat.lib: add _fscmp to build
2957
2958 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2959
2960         * device/lib/_fs2slong.c: added mcs51 assembly version
2961         * device/lib/_fs2sint.c: added mcs51 assembly version
2962         * device/lib/_fs2schar.c: added mcs51 assembly version
2963         * device/lib/_fs2ulong.c: added mcs51 assembly version
2964         * device/lib/_fs2uint.c: added mcs51 assembly version
2965         * device/lib/_fs2uchar.c: added mcs51 assembly version
2966         * device/lib/_slong2fs.c: added mcs51 assembly version
2967         * device/lib/_sint2fs.c: added mcs51 assembly version
2968         * device/lib/_schar2fs.c: added mcs51 assembly version
2969         * device/lib/_ulong2fs.c: added mcs51 assembly version
2970         * device/lib/_uint2fs.c: added mcs51 assembly version
2971         * device/lib/_uchar2fs.c: added mcs51 assembly version
2972         * device/include/float.h: added #define to select asm vs c
2973
2974 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2975
2976         * device/lib/printf_fast.c: improvements to float output
2977         * device/include/float.h: add defines for assembly float library
2978         * device/lib/_fsget1arg.c: receive 1 float arg
2979         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2980         * device/lib/_fsnormalize.c: normalize a float
2981         * device/lib/_fsreturnval.c: return float, various helper routines
2982         * device/lib/_fsrshift.c: right shift a float's mantissa
2983         * device/lib/_fsswapargs.c: swap 2 floats
2984         * device/lib/Makefile.in: build these 6 new files for mcs51
2985         * device/lib/libfloat.lib: add these 6 files to the library
2986
2987 2004-12-26 Borut Razem <borut.razem AT siol.net>
2988
2989         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2990           built by gcc 3.4.2
2991
2992 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2993
2994         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2995           and fully reentrant and register bank neutral.
2996         * device/lib/printf_fast.c: added float (not enabled by default),
2997           added compact/slower integer (also not enabled by default),
2998           improved size/speed of fast integer code, other minor changes
2999         * device/include/stdio.h, device/lib/Makefile.in,
3000           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3001
3002 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3003
3004         * src/pic16/pcode.c: declaring variables other than at the start of a
3005           block is not supported in C by VC6.
3006
3007 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3008
3009         * applied a previous patch from Raphael Neider that wasn't included
3010         in the previous commits, which fixes infinite loops within jumptable
3011         improvements,
3012         * made some fixes that previous patches introduced
3013
3014 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3015
3016         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3017         that fixes an issue with AOP_PCODE asmop's offset,
3018         * (pic16_popCopyReg): update instance field too,
3019         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3020         function of pic port,
3021         * (genCmp, genAnd, genAssign),
3022         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3023
3024 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3025
3026         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3027         variables initial values to idata section,
3028         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3029         variables in some functions. This utilizes parmBytes field of iCode
3030         structure to hold the offset of the variable in stack. (might be
3031         able to use the stack field too?)
3032         * applied patch from Raphael Neider # ### , # ###
3033         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3034         variable initial values in idata section,
3035         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3036         for static variables with initial value
3037         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3038         applied fix in while loop from Raphael Neider.
3039
3040 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3041
3042         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3043         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3044         * src/ds390/ralloc.c (serialRegAssign): spill bits
3045         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3046         * support/Util/SDCCerr.c,
3047         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3048         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3049         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3050
3051 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3052
3053         * device/include/sdcc-lib.h: inserted LGPL, added includes
3054           asm/ds390/features.h and asm/mcs51/features.h
3055         * device/include/asm/default/features.h,
3056         * device/include/asm/gbz80/features.h,
3057         * device/include/asm/z80/features.h: added empty _AUTOMEM
3058           and _STATMEM
3059         * device/include/asm/ds390/features.h,
3060         * device/include/asm/mcs51/features.h: added files with defines for
3061           _AUTOMEM and _STATMEM indicating automatic and static storage class
3062         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3063         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3064         * src/SDCCicode.c (geniCodeCast),
3065         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3066         * src/SDCCloop.c (loopInduction): removed unused variable lr
3067         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3068           to convertToFcall to include char modulo (RFE 1065037), added check
3069           if left operand is unsigned and use abs of literal value
3070         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3071           as it doesn't work after conversion from peephole.def to peephole.rul
3072         * src/mcs51/gen.c (toBoolean): added check for size,
3073           (genModOneByte): optimized code for signed char modulo a literal
3074           power of 2 (thanks to Hubert Sack),
3075           (genRRC): removed unnecessary "clr c",
3076           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3077         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3078           jump optimization,
3079           swapped rules 256.c and 256.d,
3080           extended 256.d by using new multiple checks (thanks Erik),
3081           added rules 256.e and 256.f,
3082           updated rule 261.a and 261.b to new generated code
3083         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3084
3085 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3086
3087         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3088           induction related bugs, including first part of bug #1074377
3089
3090 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3091
3092         * applied patch from bug-report #1076292,
3093         * applied patches for genAnd and Goto-optimizations for Raphael
3094         Neider,
3095         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3096         dump a less iCode information,
3097         * src/pic16/device.h (pic16_options_t): added field debgen,
3098         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3099         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3100         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3101         puclic,
3102         * (various functions): added macros FENTRY and FENTRY2 to functions,
3103         to emit function prologue,
3104         * (various functions): fixed indentation,
3105         * (genNearPointerGet): fixed loading of FSR0,
3106         * (genPackBits): applied patch from Raphael Neider to fix updating
3107         of FSR0 and touching only the modified bits,
3108         * src/pic16/genarith.c (various functions): added macros FENTRY to
3109         emit function prologue in comments,
3110         * src/pic16/pcode.h: added functions debugf2, debugf3,
3111         * src/pic16/ralloc.c: partial fix for packForPush caused
3112         segmentation fault,
3113
3114 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3115
3116         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3117           <stsp AT users.sourceforge.net> with reversed byte order
3118         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3119
3120 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3121
3122         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3123           bug #1074377
3124         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3125         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3126
3127 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3128
3129         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3130
3131 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3132
3133         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3134           conditions,
3135           (setFromConditionArgs): friendly operand parser for peephole rules,
3136           (operandBaseName, operandsNotRelated): new peephole condition
3137           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3138           architecture specific register naming into account, handles n-way
3139           comparisons, and supports quoted literals
3140         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3141
3142 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3143
3144         * src/mcs51/peeph.def: fixed bug #1076940
3145
3146 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3147
3148         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3149
3150 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3151
3152         Adding support for replacing ljmps with sjmps in jumptables
3153         generated for switch statements. For now you need to set the
3154         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3155         Now 4 algorithms for mcs51 jumptable generation are used:
3156         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3157         addresses loaded pc-relative for up to 112 cases and stack-pushing
3158         target addresses loaded with offset from dptr for up to 256 cases.
3159
3160         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3161         * src/mcs51/main.c: adapted constants for switch table generation
3162         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3163
3164 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3165
3166         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3167         * support/regression/tests/bug1057979.c: added test for bug 1073386
3168
3169 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3170
3171         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3172         compilers
3173
3174 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3175
3176         * src/pic16/device.h,
3177         * src/pic16/genarith.c,
3178         * src/pic16/glue.c,
3179         * src/pic16/main.c,
3180         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3181
3182 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3183
3184         Large cummulative patch for pic16 port.
3185         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3186         to call when a stack overflow occurs,
3187         * (malloc.h): added CVS Id tag,
3188         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3189         variable,
3190         * added libc directory. The current version of LibC contains string
3191         functions, ctype functions and macros and some functions of the
3192         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3193         be extensively tested in the future. Standard disclaimer here.
3194         Library is not automatically build yet. But one can build it by
3195         invoking 'make' inside the libc directory.
3196         * added ADC library under libio. Preliminary version yet.
3197
3198         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3199         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3200         aopForRemat() now and not by pic16_aopOp(),
3201         * (pic16_popGetTempReg): removed warning messgae when allocating
3202         temporary registers, its a buggy feature and will be removed,
3203         * (pic16_popGet): set register instance field in AOP_CRY,
3204         * (pic16_outBitC): fixed for results in size greater than 1,
3205         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3206         * (pic16_storeForReturn): optimized return of 0,
3207         * (genCmp): experimental code for new genCmp which uses PIC18's
3208         special compare&skip instructions. Initial tests fail some times
3209         with variables grater than 1 byte in size, so new code is disabled,
3210         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3211         a single bit,
3212         * (genCast): began a fix to optimize the casting of a bit to another
3213         bit, now assigning a bitfield to another bitfield will fail, sorry,
3214         * src/pic16/main.c: disabled the use of lr-support feature,
3215         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3216         * added some function prototypes, added function _debugf prototype,
3217         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3218         bits with offset (case PO_GPR_BIT),
3219         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3220         command line,
3221         * (isBankInstruction): modified to return 0 for no banking instruction,
3222         and 1 for banking instruction,
3223         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3224         caused stop processing pCodes after a inline assembly block,
3225         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3226         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3227         registers when it shouldn't,
3228         * src/pic16/ralloc.c (allocReg): add preliminary support for
3229         supporting a limited set of temporary registers,
3230
3231 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3232
3233         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3234           genDataPointerSet): ensure assignments always copy in MSB to LSB
3235           order,
3236           (loadRegFromAop): recognize CLRH optimization,
3237           (genFunction): optimize RECEIVE iCodes in reentrant functions
3238
3239 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3240
3241         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3242           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3243           selected.
3244         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3245         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3246           contiguous with data
3247
3248 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3249
3250         * device/lib/_gptrget.c (_gptrget),
3251         * device/lib/_gptrgetc.c (_gptrgetc),
3252         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3253           instead of sjmp to ret
3254         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3255           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3256
3257 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3258
3259         * .version: bumped version to 2.4.7
3260         * device/lib/_gptrget.c (_gptrget): is now _naked
3261         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3262         * device/lib/_gptrput.c (_gptrput): is now _naked
3263         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3264           (createFunction): fixed xstack
3265         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3266         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3267           or bit either,
3268           (geniCodeCritical): store original interrupt state in an iTemp bit
3269           var unless stack-auto
3270         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3271         * src/SDCCmain.c (setIncludePath): added include/target to search path
3272         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3273         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3274           prototype,
3275           (processFuncArgs): put bit vars in bit area
3276         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3277           unsaveRBank): fixed xstack,
3278           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3279           (genFunction, genEndFunction): fixed xstack,
3280           (genAssign): optimization don't walk backwards through mem
3281         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3282         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3283         * support/regression/Makefile: also make library (for stack-auto) when
3284           making "all" and added "test-mcs51-xstack-auto"
3285         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3286         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3287         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3288         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3289         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3290           make-library by MAKE_LIBRARY
3291         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3292           regression tests for xstack
3293         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3294         * support/regression/tests/critical.c: test for critical on mcs51
3295
3296 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3297
3298         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3299           built version of sdcc instead of installed version
3300
3301 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3302
3303         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3304         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3305           vprintf.c now
3306         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3307         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3308           WARNING: remove device/lib/build/z80/printf.o by hand when
3309           updating from previous build!
3310         * device/lib/z80/printf.c: updated comment
3311         * support/regression/tests/bug1057979.c: test all ports now
3312         * support/regression/tests/bug1065458.c: file added
3313
3314 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3315
3316         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3317           *_start and *_end symbols for static functions
3318
3319 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3320
3321         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3322           and search crt0.o in all library paths,
3323           (setIncludePath): proper handling of --nostdinc,
3324           (setLibPath): proper handling of --nostdlib
3325         * support/regression/Makefile,
3326         * support/regression/ports/ds390/spec.mk,
3327         * support/regression/ports/gbz80/spec.mk,
3328         * support/regression/ports/hc08/spec.mk,
3329         * support/regression/ports/mcs51/spec.mk,
3330         * support/regression/ports/mcs51-large/spec.mk,
3331         * support/regression/ports/mcs51-stack-auto/spec.mk,
3332         * support/regression/ports/z80/spec.mk: use include and lib files from
3333           built version of sdcc instead of installed version
3334         * doc/sdccman.lyx: fixed typo in --nostdinc
3335
3336 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3337
3338         * src/pic/pcode.c,
3339         * src/pic/device.c,
3340         * src/pic/ralloc.c,
3341         * src/pic/gen.c : added support to generate code for struct bit fields.
3342
3343 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3344
3345         * as/xa51/xa_version.h,
3346         * device/include/errno.h,
3347         * device/include/regc515c.h,
3348         * device/lib/_itoa.c,
3349         * device/lib/_ltoa.c,
3350         * device/lib/ser_ir_cts_rts.c,
3351         * sim/ucsim/xa.src/glob.cc,
3352         * sim/ucsim/xa.src/inst_gen.cc,
3353         * sim/ucsim/xa.src/xa_bit.cc,
3354         * sim/ucsim/xa.src/xa_sfr.cc,
3355         * sim/ucsim/z80.src/inst_dd.cc,
3356         * sim/ucsim/z80.src/inst_fdcb.cc,
3357         * support/scripts/keil2sdcc.pl,
3358         * src/pic16/pic16.dsp,
3359         * src/pic16/pic16a.dsp: corrected cvs line endings
3360         * device/lib/printf_large.c: fixed bug 1057979
3361         * src/pic16/gen.c: fixed non-C standard code
3362         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3363         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3364         * support/regression/ports/mcs51/support.c: reload T1 asap
3365         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3366           pdata use and clear idata startup behaviour
3367         * support/regression/tests/bug1057979.c: added
3368
3369 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3370
3371         * device/examples/ds390/ow390/ad26.h,
3372         * device/examples/ds390/ow390/cnt1d.h,
3373         * device/examples/ds390/ow390/crcutil.c,
3374         * device/examples/ds390/ow390/ownet.h,
3375         * device/examples/ds390/ow390/owsesu.c,
3376         * device/examples/ds390/ow390/swt12.h,
3377         * device/examples/ds390/ow390/swtoper.c,
3378         * device/examples/ds390/ow390/temp10.h,
3379         * device/examples/ds390/ow390/thermodl.c,
3380         * device/examples/ds390/tinitalk/tinitalk.dsp,
3381         * device/examples/ds390/tinitalk/tinitalk.dsw,
3382         * device/examples/mcs51/clock/hw.h,
3383         * device/examples/mcs51/simple2/go.bat,
3384         * device/examples/serialcomm/windows/serial.h,
3385         * device/examples/xa51/dummy.c,
3386         * device/examples/xa51/hello.c,
3387         * device/include/80c51xa.h,
3388         * device/include/at89x051.h: corrected cvs line endings
3389
3390 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3391
3392         * src/pic16/main.c (options): added command line --gstack, to trace
3393         stack over/under flows,
3394         * added pragma 'wparam' to allow passing first byte of function
3395         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3396         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3397         call to __gstack_test function and sets up the symbol as extern,
3398         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3399         * popaop): added call to pic16_testStackOverflow,
3400         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3401         wparamList list,
3402         * (genCall, genPcall): now all parameters are passed via stack
3403         except in functions that are pass to wparam pragma in which WREG is
3404         used too,
3405         * (genPcall): REENTRANT flag is checked to see if variable prototype
3406         contains reentrant keyword, don't call a non-reentrant function, via
3407         a reentrant function pointer or vice versa, functions are never
3408         passed via WREG,
3409         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3410         D.Winkler,
3411         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3412         SIGSEGV when accessing a NULL register stucture,
3413         * (pic16_printGPointerType): modified to handle UPPER modifier for
3414         function initializers, changed prototype of function to simpler one,
3415         * (pic16_printIvalFuncPtr): check to see if function is already
3416         added in externs list,
3417         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3418         optimized a move from W to SFR with a move to the same register
3419         later after a CALL,
3420         * device/lib/pic16/debug: NEW directory, contains debug features
3421         which are enabled when linking with libdebug.lib, currently command
3422         line option --gstack enables stack pointer tracing for over/under
3423         flow, corresponding sources are in debug/gstack
3424
3425 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3426
3427         * doc/sdccman.lyx: updated SDCC version,
3428         * (PIC16 port): update list of command line options,
3429         * src/pic16/device.h (structure pic16_options_t): added field gstack
3430         to enable stack overflow tracing on push/pops,
3431         * src/pic16/device.c (statistics structure): added statistics
3432         structure,
3433         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3434         pic16_dump_int_registers): increase statistics counters for each
3435         * variable which is encountered
3436         * (pic16_dump_usection): emit each .udata variable to its own udata
3437         section,
3438         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3439         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3440         parameters via stack, otherwise use old scheme,
3441         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3442         assembler output file,
3443         * src/pic16/main.c: added command line options --gstack to enable
3444         push/pop tracing for stack overflow,
3445         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3446         instructions): added size of each instruction,
3447         * (pic16_countInstruction): estimate size of instructions in
3448         the_pFile list, inline assembly blocks are not counted,
3449         * (pic16_FixRegisterBanking): trace previous register usage, when
3450         banksel optimizations is greater than 0, don't emit a redudant
3451         banksel directive,
3452
3453 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3454
3455         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3456         * src/pic16/ralloc.c : applied same fix for pic16.
3457         * src/pic/gen.c : tidied it up a little.
3458
3459 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3460
3461         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3462         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3463
3464 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3465
3466         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3467
3468 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3469
3470         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3471         non-reentrant function __modsint in the interrupt function (thus
3472         corrupting math operations during serial I/O)
3473         * device/lib/ser_ir.c: as above, changed buffersize
3474         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3475         256.c,d for zeroing
3476         * doc/Makefile: added option -t for rsync
3477
3478 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3479
3480         * src/SDCCast.h (struct ast),
3481         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3482
3483 2004-10-20 Borut Razem <borut.razem AT siol.net>
3484
3485         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3486         package
3487
3488 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3489
3490         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3491         makefile targets,
3492         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3493         support functions to replace long sequences of MOVFF's from access
3494         bank registers to stack and vice versa,
3495         * src/pic16/device.h: added new field opt_flags, where optimization
3496         flags can be set to enable certain features,
3497         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3498         * pBlock, (genFunction, genEndFunction): surroung loop for
3499         saving/loading used registers in stack with PC_INFO pCodes,
3500         INF_LREGS. Code in between can then be optimized by pCode optimizer
3501         to support function calls,
3502         * (genDataPointerSet): fixed bug which loaded float fields in
3503         structures with corrupt data,
3504         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3505         in a standard way debug info on stderr. Feature used for developing
3506         and debugging only,
3507         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3508         obsolete chunks of code,
3509         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3510         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3511         * pic16/src/pcode.c (pic16_newpCodeInfo,
3512         * (pic16_newpCodeOpLocalRegs),
3513         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3514         feature,
3515         * (pic16_pCodeConstString): printing of the initial value of a
3516         symbol as a comment is inhibited since parsing was already done by
3517         copyStr and output is corrupt,
3518         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3519
3520 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3521
3522         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3523
3524 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3525
3526         * as/mcs51/lkarea.c: removed old K&R style,
3527           (lnksect): changed check on boundary error,
3528           (lnksect2): changed check on boundary error,
3529           (lnksect2): extend XSTK to end of page if size = 1
3530         * as/mcs51/lkmain.c: removed old K&R style,
3531           (Areas51): create l_IRAM symbol
3532         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3533         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3534           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3535         * device/lib/_mullong.c: added version to be compiled with xstack
3536         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3537         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3538         * device/lib/mcs51/crtxstack.asm: fixed comment
3539         * src/SDCCglue.c: maxInterrupts defaults to 0,
3540           (emitMaps): added pdata,
3541           (createInterruptVect): (re)moved default,
3542           (glue): added pdata,
3543           (glue): moved __start__xstack to XSTK with default size 1
3544         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3545           and options.float_rent when options.stackAuto is set,
3546           (linkEdit): only write XDATA_NAME if provided on command line
3547         * src/SDCCmem.h,
3548         * src/SDCCmem.c: added pdata
3549         * src/port.h: added pdata_name to PORT
3550         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3551           (saveRegisters, unsaveRegisters): removed usage of B,
3552           (genMinus): fixed accumulator clash,
3553           (genJumpTab): added comment, this needs another look
3554         * src/mcs51/gen.c: added check for "B in use" paranoia,
3555           added pushB() and popB()
3556         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3557           chance
3558         * src/avr/main.c,
3559         * src/ds390/main.c,
3560         * src/hc08/main.c,
3561         * src/mcs51/main.c,
3562         * src/pic/main.c,
3563         * src/pic16/main.c,
3564         * src/xa51/main.c,
3565         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3566           added PSEG (PAG,XDATA) or NULL to port specifier
3567         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3568         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3569           (_mcs51_genInitStartup): removed __start__xstack equ,
3570           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3571         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3572         * src/z80/gen.c (_rleAppend): fixed warnings
3573         * support/regression/tests/zeropad.c: added pdata test
3574         * .version: bumped to 2.4.6
3575
3576 2004-10-17 Borut Razem <borut.razem AT siol.net>
3577
3578         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3579         as a part of nightly build
3580
3581 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3582
3583         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3584         WREG holds the first byte function parameters,
3585         * (aopForSym): take special case for symbols which are in FARSPACE
3586         but in CODESPACE too,
3587         * (assignResultValue): modified to take into account _G.useWreg,
3588         * (genCall): don't use wreg for parameter passing when function is
3589         declared as reentrant, too, added optimization INCF to stack
3590         pointer when stack parameter count is 1,
3591         * (genFunction, genEndFunction): refurnished and fixed to not using
3592         wreg for passing parameters when function has varargs or is
3593         reentrant, fixed bug with symbol name compare for generating
3594         functions in absolute address,
3595         * (pic16_storeForReturn): refurnished,
3596         * (genCmp): began writing a new version of the function, not ready
3597         yet, therefore it is disabled,
3598         * (genAssign): do not read code memory when assigning a function to
3599         a pointer function,
3600         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3601         array of characters, not pointer,
3602         * (pic16initialComments): in debug mode emit an .ident directive for
3603         the assembler,
3604         * (_process_pragma): emit a new warning type (internal to pic16)
3605         when setting stack to default length, emit a similar warning when
3606         placing a function at absolute address and address is not word aligned
3607         * (_pic16_parseOptions): added 'return TRUE' statement,
3608         * (_pic16_linkEdit): if compiling a source, then add the source's
3609         file object, first in the list of objects to link,
3610
3611 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3612
3613         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3614         * src/pic/main.c : removed VC warning.
3615         * src/pic/gen.c : changed comment.
3616
3617 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3618
3619         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3620         reference to a deprecated symbol _GPTRREG was causing failure to
3621         link. Thanks G. M. Gallant for the info.
3622
3623 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3624
3625         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3626         comments for Bugs item #954788.
3627
3628 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3629
3630         * src/pic16/device.c (pic16_dump_gsection,
3631         * pic16_groupRegistersInSection): handle symbols declared to be in
3632         access bank differently,
3633         * src/pic16/gen.c (struct _G): added field resDirect,
3634         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3635         send values read from stack directly to result and don't allocate
3636         temporary values,
3637         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3638         same registers,
3639         * (pic16_sameRegsOfs): NEW,
3640         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3641         free because they were not allocated from temporary pool,
3642         * pic16_popRegFromString): workaround to fix a problem with
3643         allocating variables twice or never,
3644         * (genGenPointerGet): using PRODL instead of FSR0H,
3645         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3646         instead of FSR0H,
3647         * (genAssign): take advantage of the _G.resDirect flag,
3648         * (genCast): around line 11844, use mov2f instead of directly
3649         MOVFF'ing between operands to account for literal values,
3650         * src/pic16/genutils.c: some new debug functions for gpsim have been
3651         added,
3652         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3653         float with integer part only,
3654         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3655         place variables in access bank
3656         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3657         updated sources to reflect recent changes in gen.c
3658
3659 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3660
3661         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3662         sources that searched for headers in installation path, now the
3663         device/include/pic16 is used,
3664         * src/pic16/glue.c (pic16glue),
3665         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3666         .line directives if not in debug mode, this suppresses assembler's
3667         warnings for ignored directives
3668
3669 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3670
3671         * src/port.h: made reset_regparms prototype void parameter explicit.
3672         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3673         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3674         * doc/sdccman.lyx: documented warning disabling and how to use
3675           printf_large to make it print floats.
3676         * device/include/stdbool.h: NEW
3677         * device/lib/_atof.c,
3678         * device/lib/_divuint.c,
3679         * device/lib/_divulong.c,
3680         * device/lib/expf.c,
3681         * device/lib/printf_large.c,
3682         * device/lib/sincosf.c,
3683         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3684         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3685           a completely reentrant lib.
3686
3687 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3688
3689         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3690         * device/include/pic16/stdio.h: fixed bug with colon
3691
3692 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3693
3694         * device/include/pic16/stdio.h,
3695         * device/include/pic16/stdlib.h,
3696         * device/include/pic16/math.h: NEW
3697         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3698         declared as _naked to reduce overhead
3699         * device/lib/Makefile.in (target port-specific-objects-pic16):
3700         changed * to *.* so to ignore the CVS directory,
3701         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3702         stacked variables back in stack,
3703         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3704         corruption
3705
3706 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3707
3708         * .version: bumped version number to 2.4.5
3709         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3710         * support/Util/SDCCerr.c (messages structure): added entry for
3711         W_POSSBUG2
3712
3713         Large cumulative patch for pic16 port and libraries.
3714         * device/include/pic16/sdcc-lib.h,
3715         * device/include/pic16/stdarg.h,
3716         * device/include/asm/pic16/features.h,
3717         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3718         * device/include/pic16/float.h: changes reentrant keyword with
3719         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3720         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3721         updated target build-libraries to include objects from gptr,
3722         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3723         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3724         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3725         all function headings,
3726         * src/SDCCmain.c: added global parameter userIncDirsSet,
3727         * (parseCmdLine): when option -I is encountered add directory to
3728         userIncDirsSet too,
3729         * src/version.awk: added space between control and long,
3730         * src/pic16/NOTES: added some notes for the port,
3731         * src/pic16/gen.c: added prototype for mov2fp function,
3732         * (fReturnpic16[]): properly named return value registers,
3733         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3734         * (aopForSym): added code to handle symbols with onStack flag set,
3735         symbols onStack are allocated PTRSIZE bytes,
3736         * (aopFreeAsmop): handles special case where asmops are stack objects,
3737         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3738         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3739         added argument lock to trace flaws in allocating temporary registers
3740         when developing port,
3741         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3742         * (pic16_popRegFromString): reenabled allocating a direct register
3743         from string,
3744         * (assignResultValue): various beautifications,
3745         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3746         referenced function argument,
3747         * (genIpush): reenabled to allow stacked arguments, handles only
3748         ic->parmPush iCodes,
3749         * (genCall, genPcall): major changes to allow for variable argument
3750         functions, fixed a bug with falsely restoring stack pointer after
3751         returning from call,
3752         * (genFunction): pending code for critical function,
3753         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3754         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3755         * (genNearPointerGet): fixed bug with indirect reading, was always
3756         reading from INDF0
3757         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3758         pointers,
3759         * (genAddrOf): rewrote code to take address of a stacked function parameter
3760         * (genCast): fixed casting to generic pointer type,
3761         * src/pic16/gen.h: added AOP_STA,
3762         * (struct asmop): added field stk,
3763         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3764         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3765         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3766         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3767         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3768         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3769         generic pointers,
3770         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3771         and library paths,
3772         * (pic16_port structure): generic pointer size is set to 3,
3773         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3774         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3775         compiler warning,
3776         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3777         operand is an iTemp,
3778
3779 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3780
3781         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3782         * debugger/mcs51/simi.c: addapt new syntax of s51
3783
3784 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3785
3786         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3787         * src/pic16/pcode.c: commented out some calls to free() in order to
3788         fix bug #989576,
3789
3790 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3791
3792         * src/SDCCicode.h,
3793         * src/SDCCicode.c (isiCodeInFunctionCall),
3794         * src/avr/ralloc.c (selectSpil),
3795         * src/pic/ralloc.c (selectSpil),
3796         * src/pic16/ralloc.c (selectSpil),
3797         * src/ds390/ralloc.c (selectSpil),
3798         * src/hc08/ralloc.c (selectSpil),
3799         * src/xa51/ralloc.c (selectSpil),
3800         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3801         stack in the middle of a function call sequence (fixes bug #1020268)
3802         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3803         costs associated with the minimum switch case.
3804
3805 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3806
3807         * src/SDCC.lex: fixed bug #1030549
3808
3809 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3810
3811         * src/SDCCcse.h (struct cseDef),
3812         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3813         over a function call if the CSE is derived from a symbol whose
3814         address has been taken (fixes bug #1029883)
3815         * support/regression/tests/bug-1029883: a new regression test for
3816         this bug
3817
3818 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3819
3820         * src/hc08/gen.c (emitinline): fixed bug #1029778
3821         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3822         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3823         and starts toward RFE #905167)
3824
3825 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3826
3827         * src/pic16/gen.c (mov2f): New function to move an operand to
3828         another without considering if it is a literal or a register,
3829         * (pic16_sameRegs): don't check if they are both AOP_REG,
3830         * (AccRsh): removed andmask=0 lines,
3831         * (genLeftShift): duplicated to be improved in future versions,
3832         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3833         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3834         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3835         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3836         * (insertBankSwitch): fixed inserting banksel directives algorithm
3837         for instructions that follow a skip instruction, this fixes a report
3838         for broken subtraction code generation,
3839         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3840         iCode is a left op, just in case result and right share the same
3841         registers
3842
3843 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3844
3845         * src/hc08/main.c,
3846         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3847         preservation of HX
3848         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3849         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3850         on 2004-09-12; it was buggy
3851
3852 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3853
3854         * src/SDCCsymt.h: removed RESULT_CHECK
3855         * src/SDCCast.c,
3856         * src/SDCCglue.c,
3857         * src/SDCCval.c,
3858         * src/pic/glue.c,
3859         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3860
3861 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3862
3863         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3864         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3865         configuration values no more rejected by compiler, they are assigned
3866         to configuration registers with a warning message instead,
3867         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3868         the for-loop so last conf register is emitted too,
3869         * (_pic16_initPaths): link library libsdcc.lib by default,
3870         * (_hasNativeMulFor): modified test for multiplication according to
3871         Raphael Neider's remarks. Integer multiplication is also done with
3872         support functions,
3873         * device/include/pic16/pic18fregs.h: corrected type error in while
3874         testing and including 18f6720 header file
3875
3876 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3877
3878         * src/pic16/device.h (pic16_options): removed field use_crt,
3879         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3880         until an optimization to handle single bits is added,
3881         * (pic16_loadFSR0): moved before genUnpackBits,
3882         * (genAnd): some white lines removed,
3883         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3884         leave_reset flags in pic16_options when using crt modules,
3885
3886 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3887
3888         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3889           for bugs 898889 & 979599. Also used some safer print instructions.
3890
3891 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3892
3893         * src/pic16/device.h (pic16_options_t): added field use_crt,
3894         crt_name, no_crt,
3895         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3896         catch a probable future bug,
3897         * src/pic16/gen.c: aopIdx function commented out,
3898         * (genAssign): commented out old code which used aopIdx,
3899         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3900         code, added if conditionals to take into account the --use-crt
3901         command line options,
3902         * src/pic16/main.c (pic16_optionsTable): added new command line
3903         options, --use-crt= and --no-crt,
3904         * (_pic16_linkEdit): now the proper crt object is added in the
3905         linker command line except than when --no-crt is specified,
3906         * src/pic16/pcode.c,
3907         * src/pic16/pcode.h: added some structures and functions for a new
3908         optimization scheme to compansate for instruction overhead between
3909         same iCodes, this scheme is currently under development and is not
3910         working in any way,
3911         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3912         to && operator,
3913         * device/lib/pic16/startup/crt0i.c,
3914         * device/lib/pic16/startup/crt0iz.c: added global char variable
3915         __uflags to force the generation of an idata section
3916
3917 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3918
3919         * doc/Makefile,
3920         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3921         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3922
3923 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3924
3925         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3926         Frieder) and clarified the default code optimization mode
3927
3928 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3929
3930         * src/SDCC.lex (doPragma, process_pragma),
3931         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3932         "opt_code_size", and "opt_code_balanced"
3933         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3934         regrouped options by category, added support for category headers
3935         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3936         and "--opt-code-size"
3937         * doc/sdccman.lyx: documented these new options and pragmas
3938         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3939         preference into account
3940
3941 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3942
3943         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3944           geniCodePreDec): Fixed bug 904237 by generating a warning
3945         * src/SDCCerr.h,
3946         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3947
3948 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3949
3950         * src/pic/device.c : When no max ram set validate full memory range.
3951         * src/pic/pcode.c,
3952         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3953
3954 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3955
3956         * device/lib/_gptrget.c,
3957         * device/lib/_gptrput.c: updated comment
3958         * device/lib/calloc.c,
3959         * device/lib/free.c,
3960         * device/lib/malloc.c,
3961         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3962         * src/SDCCcse.c (cseBBlock),
3963         * src/SDCCicode.c (printOperand, geniCodeArray),
3964         * src/SDCCicode.h (struct operand): fixed bug 868103
3965         * support/regression/tests/bug-868103.c: added
3966         * src/SDCCast.c (searchLitOp),
3967         * src/SDCCcse.h (struct cseDef),
3968         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3969         * src/SDCCicode.h (struct operand),
3970         * src/SDCCsymt.h (struct sym_link),
3971         * src/avr/gen.c (hasInc),
3972         * src/ds390/gen.c (hasInc),
3973         * src/hc08/gen.c (genPlusIncr, hasInc),
3974         * src/mcs51/gen.c (hasInc),
3975         * src/pic16/glue.c (pic16_printIvalChar),
3976         * src/pic16/ralloc.c (regWithIdx),
3977         * src/xa51/gen.c (hasInc) : removed warnings
3978         * src/SDCCast.c (createBlock): added comment ???
3979         * src/hc08/ralloc.c: updated comments
3980
3981 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3982
3983         * doc/sdccman.lyx: updated section on switch statements, added
3984         section about semaphore locking
3985         * doc/Makefile: added option -info for latex2html
3986         * device/lib/_gptrget.c,
3987         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3988
3989 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3990
3991         * src/pic/device.h,
3992         * src/pic/device.c,
3993         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3994          maxram is less than 0x100.
3995
3996 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3997
3998         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3999
4000 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4001
4002         * src/port.h,
4003         * src/mcs51/main.c,
4004         * src/ds390/main.c,
4005         * src/z80/main.c,
4006         * src/hc08/main.c,
4007         * src/pic/main.c,
4008         * src/pic16/main.c,
4009         * src/avr/main.c,
4010         * src/xa51/main.c
4011         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4012         a jump table is the best form for a switch statement, including
4013         automatic insertion of missing cases to make the case range
4014         continuous. Developed in collaboration with Frieder Ferlemann.
4015
4016 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4017
4018         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4019         accumulator result if it needs sign extension
4020
4021 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4022
4023         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4024
4025 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4026
4027         * device/lib/gbz80/printf.c,
4028         * device/lib/z80/printf.c: removed define for NULL
4029
4030 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4031
4032         * as/xa51/xa_link.c,
4033         * device/examples/ds390/ow390/ad26.c,
4034         * device/examples/ds390/ow390/cnt1d.c,
4035         * device/examples/ds390/ow390/counter.c,
4036         * device/examples/ds390/ow390/ds2480.h,
4037         * device/examples/ds390/ow390/ds2480ut.c,
4038         * device/examples/ds390/ow390/findtype.c,
4039         * device/examples/ds390/ow390/gethumd.c,
4040         * device/examples/ds390/ow390/owllu.c,
4041         * device/examples/ds390/ow390/ownetu.c,
4042         * device/examples/ds390/ow390/swt12.c,
4043         * device/examples/ds390/ow390/swtloop.c,
4044         * device/examples/ds390/ow390/temp.c,
4045         * device/examples/ds390/ow390/temp10.c,
4046         * device/examples/ds390/ow390/thermo21.c,
4047         * device/examples/ds390/ow390/tinilnk.c,
4048         * device/examples/ds390/ow390/tstfind.c,
4049         * device/examples/serialcomm/windows/serial.cpp,
4050         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4051         * device/include/reg51.h: fixed line endings for cvs
4052
4053 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4054
4055         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4056         packRegsForAccUse, packRegisters): new accumulator register
4057         packing algorithm
4058         * support/regression/ports/hc08/support.c (_putchar): suppress
4059         warning of unused variable
4060         * src/SDCCicode.c: added SWAP entry to codeTable
4061
4062 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4063
4064         * device/lib/sprintf.c: forgot to add this file before previous commit
4065
4066 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4067
4068         * src/pic16/gen.c (genPackBits): added operand right in function
4069         parameters, load result directly if p_type is POINTER (that is
4070         called by genNearPointerSet)
4071         * (genUnPackBits): added operand left in function parameters,
4072         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4073         FSR0 if accessing bitfields,
4074
4075 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4076
4077         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4078           _print_format; updated printf, sprintf, vsprintf
4079         * device/include/asm/default/features.h: corrected comment/define
4080         * device/lib/Makefile.in: added sprintf.c
4081         * device/lib/libsdcc.lib: added sprintf module
4082         * device/lib/printf_large.c,
4083         * device/lib/vprintf.c,
4084         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4085           into these 3 files
4086         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4087         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4088         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4089           hc08 test
4090         * support/regression/tests/zeropad.c: define idata as data for hc08
4091
4092 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4093
4094         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4095         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4096         labels are referenced at least once (even if a reference is not found)
4097         * src/hc08/gen.c (emitcode): set isComment flag for comments
4098         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4099         loads), rules 6a..6b (optimize jumps to return)
4100
4101 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4102
4103         * device/lib/acosf.c (acosf),
4104         * device/lib/asinf.c (asinf),
4105         * device/lib/atanf.c (atanf),
4106         * device/lib/ceilf.c (ceilf),
4107         * device/lib/cosf.c (cosf),
4108         * device/lib/coshf.c (coshf),
4109         * device/lib/cotf.c (cotf),
4110         * device/lib/fabsf.c (fabsf),
4111         * device/lib/floorf.c (floorf),
4112         * device/lib/log10f.c (log10f),
4113         * device/lib/logf.c (logf),
4114         * device/lib/sinf.c (sinf),
4115         * device/lib/sinhf.c (sinhf),
4116         * device/lib/sqrtf.c (sqrtf),
4117         * device/lib/tanf.c (tanf),
4118         * device/lib/tanhf.c (tanhf),
4119         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4120         replaced all instances of "reentrant" in the library functions
4121         defined in math.h with this macro.
4122         * support/regression/tests/float_trans.c: reenabled test for hc08
4123
4124 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4125
4126         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4127         erroneously deleted
4128
4129 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4130
4131         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4132         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4133         multi-byte volatile operands are used
4134         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4135         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4136         initialization to area GSINIT0 so that it would always precede
4137         any static initializers in GSINIT
4138         * support/regression/tests/zeropad.c: fixed idata define for hc08
4139         * support/regression/tests/bug-927659.c,
4140         * support/regression/tests/float_trans.c: disabled tests for hc08
4141         pending missing library routines
4142         * .version: increased version number to 2.4.4 - hc08 port now passes
4143         regression tests
4144
4145
4146 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4147
4148         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4149         * Makefile.common.in,
4150         * as/Makefile,
4151         * as/hc08/Makefile.in,
4152         * as/mcs51/Makefile.in,
4153         * as/z80/Makefile.in,
4154         * debugger/mcs51/Makefile.in,
4155         * device/include/Makefile.in,
4156         * device/lib/Makefile.in,
4157         * doc/Makefile,
4158         * link/Makefile,
4159         * link/z80/Makefile.in,
4160         * packihx/Makefile.in,
4161         * sim/ucsim/main_in.mk,
4162         * sim/ucsim/avr.src/Makefile.in,
4163         * sim/ucsim/doc/Makefile.in,
4164         * sim/ucsim/gui.src/serio.src/Makefile.in,
4165         * sim/ucsim/hc08.src/Makefile.in,
4166         * sim/ucsim/s51.src/Makefile.in,
4167         * sim/ucsim/xa.src/Makefile.in,
4168         * sim/ucsim/z80.src/Makefile.in,
4169         * src/Makefile.in,
4170         * support/cpp2/Makefile.in,
4171         * support/librarian/Makefile,
4172         * support/makebin/Makefile: added DESTDIR to the install path proposed
4173         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4174         * doc/sdccman.lyx: added DESTDIR documentation
4175
4176 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4177
4178         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4179         instruction for interrupt handlers, use fast returns when returning
4180         from high priority interrupts
4181
4182 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4183
4184         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4185         code generation
4186         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4187         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4188         bugs, ported much of Bernhard's code from mcs51
4189         * src/mcs51/gen.c (genSend),
4190         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4191         than one when calling a reentrant function
4192         * device/lib/_mullong.c: defined an alternate struct layout for big
4193         endian ports (hc08)
4194
4195 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4196
4197         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4198         test
4199
4200 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4201
4202         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4203         are sane and complete before asking the port its prefered parameter
4204         passing method (fixes bug #1017633)
4205         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4206         and _ret3
4207
4208 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4209
4210         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4211         problem in bitfields >= 8 bits.
4212
4213 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4214
4215         * src/SDCCsymt.c: undid changes that were not meant to be committed
4216
4217 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4218
4219         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4220
4221 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4222
4223         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4224           copied and wrong bit got inverted
4225
4226 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4227
4228         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4229         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4230         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4231         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4232         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4233         assignments to bitfields at known addresses
4234         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4235         reads from bitfields at known addresses
4236         * src/hc08/ralloc.c (packRegisters),
4237         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4238         genhc08Code): optimize pointer get values used as conditionals
4239         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4240         and branch
4241
4242 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4243
4244         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4245         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4246         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4247         as conditionals
4248
4249 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4250
4251         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4252
4253 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4254
4255         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4256         related problems
4257
4258 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4259
4260         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4261
4262 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4263
4264         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4265         mcs51 port
4266
4267 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4268
4269         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4270
4271 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4272
4273         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4274         cases use more compact code.
4275
4276 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4277
4278         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4279
4280 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4281
4282         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4283
4284 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4285
4286         * src/SDCCsymt.h,
4287         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4288         parameter of changePointer() from symbol* to sym_link*
4289         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4290         * src/SDCCsymt.c (compareType): void* type is castable to other
4291         pointers, but not necesarily an exact match.
4292         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4293         is no longer blindly treated as an exact match.
4294         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4295
4296 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4297
4298         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4299
4300 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4301
4302         * src/pic/gen.c,
4303         * src/pic/pcode.c,
4304         * src/pic/ralloc.h,
4305         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4306
4307 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4308
4309         * src/pic/device.c,
4310         * src/pic/device.h,
4311         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4312
4313 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4314
4315         * src/mcs51/gen.c (emitcode): fixed bug #992819
4316
4317 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4318
4319         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4320           there's no need to make it worse
4321
4322 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4323
4324         * src/mcs51/ralloc.c (deassignLR),
4325         * src/ds390/ralloc.c (deassignLR),
4326         * src/hc08/ralloc.c (deassignLR),
4327         * src/z80/ralloc.c (deassignLR),
4328         * src/pic/ralloc.c (deassignLR),
4329         * src/pic16/ralloc.c (deassignLR),
4330         * src/avr/ralloc.c (deassignLR),
4331         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4332         rlivePoint): fixed another part of bug #971834
4333
4334 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4335
4336         * src/z80/main.c: enabled "critical" keyword
4337         * src/z80/mappings.i,
4338         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4339         functions (fixes bug #979646)
4340         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4341
4342 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4343
4344         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4345           such as c:\mydir.
4346
4347 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4348
4349         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4350           doesn't disable too much optimizations
4351
4352 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4353
4354         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4355
4356 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4357
4358         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4359
4360 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4361
4362         * src/pic/gen.c tidied up tabs
4363         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4364         * src/pic/main.c tidied up tabs
4365         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4366         * src/pic/pcoderegs.c tidied up tabs
4367         * src/pic/ralloc.c tidied up tabs
4368
4369 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4370
4371         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4372         to S_FIXED for pic16 port and when symbol is not in level 0,
4373         allocate for S_REGISTER storage class and pic16 port, too,
4374         * src/pic16/device.h: prototype for checkSym,
4375         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4376         * (pic16_assignConfigWordValue): test the value and the mask to
4377         validate that the value is suitable for the configuration word,
4378         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4379         collect extern declared symbols, don't emit symbol twice, check
4380         first if symbol is in publics set first,
4381         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4382         * added command line '--fstack' which enables an experimental
4383         feature for stack access, too buggy to be used yet...
4384         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4385         * (pic16_allocDirReg): when register has storage class S_REGISTER
4386         allocate in pic16_dynAccessRegs,
4387         * device/include/pic16/pic18f????.h: modified configuration word
4388         naming convention, words started as CONFIG0H but should be CONFIG1H
4389
4390 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4391
4392         * device/include/mcs51reg.h: fixed bug 970993
4393
4394 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4395
4396         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4397         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4398         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4399         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4400         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4401         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4402           error/warning numbers,
4403           added function setWarningDisabled()
4404         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4405         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4406           _memcmp.c _memmove.c calloc.c realloc.c free.c
4407         * support/regression/tests/malloc.c: added tests for new functionality
4408         * support/regression/tests/zeropad.c: added tests for truncated initializers
4409           and initialized char arrays starting with '\x0'
4410         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4411
4412 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4413
4414         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4415
4416 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4417
4418         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4419         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4420         peephole 177.e. Thanks to anonymous
4421
4422 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4423
4424         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4425         function isn't used in the source but referenced as a
4426         variable initializer then declare it as extern in .asm file
4427
4428 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4429
4430         * .version: increased version number to 2.4.3
4431
4432         Adding version extension according to ChangeLog CVS revision
4433         * src/Makefile.in (target all): added dependency 'version.h'
4434         * (rule version.h): added rule to create version.h from ChangeLog,
4435         * (rule dep): added dependency version.h,
4436         * src/version.awk: AWK script to create version.h
4437         * src/SDCCdwarf2.c (dwWriteModule),
4438         * src/SDCCglue.c (initialComments),
4439         * src/SDCCmain.c (printVersionInfo): modified to write after
4440         version string the version extension number,
4441         * src/SDCCutil.c: included "version.h"
4442         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4443         number,
4444         * src/SDCCutil.h: added prototype for getBuildNumber
4445
4446         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4447         includeDirsSet, too,
4448         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4449         const char [] is found in function prototype...
4450
4451         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4452         moving to WREG with source is already in WREG,
4453         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4454         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4455         * (aopForSym): stack'ed symbols are partially supported, added
4456         if-clause to support symbols in FARSPACE,
4457         * (sameRegs): added test for AOP_ACC to see if registers are same,
4458         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4459         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4460         * (pic16_popRegFromString): will not allocate a new register if it
4461         doesn't find one by name, bug may have introduced...
4462         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4463         * (genIpush): revived to use pic16 port's stack,
4464         * (genAddrOf): added incomplete case for stack'ed operand,
4465         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4466         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4467         can handle multibyte operands,
4468         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4469         * (pic16initialComments): added message for MPLAB compatibility
4470         mode enabled,
4471         * src/pic16/main.h: prototype for pic16_mplab_comp,
4472         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4473         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4474         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4475         because of increased complexity of procedure,
4476         * (_process_pragma): stack pragma changed to format 'stack pos len',
4477         emit symbol '_stack_end' to conform with gplink,
4478         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4479         to search for register,
4480         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4481         PO_GPR_REGISTER,
4482         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4483         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4484         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4485         case for PO_GPR_REGISTER,
4486         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4487         dies, the new era is ahead !...
4488         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4489         pic16_dynInternalRegs,
4490         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4491         * (pic16_allocDirReg): minor optimizations and bug fixes,
4492         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4493
4494         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4495         load stack and frame pointer with address of 'stack_end' symbol
4496
4497 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4498
4499         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4500         without source code but only variable initializers
4501
4502 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4503
4504         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4505         external are not declared as extern to reduce overhead while linking
4506
4507 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4508
4509         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4510
4511 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4512
4513         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4514           Yee Keat for the patch
4515         * src/SDCCast.c (decorateType): fixed bug #979599
4516         * src/ds390/gen.h: removed local fReturnSizeDS390
4517         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4518         * src/ds390/gen.c (genAnd, genOr, genXor),
4519         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4520
4521 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4522
4523         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4524         add relFilesSet to $3, manipulate $2 to handle linking of object
4525         files without source files in command line,
4526         * device/include/pic16 (all headers): added ID location macros,
4527         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4528         entries for ID location bytes,
4529         * (pic16_assignIdByteValue): NEW,
4530         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4531         added field dumpcalltree to pic16_options_t,
4532         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4533         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4534         emitting rFalseIfx label after check_carry label,
4535         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4536         pic16_emitDIRegs), NEW
4537         * (pic16glue): dump .calltree file when option --calltree found,
4538         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4539         * (_pic16_genAssemblerPreamble): emit ID locations after
4540         configuration registers,
4541         * (pic16_linkCmd): modifications of the link command,
4542         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4543         * (pic16_pCodeInitRegisters): don't init stack registers,
4544         * (pic16_findPrevInstruction): fixed bug,
4545         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4546         bug with immediate registers,
4547         * (buildCallTree): traces stack push and pop,
4548         * (pct2): dump also stack usage for each function,
4549         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4550         * (pic16_allocDirReg): various modifications,
4551         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4552         fixed to 1,
4553
4554 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4555
4556         * src/pic16/pcode.c: removed buggy double colon
4557
4558 2004-07-01 Borut Razem <borut.razem AT siol.net>
4559
4560         * support/scripts/sdcc.nsi: added include/pic16 to setup
4561
4562 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4563
4564         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4565         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4566         target 'clean',
4567         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4568         specific command line arguments. Also added sample lkr script
4569         for placing a variable at a specific memory bank.
4570         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4571         at a specific memory bank,
4572         * (pic16_dump_isection): fixed bug which caused string literals to
4573         be omitted when dumping idata section,
4574         * (pic16_groupRegistersInSection): added code to handle registers
4575         in specific memory banks,
4576         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4577         public, all references are renamed too,
4578         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4579         AOP_DPTR2,
4580         * (pic16_storeForReturn): added case to handle when dest is WREG,
4581         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4582         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4583         pic16_rel_udata, check to see if that register is marked as being
4584         a member of a specific memory bank,
4585         * (pic16_printIvalCharPtr): added code to add string literals either
4586         to code or the idata sections,
4587         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4588         also accept the 'udata' pragma,
4589         * src/pic16/main.h: new structure types sectName and sectSym
4590         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4591         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4592         * (pic16_findPrevInstruction): fixed, it returned nothing,
4593         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4594         instruction combinations,
4595         * (pic16_FixRegisterBanking): heavily reorganised,
4596         * (pic16_AnalyzeBanking): if generating banksel directives is
4597         disabled, then don't call FixRegisterBanking at all,
4598         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4599         completely removed,
4600         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4601
4602 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4603
4604         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4605         Phuah Yee Keat <yk.phuah AT nestac.com>
4606
4607 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4608
4609         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4610         correctly the IVT even if it is relocated to some other location
4611
4612 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4613
4614         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4615         * device/include/pic16/pic18f2220.h: NEW,
4616         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4617         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4618         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4619         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4620         nodefaultlibs, ivt_loc is the location of the interrupt vector
4621         table, and nodefaultlibs signs that default libraries should not be
4622         linked in link stage,
4623         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4624         according to --ivt-loc argument,
4625         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4626         when pragma stack is found,
4627
4628 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4629
4630         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4631         256 (range check), 257 (do while), 258.a-f (bit banging
4632         f.e. on 3-wire SPI bus)
4633
4634 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4635
4636         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4637         variables used exclusively within a loop
4638
4639 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4640
4641         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4642
4643 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4644
4645         * src/SDCClrange.c (computeClash): fixed bug #971834
4646
4647 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4648
4649         * src/mcs51/gen.c (genCmp): fixed bug #975903
4650         * src/hc08/gen.c (operandsEqu),
4651         * src/ds390/gen.c (operandsEqu),
4652         * src/z80/gen.c (operandsEqu),
4653         * src/pic/gen.c (operandsEqu),
4654         * src/pic16/gen.c (operandsEqu),
4655         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4656         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4657
4658 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4659
4660         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4661
4662 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4663
4664         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4665         default case in switch statement,
4666         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4667         to eliminate problem with initialisation of pointers, but problem
4668         still exists,
4669         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4670         * (emitStaticSegment): removed various lines emitting debug info,
4671         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4672         added processor registers for utilizing EEPROM,
4673         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4674         configurable and set 8
4675
4676 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4677
4678         * .version: increased version number to 2.4.2,
4679
4680         Cumulative patch for pic16 port
4681         * src/pic16/device.c: changed scheme to dump initial values for
4682         variables in idata segment, all print_idata* functions were removed,
4683         now the pic16_printIval* will be called,
4684         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4685         * _pic16_printPointerType, pic16_printPointerType,
4686         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4687         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4688         NEW, similar to the respective functions in SDCCglue.c,
4689         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4690         way, emitting hex bytes,
4691         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4692
4693 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4694
4695         * src/avr/ralloc.c (serialRegAssign),
4696         * src/xa51/ralloc.c (serialRegAssign),
4697         * src/pic/ralloc.c (serialRegAssign),
4698         * src/pic16/ralloc.c (serialRegAssign),
4699         * src/hc08/ralloc.c (serialRegAssign),
4700         * src/z80/ralloc.c (serialRegAssign),
4701         * src/ds390/ralloc.c (serialRegAssign),
4702         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4703
4704 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4705
4706         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4707         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4708
4709 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4710
4711         Cumulative patch for pic16 port:
4712         * src/pic16/device.h (typedef PIC16_device) modified fields for
4713         defining microcontrollers,
4714         * src/pic16/device.c: added new info for all devices in Pics16 array,
4715         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4716         to be optimised out by the pCode optimiser,
4717         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4718         specially, bug reported by G.M. Gallant,
4719         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4720         as force'd so that cannot be optimised out by pCode optimiser,
4721         * src/pic16/pcode.c,
4722         * src/pic16/pcodepeeph.c,
4723         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4724         they are disabled by default, but can be enabled explicit with
4725         command argument --denable-peeps, for testing,
4726         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4727         --pomit-ivt in COMPILE_FLAGS
4728
4729 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4730
4731         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4732           compilation on MSVC
4733
4734 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4735
4736         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4737
4738 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4739
4740         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4741         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4742
4743 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4744
4745         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4746         would only assign 0x300001 register.
4747
4748 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4749
4750         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4751         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4752
4753 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4754
4755         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4756         for ds80c400
4757         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4758         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4759         added peephole 254 (left shift), 255 (jump table)
4760
4761 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4762
4763         * device/lib/Makefile.in: removed comment line with model-pic16,
4764         * (target port-specific-objects-pic16): the libraries and objects
4765         are copied to the build directory form the device/lib/pic16/bin
4766         directory
4767
4768         Cumulative patch concerning pic16 port:
4769         * library directory has been re-organized,
4770         * added support for PIC18F1220,
4771         * added headers and library sources for chips 18f1220,18f6520,
4772         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4773
4774         * configuration registers setting has changed, now each supported
4775         device has a complete description of the registers it uses,
4776         * all initialisations are moved to idata sections, these section
4777         can be absolute or relocatable,
4778         * fixed initialisation of codespace variables,
4779         * fixed warning about PCLATU and gpsim,
4780         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4781         * (genAssign): use table reads when assigning from variables in codespace,
4782         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4783         char/int variables placed in codespace,
4784         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4785         registers set in .asm file, no need for --pomit-config-words anymore,
4786         * (pic16glue): some 8051 legacy segments are commented out
4787         (to be removed completely),
4788         * added support for alternative assembler and linker with --asm=
4789         and --link= command line arguments,
4790         * peepholes are disabled automatically in the port, no need to
4791         specify on command line,
4792         * port supports natively char/int/long multiplication, but converts
4793         all divisions to support functions,
4794         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4795         to the file set in variable $2,
4796         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4797         strings in ASCII format and not in hex,
4798         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4799         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4800         allocate proper register if iCodes aren't temporary,
4801
4802 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4803
4804         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4805
4806 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4807
4808         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4809         is commented out
4810
4811 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4812
4813         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4814         computed address is reused
4815         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4816         multi-byte bitfields
4817
4818 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4819
4820         * src/z80/gen.c: (genArrayInit): must check for pointers too
4821
4822 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4823
4824         * support/regression/tests/zeropad.c: never meant to commit the
4825           nestedstruct test: removed, added check for GCC version
4826
4827 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4828
4829         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4830         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4831         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4832           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4833           bugs 928906 and 954082 half-empty initializers
4834         * src/SDCCsymt.h,
4835         * src/SDCCsymt.c (getAllocSize): added for above fix
4836         * src/z80/gen.c (genArrayInit): fixed bug 741044
4837         * support/regression/tests/zeropad.c: added tests
4838
4839 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4840
4841         * src/pic16/device.c (pic16_dump_section): corrected bug which
4842         caused some symbols of the libraries to be misplaced
4843
4844 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4845
4846         * src/pic16/glue.c,
4847         * src/pic16/ralloc.h,
4848         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4849         to fix conflict with pic port
4850
4851 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4852
4853         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4854         externs configuration variables,
4855         * src/pic16/ralloc.h,
4856         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4857         prototype in header, commented out some debug messages
4858
4859 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4860
4861         * src/pic16/glue.c,
4862         * src/pic16/main.c,
4863         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4864         for gpasm COFF object generation. Thanks to D. Hawkins for
4865         his patch info
4866
4867 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4868
4869         * src/ds390/main.c,
4870         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4871         Brock for spotting this)
4872         * src/ds390/gen.c (genEndFunction),
4873         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4874         interrupt handler and critical. Disable push/pop optimizations when
4875         peephole optimizations disabled.
4876
4877 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4878
4879         Updated pic16 library sources and headers.
4880         * device/lib/pic16/pic18f*/ ,
4881         * device/include/pic16/*.h: modified to handle structured SFR
4882         definitions
4883
4884 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4885
4886         * src/port.h (PORT structure): added hook initPaths, now each
4887         port can declare its own default search paths,
4888         which can been seen with the --print-search-dirs option,
4889         see pic16 port for example,
4890         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4891         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4892         * (doPrintSearchDirs): NEW, replaces in a central manner the
4893         printing of search dirs which was split in set*Paths functions,
4894         * (main): added call to port->initPaths and doPrintSearchDirs,
4895         * src/avr/main.c,
4896         * src/ds390/main.c,
4897         * src/hc08/main.c,
4898         * src/izt/i186.c,
4899         * src/izt/tlcs900h.c,
4900         * src/mcs51/main.c,
4901         * src/pic/main.c,
4902         * src/pic16/main.c: modified port structures to reflect addition of
4903         initPaths hook,
4904
4905         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4906         * (pic16_dump_section): for registers in same address reserve memory once,
4907         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4908         to no_banksel,
4909         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4910         result is greater in size than right or left,
4911         * (pic16_genUMult8X8_8): there are some cases where the result can
4912         be 16 bits size, so handle these,
4913         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4914         * (pic16_outBitC): modified to emit pcodes,
4915         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4916         or not,
4917         * (genDivOneByte): implemented algorithm to divide 8-bits,
4918         * (genCmp): uncommented goto, but issues still exist,
4919         * (genAnd): fixed a bug with variables >8bits,
4920         * (genPackBits): optimization added that uses BCF/BSF to change a
4921         single bit,
4922         * (genAssign): fixed bug when assigning floating point literals,
4923         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4924         __sdcc_gsinit_startup label,
4925         * src/pic16/main.c (_pic16_init): removed search directory
4926         initialisations,
4927         * (_pic16_initPaths): NEW, used to initialise search directories,
4928         * (_hasNativeMulFor): support functions for all except char/int
4929         multiplication, and char division,
4930         * (PIC16_port struct): modified entry for native mul support,
4931         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4932         no_banksel option,
4933         * (buildCallTree): call to register_usage is ifdef'ed out,
4934
4935 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4936
4937         * device/include/string.h: applied Stas Sergeev's patch to make this
4938         header file compatible with the preprocessor -Wundef option
4939         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4940         failure (fixes bug #941458)
4941
4942 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4943
4944         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4945         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4946         that the variable, not the function, should be static
4947         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4948         to be consistent with non-literal case
4949
4950 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4951
4952         * src/SDCCast.c (isConformingBody): fixed bug #949967
4953         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4954         convilong): fixed bug #952086
4955
4956 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4957
4958         * src/SDCCmem.c (allocVariables): fixed bug #955321
4959
4960 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4961
4962         * src/hc08/main.c (_hc08_genAssemblerEnd),
4963         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4964         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4965         completely eliminated the use of a temporary file
4966         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4967         when more than one file linked
4968         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4969
4970 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4971
4972         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4973         which fixes bug #543481
4974         * support/regression/tests/bug-751703.c: fixed comments left from a
4975         cut and paste error
4976         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4977         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4978         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4979         scopes
4980         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4981         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4982         are now changed to underscores in moduleName
4983
4984 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4985
4986         * as/mcs51/lkmem.c: better fix for bug #954173
4987
4988 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4989         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4990
4991         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4992         * device/include/c8051f000.h,
4993         * device/include/c8051f120.h,
4994         * device/include/c8051f300.h,
4995         * device/include/c8051f310.h,
4996         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4997         PWM16) and detab'ed
4998
4999 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5000
5001         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5002         and mailing lists, doc'ed --no-peep-comments, removed reference
5003         to knoppix (newest version has no LyX/LaTeX), other minor changes
5004         * src/SDCCglue.c (glue): save 2 bytes stack space with
5005         option --main-return. The ljmp could probably be avoided too
5006
5007 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5008
5009         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5010
5011 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5012
5013         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5014         * src/SDCCopt.c (isLocalWithoutDef),
5015         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5016         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5017         (credit to Maarten Brock for patch #949363, on which this is based)
5018         * support/regression/tests/bug-751703.c: some test cases of extern used
5019         within inner scopes.
5020
5021 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5022
5023         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5024         SPEC_STRUCT
5025         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5026         struct definitions
5027         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5028         dwWriteLabel): fix to create valid debugger symbols even when
5029         the module name has non-alphanumeric symbols in it
5030         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5031         when a variable's allocation has been optimized away
5032
5033
5034 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5035
5036         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5037         * src/hc08/main.c,
5038         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5039         * src/mcs51/main.c,
5040         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5041         * src/ds390/main.c,
5042         * src/z80/gen.c (z80_emitDebuggerSymbol),
5043         * src/z80/main.c,
5044         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5045         * src/pic/main.c,
5046         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5047         * src/pic16/main.c,
5048         * src/avr/gen.c (avr_emitDebuggerSymbol),
5049         * src/avr/main.c,
5050         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5051         * src/xa51/main.c,
5052         * src/SDCCdebug.c (emitDebuggerSymbol),
5053         * src/SDCCdebug.h,
5054         * src/port.h: added a debugger struct to the port struct. Added a
5055         callback for defining debugger symbols
5056
5057         * src/SDCCast.c (createLabel),
5058         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5059         with isitmp = 1
5060         * src/SDCCicode.h,
5061         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5062         iCode back to the ast for the function
5063
5064         * src/hc08/ralloc.c (hc08_assignRegisters),
5065         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5066         unneeded fields from the regs struct.
5067         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5068         pushReg() & pullReg() functions instead of emitcode()
5069
5070         * src/hc08/gen.c (genLabel, genhc08Code),
5071         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5072
5073         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5074         debugger hooks
5075
5076         * src/hc08/gen.c (genEndFunction, genhc08Code),
5077         * src/hc08/gen.h,
5078         * src/mcs51/gen.c (genEndFunction, gen51Code),
5079         * src/mcs51/gen.h,
5080         * src/ds390/gen.c (genEndFunction, gen390Code),
5081         * src/ds390/gen.h,
5082         * src/z80/gen.c (genEndFunction, genZ80Code),
5083         * src/z80/gen.h,
5084         * src/z80/z80.h,
5085         * src/pic/gen.c (genEndFunction, genpic14Code),
5086         * src/pic/gen.h,
5087         * src/pic16/gen.c (genEndFunction, genpic16Code),
5088         * src/pic16/gen.h,
5089         * src/avr/gen.c (genEndFunction, genAVRCode),
5090         * src/avr/gen.h,
5091         * src/xa51/gen.c (genEndFunction, genXA51Code),
5092         * src/xa51/gen.h,
5093         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5094         specific code to cdbFile.c and out of the backend code generators
5095
5096         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5097         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5098         starting address is now 0
5099
5100         * as/hc08/asm.h,
5101         * as/hc08/m08pst.c,
5102         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5103         assembler directive for DWARF support
5104         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5105
5106         * src/src.dsp,
5107         * src/Makefile.in,
5108         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5109
5110 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5111
5112         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5113         and inappropriate peephole optimization in jump tables
5114
5115 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5116
5117         * as/hc08/m08pst.c,
5118         * src/SDCCglue.c: sdccopt works for the hc08 port now
5119
5120 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5121
5122         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5123
5124 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5125
5126         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5127
5128 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5129
5130         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5131         rules
5132         * src/SDCCmain.c,
5133         * src/SDCCglobl.h,
5134         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5135         comments from the peephole optimizer replacement rules
5136         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5137         symbols
5138         * src/SDCCcse.c (updateSpillLocation),
5139         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5140         equivalents
5141         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5142         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5143         objects far pointers
5144
5145 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5146
5147         * src/SDCCsymt.h: a missing part of my last change
5148         * src/pic/ralloc.c (regTypeNum),
5149         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5150
5151 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5152
5153         * src/SDCCicode.h,
5154         * src/SDCCicode.c (aggrToPtrDclType),
5155         * src/SDCCptropt.h,
5156         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5157         ptrPseudoSymConvert),
5158         * src/pic/ralloc.c (regTypeNum),
5159         * src/pic16/ralloc.c (regTypeNum),
5160         * src/hc08/ralloc.c (regTypeNum),
5161         * src/ds390/ralloc.c (regTypeNum),
5162         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5163         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5164
5165 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5166
5167         * link/z80/lkmain.c (afile),
5168         * as/hc08/lkmain.c (afile),
5169         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5170         prevent a pointer problem when a filename has no directory and
5171         no extension specified.
5172
5173 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5174
5175         * link/z80/lkmain.c (afile): allow periods in directory names
5176         * link/z80/lkmain.c (afile),
5177         * as/mcs51/lkmain.c (afile),
5178         * as/hc08/lkmain.c (afile): allow linker script file to have an
5179         extension other than ".lnk"
5180         * link/z80/lklex.c (getfid),
5181         * link/z80/lkmain.c (parse),
5182         * as/mcs51/lklex.c (getfid),
5183         * as/mcs51/lkmain.c (parse),
5184         * as/hc08/lklex.c (getfid),
5185         * as/hc08/lkmain.c (parse): Support comments in the linker script
5186         file on lines by themselves and after filenames
5187
5188 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5189
5190         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5191
5192 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5193
5194         * src/z80/peeph-z80.def: removed some peephole rules that don't
5195         work with multibyte arithmetic (fixed bug #937126)
5196         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5197         to registers and not global variables
5198         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5199         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5200         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5201         checking for assignments not internally generated (fixed bug #931895)
5202         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5203         structure member (fixed bug #930072)
5204
5205 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5206
5207         * src/SDCCmain.c (linkEdit),
5208         * src/hc08/main.c (_hc08_parseOptions),
5209         * as/hc08/Makefile.in,
5210         * as/hc08/aslink.h,
5211         * as/hc08/asm.h,
5212         * as/hc08/m08pst.c,
5213         * as/hc08/lkrloc.c (relr, rele),
5214         * as/hc08/lkarea.c (lnkarea)
5215         * as/hc08/lkmain.c (afile, parse),
5216         * as/hc08/lkelf.c: support for ELF output
5217         * as/hc08/lks19.c (s19),
5218         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5219
5220 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5221
5222         * as/mcs51/lkihx.c: Fixed bug #899105.
5223
5224 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5225
5226         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5227         .dsp files from Unix to DOS.
5228
5229 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5230
5231         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5232         function pointers; we have been compliant for several months now.
5233         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5234         change that was accidently commented out
5235         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5236         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5237         bug #922319
5238
5239 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5240
5241         * src/hc08/gen.c: output of all of the internal debugging information
5242         is now controlled by the D() macro; it is disabled by default
5243
5244 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5245
5246         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5247         harder to keep the same registers during a CAST iCode
5248         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5249         long via int can be done in a single cast, if the signedness is
5250         correct.
5251         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5252         putchar() in tinibios.c in ds390's library
5253
5254 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5255
5256         * src/SDCCast.c (decorateType): fixed bug #898889,
5257         cast result of a literal complement too
5258         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5259         fixed check for bitfields
5260
5261 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5262
5263         * src/SDCCicode.c (geniCodeLogic): made it static,
5264         (geniCodeLogicAndOr): added in order to fix bug #905492,
5265         (ast2iCode): fixed bug #905492
5266         * support/regression/tests/bug-905492.c: added
5267         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5268         (processParms): fixed bug #927659: don't copy parms, this will clear
5269         decorated flag
5270         * support/regression/tests/bug-927659.c: added
5271
5272 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5273
5274         * src/SDCCast.c (addCast): don't cast float to char
5275         * device/lib/libsdcc.lib: added _memmove
5276
5277 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5278
5279         * device/lib/large/Makefile: fixed parallel execution by
5280         replacing `make` by `$(MAKE)`
5281
5282 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5283
5284         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5285         offsets (fixes bug #923936)
5286
5287 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5288
5289         * device/lib/small/Makefile: fixed parallel execution by
5290         replacing `make` by `$(MAKE)`
5291
5292 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5293
5294         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5295
5296 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5297
5298         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5299         * src/regression/Makefile: Regression test was not running.
5300
5301 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5302
5303         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5304         complement if possible
5305         * src/SDCCval.c (valComplement),
5306         * src/SDCCicode.c (operandOperation): fixed complement of literal
5307         * support/regression/tests/onebyte.c (testComplement): added
5308
5309 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5310
5311         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5312         return an optimized tree; actually replace actParm with the new tree
5313         * src/SDCCast.h: added some parantheses to remove side effects
5314         * support/regression/tests/bug-920866.c
5315
5316 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5317         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5318         Bit operands were not being handled properly in the pic14 port.
5319         (now src/regression/add.c passes again).
5320
5321 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5322
5323         * src/SDCC.y (labeled_statement): case and default no longer require
5324         a following statement (RFE #893037)
5325
5326 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5327
5328         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5329         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5330         disabled (fixes bug #916294)
5331         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5332         "mov a,acc"; patch provided by Lenny Story
5333         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5334
5335 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5336
5337         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5338         functions
5339         * src/ds390/gen.c (genFunction, genEndFunction),
5340         * src/ds390/ralloc.c (ds390_assignRegisters),
5341         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5342         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5343         pushed if there are parameters passed on the stack. Also, a cleaner
5344         way to decide if r0/r1 should be pushed/popped. (Together they fix
5345         bug #918693)
5346
5347 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5348
5349         * doc/sdccman.lyx,
5350         * device/lib/mcs51/crtpagesfr.asm,
5351         * device/lib/mcs51/crtxinit.asm,
5352         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5353         to avoid confusion with Si Lab's SFRPAGE register.
5354
5355 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5356
5357         * src/SDCCglue.c (emitMaps): allow public sfr variables
5358         * src/SDCCglue.c (initialComments): include compiler build date
5359         with compiler version and put the timestamp of the generated
5360         assembly file on a serperate line to be less confusing.
5361         * src/port.h: added genInitStartup hook
5362         * src/avr/main.c,
5363         * src/ds390/main.c,
5364         * src/hc08/main.c,
5365         * src/pic/main.c,
5366         * src/pic16/main.c,
5367         * src/xa51/main.c,
5368         * src/z80/main.c: genInitStartup initialize as NULL (default to
5369         historical behaviour)
5370         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5371         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5372         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5373         library instead of hard coding it into the compiler.
5374         * support/regression/ports/mcs51-stack-auto/spec.mk,
5375         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5376         * device/lib/mcs51/Makefile,
5377         * device/lib/small/Makefile,
5378         * device/lib/large/Makefile,
5379         * device/lib/mcs51/crtpagesfr.asm,
5380         * device/lib/mcs51/crtstart.asm,
5381         * device/lib/mcs51/crtxclear.asm,
5382         * device/lib/mcs51/crtxinit.asm,
5383         * device/lib/mcs51/crtclear.asm,
5384         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5385         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5386         and into user configurable files.
5387         * device/lib/clean.mk: clean mcs51 directory too
5388         * support/regression/tests/longlit.c: added static to T1 declaration
5389         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5390         accesses in the initialization code
5391
5392 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5393
5394         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5395         OSCTRIMVAL as noted in bug #916008
5396
5397 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5398
5399         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5400         in loops with multiple exits (reported as incorrect registers
5401         used by Martin Helmling in Sdcc-user list)
5402
5403 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5404
5405         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5406         made ds390 register extensions look less like error messages
5407
5408 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5409
5410         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5411         reported by Adam Wozniak in Sdcc-user list
5412
5413 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5414
5415         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5416         arithmetic optimizations, added debug output
5417
5418 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5419
5420         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5421         * sdcc.spec: updated and split sdcc into 3 rpms
5422         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5423         needed for literals of LEFT_OP and '+'
5424         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5425         introduced RESULT_TYPE_NOPROM
5426         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5427         left shift
5428         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5429         limited promotion to int only for '*'
5430         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5431
5432 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5433
5434         * src/pic16/gen.c (genSkip),
5435         (genc16bit2lit), (gencjneshort): commented out
5436         (is_LitOp): new helper function, checks operand type
5437         (genCmpEq): rewritten
5438
5439 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5440
5441         * support/regression/tests/bug-908454.c: added
5442
5443 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5444
5445         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5446         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5447         (geniCodeCast): cosmetic, don't preserve bit storage class
5448         (geniCodeLeftShift): added promotion
5449         (geniCodeLogic): fixed regression
5450         * src/SDCCsymt.c (computeTypeOr): accept bits too
5451         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5452
5453 2004-03-07  Borut Razem <borut.razem AT siol.net>
5454
5455         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5456
5457 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5458
5459         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5460         version of pic16_genPackRegisters which does not check if ic is a
5461         CAST operator,
5462         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5463         function cause string1.c regression test fails
5464
5465 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5466
5467         * sim/ucsim/configure.in,
5468         * sim/ucsim/configure,
5469         * sim/ucsim/doc/Makefile.in: use docdir
5470         * src/SDCC.y: fixed sbit atrributes
5471         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5472         * src/SDCCast.c (decorateType): |^& need special promotion handling
5473         * src/SDCCast.h,
5474         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5475         * src/SDCCsymt.h (computeType),
5476         * src/SDCCicode.c: computeType() needs op
5477         * src/SDCCsymt.c (checkTypeSanity),
5478         * doc/sddman.lyx: "plain" bitfields are unsigned
5479         * src/SDCCsymt.c (computeTypeOr): added
5480         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5481         |^& ops
5482         * src/SDCCval.c (val*): computeType() needs op
5483         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5484         * support/regression/tests/onebyte.c: added tests for |^&
5485
5486 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5487
5488         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5489         for writing icode into asm output.
5490
5491 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5492
5493         * src/pic16/device.c: added some debug lines enabled
5494         with macro DEBUG_CHECK,
5495         * src/pic16/genarith.c: more debug in genPlus,
5496         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5497         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5498         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5499         * (aopForSym): onStack symbols are re-placed in data memspace,
5500         and onStack flag is cleared,
5501         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5502         copy temporary pcodeop,
5503         * (genPcall): added warning for not updating PCLATU,
5504         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5505         always true for pic16 port,
5506         * (genMultOneWord): NEW, supports integer multiplication,
5507         * (genMult): modified to call genMultOneWord,
5508         * (ifxForOp): added warning when return NULL,
5509         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5510         flag is set before call to operandFromSymbol for implicit
5511         added structures,
5512         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5513         options.intlong_rent are set by default,
5514         * (_hasNativeMulFor): modified to allow port generation of integer
5515         multiplication,
5516         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5517         set regtype to REG_SFR for all registers, restricting seting the
5518         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5519
5520 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5521
5522         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5523         more than 500 times in the regression tests
5524
5525 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5526
5527         * support/Util/SDCCerr.h,
5528         * support/Util/SDCCerr.c,
5529         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5530         enumerator_list),
5531         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5532         for symbol conflicts.
5533         * support/valdiags/tests/enum.c,
5534         * support/valdiags/tests/tentdecl.c,
5535         * support/valdiags/tests/struct.c: expect possible error messages
5536         referring to original symbol definitions.
5537         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5538         * src/SDCCsymt.h,
5539         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5540
5541 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5542
5543         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5544
5545 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5546
5547         * src/pic16/ralloc.c (newReg): fixed bug #908929
5548
5549 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5550
5551         * src/ds390/gen.c: added missing #include "main.h"
5552
5553 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5554
5555         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5556         checking if symbol is already in set,
5557         * src/pic16/device.h: prototype for checkAddSym,
5558         * src/pic16/gen.c: (_G): added entry interruptvector,
5559         * (assignResultValue): removed some commented out lines,
5560         * (genFunction): check for ISR via sym->type, absolute section for
5561         interrupt code is created via a new pBlock, the goto instruction is
5562         placed now correctly at the interrupt vector position, changed all
5563         references from ivec to _G.interruptvector,
5564         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5565         is the interrupt is a high priority one, same for return from ISR,
5566         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5567         externs to calls of checkAddSym,
5568         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5569         pic16_pcode_verbose flag is set,
5570         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5571         * src/pic16/pcoderegs.c: message about how many registers are saved
5572         will only be emitted if pic16_pcode_verbose flag is set,
5573
5574 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5575
5576         * src/ds390/ralloc.h,
5577         * src/ds390/ralloc.c (ds390_regWithIdx),
5578         * src/ds390/gen.c (emitcode),
5579         * src/ds390/main.h,
5580         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5581         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5582         ds390operandCompare, getRegsRead, getRegsWritten,
5583         initializeAsmLineNode): customized instruction size calculation for
5584         ds390, started basis for some register optimizations
5585         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5586         corresponding assembly output
5587         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5588         missing push/pop of r0/r1. Optimized push/pops
5589
5590 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5591
5592         * src/mcs51/main.c (instructionSize): fixed ACALL size
5593         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5594
5595 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5596
5597         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5598         the sorting of rlist with NULL elements
5599         * (print_idataType, print_idata): NEW to create idata sections
5600         * src/pic16/device.h: idataSymSet new variable
5601         * src/pic16/gen.c (genFunction): fixed some bugs in string
5602         comparing, improved the absolute section creation for ISRs,
5603         added FSR0L/FSR0H in registers that are saved in an ISR,
5604         * (genInline): fixed the processing of inline snippets,
5605         now they undergo no process by the peephole optimizer
5606         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5607         are placed in idataSymSet,
5608         * (pic16emitStaticSeg): extern symbols are added in externs,
5609         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5610         switching when aboslute variables are placed in access bank memory
5611         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5612         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5613         commented out with #if,
5614         * (pic16_packRegisters): reintroduce the check for CAST because some
5615         symbols are not correctly handled,
5616         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5617         pCodeInstruction instead of pCode,
5618         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5619         pCodeAsmDir definition,
5620         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5621         directive, then the argument directive is emitted without the leading
5622         tab, hack for inline labels which must be in the first column,
5623         * (compareLabel,pic16_findNextInstruction),
5624         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5625         * (insertBankSwitch): modified for the new pCodeAsmDir,
5626
5627 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5628         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5629
5630         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5631         instance,
5632         * (pushSide): commented out with #if,
5633         * (assignResultValue): fixed some typos in saving
5634         registers,
5635         * (genPcall): FIXED and sync'ed with genCall,
5636         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5637         * (genNearPointerGet): fixed to handle some more cases,
5638         implementation scheme via table reads,
5639         * (genConstPointerGet): modified to access code memory correct,
5640         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5641         and improved to handle some cases
5642         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5643         instead of "RETLW" for init data
5644         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5645         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5646         variables are placed in access bank memory (<0x80 and >=0xf80),
5647         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5648         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5649         TBLWT_POSTDEC,TBLWT_PREINC
5650         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5651         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5652         directives
5653         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5654         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5655         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5656         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5657
5658 2004-02-29  Borut Razem <borut.razem AT siol.net>
5659
5660         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5661         support/Util/findme.h, support/Util/system.h: enhance binary relative
5662         search for lib and include by using findProgramPath()
5663
5664 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5665
5666         * src/SDCCpeeph.h,
5667         * src/SDCCpeeph.c (pcDistance),
5668         * src/port.h,
5669         * src/mcs51/ralloc.h,
5670         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5671         * src/mcs51/main.h,
5672         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5673         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5674         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5675         size calculation port specific, started basis for some register
5676         optimizations
5677         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5678         missing push/pop of r0/r1. Optimized push/pops
5679         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5680         * device/lib/_modsint.c (_modsint),
5681         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5682         and stack version so regression tests pass
5683
5684 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5685
5686         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5687         * src/SDCCast.c (decorateType): catch another small optimization
5688         with '?' operator
5689         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5690         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5691         modified to finally use computeType() all over SDCC,
5692         see Feature Request #877103
5693         * src/SDCCval.h: cosmetic
5694         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5695         valCompare(); regression tested in muldiv.c
5696         * support/regression/tests/muldiv.c (testMod): mod sign follows
5697         dividend only
5698
5699 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5700
5701         * src/SDCCast.c (decorateType): fixed bug #902362
5702         * doc/INSTALL.txt: fixed install instructions for win32
5703
5704 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5705
5706         * device/include/Makefile.in (install): fixed by replacing spaces
5707         by tabs
5708         * doc/README.txt,
5709         * doc/INSTALL.txt: updated for release
5710         * doc/sdccman.lyx: added warning for --xstack being buggy
5711
5712 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5713
5714         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5715         to eliminate build warnings.
5716         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5717
5718 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5719            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5720
5721         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5722         removed -penable-stack, added comment for stack pragma, added
5723         warning for not initializing the stack/frame registers, removed
5724         comment at interrupts section
5725
5726         Stack is made permanent, there is no ability to disable stack usage.
5727         * src/pic16/device.h,
5728         * src/pic16/device.c: removed all references to USE_STACK macro,
5729         * src/pic16/device.c (pic16_dump_section): when no elements in
5730         rlist, free rlist before return,
5731         * (pic16_dump_int_registers): NEW, internal registers are a new set
5732         of general purpose registers reused by each function,
5733         * (checkAddReg): returns 1 if registers is added to set,
5734         * (pic16_groupRegistersInSection): when a registers is of type
5735         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5736         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5737         SRCASECMP macro is moved here from device.c
5738         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5739         PO_PCLATU, PO_PRODL, PO_PRODH,
5740         * (pic16_pCodeOpType, genMinus,
5741         changed compares to "a" register, with AOP_ACC,
5742         * (pic16_genPlus): fixed some bugs and indented properly,
5743         * (pic16_addSign): changed size to size+offset in the MOVWF
5744         instruction,
5745         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5746         multiply 8-bit operand by literal, result is 8-bit,
5747         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5748         multiply 2 8-bit operand, result is 8-bit,
5749         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5750         genUMult8X*_16,
5751         * src/pic16/gen.c: changed accUse to contain WREG only,
5752         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5753         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5754         true, do not use immediate addressing any more unless sym is a
5755         pointer in codespace,
5756         * (aopForRemat): do not use immediate addressing when symbol not in
5757         codespace and when symbol's address is requested,
5758         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5759         accUse size (= 1),
5760         * (aopGet): added case for AOP_ACC and don't return "accumulator
5761         bug" but WREG instead,
5762         * (popGetTempReg): pushes contents of temporary register in stack,
5763         * (popReleaseTempReg): pops contents of temporary register from
5764         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5765         * (pic16_popGet): separated case AOP_ACC to return register WREG
5766         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5767         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5768         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5769         the use of immediate pointers to certain cases only.
5770
5771         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5772         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5773         * (assignResultValue, genCall, genRet): modified to use the new
5774         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5775         genPcall is still broken,
5776         * (genFunction): added code to create 'A' type pBlocks when
5777         interrupt functions are generated, code not extensively tested yet,
5778         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5779         * (genEndFunction): modified so ISRs pop stored registers from stack,
5780         * (genMultOneByte): cleanup,
5781         * (AccRsh): added flag andmask, to and result with appropriate mask,
5782         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5783         * (genDataPointerGet): fixed and reenabled its use,
5784         * (genNearDataPointerGet): bugs fixed,
5785         * (genDataPointerSet): bugs fixed,
5786         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5787         pic16_DumpSymbol, pic16_DumpOp,
5788         * src/pic16/genutils.h: function prototypes for the above functions,
5789         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5790         pointers,
5791         * (pic16emitRegularMap): many many many improvements, but needs a
5792         major cleanup,
5793         * src/pic16/main.c: enable_stack in pic16_options is removed,
5794         * (_pic16_parseOptions): removed command line options -penable-stack,
5795         * (_process_pragma): emit stack symbol only when stack pragma is
5796         processed,
5797         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5798         redirected to FSR0L/FSR0H pair,
5799         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5800         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5801         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5802         for immediates,
5803         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5804         * (dumpPicOptype): NEW,
5805         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5806         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5807         with movff instruction,
5808         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5809         added pic16_int_regs, some packRegsFor* functions are commented out,
5810         because produce errors,
5811         * src/pic16/NOTES: minor modifications
5812
5813 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5814
5815         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5816         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5817         --pack-iram.
5818         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5819         * as/mcs51/lkaomf51.c: fixed bug #895763
5820
5821 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5822
5823         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5824
5825 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5826
5827         * doc/sdccman.lyx: added details about the HC08 storage classes and
5828         interrupts, fixed the register usage info for z80 & gbz80
5829
5830 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5831
5832         * doc/sdccman.lyx: added more pic16 port documentation
5833         * device/include/pic16/: added header pic18fregs.h
5834
5835 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5836
5837         * doc/sdccman.lyx: added Vangelis' contribution
5838
5839 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5840
5841         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5842         extend to the next CALL or PCALL, not just to the next CALL.
5843
5844 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5845
5846         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5847
5848 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5849
5850         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5851         bug #895752 and a better fix for bug #716790
5852
5853 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5854
5855         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5856
5857 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5858
5859         * doc/sdccman.lyx: minor changes, minor changed
5860
5861 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5862
5863         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5864         which can't handle SDCC_NEWONEBYTEOPS,
5865         (geniCodeMultiply): removed conversion from mult to shift for pic14
5866         and pic16
5867
5868 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5869
5870         * src/hc08/gen.h,
5871         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5872         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5873         thus fixing bug #895406
5874
5875 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5876
5877         * device/lib/_modsint.c,
5878         * device/lib/_modslong.c: sign follows divisor only
5879         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5880         signs or signedness can be ignored
5881         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5882         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5883         added optimization for IFX,
5884         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5885         arguments;
5886         reenabled optimization for IFX, which was removed on 2004-01-11
5887         * src/SDCCast.h: added return type IFX
5888         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5889         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5890         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5891         SDCC_OLDONEBYTEOPS selects the old behaviour
5892         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5893         changed again and commented promotion rule
5894         * src/SDCCval.c (valDiv): promotion no longer necessary
5895         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5896         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5897         rewritten
5898         * support/regression/tests/onebyte.c: added
5899
5900 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5901
5902         * gen.c (genInline): reverted to old code for assemnling inline
5903         code because of bug reported James Chadd
5904
5905 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5906
5907         * ralloc.h: missing declarations from previous patch,
5908         seems that patch for ralloc.h was never applied, fixed
5909
5910 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5911            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5912
5913         * pcode.c,
5914         * pcode.h,
5915         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5916         indirect addressing. Marked FSR0 as deprecated
5917         * gen.c (pointerCode): commented out, not needed now
5918         (pic16_popGet2p): new MOVFF helper function
5919         (genGenPointerGet),
5920         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5921         (shiftRLong): removed duplicate debugging info
5922
5923 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5924
5925         * src/ds390/gen.c (genNearPointerGet),
5926         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5927         optimization with bits, but not bitfields.
5928         * src/ds390/ralloc.c (packRegisters),
5929         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5930
5931 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5932
5933         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5934
5935 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5936
5937         * src/SDCCsymt.h,
5938         * src/SDCCicode.c (operandFromSymbol),
5939         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5940         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5941         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5942         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5943         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5944         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5945         bug #892038
5946         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5947         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5948         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5949         * src/SDCCsymt.c (newSymbol),
5950         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5951         enumerator_list),
5952         * src/SDCCval.h,
5953         * src/SDCCval.c (newiList): fixed bug #885705
5954
5955 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5956
5957         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5958         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5959
5960 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5961
5962         * device/include/c8051f120.h,
5963         * device/include/c8051f300.h,
5964         * device/include/c8051f310.h: added/updated header files for Silicon
5965         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5966         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5967         in new section Submitting patches
5968
5969 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5970
5971         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5972         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5973         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5974         genGenPointerSet),
5975         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5976         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5977         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5978         genGenPointerSet),
5979         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5980         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5981         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5982         genGenPointerSet),
5983         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5984         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5985         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5986         genGenPointerSet): fixed bug #892400
5987         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5988         to eliminate build warnings.
5989         * src/SDCCast.c (processParms),
5990         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5991         fixed bug 751859
5992         * support/valdiag/valdiag.py: added GCC to the list of defines active
5993         when compiling with gcc
5994
5995 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5996
5997         * support/Util/SDCCerr.h,
5998         * support/Util/SDCCerr.c,
5999         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6000         with an incomplete type (fixed bug #883734)
6001         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6002
6003 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6004
6005         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6006
6007 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6008
6009         * src/SDCCast.c (decorateType),
6010         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6011         function pointer implementation
6012         * support/regression/tests/funptrs.c: added tests to verify both forms
6013         of function pointers work correctly. Added tests to verify parameters
6014         are passed in the correct order.
6015
6016 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6017
6018         * device.c (regCompare): registers are sorted by ascending
6019         address and increasing size,
6020         * main.c (_pic16_finaliseOptions): removed the declaration
6021         of compiler macro MCU. Now a macro of the format pic18fxxxx
6022         will be defined from the command line
6023
6024 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6025             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6026
6027         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6028         PCOP_RLCF was overwritten!
6029         * gen.c (genSkip): commented out calls to pic16_emitcode,
6030         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6031         * (genlshTwo),
6032         * (genRRC): added debugging info,
6033         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6034         overwritten while shifting,
6035         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6036         overwritten while shifting,
6037         * (AccLsh),
6038         * (AccRsh),
6039         * (shiftLLeftOrResult),
6040         * (shiftRLeftOrResult),
6041         * (shiftRLong),
6042         * (shiftLLong): Implemented with pic16_emitpcode
6043         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6044         * (genLeftShift): Fixed bug, operand for shift by variable always
6045         was "and"ed with 0x0f,
6046         * (genLeftShiftLiteral),
6047         * (genrshTwo),
6048         * (genRightShiftLiteral): added debugging info,
6049         * (genrshFour): added comment,
6050         * (genRightShift): determined signedness from operand "left"
6051         instead of "result"
6052
6053 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6054
6055         * src/SDCCicode.c (geniCodeParms),
6056         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6057         function pointers, fixed function pointer bugs #861242 and #861896
6058
6059 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6060
6061         * device/include/c8051f000.h,
6062         * device/include/c8051f120.h,
6063         * device/include/c8051f300.h: added header files for Silicon
6064         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6065
6066 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6067
6068         * src/SDCCast.c (processParams): added new type flow and restructured
6069         (gatherAutoInit): added new type flow
6070         (addCast): cosmetic changes
6071         (getLeftResultType): added new type flow for array indices, patch
6072         provided by Stas, see FR #877103
6073         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6074         array index patch by Stas
6075         * src/SDCCast.h: added prototype getResultTypeFromType()
6076         * src/SDCCval.h,
6077         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6078         * src/pic/glue.c (pic14emitStaticSeg),
6079         * src/pic16/glue.c (pic16emitStaticSeg),
6080         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6081         for initialization of symbols
6082         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6083         * support/Util/SDCCerr.h:
6084         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6085         * .version: bumped version number to 2.3.8
6086         * device/include/Makefile.in (install),
6087         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6088         avoid warnings
6089
6090 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6091
6092         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6093         Slade Rich fixed an optimization bug
6094         * src/pic/pcodepeep.c,
6095         * src/pic/pcoderegs.c
6096         * doc/Makefile (install): added test for directory
6097
6098 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6099
6100         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6101         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6102         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6103         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6104         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6105         * as/mcs51/asexpr.c (term),
6106         * as/hc08/asexpr.c (term): fixed bug #887146
6107
6108 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6109
6110         * src/z80/gen.c (genMult): handle single byte result product
6111         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6112         DUMMY_READ_VOLATILE (fixed bug #886367)
6113
6114 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6115
6116         * support/regression/tests/libmullong.c: fixed logic, on little endian
6117         hosts we ended without a mullong_wrapper()
6118
6119 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6120
6121         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6122         virus/worm forged address usage.
6123
6124 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6125
6126         Fixed promotion, it should be done on AST level:
6127         * src/SDCCast.c (addCast): added promotion to int
6128         (decorateType): updated call to upCast()
6129         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6130         usualUnaryConversions()
6131
6132 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6133
6134         * support/regression/tests/literalop.c (mulWrapper): Added a
6135         wrapper to remove integer overflow warnings.
6136
6137         * support/regression/tests/float_trans.c: Made work on host.
6138
6139         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6140         location of sz80.
6141
6142         * support/regression/generate-cases.py (main): Changed from inline
6143         to a main method.
6144
6145         * doc/Makefile (install): Changed to depth first to get rid of
6146         missing directory install warning.
6147
6148         * as/Makefile (install-doc): Made work on Mac.
6149
6150 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6151
6152         * src/SDCCast.c: added an additional type flow in decorateType() of
6153         opposite direction, see feature request #860006; it's enabled at runtime
6154         by setting the environment variable SDCC_NEWTYPEFLOW
6155         * src/SDCCast.h: changed prototype of decorateType()
6156         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6157         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6158         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6159         see feature request #877103
6160         * src/SDCCval.c: updated call of decorateType()
6161         (valBitwise): fixed bug #882876
6162         (valMinus): added promotion
6163         (valLogicAndOr): result is unsigned
6164         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6165         * src/SDCCsymt.c (computeType),
6166         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6167         must not cause an unsigned operation
6168         * src/pic/glue (pic14emitRegularMap),
6169         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6170
6171 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6172
6173         * src/pic/pcode.c (PCodeID): commented out left over debug code
6174
6175 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6176
6177         * support/valdiag/tests/overflow.c: added shift tests
6178         * src/pic/device.c,
6179         * src/pic/gen.c,
6180         * src/pic/gen.h,
6181         * src/pic/glue.c,
6182         * src/pic/main.c,
6183         * src/pic/pcode.c,
6184         * src/pic/pcode.h,
6185         * src/pic/pcodepeep.c,
6186         * src/pic/pcoderegs.c,
6187         * src/pic/ralloc.c,
6188         * src/pic/ralloc.h: applied patch from Slade Rich;
6189         added support for multiple code pages and multiple RAM banks on the
6190         PIC 14 port. The ASM files now no longer simply assume all the
6191         code / RAM are in the same page / bank. This means the linker can
6192         safely allocate code/RAM of separate ASM files to different pages/banks.
6193         * doc/sdccman.lyx: added Slade's tips
6194         * src/mcs51/peeph.def: fixed bug #880768
6195
6196 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6197
6198         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6199         * src/SDCCast.c (decorateType): fixed bug #880197
6200
6201 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6202
6203         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6204         getopt.h.
6205
6206         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6207         strtof is not part of C89 and isn't included with Mac OS X.
6208
6209 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6210
6211         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6212         shiftL2Left2Result): fixed bug #879326
6213         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6214         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6215         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6216         address fetch for clr instruction
6217         * device/lib/hc08/_mulint.c: created optimized assembly version
6218         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6219
6220 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6221
6222         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6223         proposed in FR #877103
6224
6225 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6226
6227         * src/SDCCval.c (cheapestVal): added missing checks
6228         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6229         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6230
6231 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6232
6233         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6234         equal operands
6235
6236 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6237
6238         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6239         loaded with the linker search paths (-L arguments) and the libraries
6240         to be linked with the current source (-l arguments). Changes
6241         currently will affect only the pic16 port.
6242         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6243         include path the port specific paths and port specific libraries,
6244         * gplink command now contains the $3 argument,
6245         * src/pic16/device.h,
6246         * src/pic16/device.c,: structure PIC_device is made public and
6247         renamed to PIC16_device, the same for variable Pics which is renamed
6248         to Pics16. Updated all references to them.
6249         * src/pic16/glue.c (pic16glue): corrected bug with code
6250         initialization which bypassed the variable initializations block.
6251
6252         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6253         COMPILE_FLAGS and added the --nostdinc option
6254
6255 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6256
6257         * device/include/mc68hc908jb8.h: Register defs for another member
6258         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6259
6260 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6261
6262         Documenting changes from previous commits.
6263         * configure.in (version 1.56),
6264         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6265         when generating output files to configure the pic16 library,
6266         but now I've commented it out, since gputils aren't installed in the
6267         SF compile farm, so library won't compile
6268
6269         * device/lib/Makefile.in (version 1.56): initially I've added in
6270         target 'all' the prerequestive 'model-pic16' so it compiled the
6271         pic16 library, but now I've commented it out for the same reasons
6272         above,
6273         * added targets 'model-pic16' and 'objects-pic16' to compile the
6274         library
6275         * added target 'port-specific-objects-pic16' to handle the
6276         generated libraries and copy them into the build/ directory
6277         * added target 'clean-intermediate-pic16' to clean intermediate
6278         files into pic16 directory
6279         * in target 'installdirs' added line to create directory pic16 in
6280         the installation path
6281
6282         * device/include/Makefile.in (version 1.11): in target 'install'
6283         added lines to copy all header files to installation path,
6284         * in target 'installdirs' added line create directory for pic16
6285         headers in the installation path
6286
6287 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6288
6289         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6290          a function call
6291
6292 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6293
6294         * configure,
6295         * device/lib/configure.in,
6296         * device/lib/configure: fixed for autoconf 2.57
6297
6298 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6299
6300         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6301         option so that it actually works. Made it specific to the z80, since
6302         the gbz80 doesn't have these kinds of I/O ports.
6303
6304 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6305
6306         * device/include/z180.h,
6307         * device/lib/_memcpy.c,
6308         * device/lib/_memmove.c,
6309         * device/lib/_mulint.c,
6310         * device/lib/ser_ir.c,
6311         * device/lib/ser_ir_cts_rts.c,
6312         * device/lib/_strcmp.c,
6313         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6314         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6315         portmode; added deprecation warning for bank= and protmode= forms.
6316         Also, guard against buffer overflow.
6317         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6318
6319 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6320
6321         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6322         changed interrupt vector table generation to only emit declared vectors.
6323         * device/include/Makefile.in: added missing backslash
6324         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6325
6326 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6327
6328         Mainly changes to support compilation of the device libraries
6329         * src/pic16/device.c: stack is allocated via symbol and not
6330         via literal number. The symbol is placed in the corresponding
6331         position of the data ram
6332         * (pic16_dump_section): relocatable and absolute uninitialized
6333         data are now emitted in sorted order to reduce section naming,
6334         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6335         weren't marked as being in the access bank,
6336
6337 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6338
6339         Added portion of GNU PIC Library under the directory
6340         device/include/pic16 and device/lib/pic16. These files
6341         contain the declarations of SFRs for the PIC18Fxx2 devices.
6342         The directory is initialized via configure from toplevel.
6343
6344 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6345
6346         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6347         the spilllocations to be compared correctly
6348
6349 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6350
6351         * src/SDCCast.c (decorateType): fixed bug introduced today
6352
6353 2004-01-12  Borut Razem <borut.razem AT siol.net>
6354
6355         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6356         doc/sdccman.lyx: upper case pragmas are deprecated
6357
6358 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6359
6360         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6361         in simpler and even better code
6362
6363 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6364
6365         * src/SDCCicode.c (operandOperation): fixed bug #874819
6366         * src/SDCCast.c (decorateType): fixed
6367         char foo (unsigned long ul) { return ul > 0; }
6368
6369 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6370
6371         * doc/sdccman.lyx: Moved and added some sections, small changes
6372         all over. Telling LaTeX to be less strict with word spacing
6373         to better keep the right margin. Changed some notes about
6374         maintainance of the ports in section 3.2.1 - is it OK like this?
6375
6376 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6377
6378         SDCC source changes:
6379         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6380         convilong): modified to inform the pic16 port that builtin functions
6381         are external
6382
6383         PIC16 PORT specific changes:
6384         * src/pic16/device.c pic16_dump_equates() added,
6385         processor registers declared internally by the port are emitted in
6386         the translation as equates,
6387         * src/pic16/gen.c: inline code is passed unprocessed to the
6388         translation,
6389         * (pic16_popGetLit2): fnuction modified to take second operand as
6390         pCodeOp pointer and not as literal,
6391         * (popRegFromIdx): prefixed with pic16_,
6392         * (pic16_popCombine2): modified to receive already allocated pCode
6393         operands,
6394         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6395         * (genFunction): initializes local stack frame and pushes on stack
6396         all the registers used by this function,
6397         * (genEndFunction): restores all registers from stack and restores
6398         stack frame,
6399         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6400         improvements,
6401         * (pic16glue): changed the program startup sequence,
6402         * added new dbName code 'A' for functions placed in absolute section
6403         * src/pic16/main.c: added function attribute _naked,
6404         * added pragma 'code' to place a fnuction at an absolute address,
6405         * added command line arguments --debug-ralloc and --pcode-verbose,
6406         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6407         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6408         * (pic16_newpCodeOpLit2): modified to take the second operand as
6409         pCodeOp pointer,
6410         * (pic16_printpBlock): modified to emit each function in a separate
6411         section,
6412         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6413         UPPER for immediate operands,
6414         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6415         instruction,
6416         * src/pic16/peeph.def: all peepholes with movff are commented out,
6417         because there is a problem in the pcode peep optimizer,
6418         * src/pic16/ralloc.c: the register allocator can now reuse local
6419         function symbols for another function. This saves register usage.
6420         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6421
6422         Added file src/pic16/NOTES with information about program writing on
6423         the current port version.
6424
6425 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6426
6427         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6428         and peephole 252 (array access)
6429
6430 2004-01-09  Borut Razem <borut.razem AT siol.net>
6431
6432         * src/SDCCmain.c : fixed #872250: -l command line defined library
6433           files are scanned before standard library files
6434
6435 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6436
6437         * src/SDCCast.c (decorateType): fixed bug #874046
6438
6439 2004-01-09  Borut Razem <borut.razem AT siol.net>
6440
6441         * support/scripts/sdcc.nsi: remove previous installation
6442
6443 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6444
6445         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6446         bytes for last interrupt vector (mcs51)
6447         * sdcc.spec: fixed typo
6448
6449 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6450
6451         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6452         gen51Code): more efficient parameter receive for --model-large
6453         ("bug" #845294)
6454
6455 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6456
6457         * src/ds390/main.c,
6458         * src/z80/main.c: added missed needLinkerScript flags (more than
6459         one port structure defined in these file)
6460         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6461         bug #795325
6462
6463 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6464
6465         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6466         * src/port.h: added flag needLinkerScript in port->linker
6467         structure to inform whether to create a .lnk file or not,
6468         * src/avr/main.c,
6469         * src/ds390/main.c,
6470         * src/hc08/main.c,
6471         * src/mcs51/main.c,
6472         * src/pic/main.c,
6473         * src/pic16/main.c,
6474         * src/xa51/main.c,
6475         * src/z80/main.c: changed appropriately to configure
6476         needLinkerScript flag
6477         * src/pic/gen.c,
6478         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6479         * src/pic/glue.c: added variable udata_section_name to
6480         override default uninitialized data segment definition for
6481         devices only with SHAREBANK memory (reported from Erik Epetrich)
6482         * (pic14emitOverlay): modified to emit a commented overlay segment
6483         directive when no overlay data exist
6484         * (picglue): modified to emit uninitialized data segment
6485         according to udata_section_name
6486         * src/pic/main.c (_pic14_parseOptions): added command line
6487         options --udata-section-name=[name] to override default
6488         udata definition name
6489         * modified _linkCmd and _asmCmd to include compiler passed
6490         arguments via -W option
6491         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6492         object file from '.rel' to '.o' in port->linker structure,
6493         changed size of fptr from 2 to 3 in port structure
6494
6495 2004-01-07  Borut Razem <borut.razem AT siol.net>
6496
6497         * support/scripts/sdcc.nsi: update PATH
6498         * support/scripts/sdcc.ico: craeted
6499
6500 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6501
6502         * device/include/Makefile.in: fix install
6503         * doc/Makefile: fix install
6504
6505 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6506
6507         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6508         in bug #860505
6509         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6510         how the function variable allocation summary is displayed; also
6511         include information about variables allocated to the overlay
6512         segment
6513
6514 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6515
6516         * as/mcs51/lkmain.c: Help about -Y option
6517         * as/mcs51/lkarea.c: Fixed gcc warnings
6518
6519 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6520
6521         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6522         fixed warning
6523         * support/valdiag/tests/overflow.c: added
6524         * src/SDCCast.c (decorateType),
6525         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6526         LEFT_OP (left shift)
6527
6528 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6529
6530         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6531         (default behaviour).
6532
6533 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6534
6535         A python script to validate compiler diagnostic messages. It can be
6536         used to verify that sdcc complains about bad c source code and
6537         gives a good location of the error.
6538         * support/valdiag/Makefile,
6539         * support/valdiag/valdiag.py,
6540         * support/valdiag/tests/*
6541
6542 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6543
6544         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6545         * src/SDCCsymt.c (newEnumType),
6546         * src/SDCCsymt.h
6547         * support/Util/SDCCerr.c,
6548         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6549         enum related bugs.
6550         * support/regression/tests/enum.c: added test for enum values that
6551         require at least 2 bytes of storage.
6552
6553 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6554
6555         * src/common.h: added ifndef/define/endif macros
6556         around the header file.
6557         Bug reported from Jesus Calvino-Fraga
6558
6559 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6560
6561         * sdcc.spec: updated
6562         * device/include/Makefile.in: don't install CVS directories
6563         * device/lib/Makefile.in: added removal of CVS directories after install
6564         * doc/Makefile: fixed install, added local_icons
6565         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6566         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6567         * src/ds390/gen.c (genRightShift): fixed bug #870788
6568         * src/SDCCast.c (decorateType): fixed bug #870781
6569
6570 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6571
6572         PIC16 port related changes:
6573         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6574         added variable stackPos,
6575
6576         * gen.c: genCall, assignResultValue: added support for
6577         pushing/retrieving function parameters to/from stack,
6578         genFunction,genEndFunction: setup stack frame for the
6579         generated function,
6580         genAddrOf: will be changed according to bug 863624
6581
6582         * added files genutils.c and genutils.h which contain gen*
6583         debugged and optimised functions extracted from gen.c
6584
6585         * glue.c: added variable 'externs' which holds extern symbols,
6586         pic16emitRegularMap: is modified to properly handle relocatable
6587          symbols under the new scheme,
6588         pic16createInterruptVect: is modified
6589         pic16printPublics: is modified to emit 'global' assembler directives,
6590         added pic16_printExterns to print extern symbols,
6591         pic16glue: initializes stack/frame pointer in the beginning of
6592         the assembly output. Temporary hack, will be corrected later,
6593         because gplink yet does not support stack and SDCC does not
6594         yet support a type of crt0.o object to create the final binary.
6595
6596         * Removed many lines that contain 8051 legacy code.
6597         * The code is finally placed under a 'code' directive.
6598         * Added port specific options.
6599
6600         * _process_pragma: simplified since now we do not need *special*
6601         include file to define SFR registers. But a separate header
6602         will be needed. This will be developed later.
6603         * _pic16_parseOptions: added, parses port specific options:
6604         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6605         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6606         --preplace-udata-with=
6607
6608         * _pic16_setDefaultOptions: modified to initialize section names,
6609         but hack is temporarly out of order since it needs improvement.
6610         * _pic16_genAssemblerPreamble: configuration words are emitted by
6611         their address instead of their name. This part is incomplete and
6612         supports only the 18Fxx2 devices. Other devices will emit an error
6613         during assembly since they do not contain the same set of config
6614         registers
6615         * _pic16_genIVT: is modified,
6616
6617         * pcode.c: added definitions for some hardware registers that are needed
6618         for stack support
6619         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6620         All PCI entries are updated. Now LFSR is supported.
6621         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6622         * added pic16_newpCodeOpLit2 to support instructions with
6623         two literal arguments
6624         * pic16_pCode2str: corrected code that emits assembler instructions
6625         with two literal operands and those that have an access bit modifier
6626         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6627         this fixes a bug which caused some labels to be lost, when an
6628         assembler directive was added, i.e. banksel,
6629         * pic16_FixRegisterBanking: improved logic that causes the insertion
6630         of bank switching,
6631         * InlineFunction: functions that are called once, are not any more
6632         inlined. This can be a port option in the future,
6633
6634         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6635
6636         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6637         hold the corresponding uninitialized symbols,
6638         * pic16_allocProcessorRegister: registers have explicit marked the
6639         accessBank field,
6640         * pic16_allocInternalRegister: registers are explicit marked as
6641         not used,
6642         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6643         processing list, so bit registers were lost,
6644         *
6645
6646         * ralloc.h: added field 'accessBank' and original symbol operand
6647         in register definition,
6648         * removed the field isMapped from register definition,
6649
6650         ** Several functions have been removed from various sources:
6651         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6652         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6653         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6654         pic16_assignRelocatableRegisters
6655
6656         ** others have been introduced:
6657         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6658         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6659
6660 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6661
6662         * support/scripts/inc2h.pl: changed definition of BIT_AT
6663         to emit 'sbit at' instead of 'bit at'. This was a request.
6664
6665         PIC16 port related preliminary changes:
6666         * gen.c: prefixed function popRegFromString with
6667         pic16_ and all references to it corrected
6668         * pcode.c: all pic16_pc_* hardware registers prefixed
6669         with underscore (_),
6670         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6671         * ralloc.c: newReg(): when register is REG_SFR then
6672         set address to rIdx,
6673         pic16_allocProcessorRegister(): marks register wasUsed=0
6674         pic16_writeUsedRegs(): added a call to assign processor
6675         registers via pic16_assignFixedRegisters
6676
6677 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6678
6679         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6680         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6681         variables in unused register banks.  Also the SSEG is placed
6682         wherever there is enough space for it, and IDATA can be anywhere
6683         in internal RAM.  For now compile using -Wl-Y[stack_size].
6684         The mem file is different for this option as well, since it
6685         makes no sense of talking about DSEG lenght.
6686
6687 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6688
6689         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6690         in certain cases, e.g. when ROM assignment, patch provided
6691         from Albert den Haan.
6692
6693 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6694
6695         Many signedness and type propagation fixes:
6696         * src/SDCCicode.c: made geniCodeCast() static
6697         replaced SPEC_ by IS_ (cosmetic)
6698         (operandOperation): fixed div and mod operation
6699         (usualBinaryConversions): added support for promotion of char
6700         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6701         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6702         (geniCodeAdd): an array index will stay unsigned, even if promoted
6703         from char to int
6704         (geniCodeArray): ditto
6705         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6706         * src/SDCCsymt.c (computeType): added more support for char;
6707         promotion of char is selectable by promoteCharToInt, fixed signedness
6708         for all cases
6709         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6710         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6711         * src/SDCCval (val*): replaced signedness calculation by
6712         computeType()
6713         rearranged if-branches (cosmetic)
6714         (valShift): added warning W_SHIFT_CHANGED
6715         (valCompare): fixed problem with different types
6716         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6717         * support/regression/tests/literalop.c: added many cases
6718         * support/regression/tests/ast_constant_folding.c: changed finally to
6719         'unsigned int'
6720         * .version: new year, new version: 2.3.7
6721         * src/SDCCmain.c (main): applied patch #866468
6722         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6723         provided by Scott Bronson
6724         * doc/sdccman.lyx: updated documentation for sdcdb
6725         updated and added chapter tips
6726
6727 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6728
6729         * src/SDCCsymt.h: missing from yesterday's commits
6730
6731 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6732
6733         * src/SDCC.y (struct_or_union_specifier),
6734         * support/Util/SDCCerr.c,
6735         * support/Util/SDCCerr.h: verify that struct & union tags are used
6736         as declared.
6737
6738 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6739
6740         * src/SDCCglobl.h: missing from yesterday's commits
6741
6742 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6743
6744         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6745         sft_attributes, struct_declaration, parameter_declaration,
6746         type_name, start_block, declaration_list),
6747         * src/SDCC.lex (check_type): support redefinition of typedef names
6748
6749 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6750
6751         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6752         aligned xdata arrays. Erik helped me with the if clause.
6753
6754 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6755
6756         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6757         warning
6758
6759 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6760
6761         * src/SDCCast.h,
6762         * src/SDCCast.c (newAst_),
6763         * src/SDCCicode.h,
6764         * src/SDCCicode.c (ast2iCode, newiCode),
6765         * src/SDCCglobl.h,
6766         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6767         expr, statement, expression_statement, selection_statement,
6768         iteration_statement, expr_opt, jump_statement): foundation for tracking
6769         sequence points
6770         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6771         point code too)
6772
6773 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6774
6775         * support/Util/SDCCerr.c,
6776         * src/SDCCast.h,
6777         * src/SDCCast.c (createCase, createDefault, decorateType),
6778         * src/SDCClabel.c (labelUnreach),
6779         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6780         to error messages.
6781         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6782         (with thanks to Stas Sergeev)
6783         * device/include/time.h,
6784         * device/lib/time.c (CheckTime): suppress unreachable code warning
6785
6786 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6787
6788         * src/SDCCast.c (createIvalCharPtr),
6789         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6790         bug #753752)
6791         * support/regression/tests/nullstring.c: tests for these two bugs
6792
6793 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6794
6795         * support/Util/SDCCerr.h,
6796         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6797         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6798         about storage class and 'at' used inside struct or union
6799         * src/SDCCBBlock.c (iCodeFromeBBlock),
6800         * src/SDCCcse.c (ifxOptimize),
6801         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6802         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6803         printIval, emitStaticSeg, emitOverlay),
6804         * src/SDCClabel.c (deleteIfx),
6805         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6806         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6807         gatherAutoInit, processParms),
6808         * support/Util/SDCCerr.h,
6809         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6810         reporting for post-parse errors.
6811
6812 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6813
6814         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6815         implicit casts via union; they don't work on big endian systems
6816         (possible fix for bug #861138)
6817
6818 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6819
6820         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6821         * src/mcs51/main.c: fixed the fix for bug #737001
6822
6823 2003-12-15  Borut Razem <borut.razem AT siol.net>
6824
6825         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6826
6827 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6828
6829         * support/makebin/makebin.c: put output in binary mode
6830
6831 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6832
6833         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6834         xdata and data memory on startup. Set the environment variable
6835         SDCC_NOGENRAMCLEAR to disable this.
6836         * src/mcs51/peephole.def,
6837         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6838         (allows non-interrupt and interrupt code to safely compete for a resource
6839         without the non-interrupt code having to disable interrupts)
6840
6841 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6842
6843         * src/SDCCicode.c (geniCodeAdd),
6844         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6845         with valFromType if type might be a pointer and host is big endian).
6846         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6847         types, not just integer types.
6848         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6849         multiply defined with mismatching "at" address.
6850
6851 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6852
6853         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6854         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6855         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6856         with embedded nulls (fixed bug #753752)
6857
6858 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6859
6860         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6861         Apparently this did not see much testing (endless loop)
6862
6863 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6864
6865         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6866
6867 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6868
6869         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6870         gracefully handle NULL memmap pointers
6871
6872 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6873
6874         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6875         instead of deleting the iCode when an operand is volatile
6876         * src/z80/gen.c (genDummyRead),
6877         * src/mcs51/gen.c (genDummyRead),
6878         * src/ds390/gen.c (genDummyRead),
6879         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6880         not just IC_RIGHT
6881         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6882         * src/SDCC.y: fixed bug #850420
6883
6884 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6885
6886         Applied z80 i/o port patch from Peter Townson and fixed some operators
6887         to better handle operands in A register.
6888         * device/include/z180.h
6889         * src/SDCC.y
6890         * src/SDCCglue.c
6891         * src/z80/gen.c
6892         * src/z80/gen.h
6893         * src/z80/main.c
6894         * src/z80/peeph-z80.def
6895         * src/z80/peeph.def
6896         * src/z80/z80.h
6897
6898 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6899
6900         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6901
6902 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * device/lib/hc08/_mullong.c: Removed extra #endif
6905
6906 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6907
6908         * sim/ucsim/hc08.src/inst.cc,
6909         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6910         carries from x to h
6911         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6912         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6913         * device/include/stdarg.h: fixed varargs for hc08
6914         * device/lib/Makefile.in,
6915         * device/lib/hc08/Makefile,
6916         * device/lib/hc08/_mulint.c,
6917         * device/lib/hc08/_mullong.c: fixed some endian problems
6918
6919 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6920
6921         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6922         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6923         * device/lib/_gptrget.c,
6924         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6925
6926 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6927
6928         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6929         * src/SDCCast.c (astErrors): fixed bug #846007
6930         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6931
6932 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6933
6934         * src/SDCCast.c (decorateType): disabled a transformation I added in
6935         revision 1.188 (access to fields of a structure at an absolute address);
6936         it breaks with bitfields, extern declarations, and gcse analysis.
6937         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6938         could be assigned through a pointer, so don't complain.
6939         * src/SDCCast.c (astErrors),
6940         * src/SDCCast.h,
6941         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6942
6943 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6944
6945         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6946         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6947         output of __config directives, since gpasm now supports them
6948         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6949         pre-processor macro, i.e. -DMCU=p18f452
6950         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6951         and modified to handle 'cast' icode similarly to '=' icode
6952         * src/pic16/device.h (typedef struct PIC_device): added field
6953         'extMIface' to indicate that chip has external memory interface
6954         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6955         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6956         18F8720
6957
6958 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6959
6960         * src/SDCC.y (pointer): fixed bug #846006
6961         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6962         * src/SDCCast.c (decorateType): fixed bug #846009
6963         * src/ds390/peeph.def,
6964         * src/ds390/gen.c (genAnd, genOr),
6965         * src/mcs51/peeph.def,
6966         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6967
6968 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6969
6970         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6971         * src/SDCCdflow.c
6972         * src/SDCCcse.c
6973         * src/SDCCcse.h
6974         * src/SDCCBBlock.h
6975         * src/SDCCBBlock.c
6976
6977 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6978
6979         fixed bug #845089
6980         * src/SDCCbitv.h,
6981         * src/SDCCbitv.c: added function to free a bitvector
6982         * src/SDCClrange.h,
6983         * src/SDCClrange.c: added function to recompute the liveranges
6984         * src/avr/ralloc.c,
6985         * src/ds390/ralloc.c,
6986         * src/hc08/ralloc.c,
6987         * src/mcs51/ralloc.c,
6988         * src/pic/ralloc.c,
6989         * src/pic16/ralloc.c,
6990         * src/xa51/ralloc.c,
6991         * src/z80/ralloc.c: recompute the liveranges after register packing
6992
6993 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6994
6995         * src/SDCCloop.c (newInduction): fixed bug #845630
6996
6997 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6998
6999         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7000         inadvertantly left behind from my 2003-11-12 change
7001
7002 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7003
7004         Updated headers I neglected to commit yesterday.
7005         * src/SDCClrange.h,
7006         * src/SDCCicode.h
7007
7008 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7009
7010         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7011         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7012         * src/SDCCopt.c (eBBlockFromiCode),
7013         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7014         the creation of the key hash table from the sequencing so it can be used
7015         earlier (for some GCSE bug fixes still pending)
7016
7017 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7018
7019         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7020         * support/regression/tests/addsub.c: testing genPlus shortcut
7021
7022 2003-11-15  Borut Razem <borut.razem AT siol.net>
7023
7024         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7025
7026 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7027
7028         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7029         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7030         ordering is immaterial.
7031         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7032
7033 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7034
7035         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7036         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7037         (SIGSEV) of bug #840381
7038         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7039         unlink new file before rename if new and old filenames are the same)
7040
7041 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7042
7043         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7044         uninitialized variables) for the mcs51. Set environment variable
7045         SDCC_GENRAMCLEAR to test.
7046         xdata initialization slightly shorter
7047
7048 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7049
7050         * src/SDCCsymt.h,
7051         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7052         #838241 & 780691 (basicly the same bug)
7053         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7054         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7055
7056 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7057
7058         * src/SDCCmain.c (linkEdit): "fix" #834252
7059
7060 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7061
7062         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7063         * src/SDCCast.h,
7064         * src/SDCC.y: fixed bug #819403
7065
7066 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7067
7068         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7069         the reentrant attribute.
7070         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7071         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7072         simulation
7073         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7074         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7075         erroneously reduced to a literal.
7076         * src/hc08/ralloc.c (packRegisters, rematStr),
7077         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7078         some cases
7079
7080 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7081
7082         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7083         * doc/sdccman.lyx: changed from 'article' to 'book'
7084         * doc/Makefile: readded test_suite_spec and cdbfileformat
7085
7086 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7087
7088         * device/include/stdlib.h: include malloc.h to comply with ANSI
7089         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7090
7091 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7092
7093         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7094         * doc/clean.mk: also remove *.out files
7095         * doc/sdccman.lyx: some additions, larger top/bottom margins
7096
7097 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7098
7099         * src/SDCC.y: fixed bug #837365
7100         * support/regression/tests/bitopcse.c
7101         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7102         a symbol (might be valop instead)
7103         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7104         * device/lib/clean.mk: added hc08 to the cleaning list
7105
7106 2003-11-04  Borut Razem <borut.razem AT siol.net>
7107
7108         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7109           made 2003-11-04
7110         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7111           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7112           malloc is declared in standard stdlib.h
7113
7114 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7115
7116         * device/lib/hc08/Makefile: need to clean .rel not .o files
7117         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7118
7119 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7120
7121         * src/port.h,
7122         * src/hc08/main.c,
7123         * src/mcs51/main.c,
7124         * src/ds390/main.c,
7125         * src/z80/main.c,
7126         * src/avr/main.c,
7127         * src/pic/main.c,
7128         * src/pic16/main.c,
7129         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7130         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7131         tests (which uses the port's oclsExpense function)
7132         * src/SDCC.y,
7133         * src/SDCCast.c,
7134         * src/SDCCicode.c,
7135         * src/hc08/gen.c,
7136         * src/ds390/gen.c,
7137         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7138
7139 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7140
7141         * src/SDCCcse.c (ifxOptimize),
7142         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7143         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7144         deleting the IFX iCode.
7145         * src/hc08/ralloc.c: reduced unneeded slocs
7146         * src/hc08/gen.c: fixed bug in asmopToBoolean
7147
7148 2003-11-04  Borut Razem <borut.razem AT siol.net>
7149
7150         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7151           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7152           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7153           transferred to configure
7154
7155 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7156
7157         Use headers defined in the C[++] standards:
7158         * sim/ucsim/gui.src/serio.src/fileio.cc
7159         * sim/ucsim/gui.src/serio.src/frontend.cc
7160         * sim/ucsim/gui.src/serio.src/main.cc
7161         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7162         * support/Util/NewAlloc.c
7163         * as/hc08/lklibr.c
7164         * as/mcs51/lklibr.c
7165         * as/z80/aslist.c
7166         * as/z80/assym.c
7167
7168 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7169
7170         * Added MSVC projects for hc08 assembler and linker:
7171         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7172         /as/hc08/link_hc08.dsp
7173
7174 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7175
7176         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7177
7178 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7179
7180         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7181
7182 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7183
7184         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7185
7186 2003-10-31  Borut Razem <borut.razem AT siol.net>
7187
7188         * support/cpp2/cpplib.h,
7189           support/cpp2/cpplib.c,
7190           support/cpp2/cpplex.c,
7191           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7192           to switch _asm block preprocessing on / off. Default is
7193           #pragma preproc_asm +
7194
7195 2003-10-31  Borut Razem <borut.razem AT siol.net>
7196
7197         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7198           when outputting comment blocks (when executed with -C option) and
7199           _asm (SDCPP specific) blocks
7200
7201 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7202
7203         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7204
7205 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7206
7207         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7208
7209 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7210
7211         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7212         * src/SDCCast.c (decorateType): fixed bug #832664
7213
7214 2003-10-31  Borut Razem <borut.razem AT siol.net>
7215
7216         * support\cpp2\cpplex.c: fixed for SDCPP:
7217           comments(when executed with -C option) and _asm blocks
7218           were included even if they where in skipped #if block.
7219           Applied solution from GCC cpp 3.3.2
7220
7221 2003-10-31  Borut Razem <borut.razem AT siol.net>
7222
7223         * src/SDCC.lex: sdcc now understands both formats:
7224           '# <line_number> <file_name>' and
7225           '#line <line_number> <file_name>'
7226         * support/cpp2/cppmain.c: sdcpp now generates the standard
7227           '# <line_number> <file_name>' instead of former
7228           '#line <line_number> <file_name>'
7229
7230 2003-10-30  Borut Razem <borut.razem AT siol.net>
7231
7232         * support/cpp2/cpphash.h,
7233         * support/cpp2/cpplib.h
7234         * support/cpp2/cpplex.c,
7235         * support/cpp2/cppmain.c,
7236         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7237
7238 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7239
7240         Fixed a number of problems revealed by bug #827883.
7241         * src/SDCCloop.c (loopInvariants): Spill location of the
7242         result operand should be recomputed if extracted from
7243         a loop. Also, don't extract assignments of an iTemp
7244         from a literal.
7245         * src/SDCCast.c (isConformingBody): loop reversal should
7246         not occur if the control variable is involved with a
7247         relational operator.
7248
7249 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7250
7251         * .version: bumped to 2.3.6 to reflect the big improvements
7252         made by Erik and Klaus. Thanks!
7253
7254 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7255
7256         Replaced the livrange code.
7257         * src/SDCClrange.c: added new LR code
7258         * src/SDCCloop.c,
7259         * src/SDCCBBlock.h: removed remainig parts from old LR code
7260         * src/ds390/ralloc.c,
7261         * src/ds390/gen.c: minor fixes to make it work with new code
7262
7263 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7264
7265         * as/hc08/asm.h,
7266         * as/hc08/lkrloc.c,
7267         * src/hc08/gen.c,
7268         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7269         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7270         (tweaked fix for bug #818696)
7271
7272 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7273
7274         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7275
7276 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7277
7278         * src/SDCCmain.c,
7279         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7280         * src/mcs51/gen.c (gencjneshort),
7281         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7282         more efficient (per Scott Bronson's suggestion)
7283
7284 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7285
7286         Extended the semantics of the critical keyword to include
7287         individual statements. See RFE #827755 and #799831
7288         * src/SDCC.y
7289         * src/SDCCicode.c
7290         * src/SDCCopt.c
7291         * src/SDCCast.c
7292         * support/Util/SDCCerr.c
7293         * support/Util/SDCCerr.h
7294         * src/mcs51/gen.c
7295         * src/ds390/gen.c
7296         * src/hc08/gen.c
7297
7298 2003-10-19  Borut Razem <borut.razem AT siol.net>
7299
7300         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7301
7302 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7303
7304         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7305         Fixed bug #818696
7306         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7307         and predecrement operand is displayed
7308
7309 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7310
7311         * src/SDCCval.c (valMinus): fixed bug #826041
7312
7313 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7314
7315         Some hc08 related updates that I missed earlier
7316         * sim/ucsim/stypes.h
7317         * support/regression/ports/hc08/spec.mk
7318
7319 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7320
7321         New target "hc08" for the Motorola 68hc08 family of micros
7322
7323         * configure
7324         * configure.in
7325         * Makefile
7326         * src/hc08/*
7327         * src/SDCCmain.c
7328         * src/port.h
7329         * sim/ucsim/hc08.src/*
7330         * sim/ucsim/configure.in
7331         * src/ucsim/configure
7332         * sim/ucsim/packages_in.mk
7333         * as/hc08/*
7334         * as/Makefile
7335         * device/include/mc68hc908qy.h
7336         * device/lib/hc08/*
7337         * device/lib/Makefile.in
7338         * support/regression/ports/hc08/*
7339         * support/regression/Makefile
7340
7341 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7342
7343         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7344         regression test
7345         * src/ds390/gen.c (genCast): fixed bug #821957
7346
7347 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7348
7349         * device/lib/logf.c: "fixed" overlay bug
7350         * support/regression/ports/host/spec.mk: added m library
7351         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7352         * support/regression/tests/float_trans: added (for Eric)
7353
7354 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7355
7356         * src/mcs51/gen.c (genCpl): fixed bug
7357         http://sf.net/mailarchive/message.php?msg_id=6263915
7358
7359 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7360
7361         * src/SDCCast.c (decorateType): added extended constant folding
7362         * src/SDCCsymt.c (computeType): cleanup
7363         * src/SDCCval.c (valShift): minor optimization
7364         * support/regression/tests/ast_constant_folding.c: added
7365
7366 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7367
7368         * src/SDCCmain.c: removed some unintended changes
7369
7370 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7371
7372         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7373         * src/z80/gen.c: fixed part of bug #817589
7374         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7375
7376 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7377
7378         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7379         * src/SDCCcflow.c
7380         * src/SDCCcse.c
7381         * src/SDCCdflow.c
7382         * src/SDCClabel.c
7383         * src/SDCClrange.c
7384         * src/SDCCmem.c
7385         * src/SDCCopt.c
7386         * src/SDCCpeeph.c
7387         * src/SDCCset.c
7388         * src/avr/ralloc.c
7389         * src/ds390/ralloc.c
7390         * src/izt/ralloc.c
7391         * src/mcs51/ralloc.c
7392         * src/pic/ralloc.c
7393         * src/pic16/ralloc.c
7394         * src/xa51/ralloc.c
7395         * src/z80/ralloc.c
7396         * src/z80/gen.c: removed unused label "release:"
7397
7398 2003-10-06  Borut Razem <borut.razem AT siol.net>
7399
7400         * src/SDCC.lex: removed definition of unused variables
7401           save_optimize and save_options
7402
7403 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7404
7405         * clean.mk: removed '=' in "-maxdepth=1"
7406         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7407         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7408
7409 2003-10-06  Borut Razem <borut.razem AT siol.net>
7410
7411         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7412           my_unput() replaced by unput()
7413
7414 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7415
7416         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7417         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7418         type-punned pointer will break strict-aliasing rules"
7419         Old LR behaviour is again default; Klaus' LR can be choosen by
7420         defining the environment variable LRKLAUS
7421         * src/SDCCBBlock.h
7422         * src/SDCCloop.c
7423         * src/SDCClrange.c
7424         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7425         * clean.mk: fixed removal of files in bin/CVS/
7426         * device/lib/clean.mk: fixed removal of directories small and large
7427         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7428         * src/SDCCicode.c,
7429         * src/SDCCval.c: removed superflous test for pedantic
7430
7431 2003-10-05  Borut Razem <borut.razem AT siol.net>
7432
7433         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7434           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7435           message "unmatched #pragma SAVE and #pragma RESTORE"
7436
7437 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7438
7439         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7440           assembly, critical functions, atomic, nojtbound)
7441
7442 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7443
7444         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7445         * src/SDCCBBlock.h
7446         * src/SDCCloop.c
7447         * src/SDCCloop.h
7448         * src/SDCClrange.c
7449
7450 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7451
7452         * src/z80/gen.h,
7453         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7454         * src/mcs51/gen.h
7455         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7456         * src/ds390/gen.h
7457         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7458         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7459         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7460
7461 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7462
7463         * src/z80/gen.c (genRet): fixed bug #524753
7464         * src/z80/gen.c (genCast): fixed internal error on cast from
7465         pointer to long
7466         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7467         fix for bug #477835 to the z80
7468         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7469         for tracking iCodes in the peephole optimizer for z80
7470
7471 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7472
7473         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7474         the other part of bug #814548
7475         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7476
7477 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7478
7479         * src/SDCCcse.c: fixed part of bug #814548
7480
7481 2003-09-28  Borut Razem <borut.razem AT siol.net>
7482
7483         * src/asm.c: rewrite of printILine() to use temporary file instead
7484           a pipe
7485         * src/xa51/main.c: commented out declaration of int rewinds
7486
7487 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7488
7489         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7490
7491 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7492
7493         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7494         * src/asm.c (printILine): Fixed bug #811015
7495
7496 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7497
7498         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7499         freeing.
7500
7501 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7502
7503         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7504         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7505         to correctly handle general case of AOP_PAIRPTR
7506         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7507
7508 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7509
7510         * src/mcs51/ralloc.c (fillGaps),
7511         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7512         register positioning bug)
7513
7514 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7515
7516         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7517
7518 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7519
7520         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7521         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7522         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7523         (ralloc doesn't intentionally do this now, but perhaps later)
7524         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7525         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7526         register positioning bugs (Fixed bug #762602 and #795325)
7527         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7528         (Fixed bug #808779)
7529         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7530         lines that --i-code-in-asm generates
7531
7532 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7533
7534         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7535         trying to fclose a FILE* that was already closed.
7536
7537 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7538
7539         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7540         of const struct should be treated as if const themselves)
7541
7542 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7543
7544         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7545
7546 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7547
7548         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7549         Unix (/n) and DOS (/r/n) line terminations.
7550
7551 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7552
7553         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7554         bug #613775
7555
7556 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7557
7558         * src/mcs51/gen.c (genFunction, genEndFunction),
7559         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7560         and restore of EA so that stack offsets to parameters are
7561         correct when using both critical and reentrant/stack-auto.
7562         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7563         size (can be triggered in error if sloc is shared between
7564         different sized objects)
7565         * device/include/float.h: fixed macros to explicitly use
7566         unsigned long where needed
7567
7568 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7569
7570         Feature req. 799831: added code to allow nesting of critical functions
7571         * src/mcs51/gen.c (genFunction, genEndFunction)
7572         * src/ds390/gen.c (genFunction, genEndFunction)
7573
7574 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7575
7576         * src/SDCCsymt.c (sclsFromPtr),
7577         * src/SDCCsymt.h,
7578         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7579         support for standard C idiom of memory mapped variables; for
7580         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7581         to xdata int at 0x1234 tempvar = 1.
7582         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7583         provided by Akiya ISHIDA
7584
7585 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7586
7587         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7588         * src/SDCCval.c (constVal): added reduction from int to char
7589         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7590         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7591         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7592         to ignore the sign
7593         * support/regression/tests/shifts.c: fixed
7594
7595 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7596
7597         * src/z80/gen.c (genXor): Fixed bug #805445
7598
7599 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7600
7601         Fixed bug #621531 (const & volatile confusion in the type chain).
7602         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7603         refer to the const or volatile state of the pointer itself.
7604
7605         * src/SDCCast.c
7606         * src/SDCCglue.c
7607         * src/SDCCicode.c
7608         * src/SDCCsymt.c
7609         * src/SDCCval.c
7610         * src/SDCC.y
7611         * src/SDCCsymt.h
7612         * src/pic/gen.c
7613         * src/pic/ralloc.c
7614         * src/pic16/gen.c
7615         * src/pic16/ralloc.c
7616         * support/regression/tests/const.c
7617
7618 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7619
7620         When checking for duplicated modules, use absolute paths
7621         instead of relative paths.  Files changed:
7622
7623         * as/mcs51/lklib.c
7624         * link/z80/lklib.c
7625
7626 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7627
7628         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7629
7630 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7631
7632         * device/include/string.h: added size_t typedef, changed
7633         prototypes to use size_t, eliminated separate reentrant and
7634         non-reentrant declarations, added _memmove declaration
7635         * device/lib/_memcpy.c: changed to use size_t instead of int,
7636         changed /4 to >>2 to avoid division library call
7637         * device/lib/_memcmp.c,
7638         * device/lib/_memset.c,
7639         * device/lib/_strncat.c,
7640         * device/lib/_strncpy.c,
7641         * device/lib/_strncmp.c: changed to use size_t instead of int
7642         * device/lib/_memmove.c: new file (fixed bug #772294)
7643         * device/lib/Makefile.in: added _memmove.c
7644         * device/lib/z80/asm_strings.s: fixed bug #772290
7645         * support/regression/tests/bitfields.c: attempt to fix host assertion
7646         failure on amd64-unknown-linux2.2
7647
7648 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7649
7650         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7651         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7652         * as/z80/asmain.c (main): fixed bug #801766
7653
7654 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7655
7656         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7657         compilers
7658
7659 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7660
7661         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7662         reported in bug #800609
7663
7664 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7665
7666         * Top header beautifications in src/pic16 directory:
7667           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7668           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7669           pcoderegs.h, ralloc.c, ralloc.h
7670         * main.c: added top header and GPL license notice
7671         * pcode.c: fixed the if-conditional warning
7672
7673 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7674
7675         * device/lib/_mullong.c: replaced int by short for gcc
7676
7677 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7678
7679         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7680         and JUMPTABLE iCodes properly now (worked by accident before)
7681         * src/mcs51/gen.c (leftRightUseAcc),
7682         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7683         iCode properly now. Use getSize instead of nRegs since a & b
7684         aren't part of the nRegs tally.
7685
7686 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7687
7688         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7689         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7690           before instructions that use the _STATUS register
7691
7692 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7693
7694         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7695         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7696         fetching of the pointer
7697         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7698         copied from genNearPointerSet()
7699         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7700         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7701         If they pop r0/r1 they must be called in the opposite order than aopOp().
7702         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7703         (resp. --stack-auto), prepared for --xstack
7704
7705 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7706
7707         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7708
7709 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7710
7711         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7712         these ports have their own __sdcc_external_start()
7713
7714 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7715
7716         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7717         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7718         type for bits was changed. It resulted in bit variables becoming
7719         global, which is not permitted in PIC 14 assembly output.
7720
7721 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7722
7723         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7724
7725 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7726
7727         Z80 and MCS51 linkers complaint if a public symbol is defined
7728         in more than one library module:
7729
7730         * as/mcs51/lklib.c
7731         * link/z80/lklib.c
7732         * as/mcs51/Makefile.in
7733
7734 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7735
7736         A few small changes that speed up the peephole optimizer.
7737
7738         * src/SDCCpeeph.c
7739
7740 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7741
7742         Try to make the peephole optimizer smarter by maintaining
7743         an association between the assembly source code and the
7744         iCodes that originated them. Put this information to use
7745         with a new peephole rule condition "notVolatile" so that
7746         the rules can be aggressive yet still safe.
7747
7748         * src/SDCCpeeph.c
7749         * src/SDCCpeeph.h
7750         * src/mcs51/gen.c
7751         * src/mcs51/peeph.def
7752
7753 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7754
7755         Fixed bug #741761
7756
7757         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7758         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7759         if the left or right operand symbols have the accuse flag set.
7760
7761 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7762
7763         Changed the type of the result of the ! (NOT) operator to char;
7764         previously it returned the same type as the source. This allows
7765         us to eliminate all the genFloatNot functions (all of its target
7766         implementations were very buggy) since !float can use the same
7767         code as !long now.
7768
7769         * src/SDCCicode.c (ast2iCode): ! returns char
7770         * src/mcs51/gen.c (genNot, genNotFloat),
7771         * src/ds390/gen.c (genNot, genNotFloat),
7772         * src/z80/gen.c (genNot, genNotFloat),
7773         * src/pic/gen.c (genNot, genNotFloat),
7774         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7775
7776 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7777
7778         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7779         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7780            during interrupts. Ensure WSAVE is located at a shared bank address.
7781         2. Fixed page selection in some places
7782         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7783            the registers name strings.
7784         4. Fixed "signed / unsigned compare" compiler warnings.
7785         5. The PIC port manages its own allocation of the general purpose
7786            registers, but makes no attempt to reuse them. As a result when
7787            compiling it soon runs out of general purpose registers. Some
7788            additional code was added to the files pcode.c and device.c to walk
7789            through the function call tree and rename the registers so that they
7790            get reused.
7791
7792         * src/pic/device.c
7793         * src/pic/gen.c
7794         * src/pic/glue.c
7795         * src/pic/pcode.c
7796         * src/pic/pcode.h
7797         * src/pic/ralloc.c
7798         * src/pic/ralloc.h
7799         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7800         genPlus() & genMinus() when the result is the same as left or right
7801
7802 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7803
7804         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7805
7806 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7807
7808         Made bitfield a distinct type from bit so that bitfields
7809         convert as per ANSI C and bits retain their traditional
7810         boolean style behaviour. Implemented bitfield support in
7811         the z80 port.
7812
7813         * src/SDCCsymt.h,
7814         * src/SDCCsymt.c,
7815         * src/SDCCast.c,
7816         * src/cdbFile.c,
7817         * src/mcs51/gen.c,
7818         * src/ds390/gen.c: bit v bitfield split
7819         * src/z80/gen.c: New support for bitfields
7820         * support/regression/tests/bitfields.c: reenabled z80,
7821         added more tests
7822
7823 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7824
7825         Rules 246.x, 247.x relate to bitfields, the others speed up
7826         access to xdata mapped I/O devices.
7827
7828         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7829
7830 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7831
7832         Cleaned up genPackBits and genUnpackBits and added two helper
7833         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7834         for literal assignments in genPackBits (thanks to Frieder for
7835         reminding me).
7836
7837         * src/mcs51/gen.c
7838         * src/ds390/gen.c
7839
7840 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7841
7842         Fixed bug #748310 (pointer to function type mishandled when the
7843         function name is omitted). Also fixed a SIGSEGV when a function
7844         attribute (reentrant, etc) is used on a non-function or on a
7845         function but misplaced before the parameter list.
7846
7847         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7848         bug #748310
7849         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7850         * support/Util/SDCCerr.h,
7851         * support/Util/SDCCerr.c: Added func attr misuse error msg
7852
7853 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7854
7855         Fixed bug #787649 by anonymous
7856         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7857         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7858
7859 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7860
7861         Fixed numerous bitfield problems.
7862
7863         * src/SDCC.y: More bitfield related error checking
7864         * src/SDCCsymt.h,
7865         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7866         * support/Util/SDCCerr.h,
7867         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7868         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7869         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7870         * support/regression/tests/bitfields.c: tests added
7871
7872 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7873
7874         Made the constant following the "interrupt" keyword optional. If
7875         omitted, the function will not automatically be given an entry
7876         in the interrupt vector table (similar to #pragma NOIV, but
7877         less syntacticly kludgy). The interrupt number is also now
7878         range checked. Also fixed a bug in the high order bit example
7879         in the manual.
7880
7881         * src/SDCC.y
7882         * src/SDCCmem.c
7883         * src/SDCCglue.c
7884         * src/SDCCsymt.h
7885         * support/Util/SDCCerr.c
7886         * support/Util/SDCCerr.h
7887         * doc/sdccman.lyx
7888
7889 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7890
7891         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7892         * src/SDCCicode.c (operandOperation): rewritten some ops
7893         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7894         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7895         other type
7896         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7897         be re-activated by defining REDUCE_LITERALS)
7898         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7899         unsigned, but are signed by default
7900         * src/SDCCval.c (constVal): rearranged
7901         * src/SDCCval.c (valMod): preliminary fix
7902         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7903         * support/regression/literalop.c: added, work in progress
7904
7905 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7906
7907         Generate warnings for useless declarations like "char data;"
7908         that don't do what new users expect.
7909
7910         * src/SDCC.y
7911         * support/Util/SDCCerr.h
7912         * support/Util/SDCCerr.c
7913
7914 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7915
7916         * src/SDCCval.c (valMult): fix overflow detection of negative int
7917
7918 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7919
7920         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7921
7922         Changes to support big endian targets:
7923
7924         * src/ports.h
7925         * src/SDCCglue.c
7926         * src/avr/main.c
7927         * src/ds390/main.c
7928         * src/izt/i186.c
7929         * src/mcs51/main.c
7930         * src/pic/main.c
7931         * src/pic16/main.c
7932         * src/xa51/main.c
7933         * src/z80/main.c
7934
7935 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7936
7937         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7938         * device/lib/time.c: fixed warning "integer overflow in expression"
7939
7940 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7941
7942         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7943         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7944         constants are unsigned; added recognition of "u" flag for unsigned
7945         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7946         * src/SDCCval.c (valDiv, valMod): fixed signdness
7947         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7948         signedness of modulo, left and right shift
7949         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7950         * support/Util/SDCCerr.h: added warning W_INT_OVL
7951         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7952         * src/SDCCast.c (ast_print): improved output of constants
7953
7954 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7955
7956         Fixed some warnings when building with MSVC:
7957
7958         * as\mcs51\asdata.c
7959         * as\z80\asdata.c
7960         * as\mcs51\asm.h
7961         * as\z80\asm.h
7962         * link\z80\aslink.h
7963         * link\z80\lkdata.c
7964         * link\z80\lkeval.c
7965         * link\z80\lkgb.c
7966         * link\z80\lkihx.c
7967         * link\z80\lks19.c
7968         * link\z80\lksym.c
7969         * support\cpp2\cpplib.c
7970         * src\ds390\gen.c
7971         * src\mcs51\gen.c
7972
7973 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7974
7975         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7976
7977 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7978
7979         * support\librarian\clean.mk: Do not remove Makefile.
7980         * support\librarian\Makefile: added.
7981
7982 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7983
7984         Added librarian to MSVC build:
7985         * all.dsp
7986         * sdcc.dsw
7987         * support\librarian\librarian.dsp
7988
7989         'configure' not needed for librarian, removed:
7990         * support\librarian\configure
7991         * support\librarian\configure.in
7992         * support\librarian\config_in.h
7993         * support\librarian\Makefile.in
7994
7995         Hopefully these ones built the librarian and the rest of sdcc properly:
7996         * Makefile
7997         * Makefile.common.in
7998
7999         Messed up 'configure', so revert to previous version:
8000         * configure
8001         * configure.in
8002
8003 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8004
8005         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8006         there, while the mantissa of a double is "only" 53 bits wide.
8007
8008 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8009
8010         Adding sdcclib to the build.  MSVC project coming soon.
8011         Files added/changed:
8012
8013         * support\librarian\clean.mk
8014         * support\librarian\configure
8015         * support\librarian\configure.in
8016         * support\librarian\config_in.h
8017         * support\librarian\Makefile.bcc
8018         * support\librarian\Makefile.in
8019         * support\librarian\sdcclib.c
8020         * Makefile.bcc
8021         * Makefile
8022         * Makefile.common.in
8023         * configure
8024         * configure.in
8025
8026 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8027
8028         Linker now complaints if linked modules have conflicting options, for
8029         example, one compiled using --model-large and another one compiled with
8030         --model-small.  The following files were modified:
8031
8032         * as\mcs51\asdata.c
8033         * as\mcs51\aslink.h
8034         * as\mcs51\asm.h
8035         * as\mcs51\asmain.c
8036         * as\mcs51\asout.c
8037         * as\mcs51\i51pst.c
8038         * as\mcs51\lkdata.c
8039         * as\mcs51\lklibr.c
8040         * as\mcs51\lkmain.c
8041         * as\z80\asdata.c
8042         * as\z80\asm.h
8043         * as\z80\asmain.c
8044         * as\z80\asout.c
8045         * as\z80\z80pst.c
8046         * link\z80\aslink.h
8047         * link\z80\lkdata.c
8048         * link\z80\lklibr.c
8049         * link\z80\lkmain.c
8050         * src\SDCCglue.c
8051
8052 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8053
8054         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8055         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8056
8057 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8058
8059         * src/z80/mappings.i: fix _mul[us][int,long] entries
8060
8061 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8062
8063         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8064
8065 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8066
8067         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8068         * support/regression/tests/bitopcse.c: added
8069         fixed warning:
8070         * src/avr/gen.c:
8071         * src/pic/gen.c:
8072         * src/pic16/gen.c:
8073         * src/z80/gen.c:
8074         * src/xa51/gen.c:
8075
8076 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8077
8078         added support for new library format to z80, gbz80 linkers:
8079         *link/z80/aslink.h
8080         *link/z80/lklex.c
8081         *link/z80/lklib.c
8082         *link/z80/lklist.c
8083
8084 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8085
8086         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8087         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8088
8089 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8090
8091         added DUMMY_READ_VOLATILE:
8092         * src/SDCC.y:
8093         * src/avr/gen.c:
8094         * src/xa51/gen.c:
8095         * src/z80/gen.c:
8096         * src/pic/gen.c:
8097         * src/pic16/gen.c:
8098         * src/mcs51/gen.c:
8099         * src/ds390/gen.c:
8100         * src/SDCCcse.c (algebraicOpts): many improvements
8101         * src/SDCCcse.h: removed algebraicOpts()
8102         * src/SDCCicode.c (picDummyRead): added
8103
8104 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8105
8106         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8107         "Insufficient space in data memory".
8108
8109 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8110
8111         * src/mcs51/gen.c: fixed bug #771358
8112         * src/z80/gen.c: fixed bug #759087
8113
8114 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8115
8116         * src/pic16/glue.c: minor cleanup by Vangelis
8117
8118 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8119
8120         * device/include/regc515c.h: fixed #758477
8121         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8122         * device/lib/_gptrput.c: saved a few bytes
8123         * my tab spacing is 8, yours too?)
8124         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8125         * device/lib/serial.c: process RX bytes earlier than TX bytes
8126         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8127
8128 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8129
8130         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8131
8132 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8133
8134     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8135
8136 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8137
8138         * device/lib/Makefile.in: bad fix, reverted to 1.43
8139
8140 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8141
8142         * device/lib/Makefile.in: added missing z80 object files
8143
8144 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8145
8146         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8147         pic16 progress by Vangelis:
8148         * src/SDCCglobl.h:
8149         * src/SDCCmain.c:
8150         * src/pic/Makefile:
8151         * src/pic:
8152         * pic/Makefile:
8153         * pic16/device.c:
8154         * pic16/device.h:
8155         * pic16/gen.c:
8156         * pic16/gen.h:
8157         * pic16/genarith.c:
8158         * pic16/glue.c:
8159         * pic16/main.c:
8160         * pic16/pcode.c:
8161         * pic16/pcode.h:
8162         * pic16/pcodepeep.c:
8163         * pic16/peeph.def:
8164
8165 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8166
8167     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8168
8169 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8170
8171     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8172     added gbz80 build to MSVC project.
8173     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8174     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8175     from 8051 stuff and setup so it links using a .lnk file.
8176
8177 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8178
8179     * support/librarian/sdcclib.c: sdcc librarian.
8180     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8181     with sdcclib.
8182
8183 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8184
8185     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8186
8187 2003-07-02  Borut Razem <borut.razem AT siol.net>
8188
8189         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8190         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8191         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8192         src/xa51/main.c, src/z80/main.c:
8193         virtualization of glue() function: each port has it's own glue function,
8194         which is accessed by do_glue function pointer in PORT.general structure
8195
8196 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8197
8198         * DS800C400 fun, improved ROM interface and tinibios.
8199
8200 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8201
8202         * More support for DS80C400. Now includes beginning of interface to ROM.
8203
8204 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8205
8206         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8207
8208 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8209
8210         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8211
8212 2003-06-19  Borut Razem <borut.razem AT siol.net>
8213
8214         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8215
8216 2003-06-19  Borut Razem <borut.razem AT siol.net>
8217
8218         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8219         fixed Z80 port - crt0.o: cannot open.
8220
8221 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8222
8223         * support/Util/MySystem.c (merge_command): revert bad fix
8224
8225 2003-06-18  Borut Razem <borut.razem AT siol.net>
8226
8227         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8228
8229 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8230
8231         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8232         option --use-stdout sends errors to stdout instead of stderr.
8233
8234 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8235
8236         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8237
8238 2003-06-15  Borut Razem <borut.razem AT siol.net>
8239
8240         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8241         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8242         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8243         fixed width array of pointers replaced with sets;
8244         multiple include and lib paths ared transferred to preprocessor and linker
8245         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8246         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8247         fixed width array of pointers
8248         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8249         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8250         fixupPath(), getPathDifference()
8251         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8252         fixed width array of pointers
8253
8254 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8255
8256         * src/pic16/ralloc.c: fix warnings
8257         * src/pic16/pcode.c: fix warning
8258
8259 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8260
8261          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8262         know all the details, but essentially this set of changes enable
8263         the pic16 port to generate movff instructions and generate assembler
8264         directives,
8265         * src/SDCCmain.c:
8266         * src/pic16/gen.c:
8267         * src/pic16/glue.c:
8268         * src/pic16/pcode.c:
8269         * src/pic16/device.c:
8270         * src/pic16/main.c:
8271         * src/pic16/pcode.h:
8272         * src/pic16/pcoderegs.c:
8273         * src/pic16/ralloc.c:
8274         * src/pic16/ralloc.h:
8275
8276 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8277
8278         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8279         added option --vc, so sdcc errors and warnings are compatible with
8280         Microsoft Visual Studio.
8281
8282 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8283
8284         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8285           device/lib/libfloat.lib: added atof function.
8286
8287 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8288
8289         * doc/sdccman.lyx: updated to Lyx 1.3
8290         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8291         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8292         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8293
8294 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8295
8296         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8297
8298 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8299
8300         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8301           additions to the "related tools/documentation" section
8302
8303 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8304
8305         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8306
8307 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8308
8309         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8310         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8311
8312 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8313
8314         * doc/sdccman.lyx: fix double dash and other minor things
8315         * doc/Makefile: fix double dash
8316
8317 2003-05-28  Karl Bongers(patches from Martin Helmling)
8318         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8319           condition and ignore commands.
8320
8321 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8322
8323         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8324           is in parts still quite out of date, I did changes as far as I felt makes sense
8325           for a non-native english speaker.
8326           Please feel free to add to the manual or to correct my changes.
8327         * doc/Makefile: undid touching the date of intermediate tex files.
8328
8329 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8330
8331         * doc/sdccman.lyx: Manual has an index now
8332
8333 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8334
8335         Finalize muluint/mulsint and mululong/mulslong merging:
8336         * device/lib/_mulint.c
8337         * device/lib/_mullong.c
8338         * device/lib/gbz80/mul.s
8339         * device/lib/gbz80/stubs.s
8340         * device/lib/z80/mul.s
8341         * device/lib/z80/stubs.s
8342         * src/SDCCsymt.c (initCSupport)
8343
8344 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8345
8346         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8347         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8348           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8349           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8350           instead of /Zm500.
8351
8352 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8353
8354         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8355           the regression tests I'm not brave enough to enable 245.b, 245.c
8356         * doc/sdccman.lyx: added latex preamble for hyperref package.
8357           Using pdflatex this will give you a hyperlinked pdf file with
8358           bookmarks. (prepend '%' before /usepackage if this breaks something)
8359
8360 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8361
8362          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8363
8364 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8365
8366         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8367
8368 2003-05-21    <johan AT balder>
8369
8370         * src/SDCCglue.c (printIval): fixed bug #739934
8371
8372 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8373
8374         Applied patch from bug 737905 (renamed yylineo to mylineno):
8375         * src/altlex.c
8376         * src/SDCCast.c
8377         * src/SDCglobl.h
8378         * src/SDCC.lex
8379         * src/SDCCsymt.c
8380         * src/SDCCval.c
8381         * src/pic16/pcode.c: Cleaned warnings
8382         * src/pic16/pcodeflow.c: Cleaned warnings
8383         * src/pic16/pcoderegs.c: Cleaned warnings
8384
8385 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8386
8387         * src/pic16/pcode.c: Cleaned warnings
8388         * src/pic16/pcodepeep.c: Cleaned warnings
8389         * src/pic16/ralloc.c: Cleaned warnings
8390
8391 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8392
8393         * doc/sdccman.lyx: fixed bug 739745
8394         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8395
8396 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8397
8398         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8399         it can be defined with CFLAGS when running configure
8400         * src/SDCCmain.c: fixed compiling + linking with object files
8401
8402 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8403
8404         * configure.in: configure for pic16 port,
8405             added --disable-pic16-port
8406         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8407         * src/SDCCmain.c: linkOptions is changed to set *,
8408             added if/endif conditional macros to remove options help
8409             messages from optionsTable when a port is not configured, added
8410             support for the PIc16 port in the ports table, when executing
8411             the compiler with no port specified on command line, a default
8412             port is selected with the new macro DEFAULT_PORT which is
8413             defined in port.h, in setDefaultOptions() linkOptions is removed
8414             from initialization assignment, since now it is a set,
8415             parseCmdLine uses setParseWithComma for linkOptions, in
8416             linkEdit() linkOptions are accessed with new function indexSet()
8417             which returns the i'th item of a set variable. See SDCCset.c, in
8418             linkEdit() when calling buildCmdLine(), added linkOptions as
8419             last argument. Now users can pass arguments to gplink via the
8420             -Wl option, main() uses pic16glue() to glue up pic16 programs
8421         * src/SDCCpeeph.c: various changes to support pic16
8422         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8423             return the i'th item of the set
8424         * src/SDCCset.h: added function prototype for indexSet()
8425         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8426         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8427         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8428             added macro DEFAULT_PORT
8429         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8430         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8431             generated
8432         * src/pic16/glue.c: commented out some error producing lines
8433         * src/pic16/main.c: __config directives are commented out to stop
8434             gpasm complaining and test the linkage with gplink, _linkCmd and
8435             _asmCmd changed to be more gplink and gpasm friendly
8436         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8437             produced an error when parsed, peep rule 12 is added to utilize
8438             movff, but it is commented out since the pCode does not support
8439             yet a command with 2 address arguments
8440
8441 2003-05-18    <johan AT balder>
8442
8443         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8444         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8445 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8446
8447         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8448   Added feature to script commands from file.
8449
8450 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8451
8452         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8453         * src/SDCCutil.c: include ctype.h for win32
8454
8455 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8456
8457         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8458
8459 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8460
8461         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8462   Fixed so you can set breakpoints prior to run, run does not stop
8463   on entry now.  Add tbreak.  Other enhancements and fixes for use
8464   with ddd.
8465
8466 2003-05-12  Borut Razem <borut.razem AT siol.net>
8467
8468         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8469
8470 2003-05-11  Borut Razem <borut.razem AT siol.net>
8471
8472         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8473         the path of bin directory, so that PATH is the only env. variable, which has to be set
8474         in case of standard installation.
8475         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8476         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8477         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8478
8479 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8480
8481         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8482         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8483         temp files are in the port dir; clean the gen/test directory when
8484         generating new test.c
8485         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8486         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8487         * support/regression/tests/zeropad.c: added
8488
8489 2003-05-09    <johan AT balder>
8490
8491         * src/SDCCglue.c: fixed bug #597940
8492
8493 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8494
8495         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8496   cache sfr, optimize next,step, fix off by one sourceline,
8497   support ddd list function.
8498         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8499
8500 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8501
8502         * support/regression/HTMLgen.py: added compare_s2f()
8503         * support/regression/Makefile: redo 1.27
8504         * support/regression/generate-cases.py: redo 1.5
8505
8506 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8507
8508         * support/regression/tests/float.c: workaround 33 bit hex constant
8509         * support/regression/tests/simplefloat.c: fix division for host
8510
8511 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8512
8513         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8514         that tame's the PIC's over-aggressive optimizer.
8515
8516 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8517
8518          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8519          support for MSVC.
8520
8521 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8522
8523         Initial support for DS80C400. "Hello world" runs on TINIm400
8524         (with polled I/O).
8525
8526 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8527
8528          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8529          * Some notes on ddd usage added in debugger/README
8530          Martin Helmling adding more features and fixes for ddd GUI debugger.
8531          Code added for nexti, stepi, up, down, and other adjustments.
8532
8533 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8534
8535         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8536         * src/pic/peeph.def Added two rules to optimize carry manipulation
8537         * src/pic/* removed debug printfs
8538
8539 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8540
8541         * debugger/mcs51/cmd.c: added header newalloc.h
8542
8543 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8544
8545         * as/Makefile: new EXEEXT
8546         * as/z80/Makefile: remove trailing slash of BUILDIR
8547         * as/z80/clean.mk: new EXEEXT
8548         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8549         * support/cpp2/Makefile.in: new EXEEXT
8550         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8551
8552 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8553
8554         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8555         EXEEXT was introduced to fix all related problems with targets
8556         "clean", "install" and "uninstall"; a couple of further flaws
8557         especially with "clean" have been fixed too
8558         * as/mcs51/Makefile.in
8559         * as/mcs51/clean.mk
8560         * as/z80/Makefile
8561         * Makefile
8562         * clean.mk
8563         * debugger/mcs51/Makefile.in
8564         * debugger/mcs51/clean.mk
8565         * link/z80/Makefile
8566         * link/z80/Makefile.in
8567         * link/z80/clean.mk
8568         * link/Makefile
8569         * packihx/Makefile.in
8570         * packihx/clean.mk
8571         * sim/ucsim/Makefile
8572         * sim/ucsim/clean.mk
8573         * sim/ucsim/avr.src/Makefile.in
8574         * sim/ucsim/avr.src/clean.mk
8575         * sim/ucsim/s51.src/Makefile.in
8576         * sim/ucsim/s51.src/clean.mk
8577         * sim/ucsim/xa.src/Makefile.in
8578         * sim/ucsim/xa.src/clean.mk
8579         * sim/ucsim/z80.src/Makefile.in
8580         * sim/ucsim/z80.src/clean.mk
8581         * sim/ucsim/main_in.mk
8582         * sim/ucsim/packages_in.mk
8583         * sim/ucsim/gui.src/Makefile.in
8584         * sim/ucsim/gui.src/serio.src/Makefile.in
8585         * sim/ucsim/gui.src/serio.src/clean.mk
8586         * src/Makefile.in
8587         * src/clean.mk
8588         * support/cpp2/Makefile.in
8589         * support/cpp2/clean.mk
8590         * support/makebin/Makefile
8591         * support/makebin/clean.mk
8592         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8593         * doc/sdccman.lyx: --program-suffix no longer needed
8594
8595 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8596
8597          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8598          Martin Helmling added support for ddd GUI debugger.
8599          Code added to display assembly, set variables, and other commands
8600          to interface to ddd.
8601
8602 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8603
8604         * as/Makefile: fix target clean
8605         * as/clean.mk: fix target clean
8606         * as/z80/clean.mk: fix target clean
8607
8608 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8609
8610         * Makefile.common.in: added  AT EXEEXT AT
8611         * configure.in: removed all mingw32 stuff
8612         * configure: rebuilt from configure.in
8613         * doc/sdccman.lyx: updated section "installation"
8614         * support/scripts/sdcc_mingw32: adapted to configure
8615         * support/scripts/sdcc_cygwin_mingw32: added
8616
8617 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8618
8619         * src/pic Added object file support for the PIC port
8620         * src/pic Applied patch from Craig Franklin (this started the object file support)
8621         * src/regression Updated the PIC regression tests for object files
8622
8623 2003-04-20  Borut Razem <borut.razem AT siol.net>
8624
8625         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8626           lklex.c: In function `getfid':
8627           lklex.c:203: warning: array subscript has type `char'
8628         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8629           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8630         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8631           stack handling macros
8632
8633 2003-04-19  Borut Razem <borut.razem AT siol.net>
8634
8635         * "handling space characters in file path" task:
8636         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8637         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8638         * support/Util/MySystem.h: make it self-sufficient
8639         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8640           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8641           handling space characters in file path
8642         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8643           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8644         * support/Util/MySystem.c: handling space characters in executable's path
8645
8646 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8647
8648         * as/z80/Makefile: fix permanent rebuild of z80
8649         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8650         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8651
8652 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8653
8654         * src/SDCCopt.c: add special case optimization to replace modulo by
8655           a power of two with a bitwise AND.
8656
8657 2003-04-18    <johan AT balder>
8658
8659         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8660
8661 2003-04-17    <johan AT balder>
8662
8663         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8664         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8665
8666 2003-04-13  Borut Razem <borut.razem AT siol.net>
8667
8668         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8669         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8670           fixed mingw problem in adl_NORMALIZE_PATH
8671
8672 2003-04-12  Borut Razem <borut.razem AT siol.net>
8673
8674         * fixed "#pragma SAVE/RESTORE can not be nested":
8675         * src/SDCC.lex: reworked pragma handling functions
8676         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8677         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8678
8679 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8680
8681         * src/SDCCutil.c (pathEquivalent): defined but not used
8682         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8683         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8684         * configure: rebuilt from configure.in
8685         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8686         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8687         * device/include/Makefile.in: replace sdcc_datadir
8688         * device/lib/Makefile.in: replace sdcc_datadir
8689         * Makefile.common.in: add LDFLAGS from configure
8690         * packihx/Makefile.in: use LDFLAGS
8691         * src/Makefile.in: use LDFLAGS
8692         * support/cpp2/Makefile.in: add LDFLAGS from configure
8693         * support/makebin/Makefile: use LDFLAGS
8694         * .version: bumped version number to 2.3.5
8695
8696 2003-04-12  Borut Razem <borut.razem AT siol.net>
8697
8698         * completed "different paths" task:
8699         * src/SDCCmacro.c: fixed bug in handling quotes
8700         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8701         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8702
8703 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8704
8705         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8706
8707 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8708
8709         * ds390/gen.c ds390/peeph.def: fix bug 706781
8710
8711 2003-04-11  Borut Razem <borut.razem AT siol.net>
8712
8713         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8714
8715 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8716
8717         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8718         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8719          set - this bit used to not be set...).
8720         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8721           bad code in PIC Port
8722         * src/regression/and2.c added to test bug 609268
8723         * src/regression/Makefile added and2.c to regression test
8724
8725
8726 2003-04-08    <johan AT CP255758-A>
8727
8728         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8729         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8730         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8731
8732 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8733
8734         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8735         fix bug #487815
8736         * support/cpp2/Makefile.in: fix bug #487815
8737         * configure: rebuilt from configure.in
8738         * Makefile.common.in: docdir changed, new path suffixes
8739         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8740         * sdcc_vc_in.h: reflect changes from sdccconf.h
8741         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8742         * src/SDCCutil.h: remove BINDIR hack
8743         * doc/sdccman.lyx: update new path hierarchy
8744
8745 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8746
8747         * src/SDCCpeeph.c: added okToRemoveSLOC test
8748
8749 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8750
8751         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8752
8753 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8754
8755         * src/SDCCpeeph.c: added labelIsReturnOnly test
8756         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8757
8758 2003-04-05    <johan AT balder>
8759
8760         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8761         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8762         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8763         * src/SDCCast.c: fixed a warning
8764         * src/SDCCast.h: fixed a warning
8765         * src/SDCCicode.c (operandFromAst): fixed a warning
8766
8767 2003-04-04    <johan AT balder>
8768
8769         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8770         * src/SDCCast.c (decorateType): fixed bug #715076
8771         * src/SDCC.y: fixed bug #702907
8772
8773 2003-04-03    <johan AT balder>
8774
8775         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8776         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8777         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8778         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8779         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8780
8781 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8782
8783         * _decdptr.c: fix return values
8784         * _gptrget.c: fix return values
8785         * _gptrgetc.c: fix return values
8786         * _gptrput.c: fix return values
8787         * _mulint.c: fix return values
8788         * as/z80/Makefile: fix 'make -j' problem
8789
8790 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8791
8792         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8793         * configure.in: big cleanup, updated to autoconf 2.5x
8794         * configure: rebuilt from configure.in
8795         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8796         * sdcc_vc_in.h: reflect changes from sdccconf.h
8797         * doc/Makefile: fixed a flaw in "make install"
8798
8799 2003-04-02    <johan AT balder>
8800
8801         * src/ds390/gen.c (genCmp): no comments
8802         * src/mcs51/gen.c (genCmp): no comments
8803         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8804         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8805
8806 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8807
8808         * support/regression/generate-cases.py: place generated file in given sub directory
8809         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8810         * support/regression/Makefile: improvements for 'make -j';
8811         side effect: it's simpler and faster now
8812
8813 2003-03-31  Borut Razem <borut.razem AT siol.net>
8814
8815         * src/z80/main.c: link-{port} and as-{port} defined without path
8816         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8817
8818 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8819
8820         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8821
8822 2003-03-30  Borut Razem <borut.razem AT siol.net>
8823
8824         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8825           changed type of list parameter to set
8826         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8827         * src/port.h: changed type of do_assemble() parameter to set
8828         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8829           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8830           definition of "cppoutfilename" macro with NULL value in preProcess()
8831         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8832         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8833         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8834           replaced with set *binPathSet
8835         * shash_add() deallocates the item, if allready exsists, before adding the new one
8836         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8837
8838 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8839
8840         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8841           a nested for loop bug in the PIC port
8842         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8843           for loops
8844
8845 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8846
8847         * support/Util/dbuf.h: remove C++ stuff to make it portable
8848
8849 2003-03-28  Borut Razem <borut.razem AT siol.net>
8850
8851         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8852           literal strings in stringLiteral()
8853         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8854         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8855           to the project
8856
8857 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8858
8859         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8860
8861 2003-03-26    <johan AT balder>
8862
8863         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8864         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8865         * src/SDCCast.c (decorateType): fixed " -v < 3"
8866
8867 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8868
8869         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8870         Added Lenny Story's debug infrastructure changes:
8871         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8872         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8873         * src/cdbFile.c: added
8874         * src/SDCCdebug.c: added
8875         * src/SDCCdebug.h: added
8876         * src/SDCCast.c (createFunction)
8877         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8878         * src/SDCCmain.c (parseCmdLine, main)
8879         * src/SDCCmem.c (redoStackOffsets)
8880         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8881         * src/SDCCsymt.h
8882         * src/common.h
8883         * src/avr/gen.c (genAVRCode)
8884         * src/ds390/gen.c (gen390Code)
8885         * src/mcs51/gen.c (gen51Code)
8886         * src/pic/gen.c (genpic14Code)
8887         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8888         * src/xa51/gen.c (genXA51Code)
8889         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8890
8891 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8892
8893         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8894         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8895
8896 2003-03-22    <johan AT balder>
8897
8898         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8899
8900 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8901
8902         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8903         * doc/cdbfileformat.lyx: added, written by Lenny Story
8904         * doc/Makefile: added cdbfileformat.lyx
8905         * doc/clean.mk: added cdbfileformat.lyx
8906
8907 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8908
8909         * src/mcs51/peeph.def: fix bug #705773
8910
8911 2003-03-20    <johan AT balder>
8912
8913         An sfr/sbit can have an "at #" AND an initializer
8914         * src/SDCCsymt.c (checkSClass):
8915         * src/SDCCmem.c (allocGlobal):
8916         * src/SDCCmem.c (allocLocal):
8917         * src/SDCCast.c (createBlock):
8918
8919 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8920
8921         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8922
8923 2003-03-16    <johan AT balder>
8924
8925         Undid the hackup of const and volatile, the problem is much bigger
8926         * src/SDCC.y:1.65
8927         * src/SDCCast.c:1.171
8928         * src/SDCCglue.c:1.138
8929         * src/SDCCicode.c:1.146
8930         * src/SDCCsymt.c:1.150
8931         * src/SDCCval.c:1.65
8932
8933 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8934
8935         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8936         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8937
8938 2003-03-13    <johan AT balder>
8939
8940         Hackup const and volatile modifiers in type chains a bit:
8941         * src/SDCC.y:1.63
8942         * src/SDCCast.c:1.169
8943         * src/SDCCglue.c:1.136
8944         * src/SDCCicode.c:1.143
8945         * src/SDCCsymt.c1.146
8946         * src/SDCCsymt.h1.59
8947         * src/SDCCval.c:1.63
8948
8949 2003-03-12    <johan AT balder>
8950
8951         * src/SDCCBBlock.h: more LRH debugging junk
8952         * src/SDCCcflow.h: more LRH debugging junk
8953         * src/SDCCloop.c: more LRH debugging junk
8954         * src/SDCC.y (struct_declaration): fixed bug #697590
8955         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8956         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8957         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8958
8959 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8960         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8961         test function names must now match exactly).
8962         * src/SDCCcse.c: added special case in findCheaperOp to allow
8963         extending a short integer. Makes less awful code for bug 700121 test case.
8964
8965 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8966
8967         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8968         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8969
8970 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8971
8972         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8973         actually called (operandsNotEqual() was called for all
8974         operandsNotEqualX tests).
8975
8976 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8977
8978         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8979         with shorter literals. Fixes bug 700121.
8980
8981 2003-03-11    <johan AT balder>
8982
8983         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8984
8985 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8986
8987         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8988         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8989
8990 2003-03-10  Borut Razem <borut.razem AT siol.net>
8991
8992         * src/SDCCmain.c: pipe preprocessor's output
8993         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8994         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8995         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8996         which closes all pipes in pipeSet set
8997         * src/SDCCset.c: free deleted item in function deleteSetItem()
8998         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8999         moved from z80 to src subproject
9000         * .version: increased version number to 2.3.4
9001
9002 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9003
9004         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9005         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9006         * support/regression/ports/xa51/spec.mk: fix typo
9007
9008 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9009
9010         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9011
9012 2003-03-09  Borut Razem <borut.razem AT siol.net>
9013
9014         * src/SDCCmain.c: pipe preprocessor's output
9015         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9016         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9017         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9018         which closes all pipes in pipeSet set
9019         * src/SDCCset.c: free deleted item in function deleteSetItem()
9020         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9021         moved from z80 to src subproject
9022
9023 2003-03-09  Borut Razem <borut.razem AT siol.net>
9024
9025         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9026         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9027         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9028         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9029         * src/SDCCglobl.h: unification of WIN32 native definitions
9030
9031 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9032
9033         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9034
9035 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9036
9037         * src/configure.in:   check for endianess (even while cross-compiling)
9038         * src/configure:      check for endianess (even while cross-compiling)
9039         * src/configure_in.h: check for endianess (even while cross-compiling)
9040         * src/avr/gen.c:        remove old endianess stuff
9041         * src/mcs51/gen.c:      remove old endianess stuff
9042         * src/ds390/gen.c:      remove old endianess stuff
9043         * src/pic/gen.c:        remove old endianess stuff
9044         * src/pic/genarith.c:   remove old endianess stuff
9045         * src/pic/glue.c:       fix endianess check
9046         * src/pic16/gen.c:      remove old endianess stuff
9047         * src/pic16/genarith.c: remove old endianess stuff
9048         * src/pic16/glue.c:     fix endianess check
9049         * src/xa51/gen.c:       remove old endianess stuff
9050         * src/z80/gen.c:        fix endianess check
9051         * src/SDCCglue.c:       fix endianess check
9052         * src/ds390/peeph.def: fix bug 700036
9053
9054 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9055
9056         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9057         * src/configure: find appropriate data-types on host for SDCC's int and long
9058         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9059         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9060         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9061
9062 2003-03-07    <johan AT balder>
9063
9064         Just a big NOOP:
9065                 some minor cleanups before the big shot
9066                 OP_DEFS and OP_USES now use Kevin's protection
9067                 new option --nolabelopt
9068
9069         * src/SDCCBBlock.c:
9070         * src/SDCCast.c,:
9071         * src/SDCCcflow.c:
9072         * src/SDCCcse.c:
9073         * src/SDCCicode.c:
9074         * src/SDCCicode.h:
9075         * src/SDCClabel.c:
9076         * src/SDCCloop.c:
9077         * src/SDCCmain.c:
9078         * src/ds390/ralloc.c:
9079         * src/mcs51/ralloc.c:
9080         * src/pic/ralloc.c:
9081         * src/xa51/ralloc.c:
9082         * src/z80/ralloc.c:
9083
9084 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9085
9086         * src/pic/pcode.c (get_op): fix 64 bit warnings
9087         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9088         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9089         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9090         * support/regression/tests/malloc.c: fix 64 bit warnings
9091
9092 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9093
9094         * src/mcs51/gen.c (genMinus): fixed bug 696436
9095
9096 2003-03-02  Borut Razem <borut.razem AT siol.net>
9097
9098         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9099
9100 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9101
9102         * configure.in: test for mkstemp
9103         * sdccconf_in.h: add HAVE_MKSTEMP
9104
9105 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9106
9107         * device/include/ctype.h: removed warning while using --stack-auto
9108         * device/include/malloc.h: removed warning while using --stack-auto
9109         * device/include/string.h: removed warning while using --stack-auto
9110
9111 2003-02-23  Borut Razem <borut.razem AT siol.net>
9112
9113         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9114         because NDEBUG is defined (see man assert)
9115         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9116
9117 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9118
9119         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9120         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9121
9122 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9123
9124         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9125         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9126
9127 2003-02-18    <johan AT balder>
9128
9129         * as/mcs51/asmain.c (asmbl): module can start with a digit
9130         * as/z80/asmain.c (asmbl): module can start with a digit
9131
9132 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9133
9134         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9135         * src/asm.c: fix pipe() for Mingw32
9136
9137 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9138
9139         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9140         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9141         make -V work again; --c1mode reads now from stdin
9142         * doc/sdccman.lyx: added --c1mode
9143         * support/Util/SDCCerr.c: new messages for c1 mode
9144         * support/Util/SDCCerr.h: new messages for c1 mode
9145         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9146
9147 2003-02-15    <johan AT balder>
9148
9149         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9150
9151 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9152
9153         * doc/sdccman.lyx: Environment variables, -o and other minor things
9154
9155 2003-02-14    <johan AT balder>
9156
9157         * src/xa51/main.c: before anyone really tries to use it :)
9158
9159         * Install doc's in share/sdcc/doc
9160         * removed some obsolete files
9161         * Do a proper make distclean and uninstall
9162         M Makefile.common.in
9163         R sdccbuild.sh
9164         M as/Makefile
9165         M device/include/Makefile.in
9166         M device/lib/Makefile.in
9167         M doc/sdccman.lyx
9168         M link/Makefile
9169         M sim/ucsim/doc/Makefile.in
9170         M src/clean.mk
9171         R src/avr/peeph.rul
9172         R src/xa51/peeph.rul
9173         M support/cpp2/Makefile.in
9174         M support/makebin/Makefile
9175
9176
9177 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9178
9179         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9180
9181 2003-02-10  Borut Razem <borut.razem AT siol.net>
9182
9183         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9184         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9185         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9186         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9187         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9188         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9189         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9190         src/z80/Makefile.bcc: Borland Makefile cleanup
9191         * as/z80/Makefile.bcc: Added Borland Makefile
9192         * support/cpp2/borland.h: Removed
9193
9194 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9195
9196         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9197         * src/SDCC.lex: new pragma NOIV
9198         * src/SDCCglobl.h: new pragma NOIV
9199         * src/SDCCmem.c: new pragma NOIV
9200
9201 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9202
9203         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9204
9205 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9206
9207         * src/SDCCmain.c: signal handling is switched off by --debug
9208         * doc/Makefile: small fix for install; use clean.mk again
9209         * doc/clean.mk: clean *.pdf and *.html too
9210
9211 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9212
9213         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9214         * device/lib/printfl.c: fix a ds390 bug by making it portable
9215         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9216         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9217         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9218         * debugger/mcs51/cmd.c: converted multi-line string literals
9219         * sim/ucsim/globals.cc: converted multi-line string literals
9220         * src/SDCCmain.c: introduced signal handler to remove temp files
9221         * doc/Makefile: small tweaks, implement clean
9222         * doc: removed generated files
9223
9224 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9225
9226         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9227         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9228         Address Record is not correctly generated for DS390."
9229
9230 2003-02-02  Borut Razem <borut.razem AT siol.net>
9231
9232         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9233         * as/mcs51/asm.h: fixed compilation with Borland C
9234         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9235         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9236         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9237         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9238         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9239         src/z80/Makefile.bcc: delete $(LIB) only if exist
9240         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9241
9242 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9243
9244         * device/include/malloc.h: introduced NULL
9245         * device/include/string.h: introduced NULL
9246         * device/include/stdlib.h: introduced NULL
9247         * device/lib/_memcpy.c: removed NULL
9248         * device/lib/_strcat.c: removed NULL
9249         * device/lib/_strchr.c: removed NULL
9250         * device/lib/_strcmp.c: removed NULL
9251         * device/lib/_strcpy.c: removed NULL
9252         * device/lib/_strcspn.c: removed NULL
9253         * device/lib/_strlen.c: removed NULL
9254         * device/lib/_strncat.c: removed NULL
9255         * device/lib/_strncmp.c: removed NULL
9256         * device/lib/_strncpy.c: removed NULL
9257         * device/lib/_strpbrk.c: removed NULL
9258         * device/lib/_strrchr.c: removed NULL
9259         * device/lib/_strspn.c: removed NULL
9260         * device/lib/_strstr.c: removed NULL
9261         * device/lib/_strtok.c: removed NULL
9262         * device/lib/malloc.c: removed NULL, include own header
9263
9264 2003-02-02    <johan AT balder>
9265
9266         * 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
9267         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9268         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9269         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9270         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9271         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9272
9273 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9274
9275         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9276         area 'DATA'"
9277
9278 2003-02-01    <johan AT balder>
9279
9280         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9281
9282 2003-01-31    <johan AT CP255758-A>
9283
9284         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9285
9286 2003-01-30    <johan AT balder>
9287
9288         * src/SDCCBBlock.c: automatic bug detection
9289         * src/SDCCicode.c: automatic bug detection
9290
9291 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9292
9293         * src/SDCCglobl.h:   now --xram-size 0 works
9294         * src/SDCCmain.c:    now --xram-size 0 works
9295
9296 2003-01-29    <johan AT balder>
9297
9298         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9299
9300 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9301
9302         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9303         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9304         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9305         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9306         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9307         * src/SDCCmain.c:    Added options --xram-size and --code-size
9308
9309 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9310
9311         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9312         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9313
9314 2003-01-27    <johan AT balder>
9315
9316         * src/SDCC.y: fixed bug #613764
9317
9318 2003-01-26    <johan AT balder>
9319
9320         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9321         * src/SDCCsymt.h: fixed bug #673374
9322         * src/SDCCglue.c: fixed bug #661910
9323         * src/SDCCast.c: fixed bug #458099 and 673374
9324
9325 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9326
9327         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9328         * as/mcs51/strcmpi.h: added
9329         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9330         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9331         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9332         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9333         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9334         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9335         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9336         * as/mcs51/Makefile.aslink: new module strcmpi
9337         * as/mcs51/Makefile.asx8051: new module strcmpi
9338         * as/mcs51/Makefil.bcc: new module strcmpi
9339         * as/mcs51/Makefile.in: new module strcmpi
9340         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9341
9342 2003-01-26    <johan AT balder>
9343
9344         * src/SDCCglue.c: reverted back to 1.124
9345         * src/SDCCast.c: reverted back to 1.156
9346         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9347
9348 2003-01-25    <johan AT balder>
9349
9350         * src/SDCCglue.c: A better fix for bug #661910
9351         * src/SDCCast.c: A better fix for bug #661910
9352         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9353
9354 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9355
9356         * src/Makefile.in: remove spawn.o
9357         * src/SDCCmain.c: remove spawn.h
9358         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9359         * src/spawn.c: removed
9360         * src/spawn.h: removed
9361         * support/regression/ports/ds390/spec.mk: link with -r
9362
9363 2003-01-24    <johan AT CP255758-A>
9364
9365         * src/ds390/gen.c (aopOp): fixed bug #667458
9366         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9367         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9368         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9369
9370 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9371
9372         * src/mcs51/peeph.def: better assembler identation by Frieder
9373         * src/mcs51/gen.c: better assembler identation by Frieder
9374
9375 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9376
9377         * as/z80/string.h: removed for gcc 3.2
9378         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9379         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9380
9381 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9382
9383         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9384         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9385         * support/regression/Makefile: separate temp files for ports
9386         * support/regression/generate-cases.py: separate temp files for ports
9387         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9388         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9389
9390 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9391
9392         * moved tinitalk to device/examples/ds390
9393
9394 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9395
9396         * as/mcs51/lkmem.c: rflag is for DS390
9397         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9398         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9399                          (linkEdit): move mem- and map-files the same way as ihx-files
9400         * src/z80/main.c (_setDefaultOptions): removed --generic
9401         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9402         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9403         * src/pic/glue.c (picglue): --c1mode works again
9404         * src/pic16/glue.c (pic16glue): --c1mode works again
9405         * src/asm.c (printCLine): fix #660034
9406
9407 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9408
9409         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9410         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9411         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9412         * as/mcs51/lkmem (summary): better fix for sp problem
9413         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9414         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9415         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9416                                               remove --stack-after-data
9417
9418 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9419
9420         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9421         * src/SDCCutil.c (join): ugly bug: missing '\0'
9422         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9423
9424 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9425
9426         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9427         * src/port.h: typo
9428         * src/pic/main.c (_asmCmd): gpasm supports -o
9429         * src/z80/main.c: more general macros
9430         * device/lib/Makefile.in: remove intermediate files
9431
9432 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9433
9434         * .version: Bumped version number to 2.3.3
9435         * src/SDCCBBlock.c: new option -o
9436         * src/SDCCglobl.h: new option -o
9437         * src/SDCCglue.c: new option -o
9438         * src/SDCCmain.c: new option -o
9439         * src/asm.c: new option -o
9440         * src/ds390/main.c: new option -o
9441         * src/pic/glue.c: new option -o
9442         * src/pic/pcode.c: new option -o
9443         * src/pic/ralloc.c: new option -o
9444         * src/pic16/glue.c: new option -o
9445         * src/pic16/pcode.c: new option -o
9446         * src/pic16/ralloc.c: new option -o
9447         * src/z80/main.c: new option -o
9448         * device/lib/Makefile.in: use -o
9449         * support/regression/ports/ds390/spec.mk: use -o
9450         * support/regression/ports/gbz80/spec.mk: use -o
9451         * support/regression/ports/mcs51/spec.mk: use -o
9452         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9453         * support/regression/ports/z80/spec.mk: use -o
9454         * support/regression/ports/ucz80/spec.mk: use -o
9455         * support/regression/ports/xa51/spec.mk: use -o
9456         * support/regression/fwk/lib/timeout.c: fix usage string
9457
9458 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9459         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9460
9461 2003-01-07    <johan AT balder>
9462
9463         * src/SDCCast.c (decorateType): fixed bug #600035
9464
9465 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9466         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9467         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9468         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9469         * src/pic/pcode.c: outcommented unused variable to remove warnings
9470         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9471
9472 2003-01-06    <karl AT turbobit.com>
9473         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9474    regression tests.
9475
9476 2003-01-06    <johan AT balder>
9477
9478         * src/SDCCicode.c: fixed array add
9479
9480 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9481         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9482         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9483
9484 2003-01-04    <johan AT balder>
9485
9486         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9487
9488 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9489         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9490
9491 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9492         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9493         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9494
9495 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9496         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9497
9498 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9499         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9500
9501 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9502         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9503
9504 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9505
9506     * in \sdcc\as\mcs51\ changed these files in order to create an
9507     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9508     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9509     following files to include the previous two files: aslink.dsp,
9510     Makefile.aslink, Makefile.bcc, and Makefile.in.
9511
9512     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9513     .adb instead of .cdb
9514
9515 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9516
9517         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9518         value from option --iram-size.
9519
9520 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9521
9522         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9523         dram[] array.
9524
9525 2002-09-18    <wiml AT hhhh.org>
9526
9527         * SDCClrange.h: exposed setFromRange() and setToRange()
9528         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9529           packRegsForAccUse() (bug 542397)
9530         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9531           multiple times and emitting the fetch operations more than once
9532           added aopGetUsesAcc() function to allow binary operators to
9533           fetch their operands in the correct order; made genMinus() emit
9534           compact code for X = LITERAL - Y
9535
9536 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9537         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9538         sprintf() in line 1267.
9539
9540 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9541         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9542         like ports.
9543
9544 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9545         Changes to aslink (All the changes are marked with 'JCF'):
9546
9547         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9548         summary().
9549
9550         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9551         area BSEG.  Also moves, if possible, the DATA area down into the internal
9552         ram so more space is available.
9553
9554         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9555         sflag.
9556
9557         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9558         not bytes.  Function summary() which creates a memory usage summary
9559         file with extension .mem.  Reports of overlaping stack and small stack
9560         size.  If the space for the stack is less than 16 bytes aslink trows a
9561         warning.
9562
9563         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9564         the 8051.  Option 'y' for memory summary output file.
9565
9566         Changes to sdcc (All the changes are marked with 'JCF'):
9567
9568         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9569
9570         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9571         overlaying area for it (uses RegBankUsed[4]).
9572
9573         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9574         bank zero as used by default.  By default aslink locates the stack
9575         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9576         the creation of the .mem file.  Delegates the allocation of data area
9577         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9578         the begining of the stack area to aslink.
9579
9580         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9581         glue() in SDCCglue.c creates an area for it.
9582
9583 2002-09-03  Borut Razem <borut.razem AT siol.net>
9584         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9585         sdcc/src/pic/glue.c:
9586         introduced atexit() handler for teporay files removal in case of
9587         errors, assertions, ...
9588
9589 2002-08-29  Borut Razem <borut.razem AT siol.net>
9590         * sdcc/support/cpp2/auto-host_vc_in.h:
9591         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9592         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9593         Maybe there is a similar problem with BORLANDC? It should be checked!
9594
9595         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9596         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9597         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9598         was not executed, and the compiler (cl) launched a warning:
9599         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9600
9601 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9602         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9603
9604 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9605         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9606
9607         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9608           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9609           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9610           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9611           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9612           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9613           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9614         - added Release configuration in VS projects
9615         - review of compiler an linker options
9616         - VC .exe files are generated in bin_vc directory, not to interfere
9617           with binaries generated from other projects (cygwin, mingw, bcc ...)
9618
9619         * sdcc/src/yacc.dsp: added
9620
9621         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9622         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9623         and insert the version number definitions from .version
9624
9625         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9626
9627         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9628         added - genarate auto-host.h using auto-host_vc_in.h as template
9629
9630         * sdcc/sdcc_vc.h,
9631         removed from CVS, generated automatically
9632
9633 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9634         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9635
9636 2002-08-11  Borut Razem <borut.razem AT siol.net>
9637         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9638
9639 2002-08-10  Borut Razem <borut.razem AT siol.net>
9640         * src/SDCCmain.c (main):
9641         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9642         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9643         The consequence was that some temporary files were not removed.
9644
9645         * src/SDCCglue.c:
9646         unification of code in functions tempfilename() and tempfile():
9647         function tempnam() is defined in Visual Studio 6.0 and .NET
9648
9649         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9650
9651         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9652           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9653         - removed compiler command line option /WX: Treats all warnings as errors
9654         - update a list of source files, included into the project
9655
9656         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9657           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9658         changed project type to Generic Project so that can be correcly converted to VS.NET project
9659
9660         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9661
9662         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9663
9664         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9665
9666         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9667         added return 0 statements after assert() to make compiler happy
9668
9669         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9670         added newline in the def file to keep MSC compiler satisfied
9671
9672         * sdcc/src/z80/gen.c:
9673         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9674           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9675         - solved MSC error in function aopDump()
9676
9677         * sdcc_vc.h: define PREFIX as "\\sdcc"
9678
9679 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9680         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9681
9682 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9683         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9684         - Rewrote the register banking algorithm.
9685         - Added pCode live-range analysis to registers (for now, only non-used and
9686         singly-used registers optimized away)
9687
9688         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9689
9690         * 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.
9691
9692 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9693         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9694
9695 2002-04-22  Michael Hope  <michaelh AT vroom>
9696
9697         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9698
9699         * configure.in (DD_COPT): Added include support required for gbdk.
9700
9701         * .version: Bumped version number just to increase it.
9702
9703         * src/SDCCmain.c: Added -nostdinc to the default options.
9704
9705 2002-04-15  Michael Hope  <michaelh AT vroom>
9706
9707         * device/lib/z80/printf.c (sprintf): Added.
9708
9709         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9710
9711         * src/z80/peeph.def: Added transpose redundent load rule.
9712
9713         * src/z80/main.c: Added force callee saves for jaune.
9714
9715         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9716
9717         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9718
9719 2002-03-28  Johan Knol  <johan AT balder>
9720
9721         * src/SDCCval.c: fixed bug #532436
9722
9723 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9724         * /src/port.h:
9725         Added "char *Processor" field to the port structure.
9726
9727         * /src/SDCCmain.c:
9728         Added -p option. Allows port dependent processor to be specified.
9729
9730         * all ports:
9731         Initialized the new field char *Processor field to NULL in all ports
9732
9733         * /src/pic/*:
9734         Compiler generated registers for interrupt context saving
9735         were not getting allocated.
9736
9737 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9738
9739         * /src/SDCCast.c:
9740         Fixed left shift. Will promote the left side of a left shift
9741         if a) left shifting more than size of operand or b) when assigned
9742         to something size > size of left side
9743
9744 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9745         * src/pic/*
9746         tons of changes. Register allocation has been
9747         rewritten. Added customization for the various PICs. Flow
9748         analysis is restructured. ...
9749
9750         * src/pic/device.h:
9751         Added
9752
9753         * src/pic/device.c:
9754         Added. device.c is a PIC port hack to accomodate variations
9755         in PIC devices.
9756
9757 2002-03-13  Michael Hope  <michaelh AT vroom>
9758
9759         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9760
9761 2002-03-04  johanknol  <johanknol AT manik>
9762
9763         * /src/SDCCval.c: fixed
9764
9765         const unsigned char arr[][2] = { { 0, 1 } };
9766         t18.c:1: error: Initializer element is not constant
9767
9768 2002-03-04  bela  <bela AT manik>
9769
9770         * /device/include/mcs51reg.h:
9771         ds89c420 register definition update
9772
9773 2002-03-03    <johan AT FRIJA>
9774
9775         * support/Util/SDCCerr.c: did something, but don't no why anymore
9776
9777         * support/regression/tests/bug-524691.c: made it a little less shy
9778
9779         * src/SDCCast.c (decorateType): fixed bug #524697
9780
9781         * src/SDCCast.c: made some lineno improvements
9782
9783         * src/SDCCval.c (getNelements): changed warning to error
9784
9785         * src/SDCCglue.c (printIvalArray): changed warning to error
9786
9787         * src/SDCCicode.c: fixed a warning for mingw
9788
9789         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9790
9791         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9792
9793 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9794
9795         * src/ds390/peeph.def:
9796         Added some more peephole rules
9797
9798         * src/ds390/gen.c: Various fixes & enhancements
9799
9800         * src/SDCClrange.c, src/SDCClrange.h:
9801         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9802
9803         * src/ds390/ralloc.c:
9804         various fixes & enhancements (ds390) specific
9805
9806         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9807         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9808         from rallocs.
9809
9810         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9811
9812 2002-03-02    <johan AT FRIJA>
9813
9814         * src/SDCCast.c (decorateType): fixed bug #524708
9815
9816         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9817
9818         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9819
9820 2002-03-01  Michael Hope  <michaelh AT vroom>
9821
9822         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9823
9824         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9825
9826 2002-03-01    <johan AT FRIJA>
9827
9828         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9829
9830         * src/SDCCast.c (decorateType): fixed bug #524209
9831
9832         * src/SDCCval.c (valNot): fixed bug #524195
9833
9834 2002-02-26    <johan AT balder>
9835
9836         * src/xa51/gen.c: fixed a warning
9837
9838         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9839
9840         * src/SDCCast.c (decorateType): fixed bug #522534
9841
9842 2002-02-23    <johan AT balder>
9843
9844         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9845
9846 2002-02-22    <johan AT balder>
9847
9848         * src/SDCCast.c: fixed bug #514865
9849
9850         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9851
9852 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9853
9854         * sdcc/src/SDCCloop.c:
9855         Previous fix was not good. basic blocks that have "break" or "return" are
9856         not really partof a loop , but live ranges used in these blocks should
9857         be live thru the entire loop, so set partOfLoop but don't add them to
9858         loop region
9859
9860 2002-02-21    <johan AT FRIJA>
9861
9862         * src/SDCCcse.c: fixed bug #514308
9863
9864 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9865
9866         * src/SDCCloop.c:
9867         Fixed BUG #519583. If a conditional block ended in a return/break
9868         statement inside a loop, it was not being considered part of the loop.
9869
9870         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9871
9872 2002-02-10  Karl Bongers <karl AT turbobit.com>
9873
9874         * debugger/*:
9875         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9876         with lots of comments and notes.
9877
9878         * device/examples/test2.c:
9879         Fix bug, "red" variable not being initialized(compiler complained).
9880
9881         * device/examples/Makefile, examples/test3.c:
9882         Add Makefile in device/examples folder, compiles test3.c
9883         for use as a multiple module SDCDB test case.
9884
9885         * sim/ucsim/cmd.src/cmdset.cc:
9886         Took out debug printfs in ucsim "next" command.
9887
9888         * sim/ucsim/xa.src:
9889         Karl and Johan start ucsim XA support.  Most dissassembly working,
9890         about 75% emulation done(plenty of work remaining).
9891
9892         * sim/ucsim/z80.src:
9893         Add Z80 support to ucsim, add test-ucz80 regression test,
9894         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9895         Notice z80 compiler fails on examples/test3.c/crc code.
9896
9897 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9898
9899         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9900         Added support for --parms-in-bank1
9901
9902         * src/ds390/peeph.def:
9903         added a few more peephole optimzations
9904
9905         * src/ds390/main.c:
9906         1) added __builtin_inp & __builtin_outp used to read in data of given length
9907            from a memory mapped port
9908         2) added __builtin_memcmp
9909         3) added __builtin_swapw swap bytes of a short
9910
9911         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9912         1) handle multiple send & receives from register bank1
9913         2) ralloc can now allocate DPTR1 to some liveRanges
9914
9915         * src/SDCCsymt.c, src/SDCCsymt.h:
9916         changes to handle multiple sends & receives
9917
9918         * src/SDCCptropt.h:
9919         added some pointer arithmetic optimization
9920
9921         * src/SDCCptropt.c:
9922         added some pointer arithmetic optimizations but not stable yet so not
9923         called from anywhere (will get this working shortly)
9924
9925         * src/SDCCopt.c: fixed for multiple sends & receives
9926
9927         * src/SDCCmain.c:
9928         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9929         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9930            set preprocessor defines (depending on options)
9931
9932         * src/SDCCicode.c, src/SDCCicode.h:
9933         changes made to handle multiple sends & receives
9934
9935         * src/SDCCglobl.h:
9936         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9937
9938         * src/SDCCcse.c, src/SDCCcse.h:
9939         added function findbackward def (to be used in upcoming optimization)
9940
9941         * src/SDCCcflow.c, src/SDCCcflow.h:
9942         added function returnAtEnd - to determine if a basic block terminates with
9943         a RETURN iCode
9944
9945         * src/SDCCast.c, src/SDCCast.h:
9946         added option parms-in-bank1
9947
9948         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9949         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9950         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9951         adjusted for --parms-in-bank1 option
9952
9953         * device/include/string.h:
9954         donot redefine "reentrant" keyword
9955
9956         * device/include/ds80c390.h: Added some more SFRs
9957
9958 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9959
9960         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9961
9962 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9963
9964         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9965
9966 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9967
9968         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9969
9970 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9971
9972         * Added --xram-movc option
9973
9974 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9975
9976         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9977
9978 2002-01-11  Johan Knol
9979
9980         * Added math lib of Jesus Calvino-Fraga
9981
9982 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9983
9984         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9985         * support/regression/Makefile: new target test-mcs51-stack-auto
9986         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9987
9988 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9989
9990         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9991
9992 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9993
9994         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9995
9996 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9997
9998         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9999
10000         * src/SDCCglue.h: add definition for printIvalChar()
10001
10002 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10003
10004         * src/SDCCast.c: fix #498138 by Johan
10005
10006         * src/SDCCglue.c: fix #498138 by Johan
10007
10008 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10009
10010         * support/regression/Makefile: fix clean
10011
10012         * support/regression/ports/ds390/support.c: fix transmission of last character
10013
10014 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10015
10016         * /sdcc/src/ds390/gen.c:
10017         a) improved computing address of stack variable
10018         b) took out some #if 0 code
10019         c) improved parmBytes adjustment
10020         d) improved genPlusIncr & genMinusIncr
10021         e) genCmp could generate bad code (when left assigned to DPTR)
10022         f) Fixed bug in hasInc
10023
10024         * /sdcc/src/ds390/ralloc.c:
10025         a) packRegsForSupport could mess up live information (Fixed)
10026         b) packRegsDPTRuse could be incorrect for left & right shift
10027
10028         * /sdcc/src/mcs51/ralloc.c:
10029         packRegsForSupport could mess up the live information (Fixed)
10030
10031         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10032
10033         * /sdcc/src/SDCCast.c:
10034         can reverse a loop even if function call is present as long
10035         as the loop control variable is local & is not passed as parameter
10036
10037 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10038
10039         * /sdcc/ChangeLog: *** empty log message ***
10040
10041         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10042         More builtin function additions for TININative
10043
10044         * /sdcc/src/ds390/ralloc.c:
10045         Had broken the regression testsuite
10046
10047         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10048
10049         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10050         Added funcattr hasStackParms will be set for reentrant functions when there
10051         are paramteres on the stack, this helps in minimizing frame pointer generation
10052         typeFromStr can handle function pointers now
10053
10054         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10055         *** empty log message ***
10056
10057 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10058
10059         * /src/ds390/gen.c, /src/ds390/main.c:
10060         More builtin function additions for TININative
10061
10062         * /src/ds390/ralloc.c:
10063         Had broken the regression testsuite
10064
10065         * /src/SDCCast.c: Fixed a bug in dumptree
10066
10067         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10068         Added funcattr hasStackParms will be set for reentrant functions when there
10069         are paramteres on the stack, this helps in minimizing frame pointer generation
10070         typeFromStr can handle function pointers now
10071
10072         * /doc/builtins.txt, /doc/TININative.txt:
10073         *** empty log message ***
10074
10075
10076 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10077
10078         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10079         ALPHA version for -mTININative
10080
10081         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10082         updated to reflect changes in the port structure
10083
10084         * /src/port.h:
10085         added function do_assemble (similar to do_link) if non-null this function
10086         will be called to do assembly (-mTININative) requires a multi command
10087         assembly
10088         added function genAssemblerEnd will be called to generate assembler Epilogue
10089
10090         * /src/SDCCsymt.c:
10091         added _JavaNative to debug info printing
10092
10093         * /src/SDCCmain.c: added option --tini-libid
10094         added port->do_assemble function (-mTININative) has a multi command assemble
10095
10096         * /src/SDCCglue.c: Disabled "constExpr" check
10097         added port->genAssemblerEnd function
10098
10099         * /src/SDCCglobl.h: Added option --tini-libid value
10100
10101         * /src/SDCCast.h:
10102         tookout optimizeCompare from the header (has no external references)
10103
10104         * /src/SDCCast.c: made one more function "static"
10105
10106 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10107
10108         * src/z80/mappings.i: Added z80asm support.
10109
10110         * src/z80/main.c: Added z80asm support on --asm=z80asm
10111
10112         * src/z80/gen.c: Fixed asm portability issues.
10113
10114         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10115
10116         * src/SDCCglue.c (printExterns): Added global/extern split.
10117
10118 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10119
10120         * support/regression/Makefile: added test for mcs51 model large
10121
10122         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10123
10124         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10125
10126 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10127
10128         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10129
10130 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10131
10132         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10133
10134         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10135
10136 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10137
10138         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10139
10140         * support/regression/tests/simplefloat.c: Port to mcs51.
10141
10142 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10143         * support/regression/tests/bug-485362.c: Added.
10144
10145         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10146
10147         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10148
10149         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10150
10151         * src/z80/gen.c (aopDump): Added a dump function.
10152
10153 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10154         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10155
10156         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10157
10158         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10159
10160         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10161
10162         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10163
10164         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10165
10166         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10167
10168         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10169
10170         * support/regression/ports/ds390/support.c: Use tinibios.
10171
10172         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10173
10174 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10175
10176         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10177         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10178
10179         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10180
10181         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10182
10183 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10184
10185         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10186
10187         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10188         (packRegsForIYUse): Created and optimised.
10189
10190 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10191
10192         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10193 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10194
10195         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10196
10197         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10198
10199         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10200
10201 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10202
10203         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10204
10205         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10206
10207 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10208
10209         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10210
10211         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10212
10213         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10214
10215 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10216
10217         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10218         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10219         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10220
10221         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10222
10223         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10224         (genNotFloat): Added.
10225         (genUminusFloat): Added.
10226
10227         * device/lib/z80/Makefile: Added floating pt stubs.
10228
10229         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10230
10231         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10232
10233         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10234
10235 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10236
10237         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10238
10239         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10240
10241         * sdcc/support/regression/Makefile: Add port ds390.
10242
10243         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10244
10245         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10246
10247         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10248
10249         * sdcc/support/regression/ports/ds390/support.c: Added.
10250
10251         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10252
10253         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10254
10255         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10256
10257 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10258
10259         * device/include/malloc.h: Added z80 and gbz80 support.
10260
10261         * device/lib/gbz80/heap.s: Added.
10262
10263         * device/lib/z80/heap.s: Added.
10264
10265         * device/lib/malloc.c: Added z80 and gbz80 support.
10266
10267         * support/regression/tests/malloc.c (testMalloc): Added.
10268
10269         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10270
10271         * support/regression/tests/bug-478094.c: Added.
10272
10273         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10274
10275 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10276
10277         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10278
10279         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10280
10281         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10282
10283         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10284
10285         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10286
10287 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10288
10289         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10290
10291 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10292
10293         * support/regression/tests/bug-477927.c: Added.
10294
10295         * src/z80/peeph.def: Added minor rules.
10296
10297         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10298
10299         * src/z80/peeph.def: Added jump optimisation modification.
10300
10301 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10302
10303         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10304
10305 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10306
10307         * support/regression/tests/funptrs.c: Added.
10308
10309 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10310
10311         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10312
10313 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10314
10315         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10316
10317         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10318
10319         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10320         (movLeft2ResultLong): Created.
10321
10322         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10323         (joinPushes): Added.  Joins two char pushes into a word push.
10324
10325 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10326
10327         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10328
10329         * support/makebin/Makefile (install): Added creation of dest dir.
10330
10331 2001-10-24 Karl Bongers <karl AT turbobit.com>
10332
10333         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10334
10335 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10336
10337         * src/z80/ralloc.c: Turned off faulty pack for one use.
10338
10339         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10340
10341         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10342
10343 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10344
10345         * support/regression/Makefile: Improved clean
10346
10347         * support/regression/ports/gbz80/spec.mk: Added clean
10348
10349         * support/regression/ports/host/spec.mk: Added clean
10350
10351         * support/regression/ports/z80/spec.mk: Added clean
10352
10353         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10354
10355         * support/regression/ports/mcs51/timeout.c: little improvements
10356
10357 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10358
10359         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10360
10361         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10362
10363         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10364
10365 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10366
10367         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10368
10369         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10370
10371 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10372         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10373
10374         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10375
10376         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10377
10378         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10379
10380         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10381
10382         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10383
10384         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10385
10386         * support/regression/tests/longor.c: Added.
10387
10388 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10389
10390         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10391
10392         * as/mcs51/aslink.h: define PATH_MAX
10393
10394         * as/mcs51/asm.h: define PATH_MAX
10395
10396         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10397
10398         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10399
10400         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10401
10402         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10403
10404         * src/SDCCglobl.h: define PATH_MAX
10405
10406         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10407
10408         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10409
10410 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10411
10412         * src/z80/gen.c (gencjneshort): Fixed
10413
10414         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10415
10416 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10417
10418         * support/regression/tests/bug-469671.c: Added.
10419
10420         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10421
10422 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10423
10424         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10425
10426         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10427
10428 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10429
10430         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10431
10432         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10433
10434         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10435
10436         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10437
10438         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10439
10440         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10441
10442         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10443
10444 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10445
10446         * 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.
10447
10448         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10449
10450         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10451
10452 2001-10-07    <johan AT FRIJA>
10453
10454         * device/lib/gets.c (gets): fixed the return value.
10455
10456 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10457         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10458
10459         * 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.
10460
10461         * 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.
10462
10463         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10464
10465         * src/pic/gen.c: Removed Safe_strdup.
10466
10467         * configure.in: Added option to enable libgc support.
10468
10469         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10470         (bitVectUnion): Optimised.
10471         (bitVectIntersect): Optimised.
10472         (bitVectBitsInCommon): Optimised.
10473         (bitVectCplAnd): Optimised.
10474
10475         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10476
10477 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10478
10479         * src/SDCCmain.c: distinguish between assembler debug and plain options
10480
10481         * src/avr/main.c:   remove standard assembler options
10482
10483         * src/ds390/main.c: remove standard assembler options
10484
10485         * src/mcs51/main.c: remove standard assembler options
10486
10487         * src/port.h: removed "PENDING" comment
10488
10489 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10490
10491         * src/device/lib/_mulint.c  : new, with assember functions
10492
10493         * src/device/lib/_mullong.c : new, with assember functions
10494
10495         * src/device/lib/_divuint.c : with assember functions
10496
10497         * src/device/lib/_divsint.c : with assember functions
10498
10499         * src/device/lib/_divulong.c: with assember functions
10500
10501         * src/device/lib/_divslong.c: with assember functions
10502
10503         * src/device/lib/_moduint.c : with assember functions
10504
10505         * src/device/lib/_modsint.c : with assember functions
10506
10507         * src/device/lib/_modulong.c: with assember functions
10508
10509         * src/device/lib/_modslong.c: with assember functions
10510
10511         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10512
10513         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10514
10515         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10516                                       replaced _mululong.c and _mulslong.c by _mullong.c
10517
10518 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10519
10520         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10521
10522 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10523
10524         * src/SDCCglue.c: test, if win32api is available for MINGW
10525
10526 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10527
10528         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10529         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10530         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10531         * support/regression/ports/host/spec.mk: removed GENERIC
10532         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10533         * support/regression/ports/z80/spec.mk: removed GENERIC
10534
10535 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10536
10537         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10538
10539         * support/regression/tests/bug-467035.c: Created.
10540
10541 2001-10-01    <johan AT FRIJA>
10542
10543         * src/SDCC.y: fixed bug #466586 part 1
10544
10545 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10546
10547         * SDCCicode.c: z80 has no generic pointers
10548         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10549
10550 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10551
10552         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10553
10554 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10555
10556         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10557
10558         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10559
10560 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10561
10562         * configure.in: Fixed up so that ucsim is only configured once.
10563
10564         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10565
10566         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10567         (getPathDifference): As above.
10568
10569         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10570
10571         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10572
10573 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10574         * .version: Updated to 2.3.1
10575
10576         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10577         Added copyright header.
10578
10579         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10580         (assemble): Added support for macro based assembler commands.
10581         (linkEdit): Added support for macro based linker commands.
10582         (preProcess): Changed the pre-processor to use macros.
10583         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10584         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10585
10586         * device/lib/z80/crt0.s: Added module name for debugging.
10587
10588 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10589
10590         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10591
10592         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10593
10594         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10595
10596         * src/Makefile.in: Added SDCCmacro and SDCCutil
10597
10598 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10599
10600         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10601
10602 2001-09-16    <johan AT FRIJA>
10603
10604         * 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.
10605
10606 2001-09-15    <johan AT FRIJA>
10607
10608         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10609         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10610
10611 2001-09-11    <johan AT FRIJA>
10612
10613         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10614
10615 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10616
10617         * support/regression/tests/bug-460444.c: Added test case.
10618
10619         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10620         (genCast): Added justification for all of the asserts.
10621
10622 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10623
10624         * support/regression/support.c: _xdata replaced by xdata
10625
10626         * support/regression/spec.mk: removed _generic
10627
10628 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10629
10630         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10631
10632         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10633         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10634
10635         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10636
10637         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10638
10639         * support/regression/tests/bug-460010.c: Added test case.
10640
10641         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10642
10643 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10644
10645         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10646
10647         * support/regression/testfwk.c: removed workaround for bug #436344
10648
10649         * support/regression/tests/bp.c: use less memory with mcs51
10650
10651         * support/regression/tests/bug-441448.c: use less memory
10652
10653         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10654
10655         * support/regression/collate-results.py: typo
10656
10657 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10658
10659         * support/regression/tests/fetchoverlap.c: Added new test case.
10660
10661         * support/regression/tests/bp.c: Added new test case.
10662
10663         * support/regression/tests/bug-448984.c: Added new test case.
10664
10665         * support/regression/tests/pow2shifts.c: Added new test case.
10666
10667         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10668         (genlshTwo): Fixed right shift for count > 8.
10669
10670         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10671
10672 2001-09-08    <johan AT FRIJA>
10673
10674         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10675
10676 2001-09-07    <johan AT FRIJA>
10677
10678         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10679
10680         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10681
10682 2001-09-06    <johan AT FRIJA>
10683
10684         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10685         * bernhard noted me at this: "() equals to (void)" (1.38)
10686
10687 2001-09-05    <johan AT FRIJA>
10688
10689         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10690
10691 2001-09-04    <johan AT FRIJA>
10692
10693         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10694
10695
10696 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10697
10698         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10699
10700 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10701
10702         * link/z80/aslink.h: Fixed path for PATH_MAX
10703
10704 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10705
10706         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10707
10708         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10709
10710         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10711
10712         * 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.
10713
10714 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10715
10716         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10717         (genCmp): Fixed up genCmp for the GB with longs.
10718
10719         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10720
10721         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10722
10723         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10724
10725         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10726
10727 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10728
10729         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10730
10731 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10732
10733         * 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.
10734
10735         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10736
10737 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10738
10739         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10740
10741         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10742
10743 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10744
10745   * sim/ucsim/configure:    little improvement of Cygwin-detection
10746   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10747   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10748   * support/regression/tests/bug-221100.c: small changes for mcs51
10749   * support/regression/tests/bug-221168.c: small changes for mcs51
10750   * support/regression/tests/bug-227710.c: small changes for mcs51
10751   * support/regression/tests/staticinit.c: small changes for mcs51
10752   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10753   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10754   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10755
10756 $Revision$