doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
[fw/sdcc] / ChangeLog
1 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2
3         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
4         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
5
6 2006-03-23 Maarten Brock <sourceforge.brock AT dse.nl>
7
8         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
9           implemented patch 1120823 Thanks to Willy De la Court (normal
10           interrupts need an interrupt number now if they are made critical),
11           and enabled nesting of critical functions though not for gbz80
12           (genCritical, genEndCritical): added functions
13           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
14         * src/z80/mappings.i: added "ei" to all mappings
15
16 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
17
18         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
19         submitted by the Debian SDCC maintainer Aurelien Jarno:
20         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
21         archive with gcc 4.1 on mips and wrote the patch"
22
23 2006-03-16 Raphael Neider <rneider AT web.de>
24
25         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
26           the left operand is shorter than the result (c* = lit-c* + int),
27           fixes bug #1450796
28         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
29           OP_SYMBOL
30
31 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
32
33         * src/.version: increased version number to 2.5.5
34         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
35         linking is done manually in pic16 port's _linkEdit,
36         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
37         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
38         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
39         allocate asmop as AOP_ACC,
40         (aopForRemat): added parameter 'bool result' in function declaration,
41         (pic16_aopGet): return AOP_ACC when accessing WREG,
42         (pic16_popGetTempReg): minor modification,
43         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
44         'pic16_allocWithIdx',
45         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
46         calling function in absolute addresses,
47         (genAssign): take into account AOP_ACC asmop,
48         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
49         * src/pic16/pcoderegs.c: some debug functions and lines added,
50         * src/pic16/ralloc.c (decodeRegType): added but commented out,
51         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
52         register too,
53         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
54         call to allocReg, not by manually allocating a new one,
55         (pic16_assignRegisters): now before going through the register
56         allocating functions mark all registers as free. This eliminates some
57         side effects resulting from peephole parser done earlier in the backbone
58
59 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
60
61         * src/SDCCicode.c (geniCodeLogic),
62         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
63
64 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
65
66         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
67           (genSend): bugfix, do not allocate and free twice,
68           (shiftRLong): handle partially overlapping aops
69         * support/regression/tests/bitopcse.c: fixed warning redefined idata
70
71 2006-03-08 Borut Razem <borut.razem AT siol.net>
72
73         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
74           for pic16
75
76 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
77
78         * support/regression/tests/bug1409955.c: new, added
79         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
80         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
81           (aopForSym, aopOp): increment asmop.allocated if reused,
82           (freeAsmop): decrement asmop.allocated and check for zero instead of
83           using asmop.freed,
84           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
85           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
86            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
87            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
88            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
89            genSignedRightShift, genRightShift, genDataPointerGet,
90            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
91            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
92             in reverse order from allocation,
93           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
94             added swappedLR to keep track
95         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
96           pdata & code for GCC, z80, gbz80 & hc08
97         * support/regression/tests/zeropad.c: moved defines to testfwk.h
98
99 2006-03-08 Raphael Neider <rneider AT web.de>
100
101         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
102
103 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
104
105         * device/include/mcs51/c8051f410.h: new SiLabs mcu
106         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
107         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
108
109 2006-03-06 Borut Razem <borut.razem AT siol.net>
110
111         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
112           made the linker quiet
113
114 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
115
116         * src/pic16/gen.c (genPcall): fixed bug #1443644
117         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
118         which dumps before the function entry point a data byte which represents
119         the number of the local variables used by the specified function, added
120         'xinst' for initial support for Extended Instruction Support,
121         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
122         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
123         port->fun_prefix anymore (may change later),
124         (genFunction, genEndFunction): do not store/restore local registers for
125         _main (this should take care the --main-return command line option in
126         the future),
127         (genOr): removed some legacy pic-port instructions,
128         * src/pic16/genarith.c (genAddLit): re-enabled old code because
129         performing operations with SFR's causes data to be written more than
130         once to each SFR. Perhaps SFRs should be handled in special cases...
131         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
132         pcode.h
133         * src/pic16/main.c (_process_pragma): stack bound checking did not take
134         into account for stack starting position,
135         (struct OPTIONS pic16_optionsTable): added command line argument
136         --extended or -y for Extended Instruction Support,
137         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
138         (deassignLRs): *** perhaps the most important change, old 'for' code
139         (commented out for reference), didn't account for some registers which
140         were left marked 'not free' after a pointer operation. The change
141         reduces register usage a lot in some cases
142
143 2006-03-04 Borut Razem <borut.razem AT siol.net>
144
145         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
146           _clean
147         * support/regression/tests/bug-524697.c: decreased array size for
148           mcs51 to fit into the internal RAM
149         * support/regression/Makefile.in: a little bit more verbose
150
151 2006-03-03 Borut Razem <borut.razem AT siol.net>
152
153         * support/regression/fwk/lib/testfwk.c,
154           support/regression/fwk/include/testfwk.h: introduced function
155           _prints(), nonrecursive _printn(), call _initEmu() from main()
156         * support/regression/ports/gbz80/support.asm,
157           support/regression/ports/ucz80/support.asm,
158           support/regression/ports/z80/support.asm,
159           support/regression/ports/ds390/support.c,
160           support/regression/ports/hc08/support.c,
161           support/regression/ports/host/support.c,
162           support/regression/ports/mcs51/support.c,
163           support/regression/ports/xa51/support.c: added empty _initEmu()
164           function
165         * support/regression/ports/pic16/gpsim.cmd,
166           support/regression/ports/pic16/spec.mk,
167           support/regression/ports/pic16/support.c,
168           support/regression/Makefile.in: added pic16 regression test
169
170 2006-03-01 Raphael Neider <rneider AT web.de>
171
172         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
173           genConstPointerGet): use safe way of generating MOVFF to cover
174             literals as well as registers, fixes bug #1440527
175         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
176             dereference
177           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
178             more correctly, fixes bug #1232186
179           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
180         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
181             gplink guess the correct processor in more cases, applied patch
182             from Till Riedel attached to and fixing bug #1436552
183
184 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
185
186         * support/regression/tests/array.c: added, contains check for #1434401
187         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
188
189 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
190
191         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
192         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
193         * device/include/mcs51/c8051f326.h,
194         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
195         * device/include/mcs51/c8051f000.h,
196         * device/include/mcs51/c8051f018.h,
197         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
198           PCON_IDLE,PCON_STOP and added sfr16 definitions
199
200 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
201
202         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
203           genGetWord): fixed bug 1409955
204
205 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
206
207         * device/include/hc08/mc68hc908gp32.h,
208         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
209
210 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
211
212         * src/SDCCast.c (constExprValue): return NULL if not a value
213         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
214         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
215         * support/regression/tests/bitfields.c: enabled signed bitfield for all
216
217 2006-02-13 Borut Razem <borut.razem AT siol.net>
218
219         * src/regression/ptrarg.c: added, fails due to bug #1430967
220         * src/regression/Makefile: ptrarg.c added, ...
221
222 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
223
224         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
225         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
226
227 2006-02-11 Borut Razem <borut.razem AT siol.net>
228
229         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
230           print "Processor: xxx" message to stdout only if --verbose
231
232 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
233
234         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
235         * support/regression/tests/bug1426356.c: added
236         * support/regression/tests/bitfields.c: removed 2 tests
237
238 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
239
240         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
241         * device/include/mcs51/c8051f330.h,
242         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
243           PCON_IDLE,PCON_STOP and added sfr16 definitions
244         * device/lib/_divsint.c,
245         * device/lib/_divuint.c,
246         * device/lib/_divulong.c,
247         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
248           register bank bug for small stackauto
249
250 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
251
252         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
253
254 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
255
256         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
257         * all.dsp: corrected several bin paths
258         * device/include/mcs51/c8051f120.h,
259         * device/include/mcs51/c8051f300.h,
260         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
261           to PCON_IDLE,PCON_STOP
262         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
263         * device/lib/printf_large.c (output_float): fixed bug 1388703
264         * support/regression/tests/bug1057979.c: added test for bug 1388703
265
266 2006-02-08 Raphael Neider <rneider AT web.de>
267
268         * src/pic/pcode.c (pciTRIS): fixed typo,
269           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
270           (LinkFlow): fixed handling of flows that end in a call,
271           (ReuseReg): perform safety check earlier
272         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
273             to work with flows at the beginning of a pBlock,
274             fixes #1426557 (Symbol not previously defined),
275           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
276             usage information
277           (RemoveUnusedRegisters): update register usage info
278         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
279             created, reuse existing ones instead
280         * src/pic/gen.c (genPcall): fixed #1424719
281
282 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
283
284         * link/z80/lkmain.c,
285         * link/z80/lklex.c,
286         * link/z80/lkdata.c,
287         * link/z80/aslink.h: fixed build on current cygwin:
288         replaced getline() by lk_getline()
289
290 2006-02-01 Borut Razem <borut.razem AT siol.net>
291
292         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
293           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
294           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
295           src/regression/bool1.c, src/regression/bool2.c,
296           src/regression/bool3.c, src/regression/call1.c,
297           src/regression/compare.c, src/regression/compare10.c,
298           src/regression/compare2.c, src/regression/compare3.c,
299           src/regression/compare4.c, src/regression/compare5.c,
300           src/regression/compare6.c, src/regression/compare7.c,
301           src/regression/compare8.c, src/regression/compare9.c,
302           src/regression/configword.c, src/regression/for.c,
303           src/regression/inline.c, src/regression/mult1.c,
304           src/regression/nestfor.c, src/regression/or1.c,
305           src/regression/pointer1.c, src/regression/ptrfunc.c,
306           src/regression/rotate1.c, src/regression/rotate2.c,
307           src/regression/rotate3.c, src/regression/rotate4.c,
308           src/regression/rotate5.c, src/regression/rotate6.c,
309           src/regression/rotate7.c, src/regression/string1.c,
310           src/regression/struct1.c, src/regression/sub.c,
311           src/regression/sub2.c, src/regression/switch1.c,
312           src/regression/while.c, src/regression/xor.c,
313           src/regression/create_stc, src/regression/simulate,
314           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
315           regression tests
316         * src/regression/gpsim_assert.h: added
317
318 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
319
320         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
321         ((void (code *) (void)) 0) ();
322         * as/hc08/aslex.c,
323         * as/hc08/aslink.h,
324         * as/hc08/asm.h,
325         * as/hc08/asmain.c,
326         * as/hc08/lkdata.c,
327         * as/hc08/lklex.c,
328         * as/hc08/lkmain.c,
329         * as/mcs51/aslex.c,
330         * as/mcs51/aslink.h,
331         * as/mcs51/asm.h,
332         * as/mcs51/asmain.c,
333         * as/mcs51/lkdata.c,
334         * as/mcs51/lklex.c,
335         * as/mcs51/lkmain.c,
336         * as/z80/aslex.c,
337         * as/z80/asm.h,
338         * as/z80/asmain.c: fixed build on current cygwin:
339         replaced getline() by as_getline()
340
341 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
342
343         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
344         declarator in the symbol chain
345         * src/SDCCsymt.h,
346         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
347         parameter list for function pointers
348         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
349         * support/regression/tests/bug-716242.c: added
350
351 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
352
353         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
354         offset if possible
355         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
356
357 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
358
359         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
360         inifinitely recurseable, added static
361         * support/regression/tests/bug-1408066.c: added
362
363 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
364
365         * src/SDCCicode.h,
366         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
367         renamed, added possibility to create "postLoopLbl"-labels
368         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
369         newiTempLoopHeaderLabel
370         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
371         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
372         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
373         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
374         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
375         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
376         (basicInduction): fixed bug #136564, made static,
377         (loopInduction): changed parameter of basicInduction, made static,
378         (addPostLoopBlock): added
379         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
380         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
381         findLoopEndSeq
382         * support/regression/tests/bug-136564.c: added
383         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
384         --std-sdcc99 to LIBSDCCFLAGS
385
386 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
387
388         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
389         while loop
390         * support/regression/tests/bug-1406131.c: added
391
392 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
393
394         * src/SDCCast.c (decorateType): fix promotion of unary minus
395         * src/SDCCsymt.c (computeType): beautified
396         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
397         (valUnaryPM, valComplement): fix sign and promotion,
398         (valNot): ANSI: result type is int (SDCC: unsigned char)
399         * support/regression/tests/uminus.c: speedup by removing superflous
400         test case 'int'
401         * support/regression/tests/onebyte.c: added promotion and signedness
402         tests for unary minus
403         * support/regressions/tests/bug-477927.c: disable warning about
404         uninitialized variables
405         * support/regression/tests/not.c: added
406
407 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
408
409         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
410         * src/mcs51/gen.c (gen51Code): show final register usage after
411         fillGaps in asm with --i-code-in-asm
412         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
413         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
414         incUsed, rliveClear, adjustIChain): made static,
415         (setFromRange): excluded because it's unused,
416         (findPrevUseSym, markWholeLoop): added,
417         (findPrevUse): rewritten; fixes bug 895992; now a complete search
418         through all branches of predecessors enables sdcc to emit the warning
419         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
420         (rlivePoint): made static, added parameter emitWarnings which is only
421         true during the first run out of two,
422         (findRecursiveSucc, findRecursivePred): removed,
423         (computeLiveRanges): made static, added parameter emitWarnings,
424         (dumpIcRlive): added for debugging only
425         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
426         removed prototype of setFromRange()
427         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
428         in call of computeLiveRanges()
429         * support/regression/tests/bug-895992.c: added
430         * support/regression/tests/bug-971834.c: added
431         * support/valdiag/tests/bug-895992.c: added
432         * support/valdiag/tests/bug-971834.c: added
433
434 2005-12-18 Raphael Neider <rneider AT web.de>
435
436         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
437           (genUnpackBits): improved code for direct operands,
438           (genPackBits): improved code for literal assignment to bitfields
439             and for direct destination operands (no FSR indirection),
440             prevented redundant AND, fixes #1362800,
441           (AccLsh): added parameter to disable masking of the result
442         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
443           skip instructions with side-effects (like incfsz),
444           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
445         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
446         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
447           fixes #1375263
448
449 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
450
451         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
452         volatile variables as spill location
453
454 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
455
456         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
457         replacing literals
458         * support/regression/tests/bug-1376320.c: added
459
460 2005-12-08 Raphael Neider <rneider AT web.de>
461
462         * src/pic/device.c: renamed is_shared to pic14_is_shared
463         * src/pic/gen.c (genIfx): re-enabled handling of sbits
464         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
465           (is_valid_identifier): added for above workaround
466
467 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
468
469         * device/lib/Makefile.in: fixed to enable port-specific-objects
470         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
471           char, thanks Hubert Sack
472         * doc/sdccman.lyx: documented --xstack-loc,
473           elaborated a bit more on interrupts and pitfalls,
474           removed "setjmp/longjmp unsupported",
475           documented some unsupported C99 features
476         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
477         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
478           if, thanks Hubert Sack
479         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
480         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
481           make make_library
482         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
483           regression tests can report resource usage (rfe 700441)
484         * support/regression/collate-results.py: report resource usage
485         * support/regression/ports/ds390/spec.mk,
486         * support/regression/ports/hc08/spec.mk,
487         * support/regression/ports/mcs51/spec.mk,
488         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
489         * support/regression/ports/ds390/uCsim.cmd,
490         * support/regression/ports/hc08/uCsim.cmd,
491         * support/regression/ports/mcs51/uCsim.cmd,
492         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
493         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
494           library, use the default one
495         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
496           building the library
497
498 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
499
500         * config.dsp: added dependency on .version and configure_vc.awk
501         * device/include/setjmp.h: updated for --stack-auto and --xstack
502         * device/include/mcs51/at89c51snd1c.h: corrected line endings
503         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
504         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
505         * device/lib/libsdcc.lib: added _setjmp
506         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
507           (decorateType): fixed bug 1372851,
508           (optimizeGetHbit): fixed warning
509         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
510           array initialisation
511         * support/regression/tests/bug1057979.c: added test for bug 1358192
512         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
513
514 2005-12-03 Borut Razem <borut.razem AT siol.net>
515
516         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
517           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
518
519 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
520
521         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
522         createIval): implement symbol independant "flexible array member",
523         (createIvalCharPtr): implemented flexible array initialisation with a
524         string
525         * src/SDCCsymt.c (copyStruct): removed,
526         (getSize): fixed misleading comment,
527         (getAllocSize): removed, the additional allocation size is now in
528         sym->flexArrayLength,
529         (checkStructFlexArray): new, syntax checks for flexible array members,
530         (compStructSize): added syntax checks for "flexible array members"
531         (copyStruct): removed,
532         (copyLinkChain): removed inefficient fix for bug 770487
533         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
534         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
535         symbol->flexArrayLength
536         * src/SDCCerr.c,
537         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
538         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
539         * support/regression/tests/structflexarray.c: added
540         * support/valdiag/tests/structflexiblearray.c: added
541
542 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
543
544         * src/SDCCast.c (decorateType): fixed bug 1368489
545         * support/Util/SDCCerr.c,
546         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
547
548 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
549
550         * device/include/mcs51/at89c51snd1c.h: added file submitted by
551           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
552
553 2005-11-27 Borut Razem <borut.razem AT siol.net>
554
555         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
556           support/cpp2/mkdeps.h: added command line option
557           -obj-ext=<extension> to SDCPP to define object file externion, used
558           for generation of make dependencies (-M)
559         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
560
561 2005-11-26 Borut Razem <borut.razem AT siol.net>
562
563         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
564           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
565           added pic and pic16 libraries
566
567 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
568
569         * device/include/float.h: Corrected typo in prototype of __fsgt
570
571 2005-11-25 Borut Razem <borut.razem AT siol.net>
572
573         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
574           added creation of model-mcs51-stack-auto libraries
575
576 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
577
578         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
579         and fields-list too
580         * src/SDCCast.c (createIvalArray): removed obsolete comment
581
582 2005-11-24 Borut Razem <borut.razem AT siol.net>
583
584         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
585           added missing device/lib/mcs51/crt*.asm sources
586
587 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
588
589         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
590
591 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
592
593         * device/lib/_fs2schar.c,
594         * device/lib/_fs2sint.c,
595         * device/lib/_fs2slong.c: optimized inline asm
596
597 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
598
599         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
600           Better handling of floats between -1.0 and 0.0.
601
602 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
603
604         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
605           (the missing "if"s prohibited removal of redundant labels)
606
607 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
608
609         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
610           Properly convert floats between -1.0 and 0.0 to long, int, and char
611           types (max integer value of negative floats tends to zero).
612         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
613           Removed changes made so to work properly with floats between
614           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
615           and _fs2char.c
616
617 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
618
619         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
620         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
621         (genCast) cosmetic change
622         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
623         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
624         from mcs51
625         * support/regression/tests/bitfields (testSignedBitfields): added
626
627 2005-11-18 Borut Razem <borut.razem AT siol.net>
628
629         * sdcc/device/lib/Makefile.in: remove all unnecessary files
630         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
631           introduced SILENT option to make building of pic16 libraries less
632
633 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
634
635         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
636           Now they work properly with floats between -1.0 and 0.0
637         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
638
639 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
640
641         * src/SDCCicode.c (printOperand): added missing else
642
643 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
644
645         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
646         reformatted for better readability
647         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
648         signed bitfields
649
650 2005-11-17 Borut Razem <borut.razem AT siol.net>
651
652         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
653           introduced SILENT option to make building of pic16 libraries less
654           verbose - used for nightly snapshot build
655         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
656           available on Win32 platforms.
657         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
658           medium, large, pic and pic16
659
660 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
661
662         * device/lib/printf_large.c: Temporary patch for bug 1358192:
663           printf("%f"...) sets fraction to zero.
664
665 2005-11-16 Raphael Neider <rneider AT web.de>
666
667         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
668           fixes #1357221
669         * src/pic/gen.c (genIfx): implemented for CARRY bit
670         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
671           to generic pointers, fixes #1357332,
672           (pic16_movLit2f): NEW,
673           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
674
675 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
676
677         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
678
679 2005-11-11 Raphael Neider <rneider AT web.de>
680
681         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
682         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
683           compute pointer's type from operand,
684           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
685           improved single bit reads, fixes bug #1353379
686
687 2005-11-09 Borut Razem <borut.razem AT siol.net>
688
689         * support/scripts/sdcc.nsi: added lib/pic to the package
690
691 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
692
693         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
694
695 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
696
697         * support/regression/tests/bug1348008.c: added
698         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
699         * support/regression/tests/bug1337835.c: updated comment
700
701 2005-11-06 Borut Razem <borut.razem AT siol.net>
702
703         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
704           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
705           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
706           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
707           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
708           dynamic construction of cl_error_class and derivates - 2.nd try
709
710 2005-11-05 Borut Razem <borut.razem AT siol.net>
711
712         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
713           bug, which caused Bus Errors on sparc solaris
714
715 2005-11-04 Borut Razem <borut.razem AT siol.net>
716
717         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
718           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
719           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
720           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
721           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
722           and derivates to resolve the initialization problem on OSX
723
724 2005-11-02 Borut Razem <borut.razem AT siol.net>
725
726         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
727           corrected typo - #include <winsock2.h>
728
729 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
730
731         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
732           (_asxxxx_mapping): added org directive for future enhancements
733
734 2005-11-01 Borut Razem <borut.razem AT siol.net>
735
736         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
737           enabled sockets on WIN32
738         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
739
740 2005-10-31 Borut Razem <borut.razem AT siol.net>
741
742         * support/regression/generate-cases.py: escape backslashes in {testcase}:
743           WIN32 backslash path delimiters should be escaped when used in C strings
744         * support/regression/tests/bitfields.c: exclude failing assertions for
745           __CYGWIN32__ and __MINGW32__ hosts
746
747 2005-10-30 Borut Razem <borut.razem AT siol.net>
748
749         * src/SDCCutil.c: corrected double comparison typo
750
751 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
752
753         * device/lib/medium/Makefile: added for new memory model medium
754         * device/include/asm/mcs51/features.h: updated for medium/pdata
755         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
756           added Multiply & Accumulate sbit's and MAC0_PAGE define
757         * device/include/mcs51/c8051f300.h: added sfr16 definitions
758         * device/include/mcs51/c8051f310.h: added sfr16 definitions
759         * device/lib/_mullong.c: update for medium model
760         * device/lib/incl.mk: added medium model
761         * doc/sdccman.lyx: documented medium model
762         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
763         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
764         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
765         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
766           (allocParms): set SCLS and OCLS to pdata for medium model
767         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
768           for pdata,
769           (powof2): return <0 if not power of 2
770         * src/avr/gen.c (genBitWise): use updated powof2
771         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
772           (shiftR2Left2Result): small optimization in setup, save acc when storing,
773           (shiftLLeftOrResult): use B if necessary
774         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
775         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
776         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
777         * support/regression/Makefile.in: added test-mcs51-medium
778         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
779
780 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
781
782         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
783         specifier unsigned
784         * device/lib/time.c (mktime): fixed bug 1334315
785
786 2005-10-28 Raphael Neider <rneider AT web.de>
787
788         * device/include/pic/p16f_common.inc: added common declarations
789         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
790
791 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
792
793         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
794           (aopPutUsesAcc): added to predict accumulator use,
795           (assignResultValue): save acc if necessary,
796           (genMinusDec): store result if indirectly addressed,
797           (genDivOneByte):  save acc if necessary,
798           (movLeft2Result): bugfix if left already in acc,
799           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
800             attention to accumulator use (esp. pdata),
801           (genReceive): receive pdata correctly
802         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
803         * src/SDCCicode.h: added isOperandInPagedSpace prototype
804
805 2005-10-27 Raphael Neider <rneider AT web.de>
806
807         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
808
809 2005-10-27 Raphael Neider <rneider AT web.de>
810
811         * .version: changed version to 2.5.4
812         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
813         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
814           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
815             arithmetics support routines
816         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
817         * device/lib/Makefile.in: also create installdir for pic
818
819         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
820           pic14 port as well
821         * src/pic/device.c (dump_sfr): rewritten to delegate register
822           placement to the linker (use `extern sym' rather than sym EQU addr),
823           (validAddress): fixed to check last specified address
824         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
825           (popGetLit): truncate literal value to 8 bit,
826           (popGet): moved assert to more appropriate place
827           (popGetExternal): create pCode operand from and mark the according
828             symbol as being `extern'
829           (popGetAddr): added sanity check on immediate's offset, provide
830             GPOINTER tag on demand
831           (aopPut): fixed for immediates,
832           (mov2w_op): move operand's address or contents to WREG (depending on
833             operand type), safer variant of mov2w,
834           (movwf,call_libraryfunc): NEW, handy abbreviations,
835           (get_argument_pcop,get_return_val_pcop,pass_argument,
836           get_returnvalue): interface for accessing function parameters and
837             return values,
838           (assignResultValuei,genRet): use new parameter/return value interface
839           (pic14_getDataSize): back to old version handling generic pointers,
840           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
841             provided implementation and/or fixed old one,
842           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
843             calls, removed legacy 8051 reference code
844           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
845           (loadSignToC): NEW, move the operands sign bit to CARRY,
846           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
847             genRightShiftSigned, accepts negative shift counts,
848           (setup_fsr): load FSR and adjust IRP (indirect memory access),
849           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
850             generic pointers, __data pointers and __code pointers,
851           (genUnpackBits,genPackBits): rewritten to work with generic pointers
852             and signed bitfields, limit bitfields to 8 bit,
853           (genDataPointerGet): fixed number of bytes read,
854           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
855           (genPointerGet,genPointerSet): fixed handling of __code pointers,
856             pointers to constant data are no longer assumed to point to __code
857             space, removed invalid pointer types,
858           (bitpatternFromVal): retrieve the PICs representation of an integer
859             or float literal,
860           (genDataPointerSet): fixed assigning to po_immediate operands,
861           (genGenPointerSet): implemented as library call,
862           (genIfx): fixed incorrect condition,
863           (genAddrOf): limit generic pointers' addresses to 2 bytes,
864             provide GPOINTER tag according to destination's storage class,
865           (genCast): added code to handle casting to generic pointers, added
866             sign-/zero extension of the result
867           (aop_isLitLike,op_isLitLike): fixed handling of immediates
868         * src/pic/gen.h: added macros to access IRP bit in STATUS register
869         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
870           extend the result
871         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
872           address/register resides in the shared banks
873           (emitSymbolToFile): improved to handle global and `pinned' symbols,
874             put all variables into separate sections (have the linker arrange
875             them)
876           (picglue): put init code and interrupt handlers in separate sections
877         * src/pic/main.c: added port specific options table, modified to PORT
878           structure to make GPOINTERs 3 byte, added pic14_options
879           (_pic14_do_link): private linking routine (update paths to libraries,
880             add libsdcc.lib by default)
881         * src/pic/main.h: declare pic14_options
882         * src/pic/pcode.c: fixed instructions i/o relations,
883           (RegCond): reverted to correct version,
884           (newpCodeOpLit): truncate literals to 8 bit,
885           (genericPrint): added debug output,
886           (getRegFromInstruction): fixed for various operand types, simplified
887           (BuildFlow): fixed broken handling of isntructions with labels
888           (LinkFlow): start at last instruction in flow (skip trailing comments),
889             pass the flow on to the next instruction after CALL
890           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
891           (insertPCodeInstruction): fixed inserting after a skip instruction,
892           (DoBankSelect): fixed for labeled instructions
893           (OptimizepBlock): honor --nopeep switch
894           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
895         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
896         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
897           (pCodeOptime2pCodes): allow disabling this optimization via
898             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
899             but is still buggy), started implementation of a dataflow based
900             pCode optimization (CSE + dead code elimination)
901           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
902         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
903           names are independant of the stack location and therefore portable across
904           devices
905
906 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
907
908         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
909           (selectSpil): fixed bug 1337835 by not spilling bit variables
910         * support/regression/tests/bug1337835.c: added test for this bug
911         * src/mcs51/peeph.def: restart after rule 3.c,
912           addded rules 263.x to optimize loading constants
913
914 2005-10-26 Raphael Neider <rneider AT web.de>
915
916         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
917         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
918           (genAssign): emit warning when casting literals to generic pointer
919             type, also applies when taking the address of a fixed variable,
920           (genCast): improved casting to generic pointers
921         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
922           extern variables, added verbose error message
923         * device/include/pic16/{string.h,errno.h}: added #pragma library c
924
925 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
926
927         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
928         carry must be complemented too
929         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
930         could be emitted by genMinus
931         * src/SDCCval.c (constVal): fixed bug 1305065
932
933 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
934
935         * src/SDCCast.c (addCast): added promotion for bit variables
936         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
937         promotion casts + optimisation
938         (optimizeGetWord): fix warning 'i' might be used uninitialized
939         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
940         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
941
942 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
943
944         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
945         all chars are promoted to int; promotion should be handled in SDCCast.c
946
947 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
948
949         * device/lib/_strcmp.c: Fixed bug 1326457
950
951 2005-10-11 Raphael Neider <rneider AT web.de>
952
953         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
954         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
955
956 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
957
958         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
959         * support/regression/tests/sfr16.c: added test for the sfr32 bug
960
961 2005-10-04 Raphael Neider <rneider AT web.de>
962
963         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
964           device/lib/pic16/pics.all: added pic18f1320
965         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
966
967 2005-09-30 Raphael Neider <rneider AT web.de>
968
969         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
970         * src/pic16/devices.inc: NEW, provides device descriptions
971         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
972
973 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
974
975         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
976           GETHBIT
977
978 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
979
980         * doc/sdccman.lyx: updated Highest Order Bit documentation,
981           documented Any Order Bit, Higher Order Byte and Higher Order Word
982         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
983         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
984           (optimizeGetAbit): new, to get any bit, not only the high bit,
985           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
986           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
987           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
988           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
989             RIGHT_OP: also try GETBYTE, GETWORD optimization,
990             GETABIT, GETBYTE, GETWORD: decorate them,
991           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
992           (ast_print): added GETABIT, GETBYTE, GETWORD
993         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
994         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
995           (geniCodeBinary): new generic binary icode,
996           (ast2iCode): added GETABIT, GETBYTE, GETWORD
997         * src/port.h: updated comment for PORT.hasExtBitOp
998         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
999           (genGetByte): new, to get a single byte,
1000           (genGetWord): new, to get a word from a long,
1001           (gen51Code): added GETABIT, GETBYTE, GETWORD
1002         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1003
1004 2005-09-23 Raphael Neider <rneider AT web.de>
1005
1006         * configure.in, configure: have device/lib/pic configured
1007         * device/lib/Makefile.in: added model-pic14
1008         * device/lib/clean.mk: added pic/ to clean rule
1009         * device/lib/pic: added rudimentary pic14 library providing support
1010           functions for multiplication/division/generic pointer access
1011         * src/SDCCopt.c (convilong): mark support functions as extern
1012           for pic14 port as well
1013         * src/pic/gen.c (genMult): added assertions,
1014           (genpic14Code): emit warning on unhandled iCodes
1015         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1016         * src/pic/pcode.c (pCodeOpCopy),
1017         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1018           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1019           SFR_REGISTER}), made safe for future extensions
1020         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1021           instructions even if preceeded by SKIP instructions (also remove
1022           them); removed unused code
1023         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1024           prevents leaving parts of the structure uninitialized after copying
1025
1026 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1027
1028         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1029           ago by me
1030         * support/regression/tests/addsub.c: added test for the bug
1031
1032 2005-09-21 Raphael Neider <rneider AT web.de>
1033
1034         * device/include/pic16/pic18f1220.h,
1035           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1036         * device/lib/pic16/Makefile.rules: added missing opening paren
1037         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1038           are provided in genutils.c,
1039           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1040           operand/result sizes,
1041           (genCmp): assert on NULL pointers first, then check deref'ed values
1042         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1043           result size
1044
1045 2005-09-18 Raphael Neider <rneider AT web.de>
1046
1047         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1048           as these are now unused,
1049           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1050         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1051           local, avoids uninitialized pointer dereference on r->name
1052         * src/pic16/ralloc.c (newReg): fixed indentation
1053
1054 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1055
1056         * src/SDCCval.c (constVal): fixed bug 730366
1057         * support/Util/SDCCerr.c,
1058         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1059
1060 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1061
1062         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1063
1064 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1065
1066         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1067
1068 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1069
1070         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1071           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1072         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1073           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1074         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1075         * packihx/packihx.c (hexDigit): made c unsigned char
1076         * as/mcs51/lklibr.c (fndsym),
1077         * link/z80/lkgb.c (gb),
1078         * link/z80/lklibr.c (fndsym),
1079         * link/z80/lkrloc.c (relr),
1080         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1081         * src/SDCC.lex (checkCurrFile, process_pragma),
1082         * src/SDCCglue.c (spacesToUnderscores),
1083         * src/SDCCmain.c (setParseWithComma, processFile),
1084         * src/asm.c (tvsprintf, printCLine),
1085         * src/avr/gen.c (emitcode, aopPut),
1086         * src/ds390/gen.c (emitcode),
1087         * src/hc08/gen.c (emitcode, emitinline),
1088         * src/mcs51/gen.c (emitcode, genInline),
1089         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1090           tokenizeLineNode),
1091         * src/pic/ralloc.c (debugLog),
1092         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1093           tokenizeLineNode),
1094         * src/pic16/ralloc.c (debugLog),
1095         * src/z80/main.c (_process_pragma):
1096            made all ctype.h function calls safe
1097         * src/SDCCopt.c: include math.h for fabs
1098         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1099           and used them throughout the code to make ctype.h function calls safe
1100         * src/ds390/main.c (asmLineNodeFromLineNode),
1101         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1102         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1103            unsigned char*
1104         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1105           (newpCodeAsmDir): made ctype.h function calls safe
1106         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1107           pic16_emitcode):  made lbp unsigned char*
1108         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1109           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1110         * src/xa51/gen.c (emitcode),
1111         * src/z80/gen.c (_emit2): made lbp unsigned char*
1112         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1113            char*
1114
1115 2005-09-05 Raphael Neider <rneider AT web.de>
1116
1117         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1118           access bank splitpoint
1119
1120 2005-09-05 Raphael Neider <rneider AT web.de>
1121
1122         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1123
1124 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1125
1126         * .version: changed to version 2.5.3
1127         * doc/sdccman.lyx: changed version to 2.5.3,
1128           documented --codeseg and --constseg and pragma codeseg and constseg,
1129           documented bit parameters (reentrant) and bit returning
1130         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1131            currFunc->recvSize, but is this ok for all ports?
1132           (ast2iCode): result of ~ on unsigned char must be cast to int for
1133            bool to work
1134         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1135           function pointers in bit space
1136         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1137           (processFuncArgs): call port.reg_parm() with reentrancy info
1138         * src/port.h,
1139         * src/avr/main.c,
1140         * src/ds390/main.c,
1141         * src/hc08/main.c,
1142         * src/pic/main.c,
1143         * src/pic16/main.c,
1144         * src/xa51/main.c,
1145         * src/z80/main.c: port.reg_parm prototype extended with
1146           "bool reentrant" parameter
1147         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1148           options.stackAuto for allocating bit register parameters
1149         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1150           (genSend): set BitBankUsed if it is,
1151           (selectRegBank): factored out of genCall for use in genPcall,
1152           (genCall): removed redundant dtype assignmen, use selectRegBank,
1153           (genPcall): handle returning in Carry properly, save in F0 if needed,
1154           (genReceive): handle bit register parameters
1155         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1156           (mcs51_assignRegisters): enable bit registers for all reentrant
1157            functions and don't set BitBankUsed unconditionally
1158         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1159         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1160         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1161
1162 2005-08-27 Borut Razem <borut.razem AT siol.net>
1163
1164         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1165         ppc-osx (Darwin) does not support -u option. It seems that it is
1166         supported only on Linux - GNU cp
1167
1168 2005-08-25 Borut Razem <borut.razem AT siol.net>
1169
1170         * sim/ucsim/gui.src/serio.src/Makefile.in,
1171           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1172           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1173           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1174           install and strip, since the strip at /usr/ccs/bin should be used
1175           on solaris
1176
1177 2005-08-24 Borut Razem <borut.razem AT siol.net>
1178
1179         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1180
1181 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1182
1183         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1184         ffffffffu
1185
1186 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1187
1188         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1189         * as/mcs51/lkmain.c (link_main): fixed warning
1190         * device/include/stdbool.h: ds390 has no advanced bit support yet
1191         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1192         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1193         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1194           and updated their macros
1195         * src/SDCCval.c (constVal): updated comment for renamed b_long
1196
1197 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1198
1199         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1200         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1201           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1202           (oprio): set priority for '['
1203         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1204            and adb_24_bit
1205         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1206         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1207         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1208         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1209           added overlayable BIT_BANK area
1210         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1211           (summary2): explain 'T' in legenda
1212         * as/mcs51/lkrloc.c: replaced old K&R style,
1213           (relr): added R_BIT processing,
1214           (errmsg): added "Bit-addressable relocation error",
1215           (adb_bit): added for converting from byte- to bit-addressable space,
1216           (adb_24_bit): added for converting from byte- to bit-addressable space
1217         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1218            used in reentrant functions now even as return value
1219         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1220         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1221           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1222         * src/SDCCglobl.h: added indicator BitBankUsed
1223         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1224            the bit registers b0-b7
1225         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1226           (geniCodeCast): fixed bug 1263853,
1227           (geniCodeLogicAndOr): put result in bool or char,
1228           (geniCodeReceive): added parameter func for accessing the return type,
1229           (geniCodeFunctionBody): pass func to geniCodeReceive
1230         * src/SDCCmain.c: added indicator BitBankUsed
1231         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1232         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1233           (checkSClass): don't put automatic bool/bit on stack,
1234           (checkFunction): removed check on function cannot return bit
1235         * src/SDCCsymt.h: added newBoolLink prototype
1236         * src/mcs51/gen.c (rb1regs): added bit registers,
1237           (movc): created for assigning to carry,
1238           (pushReg, popReg): created for pushing registers,
1239           (sameRegs): check both AOP_REG and AOP_CRY types,
1240           (aopOp): handle bit registers,
1241           (aopPut): optimization no self-assign,
1242           (saveRegisters): push reg->base (bits) only once for bit registers,
1243            and use pushReg,
1244           (unsaveRegisters): pop reg->base only once and use popReg,
1245           (assignResultValue): added parameter func and return in carry for bits,
1246           (genIpush): optimization no reload in A if not changed,
1247           (genSend): bit parameters in reentrant functions are passed in bit
1248            registers by first assigning to bits in B, then save registers and
1249            copy B to bits,
1250           (genCall): handle returning in Carry properly, save it in F0 if needed,
1251           (genPcall): updated assignResultValue call, this is not safe yet for bit
1252            returning function !!!
1253           (genFunction): don't generate equ's for bit registers and use pushReg,
1254           (genEndFunction): take care of bit returning functions and use popReg,
1255           (genRet): return bit in Carry,
1256           (genIfx): optimize bit registers and other directly addressable bits,
1257           (genReceive): updated assignResultValue call
1258         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1259           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1260            registers when using stack-auto
1261         * src/mcs51/ralloc.c (_G): added allBitregs,
1262           (regs8051): added the bit registers,
1263           (createStackSpil): use macro IS_BIT,
1264           (getRegBit): added to allocate a bit register, else spill,
1265           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1266           (updateRegUsage): factored out to ease stepping while debugging,
1267           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1268            also allocate bit registers,
1269           (fillGaps): handle bit registers,
1270           (findAllBitregs): added to create bit vector with all bit registers,
1271           (mcs51_allBitregs): returns this bit vector,
1272           (mcs51_assignRegisters): when using stack-auto use bit registers for
1273            passing parameters and creating local variables
1274         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1275
1276 2005-08-22 Borut Razem <borut.razem AT siol.net>
1277
1278         * device/lib/Makefile.in: replaced find option -or with -o
1279           to make it run on solaris
1280
1281 2005-08-22 Raphael Neider <rneider AT web.de>
1282
1283         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1284           fixes #1265442 (crash on Solaris)
1285
1286 2005-08-20 Borut Razem <borut.razem AT siol.net>
1287
1288         * configure, configure.in: added tests for libsocket and libnsl libraries,
1289           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1290           from support/regression/Makefile.in
1291         * support/regression/Makefile.in: added
1292         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1293         * sim/ucsim/libtool: regenerated on sparc-solaris
1294         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1295           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1296           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1297           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1298           sparc-solaris, which doesn't use GNU ld linker
1299         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1300         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1301
1302 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1303
1304         * src/mcs51/peeph.def: updated comments
1305
1306 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1307
1308         * device/lib/_gptrget.c,
1309         * device/lib/_gptrput.c: slightly shorter
1310         * doc/sdccman.lyx: incremented version
1311         * src/mcs51/peeph.def: moved peephole comments to the line of first
1312           change to better keep line correlation, reanimated 186.e
1313         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1314
1315 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1316
1317         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1318           David Saxton with quotes around file name.
1319
1320 2005-08-15 Borut Razem <borut.razem AT siol.net>
1321
1322         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1323           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1324           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1325           make tests run on x86_64 platform
1326
1327 2005-08-13 Raphael Neider <rneider AT web.de>
1328
1329         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1330           as it might be executed DURING a build (parallel make is wonderful)
1331
1332 2005-08-13 Raphael Neider <rneider AT web.de>
1333
1334         * device/lib/Makefile.in (port-specific-objects-pic16):
1335           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1336         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1337           dependency
1338         * device/lib/pic16/Makefile.rules: build subdirs before creating
1339           the library, removed builddir rule, create $(builddir) early in
1340           recurse rule, use empty recurse rule for leaf directories
1341         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1342           mkdir errors (race condition), removed duplicate suffix "hex"
1343           from clean rules
1344         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1345         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1346           prevents mkdir -p from aborting on Alpha
1347
1348 2005-08-12 Raphael Neider <rneider AT web.de>
1349
1350         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1351           db-statements in order to allow for arrays of pointers in code
1352           sections to be placed without interspersed 0-padding, fixes
1353           bug #1256215
1354         * (emitStatistics): fixed division by zero for pic18f1220
1355         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1356           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1357         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1358         * (pic16_pCodeConstString): keep track of already emitted string
1359           literals to prevent "duplicate definitions of symbol _str_NR"
1360         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1361           debug message
1362         * device/lib/Makefile.in: ignore failing PIC16 library builds
1363         * device/lib/pic16/Makefile: do not build if gputils are missing
1364         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1365
1366 2005-08-10 Raphael Neider <rneider AT web.de>
1367
1368         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1369           my last commit)
1370
1371 2005-08-10 Raphael Neider <rneider AT web.de>
1372
1373         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1374           Rokas' patch to add the new fixed point type "__fixed16x16"
1375         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1376           functions for __fixed16x16 arithmetics
1377         * device/lib/pic16: reimplemented the build system to support
1378           a separate build directory, better handling of libio (create
1379           the library in a separate subdir for each architecture) and
1380           easier configuration (centralized in Makefile.common)
1381
1382 2005-08-07 Raphael Neider <rneider AT web.de>
1383
1384         * src/pic16/gen.c (genrshTwo): fixed sign extension
1385         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1386         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1387           added T0CONbits
1388         * device/include/pic16/pic18f4220.h: NEW, header for
1389           pic18f4220 and pic18f4320
1390         * device/include/pic16/pic18fregs.h: added new devices,
1391           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1392         * device/include/pic16/signal.h: resolved name clashes
1393           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1394           to also allow testing for interrupt enable bits, added
1395           comments on how to use the macros
1396         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1397         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1398           register definitions for the devices
1399         * device/lib/pic16/pics.all: added new devices
1400         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1401           allocated memory
1402         * device/lib/pic16/libc/stdlib/memfree: do not count
1403           the block header as free memory
1404         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1405           simplified and added missing end-of-blocklist-marker
1406           (reported by Peter Onion, fixes #1252814)
1407         * (_mergeHeapBlock): fixed loop condition
1408         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1409           len==0, restructured code
1410         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1411           up a bit, reduced bitfield accesses, prevent endless loops
1412           in case of heap corruption
1413         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1414           "unreferenced arguments/must return a value" warnings
1415         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1416           replaced BAUDREG with SPBRG
1417         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1418           device/lib/pic16/debug/gstack/gstack.c: replaced
1419           _naked, _asm, _endasm with __naked, __asm, __endasm
1420
1421 2005-08-05 Raphael Neider <rneider AT web.de>
1422
1423         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1424           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1425
1426 2005-08-05 Borut Razem <borut.razem AT siol.net>
1427
1428         * device/lib/Makefile.in: added missing ';'
1429         * configure: removed ^M characters
1430
1431 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1432
1433         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1434           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1435           License
1436
1437 2005-08-04 Borut Razem <borut.razem AT siol.net>
1438
1439         * configure.in: pic16 libraries build 2nd try - enable running
1440           configure in device/lib/pic16
1441         * configure: regenerated from configure.in
1442         * device/lib/Makefile.in: create $(PORT)/bin directory
1443
1444 2005-08-03 Raphael Neider <rneider AT web.de>
1445
1446         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1447           to get/set values via pointers
1448         * (genUnpackBits,genPackBits): changed detection of
1449           ptr->bitfield vs. sym.bitfield, fixed access via generic
1450           pointers, removed dead (wrong) code for multibyte bitfields
1451         * (genNearPointerGet, genGenPointerGet): removed useless code,
1452           fixed bitfield detection, fixes #1250594
1453         * (genNearPointerSet): removed useless code
1454         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1455           and introduced macro pic16_emitpcode that conditionally emits
1456           the origin of the following pCode (useful for debugging SDCC)
1457         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1458         * (createDefmap): fixed handling of LFSR for --optimize-df
1459
1460 2005-08-02 Borut Razem <borut.razem AT siol.net>
1461
1462         * device/lib/Makefile.in: pic16 libraries build enabled since
1463           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1464
1465 2005-08-02 Raphael Neider <rneider AT web.de>
1466
1467         * src/pic16/gen.c (genPackBits): removed deprecated warning
1468         * (genGenPointerSet): fixed bitfield detection
1469
1470 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1471
1472         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1473
1474 2005-07-31 Raphael Neider <rneider AT web.de>
1475
1476         * device/lib/pic16/libdev/pic18f458.c,
1477           device/include/pic16/pic18f458.h: added missing T0CONbits
1478
1479 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1480
1481         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1482
1483 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1484
1485         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1486
1487 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1488
1489         * device/include/mcs51/at89c51ed2.h: added.
1490
1491 2005-07-23 Raphael Neider <rneider AT web.de>
1492
1493         * src/pic/gen.h: added emitpcode macro for debugging
1494         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1495           and replace by macro adding debug information on demand
1496         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1497         * (gencjne): tried to fix; replaced with correct (slower) code
1498         * (gen{Unp,P}ackBits): fixed single bit access
1499         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1500         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1501           previous instruction
1502         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1503           register has to be handled with care (forbidding movement
1504           of assignments/uses, removing assignments completely, ...)
1505         * (pCodeOptime2pCodes): make use of regIsSpecial
1506         * added lots of debugging output (commented out)
1507         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1508           from being reused as result UNLESS it is known to work
1509
1510 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1511
1512         * support/Util/dbuf.h: include <stddef.h> for size_t
1513         * .version: changed to version 2.5.2
1514
1515 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1516
1517         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1518
1519 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1520
1521         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1522           (genModOneByte): removed needless psha/pula
1523
1524 2005-07-22 Raphael Neider <rneider AT web.de>
1525
1526         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1527           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1528         * src/pic/gen.c (resolveIfx): do not "invent" labels
1529         * (genSkipc): changed to positive logic
1530         * (genSkipCond): removed as no longer needed
1531         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1532           backport from PIC16
1533         * (genLeftShift): check operands are in different registers
1534         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1535           INCF does not update CARRY...
1536         * src/pic/main.c: fixed _linkCmd
1537         * src/pic/pcode.c (unlinkpCode): added inactive code
1538         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1539           alive (do not assign result and operand overlapping registers)
1540
1541 2005-07-22 Raphael Neider <rneider AT web.de>
1542
1543         * src/pic/device.c (dump_sfr): replaced register declaration with
1544           call to emitSymbolToFile() to avoid duplicate symbols
1545         * (assignRelocatableRegisters): do not declare external symbols
1546         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1547           right (take size of type, not etype)
1548         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1549         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1550         * (packRegsForAccUse): disabled assignment of WREG as
1551           the result reg to prevent occurence of just fixed #1235003,
1552           fixes #1242954
1553         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1554           symbols (avoids duplicate symbols in .asm file)
1555         * (pic14emitRegularMap): use emitSymbolToFile()
1556         * src/pic/gen.c (aopOp): fixed spillLocation handling
1557         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1558         * (genDataPointerSet): removed unneccessary variables/output
1559
1560 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1561
1562         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1563         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1564
1565 2005-07-21 Raphael Neider <rneider AT web.de>
1566
1567         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1568           architecture cannot handle them efficiently, fixes bug #1235003
1569         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1570           check for empty sets before using them (fixes bug #1232190)
1571
1572 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1573
1574         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1575           (lnksect2): generate warnings for memory overlap
1576         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1577           constseg to set the name of these segments so you can instruct the linker
1578           to place them in banks
1579         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1580         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1581           added code_seg and const_seg to options
1582         * src/SDCCglue.c (emitMaps): use options.const_seg,
1583           (createInterruptVect): put interrupt vectors in segment HOME,
1584           (glue): put HOME before static segment and put the main glue in HOME,
1585           (glue): use options.code_seg
1586         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1587         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1588           these segments so you can instruct the linker to place them in banks
1589           (linkEdit): use code_loc for HOME segment which should be the first
1590           segment in code memory now
1591         * src/SDCCmem.c: fixed more stuff like bug 1238386
1592         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1593           (changePointer): don't change function pointers to code pointers for
1594           banked functions,
1595           (compareType): added exceptional check for banked function pointers
1596         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1597         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1598           after static in code memory
1599         * src/mcs51/gen.c: added aopLiteralLong prototype,
1600           (aopForSym): use getSize for functions,
1601           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1602           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1603           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1604           the segment,
1605           (genPcall): use call for literal function pointers and generate banked
1606           calls over the one trampoline so there's only one place for the user to
1607           modify according to his/hers hardware,
1608           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1609           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1610         * src/mcs51/main.c: added keyword banked,
1611           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1612         * support/Util/SDCCerr.c,
1613         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1614           needed for passing the bank and address to the trampoline
1615         * device/lib/mcs51/crtbank.asm: added for bankswitching
1616         * device/lib/mcs51/Makefile: added crtbank
1617
1618 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1619
1620         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1621           for fields at offset 0 of a struct or union as reported
1622           on 2005-07-07 in the developer mailing list.
1623
1624 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1625
1626         * src/SDCCmem.c: fixed bug 1238386
1627
1628 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1629
1630         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1631           (patch #1144962), added peephole 300, enabled 259.x
1632         * doc/sdccman.lyx: removed screenshot and provided link instead
1633
1634 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1635
1636         * doc/sdccman.lyx: added section about debugging with ddd
1637         * doc/figures/ddd_example.eps: screenshot of debugging session
1638
1639 2005-07-04 Raphael Neider <rneider AT web.de>
1640
1641         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1642           like CODE pointers, fixes #1115683
1643         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1644           call, fixes bugs #1232211, #1228110,
1645           fixed wrong casts to pCodeFlow from pCodeInstructions
1646
1647 2005-07-04 Raphael Neider <rneider AT web.de>
1648
1649         * src/pic/gen.c (popGet): changed assert to allow for
1650           bit operands
1651         * (popGetAddr): changed signature to provide
1652           an additional index, patched all call sites
1653         * (genCmpEq): handle literal-like operands correctly
1654         * (genAddrOf): added sanity checks on __code/__data pointers
1655         * (genAssign): added handling of symbols from __code section
1656         * (gencjne): do not generate code for comparisons whose result
1657           is neither stored nor used, fixes bug #1171114
1658         * (AccLsh, AccRsh): operate on operand instead of WREG
1659         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1660           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1661           by known count
1662         * rewrote complete shift-by-literal logic, commented unused
1663           functions out
1664         * (genConstPointerGet): get multiple bytes (if result size > 1),
1665           fixed handling of non-immediate addresses
1666         * (genPointerGet): handle CODE pointers like CONST pointers
1667         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1668         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1669           operand is to be treated as a literal or not
1670         * (mov2w,genPcall,genCmpEq),
1671           src/pic/genarith.c: use aop_isLitLike() to decide between
1672           literal/register contents
1673         * (addSign): added missing offset
1674         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1675           only emit comment in debug-mode,
1676           use {aop,op}_isLitLike throughout the file
1677         * src/pic/glue.c: fix initializers for pointers (work in progress)
1678         * src/pic/pcode.c (get_op): honor index on _const symbols
1679         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1680         * (dumppBlock): added pCode size estimation
1681         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1682           check for IS_SYMOP before OP_SYMBOL'ing
1683         * fixed indentation, compacted switch-statements
1684         * (allocReg): find free register and allocate it instead of
1685           allocating new registers all the time
1686         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1687           registers as its operands (necessary only for multibyte GETs)
1688
1689 2005-07-01 Raphael Neider <rneider AT web.de>
1690
1691         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1692           debugging .asm-output macros FENTRY + FEXIT
1693         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1694           way... I wonder...
1695         * (emitpComment): NEW, printf to pCode
1696         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1697           offset handling
1698         * (popGetAddr): NEW, variant of popGet to access an immediates
1699           high(er) bytes instead of the n'th byte of memory they reference,
1700           replaced popGet with popGetAddr where neccessary
1701         * (genDataPointerGet): reactivated and fixed implementation
1702         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1703           accesses
1704         * (genDataPointerSet): fixed multibyte assignments
1705         * (genpic14Code): fixed --i-code-in-asm handling
1706         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1707         * (genPlus): fixed index-out-of-bounds error
1708         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1709         * src/pic/ralloc.c: added debugging output macro FENTRY2
1710         * (spillThis): fixed indentation, enbraced for-body for clarity
1711         * (rematStr): commented out as now unused
1712         * (regTypeNum): commented out special spill case (overwrites
1713           arbitrary values)
1714         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1715
1716 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1717
1718         * doc/sdccman.lyx: documented sfr16/sfr32,
1719           added example for using storage class with function pointers
1720         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1721
1722 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1723
1724         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1725         * device/lib/_itoa.c,
1726         * device/lib/_ltoa.c: optimized codesize
1727         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1728           but don't know how to suppress the double warning.
1729         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1730         * support/Util/SDCCerr.c,
1731         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1732
1733 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1734
1735         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1736           fixed old K&R prototypes
1737         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1738         * device/lib/_gptrget.c,
1739         * device/lib/_gptrgetc.c,
1740         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1741           also new versions for small generic pointers and banked generic pointers
1742         * src/port.h: added const_name
1743         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1744         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1745         * src/SDCCcse.c (findPrevIc): check all associative operators
1746         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1747         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1748         * src/SDCCmem.c: updated comments,
1749           set far-space to 0 for pdata, results in optimized code
1750         * src/SDCCmem.h: added macro CONST_NAME
1751         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1752           moving the info into the highest bits, see also gptrget/gptrput
1753         * src/src.dsp: added sdcc.ico to project files
1754         * src/avr/gen.c (genCast): fixed bug 0x%d
1755         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1756         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1757           relation between ptr_type and DCL_TYPE,
1758           (genCast): fixed bug 0x%d
1759         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1760           (CODE)" for const_name
1761         * src/hc08/gen.c (genCast): fixed bug 0x%d
1762         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1763           (hc08_port): added "CONST (CODE)" for const_name
1764         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1765           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1766           between ptr_type and DCL_TYPE,
1767           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1768           operand* and took AOP() inside function so sfr-ness can be checked,
1769           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1770           new prototype,
1771           (genFunction, genEndFunction): optimized stack setup,
1772           (genMinus): optimized for literals with ending zeroes (in bytes),
1773           (genCast): fixed bug 0x%d
1774         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1775           (mcs51_port): added "CONST (CODE)" for const_name
1776         * src/mcs51/peeph.def: made rule 226 more generic
1777         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1778         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1779         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1780         * src/z80/main.c (z80_port): added NULL for const_name,
1781           (gbz80_port): added NULL for const_name
1782         * support/regression/tests/bug663539.c,
1783         * support/regression/tests/sfr16.c: new tests
1784
1785 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1786
1787         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1788
1789 2005-06-24 Raphael Neider <rneider AT web.de>
1790
1791         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1792           corrected typos...
1793         * device/include/pic16/signal.h: added USBIF
1794           and SIG_USB
1795
1796 2005-06-24 Raphael Neider <rneider AT web.de>
1797
1798         * device/lib/pic16/libdev/pic18f2455.c,
1799           device/include/pic16/pic18f2455.h: NEW
1800         * device/include/pic16/pic18fregs.h,
1801           device/lib/pic16/pics.all,
1802           src/pic16/device.c: added 18f2455
1803         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1804           device/include/pic16/{pic18f[68][567].h,usart.h}:
1805           replaced MULTIPLE_USARTS define with more relaible
1806           compatibility sfrs (for USART access)
1807
1808 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1809
1810         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1811           and the output asm file line is printed on two lines.
1812
1813 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1814
1815         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1816           BGT, BLE, BHI, and BLS instructions
1817         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1818           genCmpEq): removed
1819         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1820           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1821           fixes bug #1216342
1822         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1823
1824 2005-06-15 Raphael Neider <rneider AT web.de>
1825
1826         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1827         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1828         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1829           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1830           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1831
1832 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1833
1834         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1835           Marcel Telka in bug #1215704
1836
1837 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1838
1839         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1840           located in shared memory bank.
1841
1842 2005-05-31 Raphael Neider <rneider AT web.de>
1843
1844         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1845           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1846           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1847
1848 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1849
1850         * device/lib/_strncpy.c: fixed the fix
1851
1852 2005-05-26 Raphael Neider <rneider AT web.de>
1853
1854         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1855           initializers with \0, bug #1208187
1856         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1857           intializers with \0, bug #1208187
1858
1859 2005-05-26 Raphael Neider <rneider AT web.de>
1860
1861         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1862           initializers with \0, bug #1208187
1863         * src/pic16/main.c (_process_pragma): added sanity checks
1864           for stack position and size, emit warnings when appropriate
1865
1866 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1867
1868         * device/lib/_strncpy.c: fixed not filling with \0
1869
1870 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1871
1872         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1873           createFunction),
1874         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1875           compound_statement),
1876         * src/SDCCsymt.h,
1877         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1878
1879 2005-05-24 Raphael Neider <rneider AT web.de>
1880
1881         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1882
1883 2005-05-24 Raphael Neider <rneider AT web.de>
1884
1885         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1886           TRISE definitions, closes bug #1162453
1887
1888 2005-05-22 Raphael Neider <rneider AT web.de>
1889
1890         * src/pic16/main.c (_process_pragma): check for missing
1891           arguments to pragmas code and udata
1892         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1893           consistency fixes to match other headers (thanks to Jim Paris)
1894         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1895
1896 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1897
1898         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1899
1900 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1901
1902         * support/regression/tests/bug1198642.c: new test
1903         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1904         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1905         * support/scripts/resource.h,
1906         * support/scripts/resource.rc,
1907         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1908         * support/scripts/sdcc.ico: added 32x32 icon
1909
1910 2005-05-18 Raphael Neider <rneider AT web.de>
1911
1912         * device/lib/pic16/libdev/pic18f*.c,
1913         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1914           keywords to "__sfr" and "__at (X)"
1915         * device/include/pic16/pic18fregs.h: added pic18f4520
1916         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1917           #1203088 (MPLAB compatibility)
1918
1919 2005-05-17 Raphael Neider <rneider AT web.de>
1920
1921         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1922         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1923         * device/lib/pic16/pics.all: added new devices
1924         * src/pic16/device.c: added support for pic18f4520
1925
1926 2005-05-16 Raphael Neider <rneider AT web.de>
1927         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1928         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1929         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1930           convenience function for bit access
1931
1932 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1933
1934         * device/lib/printf_large.c: fixed bug 1193299
1935         * support/regression/tests/bug1057979.c: added test %3.3s
1936
1937 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1938
1939         * device/include/mcs51/8051.h,
1940         * device/include/mcs51/8052.h: made parseable with lint
1941         * device/include/mcs51/lint.h: added include file for (sp)lint
1942         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1943         * doc/cdbfileformat.lyx,
1944         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1945
1946 2005-05-14 Raphael Neider <rneider AT web.de>
1947
1948         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1949         * device/lib/pic16/libc/stdlib/itoa.c (new)
1950         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1951         * device/lib/pic16/libio/Makefile: exclude subdir according to
1952           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1953         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1954         * src/pic16/gen.c (genFunction): prevent annoying warning
1955         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1956           nameclashes on BeOS
1957         * support/cpp2/cppmain.c (cpp_output_string): new
1958         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1959           fixes bug 1116802
1960
1961 2005-05-13 Borut Razem <borut.razem AT siol.net>
1962
1963         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1964
1965 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1966
1967         * .version: changed to version 2.5.1; back to bleeding edge development
1968
1969 2005-05-11 Borut Razem <borut.razem AT siol.net>
1970
1971         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1972           generate PDF version 1.3 documents
1973
1974 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1975
1976         * .version: changed to version 2.5.0
1977
1978 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1979
1980         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1981
1982 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1983
1984         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1985         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1986         well as many smaller updates.
1987         * .version: changed to version 2.5.0-pre1
1988
1989 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1990
1991         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1992
1993 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1994
1995         * support/regression/tests/bug1185672.c: added
1996         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1997           bug 1185672
1998         * src/mcs51/gen.c (genCall): added comments, made it look safer
1999         * src/mcs51/gen.c (genEndFunction): simplified
2000
2001 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2002
2003         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2004
2005 2005-04-14 Borut Razem <borut.razem AT siol.net>
2006
2007         * fixed bug 1045046 - SIGSEGV with really simple code?:
2008           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2009           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2010
2011 2005-04-14 Borut Razem <borut.razem AT siol.net>
2012
2013         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2014           src/pic16/device.h: temporarily disabled experimental #inline pragma
2015           for 2.5.0 release
2016
2017 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2018
2019         * device/include/z80/stdio.h,
2020         * device/include/z80/string.h: removed these highly incomplete files so
2021           SDCC can use the default ones in device/include/
2022
2023 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2024
2025         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2026         gcc warning.
2027         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2028         fix sdcpp warnings.
2029
2030 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2031
2032         * device/include/malloc.h: removed redundant __reentrant prototypes
2033         * device/lib/_mullong.c: added working xstack variant in asm (C version
2034           doesn't pass regression tests)
2035         * device/lib/bpx.c: used __data and made bpx char for mcs51
2036         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2037           (createFunction): fixed bug with xstackPtr
2038         * src/SDCCcse.c: corrected comments
2039         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2040           (killDeadCode, eBBlockFromiCode): removed unused code
2041         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2042           corrected comments
2043         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2044           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2045           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2046           (genModOneByte): fixed warning in MSVC
2047         * src/mcs51/main.c (): added comments
2048         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2049
2050 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2051
2052         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2053
2054 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2055
2056         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2057
2058 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2059
2060         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2061         characters arrays of larger size than the declared one.
2062
2063 2005-04-10 Borut Razem <borut.razem AT siol.net>
2064
2065         * src/pic/gen.c (genInline),
2066           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2067           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2068           (findNextInstruction), (findPrevInstruction),
2069           (findInstructionUsingLabel),
2070           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2071         * src/pic/pcode.c (findLabel): added missing '\n'
2072         * src/src.dsp: added SDCCdwarf2.c to the project
2073
2074 2005-04-09 Borut Razem <borut.razem AT siol.net>
2075
2076         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2077
2078 2005-04-08 Raphael Neider <rneider AT web.de>
2079
2080         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2081           into the chain after a given one) and mergeDefmapSymbols (combine
2082           defmap entries for each symbol per pcode)
2083         * (createDefmap): have defmap entries merged in the end
2084         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2085           a symbol before replacing one access type's symbol, merge symbols in
2086           the end (replacement symbol might already have an entry)
2087         * (assignValnums): keep reference to written WREG intact
2088
2089 2005-04-08 Raphael Neider <rneider AT web.de>
2090
2091         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2092           Alpha)
2093
2094 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2095
2096         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2097         bytes
2098
2099 2005-04-07 Raphael Neider <rneider AT web.de>
2100
2101         * device/include/pic16/usart.h: added compatibility defines for
2102           devices with more than one USART
2103         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2104
2105 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2106
2107         * device/lib/Makefile.in: updated for port specific include
2108
2109 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2110
2111         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2112
2113 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2114
2115         * device/include/8051.h,
2116         * device/include/8052.h,
2117         * device/include/at89S8252.h,
2118         * device/include/at89c55.h,
2119         * device/include/at89x051.h,
2120         * device/include/at89x51.h,
2121         * device/include/at89x52.h,
2122         * device/include/mcs51reg.h,
2123         * device/include/reg51.h,
2124         * device/include/reg764.h,
2125         * device/include/regc515c.h,
2126         * device/include/sab80515.h: (re)moved these 12 files
2127         * device/include/mcs51/8051.h,
2128         * device/include/mcs51/8052.h,
2129         * device/include/mcs51/at89S8252.h,
2130         * device/include/mcs51/at89c55.h,
2131         * device/include/mcs51/at89x051.h,
2132         * device/include/mcs51/at89x51.h,
2133         * device/include/mcs51/at89x52.h,
2134         * device/include/mcs51/mcs51reg.h,
2135         * device/include/mcs51/reg51.h,
2136         * device/include/mcs51/reg764.h,
2137         * device/include/mcs51/regc515c.h,
2138         * device/include/mcs51/sab80515.h: and added them here
2139
2140 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2141
2142         * device/include/stdarg.h: changed SDCC specific keywords to double
2143           underlined form.
2144         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2145           mcs51 and ds390.
2146         * device/include/hc08/mc68hc908gp32.h,
2147         * device/include/hc08/mc68hc908jb8.h,
2148         * device/include/hc08/mc68hc908jkjl.h,
2149         * device/include/hc08/mc68hc908qy.h: fixed comments
2150         * device/include/mcs51/README: updated
2151         * device/include/mcs51/c8051f120.h: added PINRSF
2152         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2153         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2154           amidst code. Also inline is not supported.
2155
2156 2005-04-06 Raphael Neider <rneider AT web.de>
2157
2158         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2159         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2160           callers stack/frame pointers
2161
2162 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2163
2164         * device/include/pic16/usart.h: added, missing in previous commit,
2165         * device/include/pic16/adc.h: fixed typo,
2166         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2167         commit,
2168         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2169         <p18fxxx.inc>
2170         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2171         uninitialized because a bug appears with gplink
2172         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2173         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2174         complains for unrecognised option
2175
2176 2005-04-05 Raphael Neider <rneider AT web.de>
2177
2178         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2179           structs as well (using memcpy)
2180         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2181           on ISRs (GOTO has no label)
2182         * src/pic16/device.h: added OF_OPTIMIZE_DF
2183         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2184           new data flow analysis/optimization
2185         * src/pic16/pcode.c: added (prototypes for and implementation of)
2186           dataflow analysis functions, fixed pCodeInstructions' inCond and
2187           outCond values, made RCALL a branch instruction
2188         * (pic16_unlinkpCode): keep C line if possible
2189         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2190           C line moved if possible
2191         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2192         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2193           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2194         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2195           new flow)
2196         * (pic16_getJumptabpCode): NEW, needed in...
2197         * (LinkFlow): fixed handling of jumptables, calls and conditional
2198           branches
2199         * (pic16_InsertCommentAfter): NEW
2200         * (pic16_pCodeReplace): made verbose and flow preserving
2201         * (AnalyzeFlow): added call to data flow analysis
2202         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2203         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2204         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2205
2206 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2207
2208         * src/SDCCast.c (decorateType): fixed bug #1105626
2209
2210 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2211
2212         * device/include/asm/pic16/features.h,
2213         * pic18f*.h headers,
2214         * device/include/pic16/adc.h,
2215         * device/include/pic16/delay.h,
2216         * device/include/pic16/i2c.h,
2217         * device/include/pic16/malloc.h,
2218         * device/include/pic16/stdio.h,
2219         * device/include/pic16/stdlib.h,
2220         * device/include/pic16/string.h,
2221         * device/lib/pic16/libc/stdio/printf_tiny.c,
2222         * device/lib/pic16/libc/stdio/printf_small.c,
2223         * device/lib/pic16/libc/stdio/strmgpsim.c,
2224         * device/lib/pic16/libc/stdio/strmmssp.c,
2225         * device/lib/pic16/libc/stdio/strmusart.c,
2226         * device/lib/pic16/libc/stdio/vfprintf.c,
2227         * device/lib/pic16/libc/stdlib/ltoa.c,
2228         * device/lib/pic16/libc/stdlib/putchar.c,
2229         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2230         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2231         * device/lib/pic16/libc/stdlib/memchrram.c,
2232         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2233         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2234         * device/lib/pic16/libio/adc/adcbusy.c,
2235         * device/lib/pic16/libio/adc/adcread.c,
2236         * device/lib/pic16/libio/adc/adcsetch.c,
2237         * device/lib/pic16/libio/usart/ubaud.c,
2238         * device/lib/pic16/libio/usart/ubusy.c,
2239         * device/lib/pic16/libio/usart/udrdy.c,
2240         * device/lib/pic16/libio/usart/uopen.c,
2241         * device/lib/pic16/libio/usart/uputc.c,
2242         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2243         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2244         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2245         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2246         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2247         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2248         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2249         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2250         specific keywords to double underlined form,
2251         * device/lib/pic16/libc/Makefile.rules,
2252         * device/lib/pic16/libsdcc/Makefile.rules,
2253         * device/lib/pic16/libm/Makefile,
2254         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2255         to compile with C standard set in Makefile.common
2256         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2257         rand.c and crc.c in compilation process,
2258         * device/lib/pic16/libsdcc/int/divuint.c,
2259         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2260         `c' from signed to unsigned,
2261         * device/lib/pic16/startup/crt0.c,
2262         * device/lib/pic16/startup/crt0i.c,
2263         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2264         keywords to double underlined form, bug fixes in _do_cinit function
2265         which prevented the correct initialization of the .idata segment,
2266         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2267         core to enter a infinite loop
2268         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2269
2270 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2271
2272         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2273
2274 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2275
2276         * device/include/Makefile.in: add support for hc08 subdirectory
2277         * device/include/hc08/: new subdirectory
2278         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2279         Lucas Loizaga, thanks!
2280         * device/include/hc08/mc68hc908qy.h,
2281         * device/include/hc08/mc68hc908gp32.h,
2282         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2283         their own directory. Changed internal macro names to use the compiler
2284         reserved namespace. Changed SDCC specific keywords to double
2285         underlined form.
2286         * device/include/math.h,
2287         * device/include/malloc.h,
2288         * device/include/stdarg.h,
2289         * device/include/stdbool.h
2290         * device/include/string.h,
2291         * device/include/tinibios.h,
2292         * device/include/ds400rom.h,
2293         * device/include/8051.h,
2294         * device/include/8052.h,
2295         * device/include/80c51xa.h,
2296         * device/include/at89c55.h,
2297         * device/include/at89S8252.h,
2298         * device/include/at89x51.h,
2299         * device/include/at89x52.h,
2300         * device/include/ds80c390.h,
2301         * device/include/reg764.h,
2302         * device/include/regc515c.h,
2303         * device/include/sab80515.h,
2304         * device/include/mcs51/c8051f000.h,
2305         * device/include/mcs51/c8051f018.h,
2306         * device/include/mcs51/c8051f020.h,
2307         * device/include/mcs51/c8051f040.h,
2308         * device/include/mcs51/c8051f060.h,
2309         * device/include/mcs51/c8051f120.h,
2310         * device/include/mcs51/c8051f300.h,
2311         * device/include/mcs51/c8051f310.h,
2312         * device/include/mcs51/c8051f320.h,
2313         * device/include/mcs51/c8051f330.h,
2314         * device/include/mcs51/c8051f350.h,
2315         * device/include/z180.h: Changed SDCC specific keywords to double
2316         underlined form.
2317
2318 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2319
2320         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2321         18F4455,
2322         * (pic16_assignConfigWordValue): disable testing of configuration
2323         register value with config mask,
2324         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2325         function with port->fun_prefix,
2326         * (genFunction): when generating a naked interrupt function never
2327         create an absolute segment placed in interrupt vector address, place
2328         the actual interrupt function at IVA instead, when an interrupt
2329         function is generated with unspecified interrupt then do not create
2330         the absolute section,
2331         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2332         code for generating a call to generic pointer get/put function with
2333         a call to function pic16_callGenericPointer(),
2334         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2335         the call to the generic pointer get/put functions with prefixing the
2336         function name with port->fun_prefix,
2337         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2338         * src/pic16/main.c (_process_pragma): prefix function with
2339         port->fun_prefix,
2340         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2341         calling assembler, old 18Fxxxx macro is deprecated,
2342         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2343         PC_ASMDIR in while condition,
2344         * (findInstruction): add PC_ASMDIR in while condition,
2345         * (buildCallTree): prefix main with port->fun_prefix,
2346         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2347         identifier for variable with banked access in instructions BTFSS,
2348         BTFSC, BCF, BSF, BTG
2349         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2350         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2351         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2352         perform optimization when enviroment variable NO_REG_OPT is set,
2353         * (insideLRBlock): NEW, return 1 if register is inside an
2354         INF_LOCALREGS block,
2355         * (RemoveRegFromLRBlock): remove a register that is completely
2356         eliminated by register optimization, but it is still left in local
2357         register store/restore in/from stack block,
2358         * (Remove2pcodes): after removing register, check to see if it
2359         should be removed from local register store/restore in/from stack
2360         block,
2361         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2362         DUMMY_READ_VOLATILE,
2363
2364         * device/include/pic16/adc.h: minor prototype modifications and
2365         update,
2366         * device/include/pic16/malloc.h: added GPL notice various
2367         modifications,
2368         * device/include/pic16/stdint.h: NEW, standard header for ints
2369         * device/include/pic16/delay.h: NEW, header for delay functions,
2370         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2371         delay1mtcy,
2372         * device/include/pic16/signal.h: NEW, header providing helper macros
2373         for implementing signal handlers,
2374         * device/include/pic16/stdio.h: added prototypes for functions,
2375         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2376         prototypes for stdin and stdout, added macro PUTCHAR to
2377         automatically implement putchar function prototype,
2378         * device/include/pic16/usart.h: modified and updated USART library,
2379         * device/lib/pic16/libio/adc/,
2380         * device/lib/pic16/libio/i2c: some modifications to improve library
2381         performance,
2382         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2383         family of functions,
2384         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2385         family of functions and other sources,
2386         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2387         of the PIC18Fxx[28] devices,
2388         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2389         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2390         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2391         _do_cinit function, because the previous failed when local variables
2392         where not placed in the same memory bank,
2393         * device/lib/pic16/libsdcc/char/: various modifications to improve
2394         library performance,
2395         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2396         information on the new functions of the c library and more...
2397
2398 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2399
2400         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2401
2402 2005-03-26 Raphael Neider <rneider AT web.de>
2403
2404         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2405           if condition == CARRY)
2406         * (genCmp): adapted to new genSkipc semantics
2407         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2408           on rIfx (genCmp was broken)
2409
2410 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2411
2412         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2413         * src/z80/main.c (_keywords[]),
2414         * src/SDCCglobal.h (struct options),
2415         * src/SDCC.y,
2416         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2417         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2418         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2419         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2420         always available in leading double underscore form. The C99 support is
2421         mostly missing, but it's a start.
2422         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2423         reserved identifier "__data".
2424
2425 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2426
2427         * src/mcs51/peeph.def: fixed bug 1170013
2428
2429 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2430
2431         * device/include/mcs51reg.h: fixed bug 842007
2432
2433 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2434
2435         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2436         last time.
2437
2438 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2439
2440         * src/port.h (struct PORT),
2441         * src/avr/ralloc.c (avr_assignRegisters),
2442         * src/avr/main.c,
2443         * src/ds390/ralloc.c (ds390_assignRegisters),
2444         * src/ds390/main.c,
2445         * src/hc08/ralloc.c (hc08_assignRegisters),
2446         * src/hc08/main.c,
2447         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2448         * src/mcs51/main.c,
2449         * src/pic/ralloc.c (pic14_assignRegisters),
2450         * src/pic/main.c,
2451         * src/pic16/ralloc.c (pic16_assignRegisters),
2452         * src/pic16/main.c,
2453         * src/xa51/ralloc.c (xa51_assignRegisters),
2454         * src/xa51/main.c,
2455         * src/z80/ralloc.c (z80_assignRegisters),
2456         * src/z80/ralloc.h,
2457         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2458         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2459         * src/SDCCcse.h,
2460         * src/SDCCdflow.c (computeDataFlow),
2461         * src/SDCCdflow.h,
2462         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2463         * src/SDCCloop.h,
2464         * src/SDCCcflow.c (*),
2465         * src/SDCCcflow.h,
2466         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2467         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2468         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2469         immedDom() returning wrong block; probably fixes bug #1160833)
2470
2471 2005-03-20 Borut Razem <borut.razem AT siol.net>
2472
2473         * support/scripts/inc2h.pl: WIN32 port
2474
2475 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2476
2477         * device/lib/makefile.in: added abs.c and labs.c
2478
2479 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2480
2481         * device/include/stdint.h: added
2482         * device/lib/abs.c: added
2483         * device/lib/labs.c: added
2484         * device/include/stdlib.h: added abs() and labs() prototypes
2485         * device/lib/libsdcc.lib: added abs and labs
2486         * device/include/float.h,
2487         * device/lib/_fsmul.c,
2488         * device/lib/printf_fast.c,
2489         * device/lib/printf_tiny.c: updated comments
2490
2491 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2492
2493         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2494         bug #1164313
2495
2496 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2497
2498         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2499         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2500
2501 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2502
2503         * device/lib/printf_large.c: removed inline assembly for portability and
2504           readability. Use printf_fast if speed or size are more important.
2505         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2506         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2507
2508 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2509
2510         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2511         prevent compiler warning
2512
2513 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2514
2515         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2516         moved to level 0 and declared as static. Also they are explicit
2517         placed in access bank. This was necessery because some times they
2518         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2519         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2520         optimizations. Currently only compare to unsigned char is implemented,
2521         * src/pic16/gen.c: added fReturnIdx array,
2522         * (struct resolvedIfx) is moved to gen.h and made public,
2523         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2524         * (aopForSym): added an optimization to directly store in stack of
2525         the operand of a SEND iCode,
2526         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2527         but as registers instead (AOP_REG) using the fReturnIdx array,
2528         * (pic16_freeAsmop): remove the freed register from the
2529         _G.sregsAlloc field,
2530         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2531         a compare of 'WREG',
2532         * (pic16_popGetTempRegCond): changed function prototype, now
2533         function takes also a bitVector argument v which holds the current
2534         set of registers that are allocated for stack access by aopForSym,
2535         registers allocated in aopForSym for accessing stack symbols are not
2536         any more part of the functions usedRegs field,
2537         * (genCall): some times aopOp is called for a stack variable to be
2538         send, aopForSym might perform the push, if this is true make sure
2539         that genCall doesn't push the variable twice by testing _G.resDirect,
2540         * (genFunction): changed testing for unspecified interrupt number
2541         from 256 to INTNO_UNSPEC,
2542         * modified selection scheme of frame pointer generation. Previously
2543         if function did use local registers a frame pointer was generated,
2544         now a frame pointer is generated only if function has arguments
2545         (that need PLUSW2 register access), or has stack arguments, or the
2546         compiler is not instructed to omit the frame pointer,
2547         * (genEndFunction): before restoring local registers that were saved
2548         in the function preamble, also restore the registers that *might*
2549         have been allocated for stack access,
2550         * (genRet): removed some old comments,
2551         * (genCmp, the active (RN's) version): added a call to the
2552         pic16_genCmp_special function to perform the compare with a more
2553         robust and optimized way,
2554         * (genInline): a feature has been added in inline code generation,
2555         which allows a wildcard variable substitution when writing inline
2556         assembly. Code is incomplete and experimental therefore undocumented,
2557         * (genCast): changed order of aopOp for result and right to allow
2558         aopForSym to directly load the result if possible,
2559         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2560         perform an optimized compare on some selected special occasions,
2561         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2562         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2563         generate an IVT any more,
2564         * src/pic16/main.c (pic16_optionsTable): added command line option
2565         --optimize-cmp,
2566         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2567         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2568         macros,
2569         * src/pic16/NOTES: Raphael Neider added in list of active developers
2570         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2571         jumptable_end to prevent bug #,
2572         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2573         inCond and outCond fields,
2574         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2575         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2576         turn off register spilling,
2577         * (packRegsForOneUse): synced with other ports' versions although it
2578         is not used currently,
2579         * (pic16_packRegisters): added an optimization while reading
2580         structure bitfields, some registers may be saved (malloc code is
2581         decreased by 80 bytes)
2582
2583 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2584
2585         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2586         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2587         this can be optimized more?
2588
2589 2005-03-10 Raphael Neider <rneider AT web.de>
2590
2591         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2592           genNearPointerGet): (hopefully) fixed access to bitfields via
2593           pointers (p->bitN = x; and x = p->bitN; failed)
2594
2595 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2596
2597         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2598
2599 2005-03-09 Raphael Neider <rneider AT web.de>
2600
2601         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2602
2603 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2604
2605         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2606         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2607           (regTypeNum): set REG_BIT type if necessary
2608         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2609         * support/regression/tests/critical.c: check bug 1144613
2610
2611 2005-03-02 Raphael Neider <rneider AT web.de>
2612
2613         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2614
2615 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2616
2617         * src/avr/ralloc.c (serialRegAssign),
2618         * src/ds390/ralloc.c (serialRegAssign),
2619         * src/hc08/ralloc.c (serialRegAssign),
2620         * src/mcs51/ralloc.c (serialRegAssign),
2621         * src/pic/ralloc.c (serialRegAssign),
2622         * src/pic16/ralloc.c (serialRegAssign),
2623         * src/xa51/ralloc.c (serialRegAssign),
2624         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2625
2626 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2627
2628         * src/SDCCast.c (decorateType): fixed bug 1124787
2629
2630 2005-02-20 Hubert Sack <sack AT digiplan.de>
2631         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2632
2633         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2634         patch #1121755
2635
2636 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2637
2638         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2639         to keep the correct label reference count when adding/removing references
2640         to labels. A peephole file using this is appended to patch #1144962.
2641
2642 2005-02-14 Raphael Neider <rneider AT web.de>
2643
2644         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2645         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2646         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2647           retrievals of result operand's value on assignment
2648
2649 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2650
2651         * device/include/pic16/string.h: modified prototype for memccpy()
2652         to memccpy(void *, void *, char, size_t)
2653         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2654         check whether to omit frame pointer or not,
2655         * (genInline): convert all occurences of "\n" to LF in inline
2656         assembler blocks, this helps formatting the inline text,
2657         * (pic16_loadFSR0): modified prototype,
2658         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2659         removed some 8051 legacy code,
2660         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2661         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2662         before allocating temporary registers in functions,
2663
2664 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2665
2666         * support/regression/tests/bitvars.c: corrected the "fix"
2667
2668 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2669
2670         * support/regression/tests/bitvars.c,
2671         * support/regression/tests/bitwise.c,
2672         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2673
2674 2005-02-10 Raphael Neider <rneider AT web.de>
2675
2676         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2677           different size for Alpha
2678         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2679
2680 2005-02-09 Raphael Neider <rneider AT web.de>
2681
2682         * src/SDCC.lex(doPragma) : save and restore warning options as well
2683           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2684         * have #pragma less_pedantic set the errorlevel to WARNING
2685           (fixes #1117001)
2686         * (cloneOptimize) : fixed wrong malloc's size
2687         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2688           facilitate correct handling of #pragma (save|restore)
2689
2690 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2691
2692         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2693
2694 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2695
2696         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2697
2698 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2699
2700         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2701
2702 2005-02-02 Raphael Neider <rneider AT web.de>
2703
2704         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2705         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2706         * (pic16_storeForReturn): fixed to allow returning function pointers
2707         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2708         * device/include/pic16/{stddef.h,stdbool.h}: added
2709
2710 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2711
2712         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2713
2714 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2715
2716         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2717         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2718          appeared to be required
2719
2720 2005-01-31 Borut Razem <borut.razem AT siol.net>
2721
2722         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2723           include/mcs51 and include/z80 directories to the package
2724
2725 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2726
2727         * src/hc08/gen.c (genFunction): fixed bug #1112752
2728
2729 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2730
2731         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2732
2733 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2734
2735         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2736
2737 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2738
2739         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2740
2741 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2742
2743         * device/include/c8051fxxx.h: removed these 6 files
2744         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2745
2746 2005-01-26 Raphael Neider <rneider AT web.de>
2747
2748         * src/pic16/gen.c (genAssign): fixed assignment from longs
2749           in codespace (were cut to three bytes)
2750         * (genDummyRead): implemented (except for CODESPACE...),
2751           fixed bug #1108575
2752         * src/pic16/glue.c (emitStatistics): beautified
2753         * device/lib/pic16/libm/Makefile: added include path
2754
2755 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2756
2757         * src/z80/gen.c (aopPut): fixed bug #1103902
2758
2759 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2760
2761         * device/lib/expf.c: fixed bug #1095792
2762
2763 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2764
2765         * device/lib/pic16/libm: added Math library sources
2766
2767 2005-01-24 Raphael Neider <rneider AT web.de>
2768
2769         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2770           to enable upcast to pCodeOpReg2 (there is no type tag to
2771           differenciate the two and pic16_popGet2p cast into PCOR2)
2772         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2773           (sizeof(sectNames) changed to sizeof(sectName))
2774           Both patches fix segfaults under MinGW.
2775
2776 2005-01-23 Raphael Neider <rneider AT web.de>
2777
2778         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2779           Safe_[mc]?alloc()'ed variables
2780         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2781           of (byte sized) temporaries (assign them to WREG for now)
2782         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2783           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2784           this might fix SIGSEGVs on MinGW...
2785         * src/SDCCopt.c (killDeadCode): restored original behaviour
2786           (volatile operands might get thrown away though)
2787
2788 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2789
2790         * src/pic16/gen.c: fixed bug #1106975,
2791         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2792         pointer update, INTCON is saved, global interrupts are disabled and
2793         restored after updateing TOS.
2794         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2795         * added function attribute 'shadowregs' to take advantage of shadow
2796         registers,
2797         * added function attribute 'wparam' as an alternative to the wparam
2798         pragma,
2799         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2800         user declares a non-ISR function as 'shadowregs',
2801         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2802
2803 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2804
2805         * .version: bumped version number to 2.4.8
2806         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2807         pic16 port,
2808         * device/lib/pic16/libio/i2c/: I2C module support library,
2809         * device/include/pic16/i2c.h: I2C support library header,
2810         * device/lib/pic16/libc/stdio/: standard IO support sources,
2811         * (printf_small.c): printf_small() source, supports float print,
2812         * (printf_tiny.c): printf_tiny() source, does not support floats,
2813         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2814         enable global optimizations for entire library source, other
2815         Makefiles in the source tree are also modified to reflect this,
2816         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2817         function,
2818         * doc/sdccman.lyx: updated to reflect new changes,
2819         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2820         sym->onStack if-case,
2821         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2822         sbit, idata, _idata, xdata, _xdata,
2823         * added pragma library, to link an external library, (see doc),
2824         * removed command line options, --pomit-config-words, --pomit-ivt,
2825         --pleave-reset-vector,
2826         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2827         when calling assembler to reflect memory model used, also define
2828         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2829         reflect stack model used,
2830         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2831         on stack return NULL,
2832
2833 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2834
2835         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2836           of the operands is volatile. Fixes #1020220
2837
2838 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2839
2840         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2841         * (OptimizeRegUsage): make sure that there is really no other flow where
2842           the first pCode is used
2843
2844 2005-01-22 Raphael Neider <rneider AT web.de>
2845
2846         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2847           to fix #1106967 (pCode->seq are not set up correctly)
2848
2849 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2850
2851         * src/SDCCglue.c (glue): make sure code area is declared before the
2852         static initialization area.
2853
2854 2005-01-21 Raphael Neider <rneider AT web.de>
2855
2856         * device/lib/Makefile.in: fixed test for pic16 install dir
2857         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2858           optimizations
2859         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2860           added --optimize-goto compiler switch and pragma wparam documentation
2861         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2862         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2863           and PRODH closing bug #1071770 (peephole optimizer)
2864
2865 2005-01-19 Raphael Neider <rneider AT web.de>
2866
2867         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2868           cmdLine buffers (used when calling sdcpp...) are large enough
2869           (MAX_PATH=256 truncates arguments leading to system halts when
2870           used in MinGW...)
2871         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2872         * (genUminus): rewritten to for efficiency
2873         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2874           used uninitialized in some cases)
2875         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2876           copy the third byte from the int -- now assumes 0x80 (data memory)
2877         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2878           operands (genAddLit expects the iCode's operands to swapped as
2879           well), fixed leftover bytes (crashed for short left operands)
2880         * (pic16_genMinusDec): performance improvements, removed false
2881           PIC14 emitSKPNCs
2882         * (pic16_genMinus): fixed to cope with differently sized operands
2883         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2884           for --obanksel > 1
2885         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2886         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2887           new banksel optimization
2888         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2889           analysis for temporary registers (segfaults...)
2890         * src/pic16/peeph.def: added rule
2891
2892 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2893
2894         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2895         which converts a float number to its ASCII representation
2896         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2897         functions to convert the fractional and integer part of a float to ASCII,
2898         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2899         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2900         ram
2901         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2902         _STATMEM macros,
2903         * device/include/pic16/adc.h: added GPL info,
2904         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2905         a pCodeOp as tested operand,
2906         * (genNearPointerGet): optimized bit testing, does not use
2907         intermediate register for bit value, test directly instead with
2908         BTFSS, BTFSC, works only for single bits,
2909         * (genpic16Code): dump the name of the iCode in the asm,
2910         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2911         renamed to pic16_decodeOp,
2912         * (serialRegAssign): do not allocate a temporary register for iCode
2913         sequences that test a single bit for 1/0
2914
2915 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2916
2917         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2918         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2919         access stack and frame pointers. They are initially assigned to
2920         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2921         accessing SFRs. Updated all occurences of modification of stack or
2922         frame pointer in gen.c and pcode.c,
2923         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2924         assigning of a literal value to pointers,
2925         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2926         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2927         selected
2928
2929 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2930
2931         * doc/sdccman.lyx: update documentation about stack pragma, added
2932         some info for stack memory models
2933
2934 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2935
2936         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2937
2938 2005-01-08 Raphael Neider <rneider AT web.de>
2939
2940         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2941           udata sections to fix bug #1097823
2942
2943 2005-01-05 Raphael Neider <rneider AT web.de>
2944
2945         * src/pic16/gen.c (genGenericShift): added handling of differently
2946           sized left operand and result
2947
2948 2005-01-04 Raphael Neider <rneider AT web.de>
2949
2950         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2951         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2952           to hold the condition bit)
2953         * added new version of genCmp (old code available via #define)
2954         * added new version of genShiftLeft/genShiftRight in a generic
2955           way, now supports shifting by negative values
2956         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2957           shiftCount (expected by genGenericShift)
2958         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2959         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2960           dump
2961         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2962           is an invalid literal too...)
2963
2964 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2965
2966         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2967         from Raphael Neider,
2968         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2969         for 8-bit literals. This fixes some literal operands which are sign
2970         extended to 16-bits ints when instruction needs only 8-bits.
2971
2972 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2973
2974         * device/lib/logf.c: added mcs51 assembly version
2975         * device/lib/expf.c: added mcs51 assembly version
2976         * device/lib/_logexpf.c: new shared asm code for expf and logf
2977         * device/include/math.h: add defines for assembly math library
2978         * device/lib/Makefile.in: build new _logexpf.c
2979         * device/lib/libfloat.lib: use new _logexpf.c
2980
2981 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2982
2983         * src/pic/device.c
2984         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2985           device types which have less than 0x7f registers.
2986
2987 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2988
2989         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2990
2991 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2992
2993         * device/lib/printf_fast.c: only build on supported arch.
2994         * device/lib/printf_tiny.c: only build on supported arch.
2995         * device/lib/printf_fast_f.c: only build if asm float lib
2996         * device/lib/_fsget1arg.c: only build if asm float lib
2997         * device/lib/_fsget2args.c: only build if asm float lib
2998         * device/lib/_fsnormalize.c: only build if asm float lib
2999         * device/lib/_fsreturnval.c: only build if asm float lib
3000         * device/lib/_fsrshift.c: only build if asm float lib
3001         * device/lib/_fsswapargs.c: only build if asm float lib
3002         * device/include/stdio.h: don't provide print_fast,
3003           print_fast_f, print_tiny prototypes if --xstack used
3004
3005 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3006
3007         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3008         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3009           to the SOURCES
3010
3011 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3012
3013         * device/lib/printf_fast_f.c: same as printf_fast, but
3014           with floating point enabled
3015         * device/lib/printf_fast.c: minor tweaks
3016         * device/include/stdio.h: add printf_fast_f
3017
3018 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3019
3020         * src/SDCCmain.c: make --float-reent default for mcs51
3021         * device/lib/_fsadd.c: added mcs51 assembly version
3022         * device/lib/_fssub.c: added mcs51 assembly version
3023         * device/lib/_fsmul.c: added mcs51 assembly version
3024         * device/lib/_fsdiv.c: added mcs51 assembly version
3025         * device/lib/_fseq.c: added mcs51 assembly version
3026         * device/lib/_fsneq.c: added mcs51 assembly version
3027         * device/lib/_fsgt.c: added mcs51 assembly version
3028         * device/lib/_fslt.c: added mcs51 assembly version
3029         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3030         * device/lib/Makefile.in: add _fscmp to build
3031         * device/lib/libfloat.lib: add _fscmp to build
3032
3033 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3034
3035         * device/lib/_fs2slong.c: added mcs51 assembly version
3036         * device/lib/_fs2sint.c: added mcs51 assembly version
3037         * device/lib/_fs2schar.c: added mcs51 assembly version
3038         * device/lib/_fs2ulong.c: added mcs51 assembly version
3039         * device/lib/_fs2uint.c: added mcs51 assembly version
3040         * device/lib/_fs2uchar.c: added mcs51 assembly version
3041         * device/lib/_slong2fs.c: added mcs51 assembly version
3042         * device/lib/_sint2fs.c: added mcs51 assembly version
3043         * device/lib/_schar2fs.c: added mcs51 assembly version
3044         * device/lib/_ulong2fs.c: added mcs51 assembly version
3045         * device/lib/_uint2fs.c: added mcs51 assembly version
3046         * device/lib/_uchar2fs.c: added mcs51 assembly version
3047         * device/include/float.h: added #define to select asm vs c
3048
3049 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3050
3051         * device/lib/printf_fast.c: improvements to float output
3052         * device/include/float.h: add defines for assembly float library
3053         * device/lib/_fsget1arg.c: receive 1 float arg
3054         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3055         * device/lib/_fsnormalize.c: normalize a float
3056         * device/lib/_fsreturnval.c: return float, various helper routines
3057         * device/lib/_fsrshift.c: right shift a float's mantissa
3058         * device/lib/_fsswapargs.c: swap 2 floats
3059         * device/lib/Makefile.in: build these 6 new files for mcs51
3060         * device/lib/libfloat.lib: add these 6 files to the library
3061
3062 2004-12-26 Borut Razem <borut.razem AT siol.net>
3063
3064         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3065           built by gcc 3.4.2
3066
3067 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3068
3069         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3070           and fully reentrant and register bank neutral.
3071         * device/lib/printf_fast.c: added float (not enabled by default),
3072           added compact/slower integer (also not enabled by default),
3073           improved size/speed of fast integer code, other minor changes
3074         * device/include/stdio.h, device/lib/Makefile.in,
3075           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3076
3077 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3078
3079         * src/pic16/pcode.c: declaring variables other than at the start of a
3080           block is not supported in C by VC6.
3081
3082 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3083
3084         * applied a previous patch from Raphael Neider that wasn't included
3085         in the previous commits, which fixes infinite loops within jumptable
3086         improvements,
3087         * made some fixes that previous patches introduced
3088
3089 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3090
3091         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3092         that fixes an issue with AOP_PCODE asmop's offset,
3093         * (pic16_popCopyReg): update instance field too,
3094         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3095         function of pic port,
3096         * (genCmp, genAnd, genAssign),
3097         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3098
3099 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3100
3101         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3102         variables initial values to idata section,
3103         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3104         variables in some functions. This utilizes parmBytes field of iCode
3105         structure to hold the offset of the variable in stack. (might be
3106         able to use the stack field too?)
3107         * applied patch from Raphael Neider # ### , # ###
3108         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3109         variable initial values in idata section,
3110         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3111         for static variables with initial value
3112         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3113         applied fix in while loop from Raphael Neider.
3114
3115 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3116
3117         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3118         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3119         * src/ds390/ralloc.c (serialRegAssign): spill bits
3120         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3121         * support/Util/SDCCerr.c,
3122         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3123         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3124         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3125
3126 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3127
3128         * device/include/sdcc-lib.h: inserted LGPL, added includes
3129           asm/ds390/features.h and asm/mcs51/features.h
3130         * device/include/asm/default/features.h,
3131         * device/include/asm/gbz80/features.h,
3132         * device/include/asm/z80/features.h: added empty _AUTOMEM
3133           and _STATMEM
3134         * device/include/asm/ds390/features.h,
3135         * device/include/asm/mcs51/features.h: added files with defines for
3136           _AUTOMEM and _STATMEM indicating automatic and static storage class
3137         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3138         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3139         * src/SDCCicode.c (geniCodeCast),
3140         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3141         * src/SDCCloop.c (loopInduction): removed unused variable lr
3142         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3143           to convertToFcall to include char modulo (RFE 1065037), added check
3144           if left operand is unsigned and use abs of literal value
3145         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3146           as it doesn't work after conversion from peephole.def to peephole.rul
3147         * src/mcs51/gen.c (toBoolean): added check for size,
3148           (genModOneByte): optimized code for signed char modulo a literal
3149           power of 2 (thanks to Hubert Sack),
3150           (genRRC): removed unnecessary "clr c",
3151           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3152         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3153           jump optimization,
3154           swapped rules 256.c and 256.d,
3155           extended 256.d by using new multiple checks (thanks Erik),
3156           added rules 256.e and 256.f,
3157           updated rule 261.a and 261.b to new generated code
3158         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3159
3160 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3161
3162         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3163           induction related bugs, including first part of bug #1074377
3164
3165 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3166
3167         * applied patch from bug-report #1076292,
3168         * applied patches for genAnd and Goto-optimizations for Raphael
3169         Neider,
3170         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3171         dump a less iCode information,
3172         * src/pic16/device.h (pic16_options_t): added field debgen,
3173         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3174         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3175         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3176         puclic,
3177         * (various functions): added macros FENTRY and FENTRY2 to functions,
3178         to emit function prologue,
3179         * (various functions): fixed indentation,
3180         * (genNearPointerGet): fixed loading of FSR0,
3181         * (genPackBits): applied patch from Raphael Neider to fix updating
3182         of FSR0 and touching only the modified bits,
3183         * src/pic16/genarith.c (various functions): added macros FENTRY to
3184         emit function prologue in comments,
3185         * src/pic16/pcode.h: added functions debugf2, debugf3,
3186         * src/pic16/ralloc.c: partial fix for packForPush caused
3187         segmentation fault,
3188
3189 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3190
3191         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3192           <stsp AT users.sourceforge.net> with reversed byte order
3193         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3194
3195 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3196
3197         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3198           bug #1074377
3199         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3200         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3201
3202 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3203
3204         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3205
3206 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3207
3208         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3209           conditions,
3210           (setFromConditionArgs): friendly operand parser for peephole rules,
3211           (operandBaseName, operandsNotRelated): new peephole condition
3212           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3213           architecture specific register naming into account, handles n-way
3214           comparisons, and supports quoted literals
3215         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3216
3217 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3218
3219         * src/mcs51/peeph.def: fixed bug #1076940
3220
3221 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3222
3223         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3224
3225 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3226
3227         Adding support for replacing ljmps with sjmps in jumptables
3228         generated for switch statements. For now you need to set the
3229         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3230         Now 4 algorithms for mcs51 jumptable generation are used:
3231         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3232         addresses loaded pc-relative for up to 112 cases and stack-pushing
3233         target addresses loaded with offset from dptr for up to 256 cases.
3234
3235         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3236         * src/mcs51/main.c: adapted constants for switch table generation
3237         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3238
3239 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3240
3241         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3242         * support/regression/tests/bug1057979.c: added test for bug 1073386
3243
3244 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3245
3246         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3247         compilers
3248
3249 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3250
3251         * src/pic16/device.h,
3252         * src/pic16/genarith.c,
3253         * src/pic16/glue.c,
3254         * src/pic16/main.c,
3255         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3256
3257 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3258
3259         Large cummulative patch for pic16 port.
3260         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3261         to call when a stack overflow occurs,
3262         * (malloc.h): added CVS Id tag,
3263         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3264         variable,
3265         * added libc directory. The current version of LibC contains string
3266         functions, ctype functions and macros and some functions of the
3267         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3268         be extensively tested in the future. Standard disclaimer here.
3269         Library is not automatically build yet. But one can build it by
3270         invoking 'make' inside the libc directory.
3271         * added ADC library under libio. Preliminary version yet.
3272
3273         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3274         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3275         aopForRemat() now and not by pic16_aopOp(),
3276         * (pic16_popGetTempReg): removed warning messgae when allocating
3277         temporary registers, its a buggy feature and will be removed,
3278         * (pic16_popGet): set register instance field in AOP_CRY,
3279         * (pic16_outBitC): fixed for results in size greater than 1,
3280         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3281         * (pic16_storeForReturn): optimized return of 0,
3282         * (genCmp): experimental code for new genCmp which uses PIC18's
3283         special compare&skip instructions. Initial tests fail some times
3284         with variables grater than 1 byte in size, so new code is disabled,
3285         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3286         a single bit,
3287         * (genCast): began a fix to optimize the casting of a bit to another
3288         bit, now assigning a bitfield to another bitfield will fail, sorry,
3289         * src/pic16/main.c: disabled the use of lr-support feature,
3290         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3291         * added some function prototypes, added function _debugf prototype,
3292         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3293         bits with offset (case PO_GPR_BIT),
3294         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3295         command line,
3296         * (isBankInstruction): modified to return 0 for no banking instruction,
3297         and 1 for banking instruction,
3298         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3299         caused stop processing pCodes after a inline assembly block,
3300         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3301         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3302         registers when it shouldn't,
3303         * src/pic16/ralloc.c (allocReg): add preliminary support for
3304         supporting a limited set of temporary registers,
3305
3306 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3307
3308         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3309           genDataPointerSet): ensure assignments always copy in MSB to LSB
3310           order,
3311           (loadRegFromAop): recognize CLRH optimization,
3312           (genFunction): optimize RECEIVE iCodes in reentrant functions
3313
3314 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3315
3316         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3317           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3318           selected.
3319         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3320         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3321           contiguous with data
3322
3323 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3324
3325         * device/lib/_gptrget.c (_gptrget),
3326         * device/lib/_gptrgetc.c (_gptrgetc),
3327         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3328           instead of sjmp to ret
3329         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3330           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3331
3332 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3333
3334         * .version: bumped version to 2.4.7
3335         * device/lib/_gptrget.c (_gptrget): is now _naked
3336         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3337         * device/lib/_gptrput.c (_gptrput): is now _naked
3338         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3339           (createFunction): fixed xstack
3340         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3341         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3342           or bit either,
3343           (geniCodeCritical): store original interrupt state in an iTemp bit
3344           var unless stack-auto
3345         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3346         * src/SDCCmain.c (setIncludePath): added include/target to search path
3347         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3348         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3349           prototype,
3350           (processFuncArgs): put bit vars in bit area
3351         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3352           unsaveRBank): fixed xstack,
3353           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3354           (genFunction, genEndFunction): fixed xstack,
3355           (genAssign): optimization don't walk backwards through mem
3356         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3357         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3358         * support/regression/Makefile: also make library (for stack-auto) when
3359           making "all" and added "test-mcs51-xstack-auto"
3360         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3361         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3362         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3363         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3364         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3365           make-library by MAKE_LIBRARY
3366         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3367           regression tests for xstack
3368         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3369         * support/regression/tests/critical.c: test for critical on mcs51
3370
3371 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3372
3373         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3374           built version of sdcc instead of installed version
3375
3376 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3377
3378         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3379         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3380           vprintf.c now
3381         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3382         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3383           WARNING: remove device/lib/build/z80/printf.o by hand when
3384           updating from previous build!
3385         * device/lib/z80/printf.c: updated comment
3386         * support/regression/tests/bug1057979.c: test all ports now
3387         * support/regression/tests/bug1065458.c: file added
3388
3389 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3390
3391         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3392           *_start and *_end symbols for static functions
3393
3394 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3395
3396         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3397           and search crt0.o in all library paths,
3398           (setIncludePath): proper handling of --nostdinc,
3399           (setLibPath): proper handling of --nostdlib
3400         * support/regression/Makefile,
3401         * support/regression/ports/ds390/spec.mk,
3402         * support/regression/ports/gbz80/spec.mk,
3403         * support/regression/ports/hc08/spec.mk,
3404         * support/regression/ports/mcs51/spec.mk,
3405         * support/regression/ports/mcs51-large/spec.mk,
3406         * support/regression/ports/mcs51-stack-auto/spec.mk,
3407         * support/regression/ports/z80/spec.mk: use include and lib files from
3408           built version of sdcc instead of installed version
3409         * doc/sdccman.lyx: fixed typo in --nostdinc
3410
3411 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3412
3413         * src/pic/pcode.c,
3414         * src/pic/device.c,
3415         * src/pic/ralloc.c,
3416         * src/pic/gen.c : added support to generate code for struct bit fields.
3417
3418 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3419
3420         * as/xa51/xa_version.h,
3421         * device/include/errno.h,
3422         * device/include/regc515c.h,
3423         * device/lib/_itoa.c,
3424         * device/lib/_ltoa.c,
3425         * device/lib/ser_ir_cts_rts.c,
3426         * sim/ucsim/xa.src/glob.cc,
3427         * sim/ucsim/xa.src/inst_gen.cc,
3428         * sim/ucsim/xa.src/xa_bit.cc,
3429         * sim/ucsim/xa.src/xa_sfr.cc,
3430         * sim/ucsim/z80.src/inst_dd.cc,
3431         * sim/ucsim/z80.src/inst_fdcb.cc,
3432         * support/scripts/keil2sdcc.pl,
3433         * src/pic16/pic16.dsp,
3434         * src/pic16/pic16a.dsp: corrected cvs line endings
3435         * device/lib/printf_large.c: fixed bug 1057979
3436         * src/pic16/gen.c: fixed non-C standard code
3437         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3438         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3439         * support/regression/ports/mcs51/support.c: reload T1 asap
3440         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3441           pdata use and clear idata startup behaviour
3442         * support/regression/tests/bug1057979.c: added
3443
3444 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3445
3446         * device/examples/ds390/ow390/ad26.h,
3447         * device/examples/ds390/ow390/cnt1d.h,
3448         * device/examples/ds390/ow390/crcutil.c,
3449         * device/examples/ds390/ow390/ownet.h,
3450         * device/examples/ds390/ow390/owsesu.c,
3451         * device/examples/ds390/ow390/swt12.h,
3452         * device/examples/ds390/ow390/swtoper.c,
3453         * device/examples/ds390/ow390/temp10.h,
3454         * device/examples/ds390/ow390/thermodl.c,
3455         * device/examples/ds390/tinitalk/tinitalk.dsp,
3456         * device/examples/ds390/tinitalk/tinitalk.dsw,
3457         * device/examples/mcs51/clock/hw.h,
3458         * device/examples/mcs51/simple2/go.bat,
3459         * device/examples/serialcomm/windows/serial.h,
3460         * device/examples/xa51/dummy.c,
3461         * device/examples/xa51/hello.c,
3462         * device/include/80c51xa.h,
3463         * device/include/at89x051.h: corrected cvs line endings
3464
3465 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3466
3467         * src/pic16/main.c (options): added command line --gstack, to trace
3468         stack over/under flows,
3469         * added pragma 'wparam' to allow passing first byte of function
3470         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3471         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3472         call to __gstack_test function and sets up the symbol as extern,
3473         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3474         * popaop): added call to pic16_testStackOverflow,
3475         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3476         wparamList list,
3477         * (genCall, genPcall): now all parameters are passed via stack
3478         except in functions that are pass to wparam pragma in which WREG is
3479         used too,
3480         * (genPcall): REENTRANT flag is checked to see if variable prototype
3481         contains reentrant keyword, don't call a non-reentrant function, via
3482         a reentrant function pointer or vice versa, functions are never
3483         passed via WREG,
3484         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3485         D.Winkler,
3486         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3487         SIGSEGV when accessing a NULL register stucture,
3488         * (pic16_printGPointerType): modified to handle UPPER modifier for
3489         function initializers, changed prototype of function to simpler one,
3490         * (pic16_printIvalFuncPtr): check to see if function is already
3491         added in externs list,
3492         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3493         optimized a move from W to SFR with a move to the same register
3494         later after a CALL,
3495         * device/lib/pic16/debug: NEW directory, contains debug features
3496         which are enabled when linking with libdebug.lib, currently command
3497         line option --gstack enables stack pointer tracing for over/under
3498         flow, corresponding sources are in debug/gstack
3499
3500 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3501
3502         * doc/sdccman.lyx: updated SDCC version,
3503         * (PIC16 port): update list of command line options,
3504         * src/pic16/device.h (structure pic16_options_t): added field gstack
3505         to enable stack overflow tracing on push/pops,
3506         * src/pic16/device.c (statistics structure): added statistics
3507         structure,
3508         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3509         pic16_dump_int_registers): increase statistics counters for each
3510         * variable which is encountered
3511         * (pic16_dump_usection): emit each .udata variable to its own udata
3512         section,
3513         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3514         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3515         parameters via stack, otherwise use old scheme,
3516         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3517         assembler output file,
3518         * src/pic16/main.c: added command line options --gstack to enable
3519         push/pop tracing for stack overflow,
3520         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3521         instructions): added size of each instruction,
3522         * (pic16_countInstruction): estimate size of instructions in
3523         the_pFile list, inline assembly blocks are not counted,
3524         * (pic16_FixRegisterBanking): trace previous register usage, when
3525         banksel optimizations is greater than 0, don't emit a redudant
3526         banksel directive,
3527
3528 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3529
3530         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3531         * src/pic16/ralloc.c : applied same fix for pic16.
3532         * src/pic/gen.c : tidied it up a little.
3533
3534 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3535
3536         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3537         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3538
3539 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3540
3541         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3542
3543 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3544
3545         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3546         non-reentrant function __modsint in the interrupt function (thus
3547         corrupting math operations during serial I/O)
3548         * device/lib/ser_ir.c: as above, changed buffersize
3549         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3550         256.c,d for zeroing
3551         * doc/Makefile: added option -t for rsync
3552
3553 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3554
3555         * src/SDCCast.h (struct ast),
3556         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3557
3558 2004-10-20 Borut Razem <borut.razem AT siol.net>
3559
3560         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3561         package
3562
3563 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3564
3565         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3566         makefile targets,
3567         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3568         support functions to replace long sequences of MOVFF's from access
3569         bank registers to stack and vice versa,
3570         * src/pic16/device.h: added new field opt_flags, where optimization
3571         flags can be set to enable certain features,
3572         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3573         * pBlock, (genFunction, genEndFunction): surroung loop for
3574         saving/loading used registers in stack with PC_INFO pCodes,
3575         INF_LREGS. Code in between can then be optimized by pCode optimizer
3576         to support function calls,
3577         * (genDataPointerSet): fixed bug which loaded float fields in
3578         structures with corrupt data,
3579         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3580         in a standard way debug info on stderr. Feature used for developing
3581         and debugging only,
3582         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3583         obsolete chunks of code,
3584         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3585         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3586         * pic16/src/pcode.c (pic16_newpCodeInfo,
3587         * (pic16_newpCodeOpLocalRegs),
3588         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3589         feature,
3590         * (pic16_pCodeConstString): printing of the initial value of a
3591         symbol as a comment is inhibited since parsing was already done by
3592         copyStr and output is corrupt,
3593         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3594
3595 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3596
3597         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3598
3599 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3600
3601         * as/mcs51/lkarea.c: removed old K&R style,
3602           (lnksect): changed check on boundary error,
3603           (lnksect2): changed check on boundary error,
3604           (lnksect2): extend XSTK to end of page if size = 1
3605         * as/mcs51/lkmain.c: removed old K&R style,
3606           (Areas51): create l_IRAM symbol
3607         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3608         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3609           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3610         * device/lib/_mullong.c: added version to be compiled with xstack
3611         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3612         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3613         * device/lib/mcs51/crtxstack.asm: fixed comment
3614         * src/SDCCglue.c: maxInterrupts defaults to 0,
3615           (emitMaps): added pdata,
3616           (createInterruptVect): (re)moved default,
3617           (glue): added pdata,
3618           (glue): moved __start__xstack to XSTK with default size 1
3619         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3620           and options.float_rent when options.stackAuto is set,
3621           (linkEdit): only write XDATA_NAME if provided on command line
3622         * src/SDCCmem.h,
3623         * src/SDCCmem.c: added pdata
3624         * src/port.h: added pdata_name to PORT
3625         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3626           (saveRegisters, unsaveRegisters): removed usage of B,
3627           (genMinus): fixed accumulator clash,
3628           (genJumpTab): added comment, this needs another look
3629         * src/mcs51/gen.c: added check for "B in use" paranoia,
3630           added pushB() and popB()
3631         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3632           chance
3633         * src/avr/main.c,
3634         * src/ds390/main.c,
3635         * src/hc08/main.c,
3636         * src/mcs51/main.c,
3637         * src/pic/main.c,
3638         * src/pic16/main.c,
3639         * src/xa51/main.c,
3640         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3641           added PSEG (PAG,XDATA) or NULL to port specifier
3642         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3643         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3644           (_mcs51_genInitStartup): removed __start__xstack equ,
3645           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3646         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3647         * src/z80/gen.c (_rleAppend): fixed warnings
3648         * support/regression/tests/zeropad.c: added pdata test
3649         * .version: bumped to 2.4.6
3650
3651 2004-10-17 Borut Razem <borut.razem AT siol.net>
3652
3653         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3654         as a part of nightly build
3655
3656 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3657
3658         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3659         WREG holds the first byte function parameters,
3660         * (aopForSym): take special case for symbols which are in FARSPACE
3661         but in CODESPACE too,
3662         * (assignResultValue): modified to take into account _G.useWreg,
3663         * (genCall): don't use wreg for parameter passing when function is
3664         declared as reentrant, too, added optimization INCF to stack
3665         pointer when stack parameter count is 1,
3666         * (genFunction, genEndFunction): refurnished and fixed to not using
3667         wreg for passing parameters when function has varargs or is
3668         reentrant, fixed bug with symbol name compare for generating
3669         functions in absolute address,
3670         * (pic16_storeForReturn): refurnished,
3671         * (genCmp): began writing a new version of the function, not ready
3672         yet, therefore it is disabled,
3673         * (genAssign): do not read code memory when assigning a function to
3674         a pointer function,
3675         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3676         array of characters, not pointer,
3677         * (pic16initialComments): in debug mode emit an .ident directive for
3678         the assembler,
3679         * (_process_pragma): emit a new warning type (internal to pic16)
3680         when setting stack to default length, emit a similar warning when
3681         placing a function at absolute address and address is not word aligned
3682         * (_pic16_parseOptions): added 'return TRUE' statement,
3683         * (_pic16_linkEdit): if compiling a source, then add the source's
3684         file object, first in the list of objects to link,
3685
3686 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3687
3688         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3689         * src/pic/main.c : removed VC warning.
3690         * src/pic/gen.c : changed comment.
3691
3692 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3693
3694         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3695         reference to a deprecated symbol _GPTRREG was causing failure to
3696         link. Thanks G. M. Gallant for the info.
3697
3698 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3699
3700         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3701         comments for Bugs item #954788.
3702
3703 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3704
3705         * src/pic16/device.c (pic16_dump_gsection,
3706         * pic16_groupRegistersInSection): handle symbols declared to be in
3707         access bank differently,
3708         * src/pic16/gen.c (struct _G): added field resDirect,
3709         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3710         send values read from stack directly to result and don't allocate
3711         temporary values,
3712         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3713         same registers,
3714         * (pic16_sameRegsOfs): NEW,
3715         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3716         free because they were not allocated from temporary pool,
3717         * pic16_popRegFromString): workaround to fix a problem with
3718         allocating variables twice or never,
3719         * (genGenPointerGet): using PRODL instead of FSR0H,
3720         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3721         instead of FSR0H,
3722         * (genAssign): take advantage of the _G.resDirect flag,
3723         * (genCast): around line 11844, use mov2f instead of directly
3724         MOVFF'ing between operands to account for literal values,
3725         * src/pic16/genutils.c: some new debug functions for gpsim have been
3726         added,
3727         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3728         float with integer part only,
3729         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3730         place variables in access bank
3731         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3732         updated sources to reflect recent changes in gen.c
3733
3734 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3735
3736         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3737         sources that searched for headers in installation path, now the
3738         device/include/pic16 is used,
3739         * src/pic16/glue.c (pic16glue),
3740         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3741         .line directives if not in debug mode, this suppresses assembler's
3742         warnings for ignored directives
3743
3744 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3745
3746         * src/port.h: made reset_regparms prototype void parameter explicit.
3747         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3748         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3749         * doc/sdccman.lyx: documented warning disabling and how to use
3750           printf_large to make it print floats.
3751         * device/include/stdbool.h: NEW
3752         * device/lib/_atof.c,
3753         * device/lib/_divuint.c,
3754         * device/lib/_divulong.c,
3755         * device/lib/expf.c,
3756         * device/lib/printf_large.c,
3757         * device/lib/sincosf.c,
3758         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3759         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3760           a completely reentrant lib.
3761
3762 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3763
3764         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3765         * device/include/pic16/stdio.h: fixed bug with colon
3766
3767 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3768
3769         * device/include/pic16/stdio.h,
3770         * device/include/pic16/stdlib.h,
3771         * device/include/pic16/math.h: NEW
3772         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3773         declared as _naked to reduce overhead
3774         * device/lib/Makefile.in (target port-specific-objects-pic16):
3775         changed * to *.* so to ignore the CVS directory,
3776         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3777         stacked variables back in stack,
3778         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3779         corruption
3780
3781 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3782
3783         * .version: bumped version number to 2.4.5
3784         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3785         * support/Util/SDCCerr.c (messages structure): added entry for
3786         W_POSSBUG2
3787
3788         Large cumulative patch for pic16 port and libraries.
3789         * device/include/pic16/sdcc-lib.h,
3790         * device/include/pic16/stdarg.h,
3791         * device/include/asm/pic16/features.h,
3792         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3793         * device/include/pic16/float.h: changes reentrant keyword with
3794         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3795         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3796         updated target build-libraries to include objects from gptr,
3797         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3798         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3799         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3800         all function headings,
3801         * src/SDCCmain.c: added global parameter userIncDirsSet,
3802         * (parseCmdLine): when option -I is encountered add directory to
3803         userIncDirsSet too,
3804         * src/version.awk: added space between control and long,
3805         * src/pic16/NOTES: added some notes for the port,
3806         * src/pic16/gen.c: added prototype for mov2fp function,
3807         * (fReturnpic16[]): properly named return value registers,
3808         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3809         * (aopForSym): added code to handle symbols with onStack flag set,
3810         symbols onStack are allocated PTRSIZE bytes,
3811         * (aopFreeAsmop): handles special case where asmops are stack objects,
3812         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3813         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3814         added argument lock to trace flaws in allocating temporary registers
3815         when developing port,
3816         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3817         * (pic16_popRegFromString): reenabled allocating a direct register
3818         from string,
3819         * (assignResultValue): various beautifications,
3820         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3821         referenced function argument,
3822         * (genIpush): reenabled to allow stacked arguments, handles only
3823         ic->parmPush iCodes,
3824         * (genCall, genPcall): major changes to allow for variable argument
3825         functions, fixed a bug with falsely restoring stack pointer after
3826         returning from call,
3827         * (genFunction): pending code for critical function,
3828         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3829         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3830         * (genNearPointerGet): fixed bug with indirect reading, was always
3831         reading from INDF0
3832         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3833         pointers,
3834         * (genAddrOf): rewrote code to take address of a stacked function parameter
3835         * (genCast): fixed casting to generic pointer type,
3836         * src/pic16/gen.h: added AOP_STA,
3837         * (struct asmop): added field stk,
3838         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3839         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3840         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3841         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3842         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3843         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3844         generic pointers,
3845         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3846         and library paths,
3847         * (pic16_port structure): generic pointer size is set to 3,
3848         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3849         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3850         compiler warning,
3851         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3852         operand is an iTemp,
3853
3854 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3855
3856         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3857         * debugger/mcs51/simi.c: addapt new syntax of s51
3858
3859 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3860
3861         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3862         * src/pic16/pcode.c: commented out some calls to free() in order to
3863         fix bug #989576,
3864
3865 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3866
3867         * src/SDCCicode.h,
3868         * src/SDCCicode.c (isiCodeInFunctionCall),
3869         * src/avr/ralloc.c (selectSpil),
3870         * src/pic/ralloc.c (selectSpil),
3871         * src/pic16/ralloc.c (selectSpil),
3872         * src/ds390/ralloc.c (selectSpil),
3873         * src/hc08/ralloc.c (selectSpil),
3874         * src/xa51/ralloc.c (selectSpil),
3875         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3876         stack in the middle of a function call sequence (fixes bug #1020268)
3877         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3878         costs associated with the minimum switch case.
3879
3880 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3881
3882         * src/SDCC.lex: fixed bug #1030549
3883
3884 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3885
3886         * src/SDCCcse.h (struct cseDef),
3887         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3888         over a function call if the CSE is derived from a symbol whose
3889         address has been taken (fixes bug #1029883)
3890         * support/regression/tests/bug-1029883: a new regression test for
3891         this bug
3892
3893 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3894
3895         * src/hc08/gen.c (emitinline): fixed bug #1029778
3896         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3897         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3898         and starts toward RFE #905167)
3899
3900 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3901
3902         * src/pic16/gen.c (mov2f): New function to move an operand to
3903         another without considering if it is a literal or a register,
3904         * (pic16_sameRegs): don't check if they are both AOP_REG,
3905         * (AccRsh): removed andmask=0 lines,
3906         * (genLeftShift): duplicated to be improved in future versions,
3907         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3908         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3909         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3910         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3911         * (insertBankSwitch): fixed inserting banksel directives algorithm
3912         for instructions that follow a skip instruction, this fixes a report
3913         for broken subtraction code generation,
3914         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3915         iCode is a left op, just in case result and right share the same
3916         registers
3917
3918 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3919
3920         * src/hc08/main.c,
3921         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3922         preservation of HX
3923         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3924         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3925         on 2004-09-12; it was buggy
3926
3927 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3928
3929         * src/SDCCsymt.h: removed RESULT_CHECK
3930         * src/SDCCast.c,
3931         * src/SDCCglue.c,
3932         * src/SDCCval.c,
3933         * src/pic/glue.c,
3934         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3935
3936 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3937
3938         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3939         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3940         configuration values no more rejected by compiler, they are assigned
3941         to configuration registers with a warning message instead,
3942         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3943         the for-loop so last conf register is emitted too,
3944         * (_pic16_initPaths): link library libsdcc.lib by default,
3945         * (_hasNativeMulFor): modified test for multiplication according to
3946         Raphael Neider's remarks. Integer multiplication is also done with
3947         support functions,
3948         * device/include/pic16/pic18fregs.h: corrected type error in while
3949         testing and including 18f6720 header file
3950
3951 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3952
3953         * src/pic16/device.h (pic16_options): removed field use_crt,
3954         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3955         until an optimization to handle single bits is added,
3956         * (pic16_loadFSR0): moved before genUnpackBits,
3957         * (genAnd): some white lines removed,
3958         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3959         leave_reset flags in pic16_options when using crt modules,
3960
3961 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3962
3963         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3964           for bugs 898889 & 979599. Also used some safer print instructions.
3965
3966 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3967
3968         * src/pic16/device.h (pic16_options_t): added field use_crt,
3969         crt_name, no_crt,
3970         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3971         catch a probable future bug,
3972         * src/pic16/gen.c: aopIdx function commented out,
3973         * (genAssign): commented out old code which used aopIdx,
3974         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3975         code, added if conditionals to take into account the --use-crt
3976         command line options,
3977         * src/pic16/main.c (pic16_optionsTable): added new command line
3978         options, --use-crt= and --no-crt,
3979         * (_pic16_linkEdit): now the proper crt object is added in the
3980         linker command line except than when --no-crt is specified,
3981         * src/pic16/pcode.c,
3982         * src/pic16/pcode.h: added some structures and functions for a new
3983         optimization scheme to compansate for instruction overhead between
3984         same iCodes, this scheme is currently under development and is not
3985         working in any way,
3986         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3987         to && operator,
3988         * device/lib/pic16/startup/crt0i.c,
3989         * device/lib/pic16/startup/crt0iz.c: added global char variable
3990         __uflags to force the generation of an idata section
3991
3992 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3993
3994         * doc/Makefile,
3995         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3996         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3997
3998 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3999
4000         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4001         Frieder) and clarified the default code optimization mode
4002
4003 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4004
4005         * src/SDCC.lex (doPragma, process_pragma),
4006         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4007         "opt_code_size", and "opt_code_balanced"
4008         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4009         regrouped options by category, added support for category headers
4010         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4011         and "--opt-code-size"
4012         * doc/sdccman.lyx: documented these new options and pragmas
4013         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4014         preference into account
4015
4016 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4017
4018         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4019           geniCodePreDec): Fixed bug 904237 by generating a warning
4020         * src/SDCCerr.h,
4021         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4022
4023 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4024
4025         * src/pic/device.c : When no max ram set validate full memory range.
4026         * src/pic/pcode.c,
4027         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4028
4029 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4030
4031         * device/lib/_gptrget.c,
4032         * device/lib/_gptrput.c: updated comment
4033         * device/lib/calloc.c,
4034         * device/lib/free.c,
4035         * device/lib/malloc.c,
4036         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4037         * src/SDCCcse.c (cseBBlock),
4038         * src/SDCCicode.c (printOperand, geniCodeArray),
4039         * src/SDCCicode.h (struct operand): fixed bug 868103
4040         * support/regression/tests/bug-868103.c: added
4041         * src/SDCCast.c (searchLitOp),
4042         * src/SDCCcse.h (struct cseDef),
4043         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4044         * src/SDCCicode.h (struct operand),
4045         * src/SDCCsymt.h (struct sym_link),
4046         * src/avr/gen.c (hasInc),
4047         * src/ds390/gen.c (hasInc),
4048         * src/hc08/gen.c (genPlusIncr, hasInc),
4049         * src/mcs51/gen.c (hasInc),
4050         * src/pic16/glue.c (pic16_printIvalChar),
4051         * src/pic16/ralloc.c (regWithIdx),
4052         * src/xa51/gen.c (hasInc) : removed warnings
4053         * src/SDCCast.c (createBlock): added comment ???
4054         * src/hc08/ralloc.c: updated comments
4055
4056 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4057
4058         * doc/sdccman.lyx: updated section on switch statements, added
4059         section about semaphore locking
4060         * doc/Makefile: added option -info for latex2html
4061         * device/lib/_gptrget.c,
4062         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4063
4064 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4065
4066         * src/pic/device.h,
4067         * src/pic/device.c,
4068         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4069          maxram is less than 0x100.
4070
4071 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4072
4073         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4074
4075 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4076
4077         * src/port.h,
4078         * src/mcs51/main.c,
4079         * src/ds390/main.c,
4080         * src/z80/main.c,
4081         * src/hc08/main.c,
4082         * src/pic/main.c,
4083         * src/pic16/main.c,
4084         * src/avr/main.c,
4085         * src/xa51/main.c
4086         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4087         a jump table is the best form for a switch statement, including
4088         automatic insertion of missing cases to make the case range
4089         continuous. Developed in collaboration with Frieder Ferlemann.
4090
4091 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4092
4093         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4094         accumulator result if it needs sign extension
4095
4096 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4097
4098         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4099
4100 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4101
4102         * device/lib/gbz80/printf.c,
4103         * device/lib/z80/printf.c: removed define for NULL
4104
4105 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4106
4107         * as/xa51/xa_link.c,
4108         * device/examples/ds390/ow390/ad26.c,
4109         * device/examples/ds390/ow390/cnt1d.c,
4110         * device/examples/ds390/ow390/counter.c,
4111         * device/examples/ds390/ow390/ds2480.h,
4112         * device/examples/ds390/ow390/ds2480ut.c,
4113         * device/examples/ds390/ow390/findtype.c,
4114         * device/examples/ds390/ow390/gethumd.c,
4115         * device/examples/ds390/ow390/owllu.c,
4116         * device/examples/ds390/ow390/ownetu.c,
4117         * device/examples/ds390/ow390/swt12.c,
4118         * device/examples/ds390/ow390/swtloop.c,
4119         * device/examples/ds390/ow390/temp.c,
4120         * device/examples/ds390/ow390/temp10.c,
4121         * device/examples/ds390/ow390/thermo21.c,
4122         * device/examples/ds390/ow390/tinilnk.c,
4123         * device/examples/ds390/ow390/tstfind.c,
4124         * device/examples/serialcomm/windows/serial.cpp,
4125         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4126         * device/include/reg51.h: fixed line endings for cvs
4127
4128 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4129
4130         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4131         packRegsForAccUse, packRegisters): new accumulator register
4132         packing algorithm
4133         * support/regression/ports/hc08/support.c (_putchar): suppress
4134         warning of unused variable
4135         * src/SDCCicode.c: added SWAP entry to codeTable
4136
4137 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4138
4139         * device/lib/sprintf.c: forgot to add this file before previous commit
4140
4141 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4142
4143         * src/pic16/gen.c (genPackBits): added operand right in function
4144         parameters, load result directly if p_type is POINTER (that is
4145         called by genNearPointerSet)
4146         * (genUnPackBits): added operand left in function parameters,
4147         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4148         FSR0 if accessing bitfields,
4149
4150 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4151
4152         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4153           _print_format; updated printf, sprintf, vsprintf
4154         * device/include/asm/default/features.h: corrected comment/define
4155         * device/lib/Makefile.in: added sprintf.c
4156         * device/lib/libsdcc.lib: added sprintf module
4157         * device/lib/printf_large.c,
4158         * device/lib/vprintf.c,
4159         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4160           into these 3 files
4161         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4162         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4163         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4164           hc08 test
4165         * support/regression/tests/zeropad.c: define idata as data for hc08
4166
4167 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4168
4169         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4170         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4171         labels are referenced at least once (even if a reference is not found)
4172         * src/hc08/gen.c (emitcode): set isComment flag for comments
4173         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4174         loads), rules 6a..6b (optimize jumps to return)
4175
4176 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4177
4178         * device/lib/acosf.c (acosf),
4179         * device/lib/asinf.c (asinf),
4180         * device/lib/atanf.c (atanf),
4181         * device/lib/ceilf.c (ceilf),
4182         * device/lib/cosf.c (cosf),
4183         * device/lib/coshf.c (coshf),
4184         * device/lib/cotf.c (cotf),
4185         * device/lib/fabsf.c (fabsf),
4186         * device/lib/floorf.c (floorf),
4187         * device/lib/log10f.c (log10f),
4188         * device/lib/logf.c (logf),
4189         * device/lib/sinf.c (sinf),
4190         * device/lib/sinhf.c (sinhf),
4191         * device/lib/sqrtf.c (sqrtf),
4192         * device/lib/tanf.c (tanf),
4193         * device/lib/tanhf.c (tanhf),
4194         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4195         replaced all instances of "reentrant" in the library functions
4196         defined in math.h with this macro.
4197         * support/regression/tests/float_trans.c: reenabled test for hc08
4198
4199 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4200
4201         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4202         erroneously deleted
4203
4204 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4205
4206         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4207         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4208         multi-byte volatile operands are used
4209         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4210         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4211         initialization to area GSINIT0 so that it would always precede
4212         any static initializers in GSINIT
4213         * support/regression/tests/zeropad.c: fixed idata define for hc08
4214         * support/regression/tests/bug-927659.c,
4215         * support/regression/tests/float_trans.c: disabled tests for hc08
4216         pending missing library routines
4217         * .version: increased version number to 2.4.4 - hc08 port now passes
4218         regression tests
4219
4220
4221 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4222
4223         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4224         * Makefile.common.in,
4225         * as/Makefile,
4226         * as/hc08/Makefile.in,
4227         * as/mcs51/Makefile.in,
4228         * as/z80/Makefile.in,
4229         * debugger/mcs51/Makefile.in,
4230         * device/include/Makefile.in,
4231         * device/lib/Makefile.in,
4232         * doc/Makefile,
4233         * link/Makefile,
4234         * link/z80/Makefile.in,
4235         * packihx/Makefile.in,
4236         * sim/ucsim/main_in.mk,
4237         * sim/ucsim/avr.src/Makefile.in,
4238         * sim/ucsim/doc/Makefile.in,
4239         * sim/ucsim/gui.src/serio.src/Makefile.in,
4240         * sim/ucsim/hc08.src/Makefile.in,
4241         * sim/ucsim/s51.src/Makefile.in,
4242         * sim/ucsim/xa.src/Makefile.in,
4243         * sim/ucsim/z80.src/Makefile.in,
4244         * src/Makefile.in,
4245         * support/cpp2/Makefile.in,
4246         * support/librarian/Makefile,
4247         * support/makebin/Makefile: added DESTDIR to the install path proposed
4248         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4249         * doc/sdccman.lyx: added DESTDIR documentation
4250
4251 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4252
4253         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4254         instruction for interrupt handlers, use fast returns when returning
4255         from high priority interrupts
4256
4257 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4258
4259         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4260         code generation
4261         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4262         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4263         bugs, ported much of Bernhard's code from mcs51
4264         * src/mcs51/gen.c (genSend),
4265         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4266         than one when calling a reentrant function
4267         * device/lib/_mullong.c: defined an alternate struct layout for big
4268         endian ports (hc08)
4269
4270 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4271
4272         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4273         test
4274
4275 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4276
4277         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4278         are sane and complete before asking the port its prefered parameter
4279         passing method (fixes bug #1017633)
4280         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4281         and _ret3
4282
4283 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4284
4285         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4286         problem in bitfields >= 8 bits.
4287
4288 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4289
4290         * src/SDCCsymt.c: undid changes that were not meant to be committed
4291
4292 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4293
4294         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4295
4296 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4297
4298         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4299           copied and wrong bit got inverted
4300
4301 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4304         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4305         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4306         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4307         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4308         assignments to bitfields at known addresses
4309         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4310         reads from bitfields at known addresses
4311         * src/hc08/ralloc.c (packRegisters),
4312         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4313         genhc08Code): optimize pointer get values used as conditionals
4314         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4315         and branch
4316
4317 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4318
4319         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4320         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4321         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4322         as conditionals
4323
4324 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4325
4326         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4327
4328 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4329
4330         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4331         related problems
4332
4333 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4334
4335         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4336
4337 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4338
4339         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4340         mcs51 port
4341
4342 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4343
4344         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4345
4346 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4347
4348         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4349         cases use more compact code.
4350
4351 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4352
4353         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4354
4355 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4356
4357         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4358
4359 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4360
4361         * src/SDCCsymt.h,
4362         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4363         parameter of changePointer() from symbol* to sym_link*
4364         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4365         * src/SDCCsymt.c (compareType): void* type is castable to other
4366         pointers, but not necesarily an exact match.
4367         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4368         is no longer blindly treated as an exact match.
4369         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4370
4371 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4372
4373         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4374
4375 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4376
4377         * src/pic/gen.c,
4378         * src/pic/pcode.c,
4379         * src/pic/ralloc.h,
4380         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4381
4382 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4383
4384         * src/pic/device.c,
4385         * src/pic/device.h,
4386         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4387
4388 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4389
4390         * src/mcs51/gen.c (emitcode): fixed bug #992819
4391
4392 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4393
4394         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4395           there's no need to make it worse
4396
4397 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4398
4399         * src/mcs51/ralloc.c (deassignLR),
4400         * src/ds390/ralloc.c (deassignLR),
4401         * src/hc08/ralloc.c (deassignLR),
4402         * src/z80/ralloc.c (deassignLR),
4403         * src/pic/ralloc.c (deassignLR),
4404         * src/pic16/ralloc.c (deassignLR),
4405         * src/avr/ralloc.c (deassignLR),
4406         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4407         rlivePoint): fixed another part of bug #971834
4408
4409 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4410
4411         * src/z80/main.c: enabled "critical" keyword
4412         * src/z80/mappings.i,
4413         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4414         functions (fixes bug #979646)
4415         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4416
4417 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4418
4419         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4420           such as c:\mydir.
4421
4422 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4423
4424         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4425           doesn't disable too much optimizations
4426
4427 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4428
4429         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4430
4431 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4432
4433         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4434
4435 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4436
4437         * src/pic/gen.c tidied up tabs
4438         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4439         * src/pic/main.c tidied up tabs
4440         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4441         * src/pic/pcoderegs.c tidied up tabs
4442         * src/pic/ralloc.c tidied up tabs
4443
4444 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4445
4446         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4447         to S_FIXED for pic16 port and when symbol is not in level 0,
4448         allocate for S_REGISTER storage class and pic16 port, too,
4449         * src/pic16/device.h: prototype for checkSym,
4450         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4451         * (pic16_assignConfigWordValue): test the value and the mask to
4452         validate that the value is suitable for the configuration word,
4453         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4454         collect extern declared symbols, don't emit symbol twice, check
4455         first if symbol is in publics set first,
4456         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4457         * added command line '--fstack' which enables an experimental
4458         feature for stack access, too buggy to be used yet...
4459         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4460         * (pic16_allocDirReg): when register has storage class S_REGISTER
4461         allocate in pic16_dynAccessRegs,
4462         * device/include/pic16/pic18f????.h: modified configuration word
4463         naming convention, words started as CONFIG0H but should be CONFIG1H
4464
4465 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4466
4467         * device/include/mcs51reg.h: fixed bug 970993
4468
4469 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4470
4471         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4472         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4473         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4474         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4475         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4476         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4477           error/warning numbers,
4478           added function setWarningDisabled()
4479         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4480         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4481           _memcmp.c _memmove.c calloc.c realloc.c free.c
4482         * support/regression/tests/malloc.c: added tests for new functionality
4483         * support/regression/tests/zeropad.c: added tests for truncated initializers
4484           and initialized char arrays starting with '\x0'
4485         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4486
4487 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4488
4489         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4490
4491 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4492
4493         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4494         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4495         peephole 177.e. Thanks to anonymous
4496
4497 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4498
4499         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4500         function isn't used in the source but referenced as a
4501         variable initializer then declare it as extern in .asm file
4502
4503 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4504
4505         * .version: increased version number to 2.4.3
4506
4507         Adding version extension according to ChangeLog CVS revision
4508         * src/Makefile.in (target all): added dependency 'version.h'
4509         * (rule version.h): added rule to create version.h from ChangeLog,
4510         * (rule dep): added dependency version.h,
4511         * src/version.awk: AWK script to create version.h
4512         * src/SDCCdwarf2.c (dwWriteModule),
4513         * src/SDCCglue.c (initialComments),
4514         * src/SDCCmain.c (printVersionInfo): modified to write after
4515         version string the version extension number,
4516         * src/SDCCutil.c: included "version.h"
4517         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4518         number,
4519         * src/SDCCutil.h: added prototype for getBuildNumber
4520
4521         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4522         includeDirsSet, too,
4523         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4524         const char [] is found in function prototype...
4525
4526         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4527         moving to WREG with source is already in WREG,
4528         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4529         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4530         * (aopForSym): stack'ed symbols are partially supported, added
4531         if-clause to support symbols in FARSPACE,
4532         * (sameRegs): added test for AOP_ACC to see if registers are same,
4533         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4534         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4535         * (pic16_popRegFromString): will not allocate a new register if it
4536         doesn't find one by name, bug may have introduced...
4537         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4538         * (genIpush): revived to use pic16 port's stack,
4539         * (genAddrOf): added incomplete case for stack'ed operand,
4540         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4541         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4542         can handle multibyte operands,
4543         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4544         * (pic16initialComments): added message for MPLAB compatibility
4545         mode enabled,
4546         * src/pic16/main.h: prototype for pic16_mplab_comp,
4547         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4548         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4549         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4550         because of increased complexity of procedure,
4551         * (_process_pragma): stack pragma changed to format 'stack pos len',
4552         emit symbol '_stack_end' to conform with gplink,
4553         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4554         to search for register,
4555         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4556         PO_GPR_REGISTER,
4557         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4558         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4559         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4560         case for PO_GPR_REGISTER,
4561         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4562         dies, the new era is ahead !...
4563         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4564         pic16_dynInternalRegs,
4565         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4566         * (pic16_allocDirReg): minor optimizations and bug fixes,
4567         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4568
4569         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4570         load stack and frame pointer with address of 'stack_end' symbol
4571
4572 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4573
4574         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4575         without source code but only variable initializers
4576
4577 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4578
4579         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4580         external are not declared as extern to reduce overhead while linking
4581
4582 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4583
4584         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4585
4586 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4587
4588         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4589           Yee Keat for the patch
4590         * src/SDCCast.c (decorateType): fixed bug #979599
4591         * src/ds390/gen.h: removed local fReturnSizeDS390
4592         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4593         * src/ds390/gen.c (genAnd, genOr, genXor),
4594         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4595
4596 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4597
4598         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4599         add relFilesSet to $3, manipulate $2 to handle linking of object
4600         files without source files in command line,
4601         * device/include/pic16 (all headers): added ID location macros,
4602         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4603         entries for ID location bytes,
4604         * (pic16_assignIdByteValue): NEW,
4605         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4606         added field dumpcalltree to pic16_options_t,
4607         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4608         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4609         emitting rFalseIfx label after check_carry label,
4610         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4611         pic16_emitDIRegs), NEW
4612         * (pic16glue): dump .calltree file when option --calltree found,
4613         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4614         * (_pic16_genAssemblerPreamble): emit ID locations after
4615         configuration registers,
4616         * (pic16_linkCmd): modifications of the link command,
4617         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4618         * (pic16_pCodeInitRegisters): don't init stack registers,
4619         * (pic16_findPrevInstruction): fixed bug,
4620         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4621         bug with immediate registers,
4622         * (buildCallTree): traces stack push and pop,
4623         * (pct2): dump also stack usage for each function,
4624         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4625         * (pic16_allocDirReg): various modifications,
4626         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4627         fixed to 1,
4628
4629 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4630
4631         * src/pic16/pcode.c: removed buggy double colon
4632
4633 2004-07-01 Borut Razem <borut.razem AT siol.net>
4634
4635         * support/scripts/sdcc.nsi: added include/pic16 to setup
4636
4637 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4638
4639         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4640         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4641         target 'clean',
4642         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4643         specific command line arguments. Also added sample lkr script
4644         for placing a variable at a specific memory bank.
4645         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4646         at a specific memory bank,
4647         * (pic16_dump_isection): fixed bug which caused string literals to
4648         be omitted when dumping idata section,
4649         * (pic16_groupRegistersInSection): added code to handle registers
4650         in specific memory banks,
4651         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4652         public, all references are renamed too,
4653         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4654         AOP_DPTR2,
4655         * (pic16_storeForReturn): added case to handle when dest is WREG,
4656         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4657         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4658         pic16_rel_udata, check to see if that register is marked as being
4659         a member of a specific memory bank,
4660         * (pic16_printIvalCharPtr): added code to add string literals either
4661         to code or the idata sections,
4662         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4663         also accept the 'udata' pragma,
4664         * src/pic16/main.h: new structure types sectName and sectSym
4665         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4666         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4667         * (pic16_findPrevInstruction): fixed, it returned nothing,
4668         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4669         instruction combinations,
4670         * (pic16_FixRegisterBanking): heavily reorganised,
4671         * (pic16_AnalyzeBanking): if generating banksel directives is
4672         disabled, then don't call FixRegisterBanking at all,
4673         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4674         completely removed,
4675         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4676
4677 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4678
4679         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4680         Phuah Yee Keat <yk.phuah AT nestac.com>
4681
4682 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4683
4684         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4685         correctly the IVT even if it is relocated to some other location
4686
4687 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4688
4689         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4690         * device/include/pic16/pic18f2220.h: NEW,
4691         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4692         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4693         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4694         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4695         nodefaultlibs, ivt_loc is the location of the interrupt vector
4696         table, and nodefaultlibs signs that default libraries should not be
4697         linked in link stage,
4698         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4699         according to --ivt-loc argument,
4700         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4701         when pragma stack is found,
4702
4703 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4704
4705         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4706         256 (range check), 257 (do while), 258.a-f (bit banging
4707         f.e. on 3-wire SPI bus)
4708
4709 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4710
4711         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4712         variables used exclusively within a loop
4713
4714 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4715
4716         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4717
4718 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4719
4720         * src/SDCClrange.c (computeClash): fixed bug #971834
4721
4722 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4723
4724         * src/mcs51/gen.c (genCmp): fixed bug #975903
4725         * src/hc08/gen.c (operandsEqu),
4726         * src/ds390/gen.c (operandsEqu),
4727         * src/z80/gen.c (operandsEqu),
4728         * src/pic/gen.c (operandsEqu),
4729         * src/pic16/gen.c (operandsEqu),
4730         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4731         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4732
4733 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4734
4735         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4736
4737 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4738
4739         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4740         default case in switch statement,
4741         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4742         to eliminate problem with initialisation of pointers, but problem
4743         still exists,
4744         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4745         * (emitStaticSegment): removed various lines emitting debug info,
4746         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4747         added processor registers for utilizing EEPROM,
4748         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4749         configurable and set 8
4750
4751 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4752
4753         * .version: increased version number to 2.4.2,
4754
4755         Cumulative patch for pic16 port
4756         * src/pic16/device.c: changed scheme to dump initial values for
4757         variables in idata segment, all print_idata* functions were removed,
4758         now the pic16_printIval* will be called,
4759         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4760         * _pic16_printPointerType, pic16_printPointerType,
4761         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4762         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4763         NEW, similar to the respective functions in SDCCglue.c,
4764         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4765         way, emitting hex bytes,
4766         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4767
4768 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4769
4770         * src/avr/ralloc.c (serialRegAssign),
4771         * src/xa51/ralloc.c (serialRegAssign),
4772         * src/pic/ralloc.c (serialRegAssign),
4773         * src/pic16/ralloc.c (serialRegAssign),
4774         * src/hc08/ralloc.c (serialRegAssign),
4775         * src/z80/ralloc.c (serialRegAssign),
4776         * src/ds390/ralloc.c (serialRegAssign),
4777         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4778
4779 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4780
4781         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4782         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4783
4784 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4785
4786         Cumulative patch for pic16 port:
4787         * src/pic16/device.h (typedef PIC16_device) modified fields for
4788         defining microcontrollers,
4789         * src/pic16/device.c: added new info for all devices in Pics16 array,
4790         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4791         to be optimised out by the pCode optimiser,
4792         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4793         specially, bug reported by G.M. Gallant,
4794         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4795         as force'd so that cannot be optimised out by pCode optimiser,
4796         * src/pic16/pcode.c,
4797         * src/pic16/pcodepeeph.c,
4798         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4799         they are disabled by default, but can be enabled explicit with
4800         command argument --denable-peeps, for testing,
4801         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4802         --pomit-ivt in COMPILE_FLAGS
4803
4804 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4805
4806         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4807           compilation on MSVC
4808
4809 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4810
4811         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4812
4813 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4814
4815         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4816         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4817
4818 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4819
4820         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4821         would only assign 0x300001 register.
4822
4823 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4824
4825         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4826         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4827
4828 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4829
4830         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4831         for ds80c400
4832         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4833         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4834         added peephole 254 (left shift), 255 (jump table)
4835
4836 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4837
4838         * device/lib/Makefile.in: removed comment line with model-pic16,
4839         * (target port-specific-objects-pic16): the libraries and objects
4840         are copied to the build directory form the device/lib/pic16/bin
4841         directory
4842
4843         Cumulative patch concerning pic16 port:
4844         * library directory has been re-organized,
4845         * added support for PIC18F1220,
4846         * added headers and library sources for chips 18f1220,18f6520,
4847         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4848
4849         * configuration registers setting has changed, now each supported
4850         device has a complete description of the registers it uses,
4851         * all initialisations are moved to idata sections, these section
4852         can be absolute or relocatable,
4853         * fixed initialisation of codespace variables,
4854         * fixed warning about PCLATU and gpsim,
4855         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4856         * (genAssign): use table reads when assigning from variables in codespace,
4857         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4858         char/int variables placed in codespace,
4859         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4860         registers set in .asm file, no need for --pomit-config-words anymore,
4861         * (pic16glue): some 8051 legacy segments are commented out
4862         (to be removed completely),
4863         * added support for alternative assembler and linker with --asm=
4864         and --link= command line arguments,
4865         * peepholes are disabled automatically in the port, no need to
4866         specify on command line,
4867         * port supports natively char/int/long multiplication, but converts
4868         all divisions to support functions,
4869         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4870         to the file set in variable $2,
4871         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4872         strings in ASCII format and not in hex,
4873         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4874         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4875         allocate proper register if iCodes aren't temporary,
4876
4877 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4878
4879         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4880
4881 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4882
4883         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4884         is commented out
4885
4886 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4887
4888         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4889         computed address is reused
4890         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4891         multi-byte bitfields
4892
4893 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4894
4895         * src/z80/gen.c: (genArrayInit): must check for pointers too
4896
4897 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4898
4899         * support/regression/tests/zeropad.c: never meant to commit the
4900           nestedstruct test: removed, added check for GCC version
4901
4902 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4903
4904         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4905         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4906         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4907           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4908           bugs 928906 and 954082 half-empty initializers
4909         * src/SDCCsymt.h,
4910         * src/SDCCsymt.c (getAllocSize): added for above fix
4911         * src/z80/gen.c (genArrayInit): fixed bug 741044
4912         * support/regression/tests/zeropad.c: added tests
4913
4914 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4915
4916         * src/pic16/device.c (pic16_dump_section): corrected bug which
4917         caused some symbols of the libraries to be misplaced
4918
4919 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4920
4921         * src/pic16/glue.c,
4922         * src/pic16/ralloc.h,
4923         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4924         to fix conflict with pic port
4925
4926 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4927
4928         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4929         externs configuration variables,
4930         * src/pic16/ralloc.h,
4931         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4932         prototype in header, commented out some debug messages
4933
4934 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4935
4936         * src/pic16/glue.c,
4937         * src/pic16/main.c,
4938         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4939         for gpasm COFF object generation. Thanks to D. Hawkins for
4940         his patch info
4941
4942 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4943
4944         * src/ds390/main.c,
4945         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4946         Brock for spotting this)
4947         * src/ds390/gen.c (genEndFunction),
4948         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4949         interrupt handler and critical. Disable push/pop optimizations when
4950         peephole optimizations disabled.
4951
4952 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4953
4954         Updated pic16 library sources and headers.
4955         * device/lib/pic16/pic18f*/ ,
4956         * device/include/pic16/*.h: modified to handle structured SFR
4957         definitions
4958
4959 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4960
4961         * src/port.h (PORT structure): added hook initPaths, now each
4962         port can declare its own default search paths,
4963         which can been seen with the --print-search-dirs option,
4964         see pic16 port for example,
4965         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4966         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4967         * (doPrintSearchDirs): NEW, replaces in a central manner the
4968         printing of search dirs which was split in set*Paths functions,
4969         * (main): added call to port->initPaths and doPrintSearchDirs,
4970         * src/avr/main.c,
4971         * src/ds390/main.c,
4972         * src/hc08/main.c,
4973         * src/izt/i186.c,
4974         * src/izt/tlcs900h.c,
4975         * src/mcs51/main.c,
4976         * src/pic/main.c,
4977         * src/pic16/main.c: modified port structures to reflect addition of
4978         initPaths hook,
4979
4980         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4981         * (pic16_dump_section): for registers in same address reserve memory once,
4982         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4983         to no_banksel,
4984         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4985         result is greater in size than right or left,
4986         * (pic16_genUMult8X8_8): there are some cases where the result can
4987         be 16 bits size, so handle these,
4988         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4989         * (pic16_outBitC): modified to emit pcodes,
4990         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4991         or not,
4992         * (genDivOneByte): implemented algorithm to divide 8-bits,
4993         * (genCmp): uncommented goto, but issues still exist,
4994         * (genAnd): fixed a bug with variables >8bits,
4995         * (genPackBits): optimization added that uses BCF/BSF to change a
4996         single bit,
4997         * (genAssign): fixed bug when assigning floating point literals,
4998         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4999         __sdcc_gsinit_startup label,
5000         * src/pic16/main.c (_pic16_init): removed search directory
5001         initialisations,
5002         * (_pic16_initPaths): NEW, used to initialise search directories,
5003         * (_hasNativeMulFor): support functions for all except char/int
5004         multiplication, and char division,
5005         * (PIC16_port struct): modified entry for native mul support,
5006         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5007         no_banksel option,
5008         * (buildCallTree): call to register_usage is ifdef'ed out,
5009
5010 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5011
5012         * device/include/string.h: applied Stas Sergeev's patch to make this
5013         header file compatible with the preprocessor -Wundef option
5014         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5015         failure (fixes bug #941458)
5016
5017 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5018
5019         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5020         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5021         that the variable, not the function, should be static
5022         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5023         to be consistent with non-literal case
5024
5025 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5026
5027         * src/SDCCast.c (isConformingBody): fixed bug #949967
5028         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5029         convilong): fixed bug #952086
5030
5031 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5032
5033         * src/SDCCmem.c (allocVariables): fixed bug #955321
5034
5035 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5036
5037         * src/hc08/main.c (_hc08_genAssemblerEnd),
5038         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5039         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5040         completely eliminated the use of a temporary file
5041         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5042         when more than one file linked
5043         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5044
5045 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5046
5047         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5048         which fixes bug #543481
5049         * support/regression/tests/bug-751703.c: fixed comments left from a
5050         cut and paste error
5051         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5052         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5053         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5054         scopes
5055         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5056         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5057         are now changed to underscores in moduleName
5058
5059 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5060
5061         * as/mcs51/lkmem.c: better fix for bug #954173
5062
5063 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5064         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5065
5066         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5067         * device/include/c8051f000.h,
5068         * device/include/c8051f120.h,
5069         * device/include/c8051f300.h,
5070         * device/include/c8051f310.h,
5071         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5072         PWM16) and detab'ed
5073
5074 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5075
5076         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5077         and mailing lists, doc'ed --no-peep-comments, removed reference
5078         to knoppix (newest version has no LyX/LaTeX), other minor changes
5079         * src/SDCCglue.c (glue): save 2 bytes stack space with
5080         option --main-return. The ljmp could probably be avoided too
5081
5082 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5083
5084         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5085
5086 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5087
5088         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5089         * src/SDCCopt.c (isLocalWithoutDef),
5090         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5091         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5092         (credit to Maarten Brock for patch #949363, on which this is based)
5093         * support/regression/tests/bug-751703.c: some test cases of extern used
5094         within inner scopes.
5095
5096 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5097
5098         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5099         SPEC_STRUCT
5100         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5101         struct definitions
5102         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5103         dwWriteLabel): fix to create valid debugger symbols even when
5104         the module name has non-alphanumeric symbols in it
5105         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5106         when a variable's allocation has been optimized away
5107
5108
5109 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5110
5111         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5112         * src/hc08/main.c,
5113         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5114         * src/mcs51/main.c,
5115         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5116         * src/ds390/main.c,
5117         * src/z80/gen.c (z80_emitDebuggerSymbol),
5118         * src/z80/main.c,
5119         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5120         * src/pic/main.c,
5121         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5122         * src/pic16/main.c,
5123         * src/avr/gen.c (avr_emitDebuggerSymbol),
5124         * src/avr/main.c,
5125         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5126         * src/xa51/main.c,
5127         * src/SDCCdebug.c (emitDebuggerSymbol),
5128         * src/SDCCdebug.h,
5129         * src/port.h: added a debugger struct to the port struct. Added a
5130         callback for defining debugger symbols
5131
5132         * src/SDCCast.c (createLabel),
5133         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5134         with isitmp = 1
5135         * src/SDCCicode.h,
5136         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5137         iCode back to the ast for the function
5138
5139         * src/hc08/ralloc.c (hc08_assignRegisters),
5140         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5141         unneeded fields from the regs struct.
5142         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5143         pushReg() & pullReg() functions instead of emitcode()
5144
5145         * src/hc08/gen.c (genLabel, genhc08Code),
5146         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5147
5148         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5149         debugger hooks
5150
5151         * src/hc08/gen.c (genEndFunction, genhc08Code),
5152         * src/hc08/gen.h,
5153         * src/mcs51/gen.c (genEndFunction, gen51Code),
5154         * src/mcs51/gen.h,
5155         * src/ds390/gen.c (genEndFunction, gen390Code),
5156         * src/ds390/gen.h,
5157         * src/z80/gen.c (genEndFunction, genZ80Code),
5158         * src/z80/gen.h,
5159         * src/z80/z80.h,
5160         * src/pic/gen.c (genEndFunction, genpic14Code),
5161         * src/pic/gen.h,
5162         * src/pic16/gen.c (genEndFunction, genpic16Code),
5163         * src/pic16/gen.h,
5164         * src/avr/gen.c (genEndFunction, genAVRCode),
5165         * src/avr/gen.h,
5166         * src/xa51/gen.c (genEndFunction, genXA51Code),
5167         * src/xa51/gen.h,
5168         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5169         specific code to cdbFile.c and out of the backend code generators
5170
5171         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5172         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5173         starting address is now 0
5174
5175         * as/hc08/asm.h,
5176         * as/hc08/m08pst.c,
5177         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5178         assembler directive for DWARF support
5179         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5180
5181         * src/src.dsp,
5182         * src/Makefile.in,
5183         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5184
5185 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5186
5187         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5188         and inappropriate peephole optimization in jump tables
5189
5190 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5191
5192         * as/hc08/m08pst.c,
5193         * src/SDCCglue.c: sdccopt works for the hc08 port now
5194
5195 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5196
5197         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5198
5199 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5200
5201         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5202
5203 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5204
5205         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5206         rules
5207         * src/SDCCmain.c,
5208         * src/SDCCglobl.h,
5209         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5210         comments from the peephole optimizer replacement rules
5211         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5212         symbols
5213         * src/SDCCcse.c (updateSpillLocation),
5214         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5215         equivalents
5216         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5217         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5218         objects far pointers
5219
5220 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5221
5222         * src/SDCCsymt.h: a missing part of my last change
5223         * src/pic/ralloc.c (regTypeNum),
5224         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5225
5226 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5227
5228         * src/SDCCicode.h,
5229         * src/SDCCicode.c (aggrToPtrDclType),
5230         * src/SDCCptropt.h,
5231         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5232         ptrPseudoSymConvert),
5233         * src/pic/ralloc.c (regTypeNum),
5234         * src/pic16/ralloc.c (regTypeNum),
5235         * src/hc08/ralloc.c (regTypeNum),
5236         * src/ds390/ralloc.c (regTypeNum),
5237         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5238         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5239
5240 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5241
5242         * link/z80/lkmain.c (afile),
5243         * as/hc08/lkmain.c (afile),
5244         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5245         prevent a pointer problem when a filename has no directory and
5246         no extension specified.
5247
5248 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5249
5250         * link/z80/lkmain.c (afile): allow periods in directory names
5251         * link/z80/lkmain.c (afile),
5252         * as/mcs51/lkmain.c (afile),
5253         * as/hc08/lkmain.c (afile): allow linker script file to have an
5254         extension other than ".lnk"
5255         * link/z80/lklex.c (getfid),
5256         * link/z80/lkmain.c (parse),
5257         * as/mcs51/lklex.c (getfid),
5258         * as/mcs51/lkmain.c (parse),
5259         * as/hc08/lklex.c (getfid),
5260         * as/hc08/lkmain.c (parse): Support comments in the linker script
5261         file on lines by themselves and after filenames
5262
5263 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5264
5265         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5266
5267 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5268
5269         * src/z80/peeph-z80.def: removed some peephole rules that don't
5270         work with multibyte arithmetic (fixed bug #937126)
5271         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5272         to registers and not global variables
5273         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5274         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5275         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5276         checking for assignments not internally generated (fixed bug #931895)
5277         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5278         structure member (fixed bug #930072)
5279
5280 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5281
5282         * src/SDCCmain.c (linkEdit),
5283         * src/hc08/main.c (_hc08_parseOptions),
5284         * as/hc08/Makefile.in,
5285         * as/hc08/aslink.h,
5286         * as/hc08/asm.h,
5287         * as/hc08/m08pst.c,
5288         * as/hc08/lkrloc.c (relr, rele),
5289         * as/hc08/lkarea.c (lnkarea)
5290         * as/hc08/lkmain.c (afile, parse),
5291         * as/hc08/lkelf.c: support for ELF output
5292         * as/hc08/lks19.c (s19),
5293         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5294
5295 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5296
5297         * as/mcs51/lkihx.c: Fixed bug #899105.
5298
5299 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5300
5301         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5302         .dsp files from Unix to DOS.
5303
5304 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5305
5306         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5307         function pointers; we have been compliant for several months now.
5308         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5309         change that was accidently commented out
5310         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5311         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5312         bug #922319
5313
5314 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5315
5316         * src/hc08/gen.c: output of all of the internal debugging information
5317         is now controlled by the D() macro; it is disabled by default
5318
5319 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5320
5321         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5322         harder to keep the same registers during a CAST iCode
5323         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5324         long via int can be done in a single cast, if the signedness is
5325         correct.
5326         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5327         putchar() in tinibios.c in ds390's library
5328
5329 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5330
5331         * src/SDCCast.c (decorateType): fixed bug #898889,
5332         cast result of a literal complement too
5333         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5334         fixed check for bitfields
5335
5336 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5337
5338         * src/SDCCicode.c (geniCodeLogic): made it static,
5339         (geniCodeLogicAndOr): added in order to fix bug #905492,
5340         (ast2iCode): fixed bug #905492
5341         * support/regression/tests/bug-905492.c: added
5342         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5343         (processParms): fixed bug #927659: don't copy parms, this will clear
5344         decorated flag
5345         * support/regression/tests/bug-927659.c: added
5346
5347 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5348
5349         * src/SDCCast.c (addCast): don't cast float to char
5350         * device/lib/libsdcc.lib: added _memmove
5351
5352 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5353
5354         * device/lib/large/Makefile: fixed parallel execution by
5355         replacing `make` by `$(MAKE)`
5356
5357 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5358
5359         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5360         offsets (fixes bug #923936)
5361
5362 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5363
5364         * device/lib/small/Makefile: fixed parallel execution by
5365         replacing `make` by `$(MAKE)`
5366
5367 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5368
5369         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5370
5371 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5372
5373         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5374         * src/regression/Makefile: Regression test was not running.
5375
5376 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5377
5378         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5379         complement if possible
5380         * src/SDCCval.c (valComplement),
5381         * src/SDCCicode.c (operandOperation): fixed complement of literal
5382         * support/regression/tests/onebyte.c (testComplement): added
5383
5384 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5385
5386         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5387         return an optimized tree; actually replace actParm with the new tree
5388         * src/SDCCast.h: added some parantheses to remove side effects
5389         * support/regression/tests/bug-920866.c
5390
5391 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5392         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5393         Bit operands were not being handled properly in the pic14 port.
5394         (now src/regression/add.c passes again).
5395
5396 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5397
5398         * src/SDCC.y (labeled_statement): case and default no longer require
5399         a following statement (RFE #893037)
5400
5401 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5402
5403         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5404         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5405         disabled (fixes bug #916294)
5406         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5407         "mov a,acc"; patch provided by Lenny Story
5408         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5409
5410 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5411
5412         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5413         functions
5414         * src/ds390/gen.c (genFunction, genEndFunction),
5415         * src/ds390/ralloc.c (ds390_assignRegisters),
5416         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5417         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5418         pushed if there are parameters passed on the stack. Also, a cleaner
5419         way to decide if r0/r1 should be pushed/popped. (Together they fix
5420         bug #918693)
5421
5422 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5423
5424         * doc/sdccman.lyx,
5425         * device/lib/mcs51/crtpagesfr.asm,
5426         * device/lib/mcs51/crtxinit.asm,
5427         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5428         to avoid confusion with Si Lab's SFRPAGE register.
5429
5430 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5431
5432         * src/SDCCglue.c (emitMaps): allow public sfr variables
5433         * src/SDCCglue.c (initialComments): include compiler build date
5434         with compiler version and put the timestamp of the generated
5435         assembly file on a serperate line to be less confusing.
5436         * src/port.h: added genInitStartup hook
5437         * src/avr/main.c,
5438         * src/ds390/main.c,
5439         * src/hc08/main.c,
5440         * src/pic/main.c,
5441         * src/pic16/main.c,
5442         * src/xa51/main.c,
5443         * src/z80/main.c: genInitStartup initialize as NULL (default to
5444         historical behaviour)
5445         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5446         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5447         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5448         library instead of hard coding it into the compiler.
5449         * support/regression/ports/mcs51-stack-auto/spec.mk,
5450         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5451         * device/lib/mcs51/Makefile,
5452         * device/lib/small/Makefile,
5453         * device/lib/large/Makefile,
5454         * device/lib/mcs51/crtpagesfr.asm,
5455         * device/lib/mcs51/crtstart.asm,
5456         * device/lib/mcs51/crtxclear.asm,
5457         * device/lib/mcs51/crtxinit.asm,
5458         * device/lib/mcs51/crtclear.asm,
5459         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5460         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5461         and into user configurable files.
5462         * device/lib/clean.mk: clean mcs51 directory too
5463         * support/regression/tests/longlit.c: added static to T1 declaration
5464         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5465         accesses in the initialization code
5466
5467 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5468
5469         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5470         OSCTRIMVAL as noted in bug #916008
5471
5472 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5473
5474         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5475         in loops with multiple exits (reported as incorrect registers
5476         used by Martin Helmling in Sdcc-user list)
5477
5478 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5479
5480         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5481         made ds390 register extensions look less like error messages
5482
5483 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5484
5485         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5486         reported by Adam Wozniak in Sdcc-user list
5487
5488 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5489
5490         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5491         arithmetic optimizations, added debug output
5492
5493 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5494
5495         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5496         * sdcc.spec: updated and split sdcc into 3 rpms
5497         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5498         needed for literals of LEFT_OP and '+'
5499         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5500         introduced RESULT_TYPE_NOPROM
5501         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5502         left shift
5503         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5504         limited promotion to int only for '*'
5505         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5506
5507 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5508
5509         * src/pic16/gen.c (genSkip),
5510         (genc16bit2lit), (gencjneshort): commented out
5511         (is_LitOp): new helper function, checks operand type
5512         (genCmpEq): rewritten
5513
5514 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5515
5516         * support/regression/tests/bug-908454.c: added
5517
5518 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5519
5520         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5521         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5522         (geniCodeCast): cosmetic, don't preserve bit storage class
5523         (geniCodeLeftShift): added promotion
5524         (geniCodeLogic): fixed regression
5525         * src/SDCCsymt.c (computeTypeOr): accept bits too
5526         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5527
5528 2004-03-07  Borut Razem <borut.razem AT siol.net>
5529
5530         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5531
5532 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5533
5534         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5535         version of pic16_genPackRegisters which does not check if ic is a
5536         CAST operator,
5537         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5538         function cause string1.c regression test fails
5539
5540 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5541
5542         * sim/ucsim/configure.in,
5543         * sim/ucsim/configure,
5544         * sim/ucsim/doc/Makefile.in: use docdir
5545         * src/SDCC.y: fixed sbit atrributes
5546         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5547         * src/SDCCast.c (decorateType): |^& need special promotion handling
5548         * src/SDCCast.h,
5549         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5550         * src/SDCCsymt.h (computeType),
5551         * src/SDCCicode.c: computeType() needs op
5552         * src/SDCCsymt.c (checkTypeSanity),
5553         * doc/sddman.lyx: "plain" bitfields are unsigned
5554         * src/SDCCsymt.c (computeTypeOr): added
5555         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5556         |^& ops
5557         * src/SDCCval.c (val*): computeType() needs op
5558         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5559         * support/regression/tests/onebyte.c: added tests for |^&
5560
5561 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5562
5563         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5564         for writing icode into asm output.
5565
5566 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5567
5568         * src/pic16/device.c: added some debug lines enabled
5569         with macro DEBUG_CHECK,
5570         * src/pic16/genarith.c: more debug in genPlus,
5571         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5572         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5573         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5574         * (aopForSym): onStack symbols are re-placed in data memspace,
5575         and onStack flag is cleared,
5576         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5577         copy temporary pcodeop,
5578         * (genPcall): added warning for not updating PCLATU,
5579         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5580         always true for pic16 port,
5581         * (genMultOneWord): NEW, supports integer multiplication,
5582         * (genMult): modified to call genMultOneWord,
5583         * (ifxForOp): added warning when return NULL,
5584         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5585         flag is set before call to operandFromSymbol for implicit
5586         added structures,
5587         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5588         options.intlong_rent are set by default,
5589         * (_hasNativeMulFor): modified to allow port generation of integer
5590         multiplication,
5591         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5592         set regtype to REG_SFR for all registers, restricting seting the
5593         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5594
5595 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5596
5597         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5598         more than 500 times in the regression tests
5599
5600 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5601
5602         * support/Util/SDCCerr.h,
5603         * support/Util/SDCCerr.c,
5604         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5605         enumerator_list),
5606         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5607         for symbol conflicts.
5608         * support/valdiags/tests/enum.c,
5609         * support/valdiags/tests/tentdecl.c,
5610         * support/valdiags/tests/struct.c: expect possible error messages
5611         referring to original symbol definitions.
5612         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5613         * src/SDCCsymt.h,
5614         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5615
5616 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5617
5618         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5619
5620 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5621
5622         * src/pic16/ralloc.c (newReg): fixed bug #908929
5623
5624 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5625
5626         * src/ds390/gen.c: added missing #include "main.h"
5627
5628 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5629
5630         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5631         checking if symbol is already in set,
5632         * src/pic16/device.h: prototype for checkAddSym,
5633         * src/pic16/gen.c: (_G): added entry interruptvector,
5634         * (assignResultValue): removed some commented out lines,
5635         * (genFunction): check for ISR via sym->type, absolute section for
5636         interrupt code is created via a new pBlock, the goto instruction is
5637         placed now correctly at the interrupt vector position, changed all
5638         references from ivec to _G.interruptvector,
5639         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5640         is the interrupt is a high priority one, same for return from ISR,
5641         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5642         externs to calls of checkAddSym,
5643         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5644         pic16_pcode_verbose flag is set,
5645         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5646         * src/pic16/pcoderegs.c: message about how many registers are saved
5647         will only be emitted if pic16_pcode_verbose flag is set,
5648
5649 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5650
5651         * src/ds390/ralloc.h,
5652         * src/ds390/ralloc.c (ds390_regWithIdx),
5653         * src/ds390/gen.c (emitcode),
5654         * src/ds390/main.h,
5655         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5656         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5657         ds390operandCompare, getRegsRead, getRegsWritten,
5658         initializeAsmLineNode): customized instruction size calculation for
5659         ds390, started basis for some register optimizations
5660         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5661         corresponding assembly output
5662         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5663         missing push/pop of r0/r1. Optimized push/pops
5664
5665 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5666
5667         * src/mcs51/main.c (instructionSize): fixed ACALL size
5668         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5669
5670 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5671
5672         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5673         the sorting of rlist with NULL elements
5674         * (print_idataType, print_idata): NEW to create idata sections
5675         * src/pic16/device.h: idataSymSet new variable
5676         * src/pic16/gen.c (genFunction): fixed some bugs in string
5677         comparing, improved the absolute section creation for ISRs,
5678         added FSR0L/FSR0H in registers that are saved in an ISR,
5679         * (genInline): fixed the processing of inline snippets,
5680         now they undergo no process by the peephole optimizer
5681         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5682         are placed in idataSymSet,
5683         * (pic16emitStaticSeg): extern symbols are added in externs,
5684         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5685         switching when aboslute variables are placed in access bank memory
5686         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5687         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5688         commented out with #if,
5689         * (pic16_packRegisters): reintroduce the check for CAST because some
5690         symbols are not correctly handled,
5691         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5692         pCodeInstruction instead of pCode,
5693         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5694         pCodeAsmDir definition,
5695         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5696         directive, then the argument directive is emitted without the leading
5697         tab, hack for inline labels which must be in the first column,
5698         * (compareLabel,pic16_findNextInstruction),
5699         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5700         * (insertBankSwitch): modified for the new pCodeAsmDir,
5701
5702 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5703         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5704
5705         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5706         instance,
5707         * (pushSide): commented out with #if,
5708         * (assignResultValue): fixed some typos in saving
5709         registers,
5710         * (genPcall): FIXED and sync'ed with genCall,
5711         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5712         * (genNearPointerGet): fixed to handle some more cases,
5713         implementation scheme via table reads,
5714         * (genConstPointerGet): modified to access code memory correct,
5715         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5716         and improved to handle some cases
5717         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5718         instead of "RETLW" for init data
5719         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5720         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5721         variables are placed in access bank memory (<0x80 and >=0xf80),
5722         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5723         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5724         TBLWT_POSTDEC,TBLWT_PREINC
5725         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5726         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5727         directives
5728         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5729         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5730         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5731         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5732
5733 2004-02-29  Borut Razem <borut.razem AT siol.net>
5734
5735         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5736         support/Util/findme.h, support/Util/system.h: enhance binary relative
5737         search for lib and include by using findProgramPath()
5738
5739 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5740
5741         * src/SDCCpeeph.h,
5742         * src/SDCCpeeph.c (pcDistance),
5743         * src/port.h,
5744         * src/mcs51/ralloc.h,
5745         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5746         * src/mcs51/main.h,
5747         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5748         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5749         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5750         size calculation port specific, started basis for some register
5751         optimizations
5752         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5753         missing push/pop of r0/r1. Optimized push/pops
5754         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5755         * device/lib/_modsint.c (_modsint),
5756         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5757         and stack version so regression tests pass
5758
5759 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5760
5761         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5762         * src/SDCCast.c (decorateType): catch another small optimization
5763         with '?' operator
5764         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5765         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5766         modified to finally use computeType() all over SDCC,
5767         see Feature Request #877103
5768         * src/SDCCval.h: cosmetic
5769         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5770         valCompare(); regression tested in muldiv.c
5771         * support/regression/tests/muldiv.c (testMod): mod sign follows
5772         dividend only
5773
5774 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5775
5776         * src/SDCCast.c (decorateType): fixed bug #902362
5777         * doc/INSTALL.txt: fixed install instructions for win32
5778
5779 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5780
5781         * device/include/Makefile.in (install): fixed by replacing spaces
5782         by tabs
5783         * doc/README.txt,
5784         * doc/INSTALL.txt: updated for release
5785         * doc/sdccman.lyx: added warning for --xstack being buggy
5786
5787 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5788
5789         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5790         to eliminate build warnings.
5791         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5792
5793 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5794            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5795
5796         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5797         removed -penable-stack, added comment for stack pragma, added
5798         warning for not initializing the stack/frame registers, removed
5799         comment at interrupts section
5800
5801         Stack is made permanent, there is no ability to disable stack usage.
5802         * src/pic16/device.h,
5803         * src/pic16/device.c: removed all references to USE_STACK macro,
5804         * src/pic16/device.c (pic16_dump_section): when no elements in
5805         rlist, free rlist before return,
5806         * (pic16_dump_int_registers): NEW, internal registers are a new set
5807         of general purpose registers reused by each function,
5808         * (checkAddReg): returns 1 if registers is added to set,
5809         * (pic16_groupRegistersInSection): when a registers is of type
5810         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5811         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5812         SRCASECMP macro is moved here from device.c
5813         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5814         PO_PCLATU, PO_PRODL, PO_PRODH,
5815         * (pic16_pCodeOpType, genMinus,
5816         changed compares to "a" register, with AOP_ACC,
5817         * (pic16_genPlus): fixed some bugs and indented properly,
5818         * (pic16_addSign): changed size to size+offset in the MOVWF
5819         instruction,
5820         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5821         multiply 8-bit operand by literal, result is 8-bit,
5822         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5823         multiply 2 8-bit operand, result is 8-bit,
5824         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5825         genUMult8X*_16,
5826         * src/pic16/gen.c: changed accUse to contain WREG only,
5827         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5828         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5829         true, do not use immediate addressing any more unless sym is a
5830         pointer in codespace,
5831         * (aopForRemat): do not use immediate addressing when symbol not in
5832         codespace and when symbol's address is requested,
5833         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5834         accUse size (= 1),
5835         * (aopGet): added case for AOP_ACC and don't return "accumulator
5836         bug" but WREG instead,
5837         * (popGetTempReg): pushes contents of temporary register in stack,
5838         * (popReleaseTempReg): pops contents of temporary register from
5839         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5840         * (pic16_popGet): separated case AOP_ACC to return register WREG
5841         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5842         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5843         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5844         the use of immediate pointers to certain cases only.
5845
5846         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5847         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5848         * (assignResultValue, genCall, genRet): modified to use the new
5849         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5850         genPcall is still broken,
5851         * (genFunction): added code to create 'A' type pBlocks when
5852         interrupt functions are generated, code not extensively tested yet,
5853         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5854         * (genEndFunction): modified so ISRs pop stored registers from stack,
5855         * (genMultOneByte): cleanup,
5856         * (AccRsh): added flag andmask, to and result with appropriate mask,
5857         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5858         * (genDataPointerGet): fixed and reenabled its use,
5859         * (genNearDataPointerGet): bugs fixed,
5860         * (genDataPointerSet): bugs fixed,
5861         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5862         pic16_DumpSymbol, pic16_DumpOp,
5863         * src/pic16/genutils.h: function prototypes for the above functions,
5864         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5865         pointers,
5866         * (pic16emitRegularMap): many many many improvements, but needs a
5867         major cleanup,
5868         * src/pic16/main.c: enable_stack in pic16_options is removed,
5869         * (_pic16_parseOptions): removed command line options -penable-stack,
5870         * (_process_pragma): emit stack symbol only when stack pragma is
5871         processed,
5872         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5873         redirected to FSR0L/FSR0H pair,
5874         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5875         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5876         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5877         for immediates,
5878         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5879         * (dumpPicOptype): NEW,
5880         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5881         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5882         with movff instruction,
5883         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5884         added pic16_int_regs, some packRegsFor* functions are commented out,
5885         because produce errors,
5886         * src/pic16/NOTES: minor modifications
5887
5888 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5889
5890         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5891         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5892         --pack-iram.
5893         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5894         * as/mcs51/lkaomf51.c: fixed bug #895763
5895
5896 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5897
5898         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5899
5900 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5901
5902         * doc/sdccman.lyx: added details about the HC08 storage classes and
5903         interrupts, fixed the register usage info for z80 & gbz80
5904
5905 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5906
5907         * doc/sdccman.lyx: added more pic16 port documentation
5908         * device/include/pic16/: added header pic18fregs.h
5909
5910 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5911
5912         * doc/sdccman.lyx: added Vangelis' contribution
5913
5914 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5915
5916         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5917         extend to the next CALL or PCALL, not just to the next CALL.
5918
5919 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5920
5921         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5922
5923 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5924
5925         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5926         bug #895752 and a better fix for bug #716790
5927
5928 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5929
5930         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5931
5932 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5933
5934         * doc/sdccman.lyx: minor changes, minor changed
5935
5936 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5937
5938         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5939         which can't handle SDCC_NEWONEBYTEOPS,
5940         (geniCodeMultiply): removed conversion from mult to shift for pic14
5941         and pic16
5942
5943 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5944
5945         * src/hc08/gen.h,
5946         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5947         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5948         thus fixing bug #895406
5949
5950 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5951
5952         * device/lib/_modsint.c,
5953         * device/lib/_modslong.c: sign follows divisor only
5954         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5955         signs or signedness can be ignored
5956         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5957         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5958         added optimization for IFX,
5959         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5960         arguments;
5961         reenabled optimization for IFX, which was removed on 2004-01-11
5962         * src/SDCCast.h: added return type IFX
5963         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5964         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5965         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5966         SDCC_OLDONEBYTEOPS selects the old behaviour
5967         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5968         changed again and commented promotion rule
5969         * src/SDCCval.c (valDiv): promotion no longer necessary
5970         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5971         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5972         rewritten
5973         * support/regression/tests/onebyte.c: added
5974
5975 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5976
5977         * gen.c (genInline): reverted to old code for assemnling inline
5978         code because of bug reported James Chadd
5979
5980 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5981
5982         * ralloc.h: missing declarations from previous patch,
5983         seems that patch for ralloc.h was never applied, fixed
5984
5985 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5986            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5987
5988         * pcode.c,
5989         * pcode.h,
5990         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5991         indirect addressing. Marked FSR0 as deprecated
5992         * gen.c (pointerCode): commented out, not needed now
5993         (pic16_popGet2p): new MOVFF helper function
5994         (genGenPointerGet),
5995         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5996         (shiftRLong): removed duplicate debugging info
5997
5998 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5999
6000         * src/ds390/gen.c (genNearPointerGet),
6001         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6002         optimization with bits, but not bitfields.
6003         * src/ds390/ralloc.c (packRegisters),
6004         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6005
6006 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6007
6008         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6009
6010 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6011
6012         * src/SDCCsymt.h,
6013         * src/SDCCicode.c (operandFromSymbol),
6014         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6015         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6016         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6017         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6018         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6019         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6020         bug #892038
6021         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6022         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6023         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6024         * src/SDCCsymt.c (newSymbol),
6025         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6026         enumerator_list),
6027         * src/SDCCval.h,
6028         * src/SDCCval.c (newiList): fixed bug #885705
6029
6030 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6031
6032         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6033         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6034
6035 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6036
6037         * device/include/c8051f120.h,
6038         * device/include/c8051f300.h,
6039         * device/include/c8051f310.h: added/updated header files for Silicon
6040         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6041         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6042         in new section Submitting patches
6043
6044 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6045
6046         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6047         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6048         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6049         genGenPointerSet),
6050         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6051         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6052         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6053         genGenPointerSet),
6054         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6055         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6056         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6057         genGenPointerSet),
6058         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6059         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6060         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6061         genGenPointerSet): fixed bug #892400
6062         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6063         to eliminate build warnings.
6064         * src/SDCCast.c (processParms),
6065         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6066         fixed bug 751859
6067         * support/valdiag/valdiag.py: added GCC to the list of defines active
6068         when compiling with gcc
6069
6070 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6071
6072         * support/Util/SDCCerr.h,
6073         * support/Util/SDCCerr.c,
6074         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6075         with an incomplete type (fixed bug #883734)
6076         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6077
6078 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6079
6080         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6081
6082 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6083
6084         * src/SDCCast.c (decorateType),
6085         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6086         function pointer implementation
6087         * support/regression/tests/funptrs.c: added tests to verify both forms
6088         of function pointers work correctly. Added tests to verify parameters
6089         are passed in the correct order.
6090
6091 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6092
6093         * device.c (regCompare): registers are sorted by ascending
6094         address and increasing size,
6095         * main.c (_pic16_finaliseOptions): removed the declaration
6096         of compiler macro MCU. Now a macro of the format pic18fxxxx
6097         will be defined from the command line
6098
6099 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6100             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6101
6102         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6103         PCOP_RLCF was overwritten!
6104         * gen.c (genSkip): commented out calls to pic16_emitcode,
6105         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6106         * (genlshTwo),
6107         * (genRRC): added debugging info,
6108         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6109         overwritten while shifting,
6110         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6111         overwritten while shifting,
6112         * (AccLsh),
6113         * (AccRsh),
6114         * (shiftLLeftOrResult),
6115         * (shiftRLeftOrResult),
6116         * (shiftRLong),
6117         * (shiftLLong): Implemented with pic16_emitpcode
6118         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6119         * (genLeftShift): Fixed bug, operand for shift by variable always
6120         was "and"ed with 0x0f,
6121         * (genLeftShiftLiteral),
6122         * (genrshTwo),
6123         * (genRightShiftLiteral): added debugging info,
6124         * (genrshFour): added comment,
6125         * (genRightShift): determined signedness from operand "left"
6126         instead of "result"
6127
6128 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6129
6130         * src/SDCCicode.c (geniCodeParms),
6131         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6132         function pointers, fixed function pointer bugs #861242 and #861896
6133
6134 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6135
6136         * device/include/c8051f000.h,
6137         * device/include/c8051f120.h,
6138         * device/include/c8051f300.h: added header files for Silicon
6139         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6140
6141 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6142
6143         * src/SDCCast.c (processParams): added new type flow and restructured
6144         (gatherAutoInit): added new type flow
6145         (addCast): cosmetic changes
6146         (getLeftResultType): added new type flow for array indices, patch
6147         provided by Stas, see FR #877103
6148         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6149         array index patch by Stas
6150         * src/SDCCast.h: added prototype getResultTypeFromType()
6151         * src/SDCCval.h,
6152         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6153         * src/pic/glue.c (pic14emitStaticSeg),
6154         * src/pic16/glue.c (pic16emitStaticSeg),
6155         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6156         for initialization of symbols
6157         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6158         * support/Util/SDCCerr.h:
6159         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6160         * .version: bumped version number to 2.3.8
6161         * device/include/Makefile.in (install),
6162         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6163         avoid warnings
6164
6165 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6166
6167         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6168         Slade Rich fixed an optimization bug
6169         * src/pic/pcodepeep.c,
6170         * src/pic/pcoderegs.c
6171         * doc/Makefile (install): added test for directory
6172
6173 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6176         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6177         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6178         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6179         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6180         * as/mcs51/asexpr.c (term),
6181         * as/hc08/asexpr.c (term): fixed bug #887146
6182
6183 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6184
6185         * src/z80/gen.c (genMult): handle single byte result product
6186         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6187         DUMMY_READ_VOLATILE (fixed bug #886367)
6188
6189 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6190
6191         * support/regression/tests/libmullong.c: fixed logic, on little endian
6192         hosts we ended without a mullong_wrapper()
6193
6194 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6195
6196         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6197         virus/worm forged address usage.
6198
6199 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6200
6201         Fixed promotion, it should be done on AST level:
6202         * src/SDCCast.c (addCast): added promotion to int
6203         (decorateType): updated call to upCast()
6204         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6205         usualUnaryConversions()
6206
6207 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6208
6209         * support/regression/tests/literalop.c (mulWrapper): Added a
6210         wrapper to remove integer overflow warnings.
6211
6212         * support/regression/tests/float_trans.c: Made work on host.
6213
6214         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6215         location of sz80.
6216
6217         * support/regression/generate-cases.py (main): Changed from inline
6218         to a main method.
6219
6220         * doc/Makefile (install): Changed to depth first to get rid of
6221         missing directory install warning.
6222
6223         * as/Makefile (install-doc): Made work on Mac.
6224
6225 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6226
6227         * src/SDCCast.c: added an additional type flow in decorateType() of
6228         opposite direction, see feature request #860006; it's enabled at runtime
6229         by setting the environment variable SDCC_NEWTYPEFLOW
6230         * src/SDCCast.h: changed prototype of decorateType()
6231         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6232         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6233         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6234         see feature request #877103
6235         * src/SDCCval.c: updated call of decorateType()
6236         (valBitwise): fixed bug #882876
6237         (valMinus): added promotion
6238         (valLogicAndOr): result is unsigned
6239         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6240         * src/SDCCsymt.c (computeType),
6241         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6242         must not cause an unsigned operation
6243         * src/pic/glue (pic14emitRegularMap),
6244         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6245
6246 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6247
6248         * src/pic/pcode.c (PCodeID): commented out left over debug code
6249
6250 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6251
6252         * support/valdiag/tests/overflow.c: added shift tests
6253         * src/pic/device.c,
6254         * src/pic/gen.c,
6255         * src/pic/gen.h,
6256         * src/pic/glue.c,
6257         * src/pic/main.c,
6258         * src/pic/pcode.c,
6259         * src/pic/pcode.h,
6260         * src/pic/pcodepeep.c,
6261         * src/pic/pcoderegs.c,
6262         * src/pic/ralloc.c,
6263         * src/pic/ralloc.h: applied patch from Slade Rich;
6264         added support for multiple code pages and multiple RAM banks on the
6265         PIC 14 port. The ASM files now no longer simply assume all the
6266         code / RAM are in the same page / bank. This means the linker can
6267         safely allocate code/RAM of separate ASM files to different pages/banks.
6268         * doc/sdccman.lyx: added Slade's tips
6269         * src/mcs51/peeph.def: fixed bug #880768
6270
6271 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6272
6273         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6274         * src/SDCCast.c (decorateType): fixed bug #880197
6275
6276 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6277
6278         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6279         getopt.h.
6280
6281         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6282         strtof is not part of C89 and isn't included with Mac OS X.
6283
6284 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6285
6286         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6287         shiftL2Left2Result): fixed bug #879326
6288         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6289         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6290         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6291         address fetch for clr instruction
6292         * device/lib/hc08/_mulint.c: created optimized assembly version
6293         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6294
6295 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6296
6297         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6298         proposed in FR #877103
6299
6300 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6301
6302         * src/SDCCval.c (cheapestVal): added missing checks
6303         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6304         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6305
6306 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6307
6308         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6309         equal operands
6310
6311 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6312
6313         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6314         loaded with the linker search paths (-L arguments) and the libraries
6315         to be linked with the current source (-l arguments). Changes
6316         currently will affect only the pic16 port.
6317         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6318         include path the port specific paths and port specific libraries,
6319         * gplink command now contains the $3 argument,
6320         * src/pic16/device.h,
6321         * src/pic16/device.c,: structure PIC_device is made public and
6322         renamed to PIC16_device, the same for variable Pics which is renamed
6323         to Pics16. Updated all references to them.
6324         * src/pic16/glue.c (pic16glue): corrected bug with code
6325         initialization which bypassed the variable initializations block.
6326
6327         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6328         COMPILE_FLAGS and added the --nostdinc option
6329
6330 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6331
6332         * device/include/mc68hc908jb8.h: Register defs for another member
6333         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6334
6335 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6336
6337         Documenting changes from previous commits.
6338         * configure.in (version 1.56),
6339         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6340         when generating output files to configure the pic16 library,
6341         but now I've commented it out, since gputils aren't installed in the
6342         SF compile farm, so library won't compile
6343
6344         * device/lib/Makefile.in (version 1.56): initially I've added in
6345         target 'all' the prerequestive 'model-pic16' so it compiled the
6346         pic16 library, but now I've commented it out for the same reasons
6347         above,
6348         * added targets 'model-pic16' and 'objects-pic16' to compile the
6349         library
6350         * added target 'port-specific-objects-pic16' to handle the
6351         generated libraries and copy them into the build/ directory
6352         * added target 'clean-intermediate-pic16' to clean intermediate
6353         files into pic16 directory
6354         * in target 'installdirs' added line to create directory pic16 in
6355         the installation path
6356
6357         * device/include/Makefile.in (version 1.11): in target 'install'
6358         added lines to copy all header files to installation path,
6359         * in target 'installdirs' added line create directory for pic16
6360         headers in the installation path
6361
6362 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6363
6364         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6365          a function call
6366
6367 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6368
6369         * configure,
6370         * device/lib/configure.in,
6371         * device/lib/configure: fixed for autoconf 2.57
6372
6373 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6374
6375         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6376         option so that it actually works. Made it specific to the z80, since
6377         the gbz80 doesn't have these kinds of I/O ports.
6378
6379 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6380
6381         * device/include/z180.h,
6382         * device/lib/_memcpy.c,
6383         * device/lib/_memmove.c,
6384         * device/lib/_mulint.c,
6385         * device/lib/ser_ir.c,
6386         * device/lib/ser_ir_cts_rts.c,
6387         * device/lib/_strcmp.c,
6388         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6389         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6390         portmode; added deprecation warning for bank= and protmode= forms.
6391         Also, guard against buffer overflow.
6392         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6393
6394 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6395
6396         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6397         changed interrupt vector table generation to only emit declared vectors.
6398         * device/include/Makefile.in: added missing backslash
6399         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6400
6401 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6402
6403         Mainly changes to support compilation of the device libraries
6404         * src/pic16/device.c: stack is allocated via symbol and not
6405         via literal number. The symbol is placed in the corresponding
6406         position of the data ram
6407         * (pic16_dump_section): relocatable and absolute uninitialized
6408         data are now emitted in sorted order to reduce section naming,
6409         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6410         weren't marked as being in the access bank,
6411
6412 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6413
6414         Added portion of GNU PIC Library under the directory
6415         device/include/pic16 and device/lib/pic16. These files
6416         contain the declarations of SFRs for the PIC18Fxx2 devices.
6417         The directory is initialized via configure from toplevel.
6418
6419 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6420
6421         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6422         the spilllocations to be compared correctly
6423
6424 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6425
6426         * src/SDCCast.c (decorateType): fixed bug introduced today
6427
6428 2004-01-12  Borut Razem <borut.razem AT siol.net>
6429
6430         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6431         doc/sdccman.lyx: upper case pragmas are deprecated
6432
6433 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6434
6435         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6436         in simpler and even better code
6437
6438 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6439
6440         * src/SDCCicode.c (operandOperation): fixed bug #874819
6441         * src/SDCCast.c (decorateType): fixed
6442         char foo (unsigned long ul) { return ul > 0; }
6443
6444 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6445
6446         * doc/sdccman.lyx: Moved and added some sections, small changes
6447         all over. Telling LaTeX to be less strict with word spacing
6448         to better keep the right margin. Changed some notes about
6449         maintainance of the ports in section 3.2.1 - is it OK like this?
6450
6451 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6452
6453         SDCC source changes:
6454         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6455         convilong): modified to inform the pic16 port that builtin functions
6456         are external
6457
6458         PIC16 PORT specific changes:
6459         * src/pic16/device.c pic16_dump_equates() added,
6460         processor registers declared internally by the port are emitted in
6461         the translation as equates,
6462         * src/pic16/gen.c: inline code is passed unprocessed to the
6463         translation,
6464         * (pic16_popGetLit2): fnuction modified to take second operand as
6465         pCodeOp pointer and not as literal,
6466         * (popRegFromIdx): prefixed with pic16_,
6467         * (pic16_popCombine2): modified to receive already allocated pCode
6468         operands,
6469         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6470         * (genFunction): initializes local stack frame and pushes on stack
6471         all the registers used by this function,
6472         * (genEndFunction): restores all registers from stack and restores
6473         stack frame,
6474         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6475         improvements,
6476         * (pic16glue): changed the program startup sequence,
6477         * added new dbName code 'A' for functions placed in absolute section
6478         * src/pic16/main.c: added function attribute _naked,
6479         * added pragma 'code' to place a fnuction at an absolute address,
6480         * added command line arguments --debug-ralloc and --pcode-verbose,
6481         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6482         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6483         * (pic16_newpCodeOpLit2): modified to take the second operand as
6484         pCodeOp pointer,
6485         * (pic16_printpBlock): modified to emit each function in a separate
6486         section,
6487         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6488         UPPER for immediate operands,
6489         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6490         instruction,
6491         * src/pic16/peeph.def: all peepholes with movff are commented out,
6492         because there is a problem in the pcode peep optimizer,
6493         * src/pic16/ralloc.c: the register allocator can now reuse local
6494         function symbols for another function. This saves register usage.
6495         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6496
6497         Added file src/pic16/NOTES with information about program writing on
6498         the current port version.
6499
6500 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6501
6502         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6503         and peephole 252 (array access)
6504
6505 2004-01-09  Borut Razem <borut.razem AT siol.net>
6506
6507         * src/SDCCmain.c : fixed #872250: -l command line defined library
6508           files are scanned before standard library files
6509
6510 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6511
6512         * src/SDCCast.c (decorateType): fixed bug #874046
6513
6514 2004-01-09  Borut Razem <borut.razem AT siol.net>
6515
6516         * support/scripts/sdcc.nsi: remove previous installation
6517
6518 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6519
6520         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6521         bytes for last interrupt vector (mcs51)
6522         * sdcc.spec: fixed typo
6523
6524 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6525
6526         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6527         gen51Code): more efficient parameter receive for --model-large
6528         ("bug" #845294)
6529
6530 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6531
6532         * src/ds390/main.c,
6533         * src/z80/main.c: added missed needLinkerScript flags (more than
6534         one port structure defined in these file)
6535         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6536         bug #795325
6537
6538 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6539
6540         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6541         * src/port.h: added flag needLinkerScript in port->linker
6542         structure to inform whether to create a .lnk file or not,
6543         * src/avr/main.c,
6544         * src/ds390/main.c,
6545         * src/hc08/main.c,
6546         * src/mcs51/main.c,
6547         * src/pic/main.c,
6548         * src/pic16/main.c,
6549         * src/xa51/main.c,
6550         * src/z80/main.c: changed appropriately to configure
6551         needLinkerScript flag
6552         * src/pic/gen.c,
6553         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6554         * src/pic/glue.c: added variable udata_section_name to
6555         override default uninitialized data segment definition for
6556         devices only with SHAREBANK memory (reported from Erik Epetrich)
6557         * (pic14emitOverlay): modified to emit a commented overlay segment
6558         directive when no overlay data exist
6559         * (picglue): modified to emit uninitialized data segment
6560         according to udata_section_name
6561         * src/pic/main.c (_pic14_parseOptions): added command line
6562         options --udata-section-name=[name] to override default
6563         udata definition name
6564         * modified _linkCmd and _asmCmd to include compiler passed
6565         arguments via -W option
6566         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6567         object file from '.rel' to '.o' in port->linker structure,
6568         changed size of fptr from 2 to 3 in port structure
6569
6570 2004-01-07  Borut Razem <borut.razem AT siol.net>
6571
6572         * support/scripts/sdcc.nsi: update PATH
6573         * support/scripts/sdcc.ico: craeted
6574
6575 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6576
6577         * device/include/Makefile.in: fix install
6578         * doc/Makefile: fix install
6579
6580 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6581
6582         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6583         in bug #860505
6584         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6585         how the function variable allocation summary is displayed; also
6586         include information about variables allocated to the overlay
6587         segment
6588
6589 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6590
6591         * as/mcs51/lkmain.c: Help about -Y option
6592         * as/mcs51/lkarea.c: Fixed gcc warnings
6593
6594 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6595
6596         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6597         fixed warning
6598         * support/valdiag/tests/overflow.c: added
6599         * src/SDCCast.c (decorateType),
6600         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6601         LEFT_OP (left shift)
6602
6603 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6604
6605         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6606         (default behaviour).
6607
6608 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6609
6610         A python script to validate compiler diagnostic messages. It can be
6611         used to verify that sdcc complains about bad c source code and
6612         gives a good location of the error.
6613         * support/valdiag/Makefile,
6614         * support/valdiag/valdiag.py,
6615         * support/valdiag/tests/*
6616
6617 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6618
6619         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6620         * src/SDCCsymt.c (newEnumType),
6621         * src/SDCCsymt.h
6622         * support/Util/SDCCerr.c,
6623         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6624         enum related bugs.
6625         * support/regression/tests/enum.c: added test for enum values that
6626         require at least 2 bytes of storage.
6627
6628 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6629
6630         * src/common.h: added ifndef/define/endif macros
6631         around the header file.
6632         Bug reported from Jesus Calvino-Fraga
6633
6634 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6635
6636         * sdcc.spec: updated
6637         * device/include/Makefile.in: don't install CVS directories
6638         * device/lib/Makefile.in: added removal of CVS directories after install
6639         * doc/Makefile: fixed install, added local_icons
6640         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6641         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6642         * src/ds390/gen.c (genRightShift): fixed bug #870788
6643         * src/SDCCast.c (decorateType): fixed bug #870781
6644
6645 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6646
6647         PIC16 port related changes:
6648         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6649         added variable stackPos,
6650
6651         * gen.c: genCall, assignResultValue: added support for
6652         pushing/retrieving function parameters to/from stack,
6653         genFunction,genEndFunction: setup stack frame for the
6654         generated function,
6655         genAddrOf: will be changed according to bug 863624
6656
6657         * added files genutils.c and genutils.h which contain gen*
6658         debugged and optimised functions extracted from gen.c
6659
6660         * glue.c: added variable 'externs' which holds extern symbols,
6661         pic16emitRegularMap: is modified to properly handle relocatable
6662          symbols under the new scheme,
6663         pic16createInterruptVect: is modified
6664         pic16printPublics: is modified to emit 'global' assembler directives,
6665         added pic16_printExterns to print extern symbols,
6666         pic16glue: initializes stack/frame pointer in the beginning of
6667         the assembly output. Temporary hack, will be corrected later,
6668         because gplink yet does not support stack and SDCC does not
6669         yet support a type of crt0.o object to create the final binary.
6670
6671         * Removed many lines that contain 8051 legacy code.
6672         * The code is finally placed under a 'code' directive.
6673         * Added port specific options.
6674
6675         * _process_pragma: simplified since now we do not need *special*
6676         include file to define SFR registers. But a separate header
6677         will be needed. This will be developed later.
6678         * _pic16_parseOptions: added, parses port specific options:
6679         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6680         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6681         --preplace-udata-with=
6682
6683         * _pic16_setDefaultOptions: modified to initialize section names,
6684         but hack is temporarly out of order since it needs improvement.
6685         * _pic16_genAssemblerPreamble: configuration words are emitted by
6686         their address instead of their name. This part is incomplete and
6687         supports only the 18Fxx2 devices. Other devices will emit an error
6688         during assembly since they do not contain the same set of config
6689         registers
6690         * _pic16_genIVT: is modified,
6691
6692         * pcode.c: added definitions for some hardware registers that are needed
6693         for stack support
6694         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6695         All PCI entries are updated. Now LFSR is supported.
6696         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6697         * added pic16_newpCodeOpLit2 to support instructions with
6698         two literal arguments
6699         * pic16_pCode2str: corrected code that emits assembler instructions
6700         with two literal operands and those that have an access bit modifier
6701         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6702         this fixes a bug which caused some labels to be lost, when an
6703         assembler directive was added, i.e. banksel,
6704         * pic16_FixRegisterBanking: improved logic that causes the insertion
6705         of bank switching,
6706         * InlineFunction: functions that are called once, are not any more
6707         inlined. This can be a port option in the future,
6708
6709         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6710
6711         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6712         hold the corresponding uninitialized symbols,
6713         * pic16_allocProcessorRegister: registers have explicit marked the
6714         accessBank field,
6715         * pic16_allocInternalRegister: registers are explicit marked as
6716         not used,
6717         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6718         processing list, so bit registers were lost,
6719         *
6720
6721         * ralloc.h: added field 'accessBank' and original symbol operand
6722         in register definition,
6723         * removed the field isMapped from register definition,
6724
6725         ** Several functions have been removed from various sources:
6726         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6727         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6728         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6729         pic16_assignRelocatableRegisters
6730
6731         ** others have been introduced:
6732         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6733         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6734
6735 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6736
6737         * support/scripts/inc2h.pl: changed definition of BIT_AT
6738         to emit 'sbit at' instead of 'bit at'. This was a request.
6739
6740         PIC16 port related preliminary changes:
6741         * gen.c: prefixed function popRegFromString with
6742         pic16_ and all references to it corrected
6743         * pcode.c: all pic16_pc_* hardware registers prefixed
6744         with underscore (_),
6745         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6746         * ralloc.c: newReg(): when register is REG_SFR then
6747         set address to rIdx,
6748         pic16_allocProcessorRegister(): marks register wasUsed=0
6749         pic16_writeUsedRegs(): added a call to assign processor
6750         registers via pic16_assignFixedRegisters
6751
6752 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6753
6754         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6755         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6756         variables in unused register banks.  Also the SSEG is placed
6757         wherever there is enough space for it, and IDATA can be anywhere
6758         in internal RAM.  For now compile using -Wl-Y[stack_size].
6759         The mem file is different for this option as well, since it
6760         makes no sense of talking about DSEG lenght.
6761
6762 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6763
6764         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6765         in certain cases, e.g. when ROM assignment, patch provided
6766         from Albert den Haan.
6767
6768 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6769
6770         Many signedness and type propagation fixes:
6771         * src/SDCCicode.c: made geniCodeCast() static
6772         replaced SPEC_ by IS_ (cosmetic)
6773         (operandOperation): fixed div and mod operation
6774         (usualBinaryConversions): added support for promotion of char
6775         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6776         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6777         (geniCodeAdd): an array index will stay unsigned, even if promoted
6778         from char to int
6779         (geniCodeArray): ditto
6780         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6781         * src/SDCCsymt.c (computeType): added more support for char;
6782         promotion of char is selectable by promoteCharToInt, fixed signedness
6783         for all cases
6784         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6785         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6786         * src/SDCCval (val*): replaced signedness calculation by
6787         computeType()
6788         rearranged if-branches (cosmetic)
6789         (valShift): added warning W_SHIFT_CHANGED
6790         (valCompare): fixed problem with different types
6791         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6792         * support/regression/tests/literalop.c: added many cases
6793         * support/regression/tests/ast_constant_folding.c: changed finally to
6794         'unsigned int'
6795         * .version: new year, new version: 2.3.7
6796         * src/SDCCmain.c (main): applied patch #866468
6797         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6798         provided by Scott Bronson
6799         * doc/sdccman.lyx: updated documentation for sdcdb
6800         updated and added chapter tips
6801
6802 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6803
6804         * src/SDCCsymt.h: missing from yesterday's commits
6805
6806 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6807
6808         * src/SDCC.y (struct_or_union_specifier),
6809         * support/Util/SDCCerr.c,
6810         * support/Util/SDCCerr.h: verify that struct & union tags are used
6811         as declared.
6812
6813 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6814
6815         * src/SDCCglobl.h: missing from yesterday's commits
6816
6817 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6818
6819         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6820         sft_attributes, struct_declaration, parameter_declaration,
6821         type_name, start_block, declaration_list),
6822         * src/SDCC.lex (check_type): support redefinition of typedef names
6823
6824 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6825
6826         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6827         aligned xdata arrays. Erik helped me with the if clause.
6828
6829 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6830
6831         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6832         warning
6833
6834 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6835
6836         * src/SDCCast.h,
6837         * src/SDCCast.c (newAst_),
6838         * src/SDCCicode.h,
6839         * src/SDCCicode.c (ast2iCode, newiCode),
6840         * src/SDCCglobl.h,
6841         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6842         expr, statement, expression_statement, selection_statement,
6843         iteration_statement, expr_opt, jump_statement): foundation for tracking
6844         sequence points
6845         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6846         point code too)
6847
6848 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6849
6850         * support/Util/SDCCerr.c,
6851         * src/SDCCast.h,
6852         * src/SDCCast.c (createCase, createDefault, decorateType),
6853         * src/SDCClabel.c (labelUnreach),
6854         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6855         to error messages.
6856         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6857         (with thanks to Stas Sergeev)
6858         * device/include/time.h,
6859         * device/lib/time.c (CheckTime): suppress unreachable code warning
6860
6861 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6862
6863         * src/SDCCast.c (createIvalCharPtr),
6864         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6865         bug #753752)
6866         * support/regression/tests/nullstring.c: tests for these two bugs
6867
6868 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6869
6870         * support/Util/SDCCerr.h,
6871         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6872         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6873         about storage class and 'at' used inside struct or union
6874         * src/SDCCBBlock.c (iCodeFromeBBlock),
6875         * src/SDCCcse.c (ifxOptimize),
6876         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6877         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6878         printIval, emitStaticSeg, emitOverlay),
6879         * src/SDCClabel.c (deleteIfx),
6880         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6881         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6882         gatherAutoInit, processParms),
6883         * support/Util/SDCCerr.h,
6884         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6885         reporting for post-parse errors.
6886
6887 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6888
6889         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6890         implicit casts via union; they don't work on big endian systems
6891         (possible fix for bug #861138)
6892
6893 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6894
6895         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6896         * src/mcs51/main.c: fixed the fix for bug #737001
6897
6898 2003-12-15  Borut Razem <borut.razem AT siol.net>
6899
6900         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6901
6902 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * support/makebin/makebin.c: put output in binary mode
6905
6906 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6907
6908         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6909         xdata and data memory on startup. Set the environment variable
6910         SDCC_NOGENRAMCLEAR to disable this.
6911         * src/mcs51/peephole.def,
6912         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6913         (allows non-interrupt and interrupt code to safely compete for a resource
6914         without the non-interrupt code having to disable interrupts)
6915
6916 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6917
6918         * src/SDCCicode.c (geniCodeAdd),
6919         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6920         with valFromType if type might be a pointer and host is big endian).
6921         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6922         types, not just integer types.
6923         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6924         multiply defined with mismatching "at" address.
6925
6926 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6927
6928         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6929         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6930         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6931         with embedded nulls (fixed bug #753752)
6932
6933 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6934
6935         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6936         Apparently this did not see much testing (endless loop)
6937
6938 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6939
6940         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6941
6942 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6943
6944         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6945         gracefully handle NULL memmap pointers
6946
6947 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6948
6949         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6950         instead of deleting the iCode when an operand is volatile
6951         * src/z80/gen.c (genDummyRead),
6952         * src/mcs51/gen.c (genDummyRead),
6953         * src/ds390/gen.c (genDummyRead),
6954         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6955         not just IC_RIGHT
6956         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6957         * src/SDCC.y: fixed bug #850420
6958
6959 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6960
6961         Applied z80 i/o port patch from Peter Townson and fixed some operators
6962         to better handle operands in A register.
6963         * device/include/z180.h
6964         * src/SDCC.y
6965         * src/SDCCglue.c
6966         * src/z80/gen.c
6967         * src/z80/gen.h
6968         * src/z80/main.c
6969         * src/z80/peeph-z80.def
6970         * src/z80/peeph.def
6971         * src/z80/z80.h
6972
6973 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6974
6975         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6976
6977 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6978
6979         * device/lib/hc08/_mullong.c: Removed extra #endif
6980
6981 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6982
6983         * sim/ucsim/hc08.src/inst.cc,
6984         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6985         carries from x to h
6986         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6987         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6988         * device/include/stdarg.h: fixed varargs for hc08
6989         * device/lib/Makefile.in,
6990         * device/lib/hc08/Makefile,
6991         * device/lib/hc08/_mulint.c,
6992         * device/lib/hc08/_mullong.c: fixed some endian problems
6993
6994 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6995
6996         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6997         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6998         * device/lib/_gptrget.c,
6999         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7000
7001 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7002
7003         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7004         * src/SDCCast.c (astErrors): fixed bug #846007
7005         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7006
7007 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7008
7009         * src/SDCCast.c (decorateType): disabled a transformation I added in
7010         revision 1.188 (access to fields of a structure at an absolute address);
7011         it breaks with bitfields, extern declarations, and gcse analysis.
7012         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7013         could be assigned through a pointer, so don't complain.
7014         * src/SDCCast.c (astErrors),
7015         * src/SDCCast.h,
7016         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7017
7018 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7019
7020         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7021         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7022         output of __config directives, since gpasm now supports them
7023         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7024         pre-processor macro, i.e. -DMCU=p18f452
7025         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7026         and modified to handle 'cast' icode similarly to '=' icode
7027         * src/pic16/device.h (typedef struct PIC_device): added field
7028         'extMIface' to indicate that chip has external memory interface
7029         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7030         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7031         18F8720
7032
7033 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7034
7035         * src/SDCC.y (pointer): fixed bug #846006
7036         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7037         * src/SDCCast.c (decorateType): fixed bug #846009
7038         * src/ds390/peeph.def,
7039         * src/ds390/gen.c (genAnd, genOr),
7040         * src/mcs51/peeph.def,
7041         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7042
7043 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7044
7045         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7046         * src/SDCCdflow.c
7047         * src/SDCCcse.c
7048         * src/SDCCcse.h
7049         * src/SDCCBBlock.h
7050         * src/SDCCBBlock.c
7051
7052 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7053
7054         fixed bug #845089
7055         * src/SDCCbitv.h,
7056         * src/SDCCbitv.c: added function to free a bitvector
7057         * src/SDCClrange.h,
7058         * src/SDCClrange.c: added function to recompute the liveranges
7059         * src/avr/ralloc.c,
7060         * src/ds390/ralloc.c,
7061         * src/hc08/ralloc.c,
7062         * src/mcs51/ralloc.c,
7063         * src/pic/ralloc.c,
7064         * src/pic16/ralloc.c,
7065         * src/xa51/ralloc.c,
7066         * src/z80/ralloc.c: recompute the liveranges after register packing
7067
7068 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7069
7070         * src/SDCCloop.c (newInduction): fixed bug #845630
7071
7072 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7073
7074         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7075         inadvertantly left behind from my 2003-11-12 change
7076
7077 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7078
7079         Updated headers I neglected to commit yesterday.
7080         * src/SDCClrange.h,
7081         * src/SDCCicode.h
7082
7083 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7084
7085         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7086         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7087         * src/SDCCopt.c (eBBlockFromiCode),
7088         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7089         the creation of the key hash table from the sequencing so it can be used
7090         earlier (for some GCSE bug fixes still pending)
7091
7092 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7093
7094         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7095         * support/regression/tests/addsub.c: testing genPlus shortcut
7096
7097 2003-11-15  Borut Razem <borut.razem AT siol.net>
7098
7099         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7100
7101 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7102
7103         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7104         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7105         ordering is immaterial.
7106         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7107
7108 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7109
7110         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7111         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7112         (SIGSEV) of bug #840381
7113         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7114         unlink new file before rename if new and old filenames are the same)
7115
7116 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7117
7118         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7119         uninitialized variables) for the mcs51. Set environment variable
7120         SDCC_GENRAMCLEAR to test.
7121         xdata initialization slightly shorter
7122
7123 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7124
7125         * src/SDCCsymt.h,
7126         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7127         #838241 & 780691 (basicly the same bug)
7128         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7129         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7130
7131 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7132
7133         * src/SDCCmain.c (linkEdit): "fix" #834252
7134
7135 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7136
7137         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7138         * src/SDCCast.h,
7139         * src/SDCC.y: fixed bug #819403
7140
7141 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7142
7143         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7144         the reentrant attribute.
7145         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7146         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7147         simulation
7148         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7149         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7150         erroneously reduced to a literal.
7151         * src/hc08/ralloc.c (packRegisters, rematStr),
7152         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7153         some cases
7154
7155 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7156
7157         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7158         * doc/sdccman.lyx: changed from 'article' to 'book'
7159         * doc/Makefile: readded test_suite_spec and cdbfileformat
7160
7161 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7162
7163         * device/include/stdlib.h: include malloc.h to comply with ANSI
7164         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7165
7166 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7167
7168         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7169         * doc/clean.mk: also remove *.out files
7170         * doc/sdccman.lyx: some additions, larger top/bottom margins
7171
7172 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7173
7174         * src/SDCC.y: fixed bug #837365
7175         * support/regression/tests/bitopcse.c
7176         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7177         a symbol (might be valop instead)
7178         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7179         * device/lib/clean.mk: added hc08 to the cleaning list
7180
7181 2003-11-04  Borut Razem <borut.razem AT siol.net>
7182
7183         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7184           made 2003-11-04
7185         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7186           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7187           malloc is declared in standard stdlib.h
7188
7189 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7190
7191         * device/lib/hc08/Makefile: need to clean .rel not .o files
7192         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7193
7194 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7195
7196         * src/port.h,
7197         * src/hc08/main.c,
7198         * src/mcs51/main.c,
7199         * src/ds390/main.c,
7200         * src/z80/main.c,
7201         * src/avr/main.c,
7202         * src/pic/main.c,
7203         * src/pic16/main.c,
7204         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7205         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7206         tests (which uses the port's oclsExpense function)
7207         * src/SDCC.y,
7208         * src/SDCCast.c,
7209         * src/SDCCicode.c,
7210         * src/hc08/gen.c,
7211         * src/ds390/gen.c,
7212         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7213
7214 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7215
7216         * src/SDCCcse.c (ifxOptimize),
7217         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7218         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7219         deleting the IFX iCode.
7220         * src/hc08/ralloc.c: reduced unneeded slocs
7221         * src/hc08/gen.c: fixed bug in asmopToBoolean
7222
7223 2003-11-04  Borut Razem <borut.razem AT siol.net>
7224
7225         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7226           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7227           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7228           transferred to configure
7229
7230 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7231
7232         Use headers defined in the C[++] standards:
7233         * sim/ucsim/gui.src/serio.src/fileio.cc
7234         * sim/ucsim/gui.src/serio.src/frontend.cc
7235         * sim/ucsim/gui.src/serio.src/main.cc
7236         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7237         * support/Util/NewAlloc.c
7238         * as/hc08/lklibr.c
7239         * as/mcs51/lklibr.c
7240         * as/z80/aslist.c
7241         * as/z80/assym.c
7242
7243 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7244
7245         * Added MSVC projects for hc08 assembler and linker:
7246         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7247         /as/hc08/link_hc08.dsp
7248
7249 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7250
7251         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7252
7253 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7254
7255         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7256
7257 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7258
7259         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7260
7261 2003-10-31  Borut Razem <borut.razem AT siol.net>
7262
7263         * support/cpp2/cpplib.h,
7264           support/cpp2/cpplib.c,
7265           support/cpp2/cpplex.c,
7266           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7267           to switch _asm block preprocessing on / off. Default is
7268           #pragma preproc_asm +
7269
7270 2003-10-31  Borut Razem <borut.razem AT siol.net>
7271
7272         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7273           when outputting comment blocks (when executed with -C option) and
7274           _asm (SDCPP specific) blocks
7275
7276 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7277
7278         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7279
7280 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7281
7282         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7283
7284 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7285
7286         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7287         * src/SDCCast.c (decorateType): fixed bug #832664
7288
7289 2003-10-31  Borut Razem <borut.razem AT siol.net>
7290
7291         * support\cpp2\cpplex.c: fixed for SDCPP:
7292           comments(when executed with -C option) and _asm blocks
7293           were included even if they where in skipped #if block.
7294           Applied solution from GCC cpp 3.3.2
7295
7296 2003-10-31  Borut Razem <borut.razem AT siol.net>
7297
7298         * src/SDCC.lex: sdcc now understands both formats:
7299           '# <line_number> <file_name>' and
7300           '#line <line_number> <file_name>'
7301         * support/cpp2/cppmain.c: sdcpp now generates the standard
7302           '# <line_number> <file_name>' instead of former
7303           '#line <line_number> <file_name>'
7304
7305 2003-10-30  Borut Razem <borut.razem AT siol.net>
7306
7307         * support/cpp2/cpphash.h,
7308         * support/cpp2/cpplib.h
7309         * support/cpp2/cpplex.c,
7310         * support/cpp2/cppmain.c,
7311         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7312
7313 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7314
7315         Fixed a number of problems revealed by bug #827883.
7316         * src/SDCCloop.c (loopInvariants): Spill location of the
7317         result operand should be recomputed if extracted from
7318         a loop. Also, don't extract assignments of an iTemp
7319         from a literal.
7320         * src/SDCCast.c (isConformingBody): loop reversal should
7321         not occur if the control variable is involved with a
7322         relational operator.
7323
7324 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7325
7326         * .version: bumped to 2.3.6 to reflect the big improvements
7327         made by Erik and Klaus. Thanks!
7328
7329 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7330
7331         Replaced the livrange code.
7332         * src/SDCClrange.c: added new LR code
7333         * src/SDCCloop.c,
7334         * src/SDCCBBlock.h: removed remainig parts from old LR code
7335         * src/ds390/ralloc.c,
7336         * src/ds390/gen.c: minor fixes to make it work with new code
7337
7338 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7339
7340         * as/hc08/asm.h,
7341         * as/hc08/lkrloc.c,
7342         * src/hc08/gen.c,
7343         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7344         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7345         (tweaked fix for bug #818696)
7346
7347 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7348
7349         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7350
7351 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7352
7353         * src/SDCCmain.c,
7354         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7355         * src/mcs51/gen.c (gencjneshort),
7356         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7357         more efficient (per Scott Bronson's suggestion)
7358
7359 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7360
7361         Extended the semantics of the critical keyword to include
7362         individual statements. See RFE #827755 and #799831
7363         * src/SDCC.y
7364         * src/SDCCicode.c
7365         * src/SDCCopt.c
7366         * src/SDCCast.c
7367         * support/Util/SDCCerr.c
7368         * support/Util/SDCCerr.h
7369         * src/mcs51/gen.c
7370         * src/ds390/gen.c
7371         * src/hc08/gen.c
7372
7373 2003-10-19  Borut Razem <borut.razem AT siol.net>
7374
7375         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7376
7377 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7378
7379         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7380         Fixed bug #818696
7381         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7382         and predecrement operand is displayed
7383
7384 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7385
7386         * src/SDCCval.c (valMinus): fixed bug #826041
7387
7388 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7389
7390         Some hc08 related updates that I missed earlier
7391         * sim/ucsim/stypes.h
7392         * support/regression/ports/hc08/spec.mk
7393
7394 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7395
7396         New target "hc08" for the Motorola 68hc08 family of micros
7397
7398         * configure
7399         * configure.in
7400         * Makefile
7401         * src/hc08/*
7402         * src/SDCCmain.c
7403         * src/port.h
7404         * sim/ucsim/hc08.src/*
7405         * sim/ucsim/configure.in
7406         * src/ucsim/configure
7407         * sim/ucsim/packages_in.mk
7408         * as/hc08/*
7409         * as/Makefile
7410         * device/include/mc68hc908qy.h
7411         * device/lib/hc08/*
7412         * device/lib/Makefile.in
7413         * support/regression/ports/hc08/*
7414         * support/regression/Makefile
7415
7416 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7417
7418         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7419         regression test
7420         * src/ds390/gen.c (genCast): fixed bug #821957
7421
7422 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7423
7424         * device/lib/logf.c: "fixed" overlay bug
7425         * support/regression/ports/host/spec.mk: added m library
7426         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7427         * support/regression/tests/float_trans: added (for Eric)
7428
7429 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7430
7431         * src/mcs51/gen.c (genCpl): fixed bug
7432         http://sf.net/mailarchive/message.php?msg_id=6263915
7433
7434 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7435
7436         * src/SDCCast.c (decorateType): added extended constant folding
7437         * src/SDCCsymt.c (computeType): cleanup
7438         * src/SDCCval.c (valShift): minor optimization
7439         * support/regression/tests/ast_constant_folding.c: added
7440
7441 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7442
7443         * src/SDCCmain.c: removed some unintended changes
7444
7445 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7446
7447         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7448         * src/z80/gen.c: fixed part of bug #817589
7449         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7450
7451 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7452
7453         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7454         * src/SDCCcflow.c
7455         * src/SDCCcse.c
7456         * src/SDCCdflow.c
7457         * src/SDCClabel.c
7458         * src/SDCClrange.c
7459         * src/SDCCmem.c
7460         * src/SDCCopt.c
7461         * src/SDCCpeeph.c
7462         * src/SDCCset.c
7463         * src/avr/ralloc.c
7464         * src/ds390/ralloc.c
7465         * src/izt/ralloc.c
7466         * src/mcs51/ralloc.c
7467         * src/pic/ralloc.c
7468         * src/pic16/ralloc.c
7469         * src/xa51/ralloc.c
7470         * src/z80/ralloc.c
7471         * src/z80/gen.c: removed unused label "release:"
7472
7473 2003-10-06  Borut Razem <borut.razem AT siol.net>
7474
7475         * src/SDCC.lex: removed definition of unused variables
7476           save_optimize and save_options
7477
7478 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7479
7480         * clean.mk: removed '=' in "-maxdepth=1"
7481         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7482         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7483
7484 2003-10-06  Borut Razem <borut.razem AT siol.net>
7485
7486         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7487           my_unput() replaced by unput()
7488
7489 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7490
7491         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7492         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7493         type-punned pointer will break strict-aliasing rules"
7494         Old LR behaviour is again default; Klaus' LR can be choosen by
7495         defining the environment variable LRKLAUS
7496         * src/SDCCBBlock.h
7497         * src/SDCCloop.c
7498         * src/SDCClrange.c
7499         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7500         * clean.mk: fixed removal of files in bin/CVS/
7501         * device/lib/clean.mk: fixed removal of directories small and large
7502         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7503         * src/SDCCicode.c,
7504         * src/SDCCval.c: removed superflous test for pedantic
7505
7506 2003-10-05  Borut Razem <borut.razem AT siol.net>
7507
7508         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7509           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7510           message "unmatched #pragma SAVE and #pragma RESTORE"
7511
7512 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7513
7514         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7515           assembly, critical functions, atomic, nojtbound)
7516
7517 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7518
7519         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7520         * src/SDCCBBlock.h
7521         * src/SDCCloop.c
7522         * src/SDCCloop.h
7523         * src/SDCClrange.c
7524
7525 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7526
7527         * src/z80/gen.h,
7528         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7529         * src/mcs51/gen.h
7530         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7531         * src/ds390/gen.h
7532         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7533         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7534         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7535
7536 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7537
7538         * src/z80/gen.c (genRet): fixed bug #524753
7539         * src/z80/gen.c (genCast): fixed internal error on cast from
7540         pointer to long
7541         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7542         fix for bug #477835 to the z80
7543         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7544         for tracking iCodes in the peephole optimizer for z80
7545
7546 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7547
7548         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7549         the other part of bug #814548
7550         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7551
7552 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7553
7554         * src/SDCCcse.c: fixed part of bug #814548
7555
7556 2003-09-28  Borut Razem <borut.razem AT siol.net>
7557
7558         * src/asm.c: rewrite of printILine() to use temporary file instead
7559           a pipe
7560         * src/xa51/main.c: commented out declaration of int rewinds
7561
7562 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7563
7564         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7565
7566 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7567
7568         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7569         * src/asm.c (printILine): Fixed bug #811015
7570
7571 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7572
7573         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7574         freeing.
7575
7576 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7577
7578         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7579         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7580         to correctly handle general case of AOP_PAIRPTR
7581         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7582
7583 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7584
7585         * src/mcs51/ralloc.c (fillGaps),
7586         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7587         register positioning bug)
7588
7589 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7590
7591         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7592
7593 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7594
7595         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7596         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7597         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7598         (ralloc doesn't intentionally do this now, but perhaps later)
7599         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7600         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7601         register positioning bugs (Fixed bug #762602 and #795325)
7602         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7603         (Fixed bug #808779)
7604         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7605         lines that --i-code-in-asm generates
7606
7607 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7608
7609         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7610         trying to fclose a FILE* that was already closed.
7611
7612 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7613
7614         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7615         of const struct should be treated as if const themselves)
7616
7617 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7618
7619         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7620
7621 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7622
7623         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7624         Unix (/n) and DOS (/r/n) line terminations.
7625
7626 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7627
7628         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7629         bug #613775
7630
7631 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7632
7633         * src/mcs51/gen.c (genFunction, genEndFunction),
7634         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7635         and restore of EA so that stack offsets to parameters are
7636         correct when using both critical and reentrant/stack-auto.
7637         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7638         size (can be triggered in error if sloc is shared between
7639         different sized objects)
7640         * device/include/float.h: fixed macros to explicitly use
7641         unsigned long where needed
7642
7643 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7644
7645         Feature req. 799831: added code to allow nesting of critical functions
7646         * src/mcs51/gen.c (genFunction, genEndFunction)
7647         * src/ds390/gen.c (genFunction, genEndFunction)
7648
7649 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7650
7651         * src/SDCCsymt.c (sclsFromPtr),
7652         * src/SDCCsymt.h,
7653         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7654         support for standard C idiom of memory mapped variables; for
7655         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7656         to xdata int at 0x1234 tempvar = 1.
7657         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7658         provided by Akiya ISHIDA
7659
7660 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7661
7662         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7663         * src/SDCCval.c (constVal): added reduction from int to char
7664         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7665         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7666         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7667         to ignore the sign
7668         * support/regression/tests/shifts.c: fixed
7669
7670 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7671
7672         * src/z80/gen.c (genXor): Fixed bug #805445
7673
7674 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7675
7676         Fixed bug #621531 (const & volatile confusion in the type chain).
7677         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7678         refer to the const or volatile state of the pointer itself.
7679
7680         * src/SDCCast.c
7681         * src/SDCCglue.c
7682         * src/SDCCicode.c
7683         * src/SDCCsymt.c
7684         * src/SDCCval.c
7685         * src/SDCC.y
7686         * src/SDCCsymt.h
7687         * src/pic/gen.c
7688         * src/pic/ralloc.c
7689         * src/pic16/gen.c
7690         * src/pic16/ralloc.c
7691         * support/regression/tests/const.c
7692
7693 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7694
7695         When checking for duplicated modules, use absolute paths
7696         instead of relative paths.  Files changed:
7697
7698         * as/mcs51/lklib.c
7699         * link/z80/lklib.c
7700
7701 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7702
7703         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7704
7705 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7706
7707         * device/include/string.h: added size_t typedef, changed
7708         prototypes to use size_t, eliminated separate reentrant and
7709         non-reentrant declarations, added _memmove declaration
7710         * device/lib/_memcpy.c: changed to use size_t instead of int,
7711         changed /4 to >>2 to avoid division library call
7712         * device/lib/_memcmp.c,
7713         * device/lib/_memset.c,
7714         * device/lib/_strncat.c,
7715         * device/lib/_strncpy.c,
7716         * device/lib/_strncmp.c: changed to use size_t instead of int
7717         * device/lib/_memmove.c: new file (fixed bug #772294)
7718         * device/lib/Makefile.in: added _memmove.c
7719         * device/lib/z80/asm_strings.s: fixed bug #772290
7720         * support/regression/tests/bitfields.c: attempt to fix host assertion
7721         failure on amd64-unknown-linux2.2
7722
7723 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7724
7725         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7726         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7727         * as/z80/asmain.c (main): fixed bug #801766
7728
7729 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7730
7731         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7732         compilers
7733
7734 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7735
7736         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7737         reported in bug #800609
7738
7739 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7740
7741         * Top header beautifications in src/pic16 directory:
7742           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7743           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7744           pcoderegs.h, ralloc.c, ralloc.h
7745         * main.c: added top header and GPL license notice
7746         * pcode.c: fixed the if-conditional warning
7747
7748 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7749
7750         * device/lib/_mullong.c: replaced int by short for gcc
7751
7752 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7753
7754         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7755         and JUMPTABLE iCodes properly now (worked by accident before)
7756         * src/mcs51/gen.c (leftRightUseAcc),
7757         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7758         iCode properly now. Use getSize instead of nRegs since a & b
7759         aren't part of the nRegs tally.
7760
7761 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7762
7763         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7764         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7765           before instructions that use the _STATUS register
7766
7767 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7768
7769         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7770         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7771         fetching of the pointer
7772         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7773         copied from genNearPointerSet()
7774         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7775         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7776         If they pop r0/r1 they must be called in the opposite order than aopOp().
7777         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7778         (resp. --stack-auto), prepared for --xstack
7779
7780 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7781
7782         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7783
7784 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7785
7786         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7787         these ports have their own __sdcc_external_start()
7788
7789 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7790
7791         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7792         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7793         type for bits was changed. It resulted in bit variables becoming
7794         global, which is not permitted in PIC 14 assembly output.
7795
7796 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7797
7798         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7799
7800 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7801
7802         Z80 and MCS51 linkers complaint if a public symbol is defined
7803         in more than one library module:
7804
7805         * as/mcs51/lklib.c
7806         * link/z80/lklib.c
7807         * as/mcs51/Makefile.in
7808
7809 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7810
7811         A few small changes that speed up the peephole optimizer.
7812
7813         * src/SDCCpeeph.c
7814
7815 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7816
7817         Try to make the peephole optimizer smarter by maintaining
7818         an association between the assembly source code and the
7819         iCodes that originated them. Put this information to use
7820         with a new peephole rule condition "notVolatile" so that
7821         the rules can be aggressive yet still safe.
7822
7823         * src/SDCCpeeph.c
7824         * src/SDCCpeeph.h
7825         * src/mcs51/gen.c
7826         * src/mcs51/peeph.def
7827
7828 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7829
7830         Fixed bug #741761
7831
7832         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7833         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7834         if the left or right operand symbols have the accuse flag set.
7835
7836 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7837
7838         Changed the type of the result of the ! (NOT) operator to char;
7839         previously it returned the same type as the source. This allows
7840         us to eliminate all the genFloatNot functions (all of its target
7841         implementations were very buggy) since !float can use the same
7842         code as !long now.
7843
7844         * src/SDCCicode.c (ast2iCode): ! returns char
7845         * src/mcs51/gen.c (genNot, genNotFloat),
7846         * src/ds390/gen.c (genNot, genNotFloat),
7847         * src/z80/gen.c (genNot, genNotFloat),
7848         * src/pic/gen.c (genNot, genNotFloat),
7849         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7850
7851 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7852
7853         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7854         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7855            during interrupts. Ensure WSAVE is located at a shared bank address.
7856         2. Fixed page selection in some places
7857         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7858            the registers name strings.
7859         4. Fixed "signed / unsigned compare" compiler warnings.
7860         5. The PIC port manages its own allocation of the general purpose
7861            registers, but makes no attempt to reuse them. As a result when
7862            compiling it soon runs out of general purpose registers. Some
7863            additional code was added to the files pcode.c and device.c to walk
7864            through the function call tree and rename the registers so that they
7865            get reused.
7866
7867         * src/pic/device.c
7868         * src/pic/gen.c
7869         * src/pic/glue.c
7870         * src/pic/pcode.c
7871         * src/pic/pcode.h
7872         * src/pic/ralloc.c
7873         * src/pic/ralloc.h
7874         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7875         genPlus() & genMinus() when the result is the same as left or right
7876
7877 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7878
7879         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7880
7881 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7882
7883         Made bitfield a distinct type from bit so that bitfields
7884         convert as per ANSI C and bits retain their traditional
7885         boolean style behaviour. Implemented bitfield support in
7886         the z80 port.
7887
7888         * src/SDCCsymt.h,
7889         * src/SDCCsymt.c,
7890         * src/SDCCast.c,
7891         * src/cdbFile.c,
7892         * src/mcs51/gen.c,
7893         * src/ds390/gen.c: bit v bitfield split
7894         * src/z80/gen.c: New support for bitfields
7895         * support/regression/tests/bitfields.c: reenabled z80,
7896         added more tests
7897
7898 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7899
7900         Rules 246.x, 247.x relate to bitfields, the others speed up
7901         access to xdata mapped I/O devices.
7902
7903         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7904
7905 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7906
7907         Cleaned up genPackBits and genUnpackBits and added two helper
7908         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7909         for literal assignments in genPackBits (thanks to Frieder for
7910         reminding me).
7911
7912         * src/mcs51/gen.c
7913         * src/ds390/gen.c
7914
7915 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7916
7917         Fixed bug #748310 (pointer to function type mishandled when the
7918         function name is omitted). Also fixed a SIGSEGV when a function
7919         attribute (reentrant, etc) is used on a non-function or on a
7920         function but misplaced before the parameter list.
7921
7922         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7923         bug #748310
7924         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7925         * support/Util/SDCCerr.h,
7926         * support/Util/SDCCerr.c: Added func attr misuse error msg
7927
7928 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7929
7930         Fixed bug #787649 by anonymous
7931         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7932         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7933
7934 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7935
7936         Fixed numerous bitfield problems.
7937
7938         * src/SDCC.y: More bitfield related error checking
7939         * src/SDCCsymt.h,
7940         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7941         * support/Util/SDCCerr.h,
7942         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7943         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7944         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7945         * support/regression/tests/bitfields.c: tests added
7946
7947 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7948
7949         Made the constant following the "interrupt" keyword optional. If
7950         omitted, the function will not automatically be given an entry
7951         in the interrupt vector table (similar to #pragma NOIV, but
7952         less syntacticly kludgy). The interrupt number is also now
7953         range checked. Also fixed a bug in the high order bit example
7954         in the manual.
7955
7956         * src/SDCC.y
7957         * src/SDCCmem.c
7958         * src/SDCCglue.c
7959         * src/SDCCsymt.h
7960         * support/Util/SDCCerr.c
7961         * support/Util/SDCCerr.h
7962         * doc/sdccman.lyx
7963
7964 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7965
7966         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7967         * src/SDCCicode.c (operandOperation): rewritten some ops
7968         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7969         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7970         other type
7971         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7972         be re-activated by defining REDUCE_LITERALS)
7973         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7974         unsigned, but are signed by default
7975         * src/SDCCval.c (constVal): rearranged
7976         * src/SDCCval.c (valMod): preliminary fix
7977         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7978         * support/regression/literalop.c: added, work in progress
7979
7980 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7981
7982         Generate warnings for useless declarations like "char data;"
7983         that don't do what new users expect.
7984
7985         * src/SDCC.y
7986         * support/Util/SDCCerr.h
7987         * support/Util/SDCCerr.c
7988
7989 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7990
7991         * src/SDCCval.c (valMult): fix overflow detection of negative int
7992
7993 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7994
7995         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7996
7997         Changes to support big endian targets:
7998
7999         * src/ports.h
8000         * src/SDCCglue.c
8001         * src/avr/main.c
8002         * src/ds390/main.c
8003         * src/izt/i186.c
8004         * src/mcs51/main.c
8005         * src/pic/main.c
8006         * src/pic16/main.c
8007         * src/xa51/main.c
8008         * src/z80/main.c
8009
8010 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8011
8012         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8013         * device/lib/time.c: fixed warning "integer overflow in expression"
8014
8015 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8016
8017         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8018         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8019         constants are unsigned; added recognition of "u" flag for unsigned
8020         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8021         * src/SDCCval.c (valDiv, valMod): fixed signdness
8022         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8023         signedness of modulo, left and right shift
8024         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8025         * support/Util/SDCCerr.h: added warning W_INT_OVL
8026         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8027         * src/SDCCast.c (ast_print): improved output of constants
8028
8029 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8030
8031         Fixed some warnings when building with MSVC:
8032
8033         * as\mcs51\asdata.c
8034         * as\z80\asdata.c
8035         * as\mcs51\asm.h
8036         * as\z80\asm.h
8037         * link\z80\aslink.h
8038         * link\z80\lkdata.c
8039         * link\z80\lkeval.c
8040         * link\z80\lkgb.c
8041         * link\z80\lkihx.c
8042         * link\z80\lks19.c
8043         * link\z80\lksym.c
8044         * support\cpp2\cpplib.c
8045         * src\ds390\gen.c
8046         * src\mcs51\gen.c
8047
8048 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8049
8050         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8051
8052 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8053
8054         * support\librarian\clean.mk: Do not remove Makefile.
8055         * support\librarian\Makefile: added.
8056
8057 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8058
8059         Added librarian to MSVC build:
8060         * all.dsp
8061         * sdcc.dsw
8062         * support\librarian\librarian.dsp
8063
8064         'configure' not needed for librarian, removed:
8065         * support\librarian\configure
8066         * support\librarian\configure.in
8067         * support\librarian\config_in.h
8068         * support\librarian\Makefile.in
8069
8070         Hopefully these ones built the librarian and the rest of sdcc properly:
8071         * Makefile
8072         * Makefile.common.in
8073
8074         Messed up 'configure', so revert to previous version:
8075         * configure
8076         * configure.in
8077
8078 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8079
8080         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8081         there, while the mantissa of a double is "only" 53 bits wide.
8082
8083 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8084
8085         Adding sdcclib to the build.  MSVC project coming soon.
8086         Files added/changed:
8087
8088         * support\librarian\clean.mk
8089         * support\librarian\configure
8090         * support\librarian\configure.in
8091         * support\librarian\config_in.h
8092         * support\librarian\Makefile.bcc
8093         * support\librarian\Makefile.in
8094         * support\librarian\sdcclib.c
8095         * Makefile.bcc
8096         * Makefile
8097         * Makefile.common.in
8098         * configure
8099         * configure.in
8100
8101 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8102
8103         Linker now complaints if linked modules have conflicting options, for
8104         example, one compiled using --model-large and another one compiled with
8105         --model-small.  The following files were modified:
8106
8107         * as\mcs51\asdata.c
8108         * as\mcs51\aslink.h
8109         * as\mcs51\asm.h
8110         * as\mcs51\asmain.c
8111         * as\mcs51\asout.c
8112         * as\mcs51\i51pst.c
8113         * as\mcs51\lkdata.c
8114         * as\mcs51\lklibr.c
8115         * as\mcs51\lkmain.c
8116         * as\z80\asdata.c
8117         * as\z80\asm.h
8118         * as\z80\asmain.c
8119         * as\z80\asout.c
8120         * as\z80\z80pst.c
8121         * link\z80\aslink.h
8122         * link\z80\lkdata.c
8123         * link\z80\lklibr.c
8124         * link\z80\lkmain.c
8125         * src\SDCCglue.c
8126
8127 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8128
8129         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8130         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8131
8132 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8133
8134         * src/z80/mappings.i: fix _mul[us][int,long] entries
8135
8136 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8137
8138         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8139
8140 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8141
8142         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8143         * support/regression/tests/bitopcse.c: added
8144         fixed warning:
8145         * src/avr/gen.c:
8146         * src/pic/gen.c:
8147         * src/pic16/gen.c:
8148         * src/z80/gen.c:
8149         * src/xa51/gen.c:
8150
8151 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8152
8153         added support for new library format to z80, gbz80 linkers:
8154         *link/z80/aslink.h
8155         *link/z80/lklex.c
8156         *link/z80/lklib.c
8157         *link/z80/lklist.c
8158
8159 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8160
8161         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8162         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8163
8164 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8165
8166         added DUMMY_READ_VOLATILE:
8167         * src/SDCC.y:
8168         * src/avr/gen.c:
8169         * src/xa51/gen.c:
8170         * src/z80/gen.c:
8171         * src/pic/gen.c:
8172         * src/pic16/gen.c:
8173         * src/mcs51/gen.c:
8174         * src/ds390/gen.c:
8175         * src/SDCCcse.c (algebraicOpts): many improvements
8176         * src/SDCCcse.h: removed algebraicOpts()
8177         * src/SDCCicode.c (picDummyRead): added
8178
8179 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8180
8181         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8182         "Insufficient space in data memory".
8183
8184 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8185
8186         * src/mcs51/gen.c: fixed bug #771358
8187         * src/z80/gen.c: fixed bug #759087
8188
8189 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8190
8191         * src/pic16/glue.c: minor cleanup by Vangelis
8192
8193 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8194
8195         * device/include/regc515c.h: fixed #758477
8196         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8197         * device/lib/_gptrput.c: saved a few bytes
8198         * my tab spacing is 8, yours too?)
8199         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8200         * device/lib/serial.c: process RX bytes earlier than TX bytes
8201         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8202
8203 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8204
8205         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8206
8207 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8208
8209     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8210
8211 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8212
8213         * device/lib/Makefile.in: bad fix, reverted to 1.43
8214
8215 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8216
8217         * device/lib/Makefile.in: added missing z80 object files
8218
8219 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8220
8221         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8222         pic16 progress by Vangelis:
8223         * src/SDCCglobl.h:
8224         * src/SDCCmain.c:
8225         * src/pic/Makefile:
8226         * src/pic:
8227         * pic/Makefile:
8228         * pic16/device.c:
8229         * pic16/device.h:
8230         * pic16/gen.c:
8231         * pic16/gen.h:
8232         * pic16/genarith.c:
8233         * pic16/glue.c:
8234         * pic16/main.c:
8235         * pic16/pcode.c:
8236         * pic16/pcode.h:
8237         * pic16/pcodepeep.c:
8238         * pic16/peeph.def:
8239
8240 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8241
8242     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8243
8244 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8245
8246     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8247     added gbz80 build to MSVC project.
8248     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8249     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8250     from 8051 stuff and setup so it links using a .lnk file.
8251
8252 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8253
8254     * support/librarian/sdcclib.c: sdcc librarian.
8255     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8256     with sdcclib.
8257
8258 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8259
8260     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8261
8262 2003-07-02  Borut Razem <borut.razem AT siol.net>
8263
8264         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8265         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8266         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8267         src/xa51/main.c, src/z80/main.c:
8268         virtualization of glue() function: each port has it's own glue function,
8269         which is accessed by do_glue function pointer in PORT.general structure
8270
8271 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8272
8273         * DS800C400 fun, improved ROM interface and tinibios.
8274
8275 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8276
8277         * More support for DS80C400. Now includes beginning of interface to ROM.
8278
8279 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8280
8281         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8282
8283 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8284
8285         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8286
8287 2003-06-19  Borut Razem <borut.razem AT siol.net>
8288
8289         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8290
8291 2003-06-19  Borut Razem <borut.razem AT siol.net>
8292
8293         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8294         fixed Z80 port - crt0.o: cannot open.
8295
8296 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8297
8298         * support/Util/MySystem.c (merge_command): revert bad fix
8299
8300 2003-06-18  Borut Razem <borut.razem AT siol.net>
8301
8302         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8303
8304 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8305
8306         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8307         option --use-stdout sends errors to stdout instead of stderr.
8308
8309 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8310
8311         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8312
8313 2003-06-15  Borut Razem <borut.razem AT siol.net>
8314
8315         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8316         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8317         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8318         fixed width array of pointers replaced with sets;
8319         multiple include and lib paths ared transferred to preprocessor and linker
8320         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8321         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8322         fixed width array of pointers
8323         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8324         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8325         fixupPath(), getPathDifference()
8326         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8327         fixed width array of pointers
8328
8329 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8330
8331         * src/pic16/ralloc.c: fix warnings
8332         * src/pic16/pcode.c: fix warning
8333
8334 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8335
8336          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8337         know all the details, but essentially this set of changes enable
8338         the pic16 port to generate movff instructions and generate assembler
8339         directives,
8340         * src/SDCCmain.c:
8341         * src/pic16/gen.c:
8342         * src/pic16/glue.c:
8343         * src/pic16/pcode.c:
8344         * src/pic16/device.c:
8345         * src/pic16/main.c:
8346         * src/pic16/pcode.h:
8347         * src/pic16/pcoderegs.c:
8348         * src/pic16/ralloc.c:
8349         * src/pic16/ralloc.h:
8350
8351 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8352
8353         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8354         added option --vc, so sdcc errors and warnings are compatible with
8355         Microsoft Visual Studio.
8356
8357 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8358
8359         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8360           device/lib/libfloat.lib: added atof function.
8361
8362 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8363
8364         * doc/sdccman.lyx: updated to Lyx 1.3
8365         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8366         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8367         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8368
8369 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8370
8371         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8372
8373 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8374
8375         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8376           additions to the "related tools/documentation" section
8377
8378 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8379
8380         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8381
8382 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8383
8384         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8385         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8386
8387 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8388
8389         * doc/sdccman.lyx: fix double dash and other minor things
8390         * doc/Makefile: fix double dash
8391
8392 2003-05-28  Karl Bongers(patches from Martin Helmling)
8393         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8394           condition and ignore commands.
8395
8396 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8397
8398         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8399           is in parts still quite out of date, I did changes as far as I felt makes sense
8400           for a non-native english speaker.
8401           Please feel free to add to the manual or to correct my changes.
8402         * doc/Makefile: undid touching the date of intermediate tex files.
8403
8404 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8405
8406         * doc/sdccman.lyx: Manual has an index now
8407
8408 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8409
8410         Finalize muluint/mulsint and mululong/mulslong merging:
8411         * device/lib/_mulint.c
8412         * device/lib/_mullong.c
8413         * device/lib/gbz80/mul.s
8414         * device/lib/gbz80/stubs.s
8415         * device/lib/z80/mul.s
8416         * device/lib/z80/stubs.s
8417         * src/SDCCsymt.c (initCSupport)
8418
8419 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8420
8421         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8422         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8423           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8424           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8425           instead of /Zm500.
8426
8427 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8428
8429         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8430           the regression tests I'm not brave enough to enable 245.b, 245.c
8431         * doc/sdccman.lyx: added latex preamble for hyperref package.
8432           Using pdflatex this will give you a hyperlinked pdf file with
8433           bookmarks. (prepend '%' before /usepackage if this breaks something)
8434
8435 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8436
8437          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8438
8439 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8440
8441         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8442
8443 2003-05-21    <johan AT balder>
8444
8445         * src/SDCCglue.c (printIval): fixed bug #739934
8446
8447 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8448
8449         Applied patch from bug 737905 (renamed yylineo to mylineno):
8450         * src/altlex.c
8451         * src/SDCCast.c
8452         * src/SDCglobl.h
8453         * src/SDCC.lex
8454         * src/SDCCsymt.c
8455         * src/SDCCval.c
8456         * src/pic16/pcode.c: Cleaned warnings
8457         * src/pic16/pcodeflow.c: Cleaned warnings
8458         * src/pic16/pcoderegs.c: Cleaned warnings
8459
8460 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8461
8462         * src/pic16/pcode.c: Cleaned warnings
8463         * src/pic16/pcodepeep.c: Cleaned warnings
8464         * src/pic16/ralloc.c: Cleaned warnings
8465
8466 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8467
8468         * doc/sdccman.lyx: fixed bug 739745
8469         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8470
8471 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8472
8473         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8474         it can be defined with CFLAGS when running configure
8475         * src/SDCCmain.c: fixed compiling + linking with object files
8476
8477 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8478
8479         * configure.in: configure for pic16 port,
8480             added --disable-pic16-port
8481         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8482         * src/SDCCmain.c: linkOptions is changed to set *,
8483             added if/endif conditional macros to remove options help
8484             messages from optionsTable when a port is not configured, added
8485             support for the PIc16 port in the ports table, when executing
8486             the compiler with no port specified on command line, a default
8487             port is selected with the new macro DEFAULT_PORT which is
8488             defined in port.h, in setDefaultOptions() linkOptions is removed
8489             from initialization assignment, since now it is a set,
8490             parseCmdLine uses setParseWithComma for linkOptions, in
8491             linkEdit() linkOptions are accessed with new function indexSet()
8492             which returns the i'th item of a set variable. See SDCCset.c, in
8493             linkEdit() when calling buildCmdLine(), added linkOptions as
8494             last argument. Now users can pass arguments to gplink via the
8495             -Wl option, main() uses pic16glue() to glue up pic16 programs
8496         * src/SDCCpeeph.c: various changes to support pic16
8497         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8498             return the i'th item of the set
8499         * src/SDCCset.h: added function prototype for indexSet()
8500         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8501         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8502         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8503             added macro DEFAULT_PORT
8504         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8505         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8506             generated
8507         * src/pic16/glue.c: commented out some error producing lines
8508         * src/pic16/main.c: __config directives are commented out to stop
8509             gpasm complaining and test the linkage with gplink, _linkCmd and
8510             _asmCmd changed to be more gplink and gpasm friendly
8511         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8512             produced an error when parsed, peep rule 12 is added to utilize
8513             movff, but it is commented out since the pCode does not support
8514             yet a command with 2 address arguments
8515
8516 2003-05-18    <johan AT balder>
8517
8518         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8519         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8520 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8521
8522         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8523   Added feature to script commands from file.
8524
8525 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8526
8527         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8528         * src/SDCCutil.c: include ctype.h for win32
8529
8530 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8531
8532         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8533
8534 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8535
8536         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8537   Fixed so you can set breakpoints prior to run, run does not stop
8538   on entry now.  Add tbreak.  Other enhancements and fixes for use
8539   with ddd.
8540
8541 2003-05-12  Borut Razem <borut.razem AT siol.net>
8542
8543         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8544
8545 2003-05-11  Borut Razem <borut.razem AT siol.net>
8546
8547         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8548         the path of bin directory, so that PATH is the only env. variable, which has to be set
8549         in case of standard installation.
8550         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8551         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8552         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8553
8554 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8555
8556         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8557         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8558         temp files are in the port dir; clean the gen/test directory when
8559         generating new test.c
8560         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8561         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8562         * support/regression/tests/zeropad.c: added
8563
8564 2003-05-09    <johan AT balder>
8565
8566         * src/SDCCglue.c: fixed bug #597940
8567
8568 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8569
8570         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8571   cache sfr, optimize next,step, fix off by one sourceline,
8572   support ddd list function.
8573         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8574
8575 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8576
8577         * support/regression/HTMLgen.py: added compare_s2f()
8578         * support/regression/Makefile: redo 1.27
8579         * support/regression/generate-cases.py: redo 1.5
8580
8581 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8582
8583         * support/regression/tests/float.c: workaround 33 bit hex constant
8584         * support/regression/tests/simplefloat.c: fix division for host
8585
8586 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8587
8588         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8589         that tame's the PIC's over-aggressive optimizer.
8590
8591 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8592
8593          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8594          support for MSVC.
8595
8596 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8597
8598         Initial support for DS80C400. "Hello world" runs on TINIm400
8599         (with polled I/O).
8600
8601 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8602
8603          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8604          * Some notes on ddd usage added in debugger/README
8605          Martin Helmling adding more features and fixes for ddd GUI debugger.
8606          Code added for nexti, stepi, up, down, and other adjustments.
8607
8608 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8609
8610         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8611         * src/pic/peeph.def Added two rules to optimize carry manipulation
8612         * src/pic/* removed debug printfs
8613
8614 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8615
8616         * debugger/mcs51/cmd.c: added header newalloc.h
8617
8618 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8619
8620         * as/Makefile: new EXEEXT
8621         * as/z80/Makefile: remove trailing slash of BUILDIR
8622         * as/z80/clean.mk: new EXEEXT
8623         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8624         * support/cpp2/Makefile.in: new EXEEXT
8625         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8626
8627 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8628
8629         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8630         EXEEXT was introduced to fix all related problems with targets
8631         "clean", "install" and "uninstall"; a couple of further flaws
8632         especially with "clean" have been fixed too
8633         * as/mcs51/Makefile.in
8634         * as/mcs51/clean.mk
8635         * as/z80/Makefile
8636         * Makefile
8637         * clean.mk
8638         * debugger/mcs51/Makefile.in
8639         * debugger/mcs51/clean.mk
8640         * link/z80/Makefile
8641         * link/z80/Makefile.in
8642         * link/z80/clean.mk
8643         * link/Makefile
8644         * packihx/Makefile.in
8645         * packihx/clean.mk
8646         * sim/ucsim/Makefile
8647         * sim/ucsim/clean.mk
8648         * sim/ucsim/avr.src/Makefile.in
8649         * sim/ucsim/avr.src/clean.mk
8650         * sim/ucsim/s51.src/Makefile.in
8651         * sim/ucsim/s51.src/clean.mk
8652         * sim/ucsim/xa.src/Makefile.in
8653         * sim/ucsim/xa.src/clean.mk
8654         * sim/ucsim/z80.src/Makefile.in
8655         * sim/ucsim/z80.src/clean.mk
8656         * sim/ucsim/main_in.mk
8657         * sim/ucsim/packages_in.mk
8658         * sim/ucsim/gui.src/Makefile.in
8659         * sim/ucsim/gui.src/serio.src/Makefile.in
8660         * sim/ucsim/gui.src/serio.src/clean.mk
8661         * src/Makefile.in
8662         * src/clean.mk
8663         * support/cpp2/Makefile.in
8664         * support/cpp2/clean.mk
8665         * support/makebin/Makefile
8666         * support/makebin/clean.mk
8667         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8668         * doc/sdccman.lyx: --program-suffix no longer needed
8669
8670 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8671
8672          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8673          Martin Helmling added support for ddd GUI debugger.
8674          Code added to display assembly, set variables, and other commands
8675          to interface to ddd.
8676
8677 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8678
8679         * as/Makefile: fix target clean
8680         * as/clean.mk: fix target clean
8681         * as/z80/clean.mk: fix target clean
8682
8683 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8684
8685         * Makefile.common.in: added  AT EXEEXT AT
8686         * configure.in: removed all mingw32 stuff
8687         * configure: rebuilt from configure.in
8688         * doc/sdccman.lyx: updated section "installation"
8689         * support/scripts/sdcc_mingw32: adapted to configure
8690         * support/scripts/sdcc_cygwin_mingw32: added
8691
8692 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8693
8694         * src/pic Added object file support for the PIC port
8695         * src/pic Applied patch from Craig Franklin (this started the object file support)
8696         * src/regression Updated the PIC regression tests for object files
8697
8698 2003-04-20  Borut Razem <borut.razem AT siol.net>
8699
8700         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8701           lklex.c: In function `getfid':
8702           lklex.c:203: warning: array subscript has type `char'
8703         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8704           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8705         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8706           stack handling macros
8707
8708 2003-04-19  Borut Razem <borut.razem AT siol.net>
8709
8710         * "handling space characters in file path" task:
8711         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8712         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8713         * support/Util/MySystem.h: make it self-sufficient
8714         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8715           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8716           handling space characters in file path
8717         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8718           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8719         * support/Util/MySystem.c: handling space characters in executable's path
8720
8721 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8722
8723         * as/z80/Makefile: fix permanent rebuild of z80
8724         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8725         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8726
8727 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8728
8729         * src/SDCCopt.c: add special case optimization to replace modulo by
8730           a power of two with a bitwise AND.
8731
8732 2003-04-18    <johan AT balder>
8733
8734         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8735
8736 2003-04-17    <johan AT balder>
8737
8738         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8739         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8740
8741 2003-04-13  Borut Razem <borut.razem AT siol.net>
8742
8743         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8744         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8745           fixed mingw problem in adl_NORMALIZE_PATH
8746
8747 2003-04-12  Borut Razem <borut.razem AT siol.net>
8748
8749         * fixed "#pragma SAVE/RESTORE can not be nested":
8750         * src/SDCC.lex: reworked pragma handling functions
8751         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8752         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8753
8754 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8755
8756         * src/SDCCutil.c (pathEquivalent): defined but not used
8757         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8758         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8759         * configure: rebuilt from configure.in
8760         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8761         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8762         * device/include/Makefile.in: replace sdcc_datadir
8763         * device/lib/Makefile.in: replace sdcc_datadir
8764         * Makefile.common.in: add LDFLAGS from configure
8765         * packihx/Makefile.in: use LDFLAGS
8766         * src/Makefile.in: use LDFLAGS
8767         * support/cpp2/Makefile.in: add LDFLAGS from configure
8768         * support/makebin/Makefile: use LDFLAGS
8769         * .version: bumped version number to 2.3.5
8770
8771 2003-04-12  Borut Razem <borut.razem AT siol.net>
8772
8773         * completed "different paths" task:
8774         * src/SDCCmacro.c: fixed bug in handling quotes
8775         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8776         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8777
8778 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8779
8780         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8781
8782 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8783
8784         * ds390/gen.c ds390/peeph.def: fix bug 706781
8785
8786 2003-04-11  Borut Razem <borut.razem AT siol.net>
8787
8788         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8789
8790 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8791
8792         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8793         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8794          set - this bit used to not be set...).
8795         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8796           bad code in PIC Port
8797         * src/regression/and2.c added to test bug 609268
8798         * src/regression/Makefile added and2.c to regression test
8799
8800
8801 2003-04-08    <johan AT CP255758-A>
8802
8803         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8804         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8805         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8806
8807 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8808
8809         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8810         fix bug #487815
8811         * support/cpp2/Makefile.in: fix bug #487815
8812         * configure: rebuilt from configure.in
8813         * Makefile.common.in: docdir changed, new path suffixes
8814         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8815         * sdcc_vc_in.h: reflect changes from sdccconf.h
8816         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8817         * src/SDCCutil.h: remove BINDIR hack
8818         * doc/sdccman.lyx: update new path hierarchy
8819
8820 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8821
8822         * src/SDCCpeeph.c: added okToRemoveSLOC test
8823
8824 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8825
8826         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8827
8828 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8829
8830         * src/SDCCpeeph.c: added labelIsReturnOnly test
8831         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8832
8833 2003-04-05    <johan AT balder>
8834
8835         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8836         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8837         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8838         * src/SDCCast.c: fixed a warning
8839         * src/SDCCast.h: fixed a warning
8840         * src/SDCCicode.c (operandFromAst): fixed a warning
8841
8842 2003-04-04    <johan AT balder>
8843
8844         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8845         * src/SDCCast.c (decorateType): fixed bug #715076
8846         * src/SDCC.y: fixed bug #702907
8847
8848 2003-04-03    <johan AT balder>
8849
8850         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8851         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8852         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8853         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8854         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8855
8856 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8857
8858         * _decdptr.c: fix return values
8859         * _gptrget.c: fix return values
8860         * _gptrgetc.c: fix return values
8861         * _gptrput.c: fix return values
8862         * _mulint.c: fix return values
8863         * as/z80/Makefile: fix 'make -j' problem
8864
8865 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8866
8867         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8868         * configure.in: big cleanup, updated to autoconf 2.5x
8869         * configure: rebuilt from configure.in
8870         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8871         * sdcc_vc_in.h: reflect changes from sdccconf.h
8872         * doc/Makefile: fixed a flaw in "make install"
8873
8874 2003-04-02    <johan AT balder>
8875
8876         * src/ds390/gen.c (genCmp): no comments
8877         * src/mcs51/gen.c (genCmp): no comments
8878         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8879         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8880
8881 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8882
8883         * support/regression/generate-cases.py: place generated file in given sub directory
8884         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8885         * support/regression/Makefile: improvements for 'make -j';
8886         side effect: it's simpler and faster now
8887
8888 2003-03-31  Borut Razem <borut.razem AT siol.net>
8889
8890         * src/z80/main.c: link-{port} and as-{port} defined without path
8891         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8892
8893 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8894
8895         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8896
8897 2003-03-30  Borut Razem <borut.razem AT siol.net>
8898
8899         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8900           changed type of list parameter to set
8901         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8902         * src/port.h: changed type of do_assemble() parameter to set
8903         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8904           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8905           definition of "cppoutfilename" macro with NULL value in preProcess()
8906         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8907         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8908         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8909           replaced with set *binPathSet
8910         * shash_add() deallocates the item, if allready exsists, before adding the new one
8911         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8912
8913 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8914
8915         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8916           a nested for loop bug in the PIC port
8917         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8918           for loops
8919
8920 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8921
8922         * support/Util/dbuf.h: remove C++ stuff to make it portable
8923
8924 2003-03-28  Borut Razem <borut.razem AT siol.net>
8925
8926         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8927           literal strings in stringLiteral()
8928         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8929         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8930           to the project
8931
8932 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8933
8934         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8935
8936 2003-03-26    <johan AT balder>
8937
8938         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8939         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8940         * src/SDCCast.c (decorateType): fixed " -v < 3"
8941
8942 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8943
8944         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8945         Added Lenny Story's debug infrastructure changes:
8946         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8947         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8948         * src/cdbFile.c: added
8949         * src/SDCCdebug.c: added
8950         * src/SDCCdebug.h: added
8951         * src/SDCCast.c (createFunction)
8952         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8953         * src/SDCCmain.c (parseCmdLine, main)
8954         * src/SDCCmem.c (redoStackOffsets)
8955         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8956         * src/SDCCsymt.h
8957         * src/common.h
8958         * src/avr/gen.c (genAVRCode)
8959         * src/ds390/gen.c (gen390Code)
8960         * src/mcs51/gen.c (gen51Code)
8961         * src/pic/gen.c (genpic14Code)
8962         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8963         * src/xa51/gen.c (genXA51Code)
8964         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8965
8966 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8967
8968         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8969         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8970
8971 2003-03-22    <johan AT balder>
8972
8973         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8974
8975 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8976
8977         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8978         * doc/cdbfileformat.lyx: added, written by Lenny Story
8979         * doc/Makefile: added cdbfileformat.lyx
8980         * doc/clean.mk: added cdbfileformat.lyx
8981
8982 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8983
8984         * src/mcs51/peeph.def: fix bug #705773
8985
8986 2003-03-20    <johan AT balder>
8987
8988         An sfr/sbit can have an "at #" AND an initializer
8989         * src/SDCCsymt.c (checkSClass):
8990         * src/SDCCmem.c (allocGlobal):
8991         * src/SDCCmem.c (allocLocal):
8992         * src/SDCCast.c (createBlock):
8993
8994 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8995
8996         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8997
8998 2003-03-16    <johan AT balder>
8999
9000         Undid the hackup of const and volatile, the problem is much bigger
9001         * src/SDCC.y:1.65
9002         * src/SDCCast.c:1.171
9003         * src/SDCCglue.c:1.138
9004         * src/SDCCicode.c:1.146
9005         * src/SDCCsymt.c:1.150
9006         * src/SDCCval.c:1.65
9007
9008 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9009
9010         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9011         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9012
9013 2003-03-13    <johan AT balder>
9014
9015         Hackup const and volatile modifiers in type chains a bit:
9016         * src/SDCC.y:1.63
9017         * src/SDCCast.c:1.169
9018         * src/SDCCglue.c:1.136
9019         * src/SDCCicode.c:1.143
9020         * src/SDCCsymt.c1.146
9021         * src/SDCCsymt.h1.59
9022         * src/SDCCval.c:1.63
9023
9024 2003-03-12    <johan AT balder>
9025
9026         * src/SDCCBBlock.h: more LRH debugging junk
9027         * src/SDCCcflow.h: more LRH debugging junk
9028         * src/SDCCloop.c: more LRH debugging junk
9029         * src/SDCC.y (struct_declaration): fixed bug #697590
9030         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9031         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9032         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9033
9034 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9035         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9036         test function names must now match exactly).
9037         * src/SDCCcse.c: added special case in findCheaperOp to allow
9038         extending a short integer. Makes less awful code for bug 700121 test case.
9039
9040 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9041
9042         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9043         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9044
9045 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9046
9047         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9048         actually called (operandsNotEqual() was called for all
9049         operandsNotEqualX tests).
9050
9051 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9052
9053         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9054         with shorter literals. Fixes bug 700121.
9055
9056 2003-03-11    <johan AT balder>
9057
9058         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9059
9060 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9061
9062         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9063         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9064
9065 2003-03-10  Borut Razem <borut.razem AT siol.net>
9066
9067         * src/SDCCmain.c: pipe preprocessor's output
9068         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9069         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9070         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9071         which closes all pipes in pipeSet set
9072         * src/SDCCset.c: free deleted item in function deleteSetItem()
9073         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9074         moved from z80 to src subproject
9075         * .version: increased version number to 2.3.4
9076
9077 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9078
9079         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9080         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9081         * support/regression/ports/xa51/spec.mk: fix typo
9082
9083 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9084
9085         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9086
9087 2003-03-09  Borut Razem <borut.razem AT siol.net>
9088
9089         * src/SDCCmain.c: pipe preprocessor's output
9090         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9091         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9092         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9093         which closes all pipes in pipeSet set
9094         * src/SDCCset.c: free deleted item in function deleteSetItem()
9095         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9096         moved from z80 to src subproject
9097
9098 2003-03-09  Borut Razem <borut.razem AT siol.net>
9099
9100         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9101         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9102         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9103         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9104         * src/SDCCglobl.h: unification of WIN32 native definitions
9105
9106 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9107
9108         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9109
9110 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9111
9112         * src/configure.in:   check for endianess (even while cross-compiling)
9113         * src/configure:      check for endianess (even while cross-compiling)
9114         * src/configure_in.h: check for endianess (even while cross-compiling)
9115         * src/avr/gen.c:        remove old endianess stuff
9116         * src/mcs51/gen.c:      remove old endianess stuff
9117         * src/ds390/gen.c:      remove old endianess stuff
9118         * src/pic/gen.c:        remove old endianess stuff
9119         * src/pic/genarith.c:   remove old endianess stuff
9120         * src/pic/glue.c:       fix endianess check
9121         * src/pic16/gen.c:      remove old endianess stuff
9122         * src/pic16/genarith.c: remove old endianess stuff
9123         * src/pic16/glue.c:     fix endianess check
9124         * src/xa51/gen.c:       remove old endianess stuff
9125         * src/z80/gen.c:        fix endianess check
9126         * src/SDCCglue.c:       fix endianess check
9127         * src/ds390/peeph.def: fix bug 700036
9128
9129 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9130
9131         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9132         * src/configure: find appropriate data-types on host for SDCC's int and long
9133         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9134         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9135         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9136
9137 2003-03-07    <johan AT balder>
9138
9139         Just a big NOOP:
9140                 some minor cleanups before the big shot
9141                 OP_DEFS and OP_USES now use Kevin's protection
9142                 new option --nolabelopt
9143
9144         * src/SDCCBBlock.c:
9145         * src/SDCCast.c,:
9146         * src/SDCCcflow.c:
9147         * src/SDCCcse.c:
9148         * src/SDCCicode.c:
9149         * src/SDCCicode.h:
9150         * src/SDCClabel.c:
9151         * src/SDCCloop.c:
9152         * src/SDCCmain.c:
9153         * src/ds390/ralloc.c:
9154         * src/mcs51/ralloc.c:
9155         * src/pic/ralloc.c:
9156         * src/xa51/ralloc.c:
9157         * src/z80/ralloc.c:
9158
9159 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9160
9161         * src/pic/pcode.c (get_op): fix 64 bit warnings
9162         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9163         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9164         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9165         * support/regression/tests/malloc.c: fix 64 bit warnings
9166
9167 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9168
9169         * src/mcs51/gen.c (genMinus): fixed bug 696436
9170
9171 2003-03-02  Borut Razem <borut.razem AT siol.net>
9172
9173         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9174
9175 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9176
9177         * configure.in: test for mkstemp
9178         * sdccconf_in.h: add HAVE_MKSTEMP
9179
9180 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9181
9182         * device/include/ctype.h: removed warning while using --stack-auto
9183         * device/include/malloc.h: removed warning while using --stack-auto
9184         * device/include/string.h: removed warning while using --stack-auto
9185
9186 2003-02-23  Borut Razem <borut.razem AT siol.net>
9187
9188         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9189         because NDEBUG is defined (see man assert)
9190         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9191
9192 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9193
9194         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9195         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9196
9197 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9198
9199         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9200         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9201
9202 2003-02-18    <johan AT balder>
9203
9204         * as/mcs51/asmain.c (asmbl): module can start with a digit
9205         * as/z80/asmain.c (asmbl): module can start with a digit
9206
9207 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9208
9209         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9210         * src/asm.c: fix pipe() for Mingw32
9211
9212 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9213
9214         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9215         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9216         make -V work again; --c1mode reads now from stdin
9217         * doc/sdccman.lyx: added --c1mode
9218         * support/Util/SDCCerr.c: new messages for c1 mode
9219         * support/Util/SDCCerr.h: new messages for c1 mode
9220         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9221
9222 2003-02-15    <johan AT balder>
9223
9224         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9225
9226 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9227
9228         * doc/sdccman.lyx: Environment variables, -o and other minor things
9229
9230 2003-02-14    <johan AT balder>
9231
9232         * src/xa51/main.c: before anyone really tries to use it :)
9233
9234         * Install doc's in share/sdcc/doc
9235         * removed some obsolete files
9236         * Do a proper make distclean and uninstall
9237         M Makefile.common.in
9238         R sdccbuild.sh
9239         M as/Makefile
9240         M device/include/Makefile.in
9241         M device/lib/Makefile.in
9242         M doc/sdccman.lyx
9243         M link/Makefile
9244         M sim/ucsim/doc/Makefile.in
9245         M src/clean.mk
9246         R src/avr/peeph.rul
9247         R src/xa51/peeph.rul
9248         M support/cpp2/Makefile.in
9249         M support/makebin/Makefile
9250
9251
9252 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9253
9254         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9255
9256 2003-02-10  Borut Razem <borut.razem AT siol.net>
9257
9258         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9259         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9260         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9261         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9262         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9263         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9264         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9265         src/z80/Makefile.bcc: Borland Makefile cleanup
9266         * as/z80/Makefile.bcc: Added Borland Makefile
9267         * support/cpp2/borland.h: Removed
9268
9269 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9270
9271         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9272         * src/SDCC.lex: new pragma NOIV
9273         * src/SDCCglobl.h: new pragma NOIV
9274         * src/SDCCmem.c: new pragma NOIV
9275
9276 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9277
9278         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9279
9280 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9281
9282         * src/SDCCmain.c: signal handling is switched off by --debug
9283         * doc/Makefile: small fix for install; use clean.mk again
9284         * doc/clean.mk: clean *.pdf and *.html too
9285
9286 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9287
9288         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9289         * device/lib/printfl.c: fix a ds390 bug by making it portable
9290         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9291         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9292         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9293         * debugger/mcs51/cmd.c: converted multi-line string literals
9294         * sim/ucsim/globals.cc: converted multi-line string literals
9295         * src/SDCCmain.c: introduced signal handler to remove temp files
9296         * doc/Makefile: small tweaks, implement clean
9297         * doc: removed generated files
9298
9299 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9300
9301         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9302         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9303         Address Record is not correctly generated for DS390."
9304
9305 2003-02-02  Borut Razem <borut.razem AT siol.net>
9306
9307         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9308         * as/mcs51/asm.h: fixed compilation with Borland C
9309         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9310         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9311         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9312         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9313         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9314         src/z80/Makefile.bcc: delete $(LIB) only if exist
9315         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9316
9317 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9318
9319         * device/include/malloc.h: introduced NULL
9320         * device/include/string.h: introduced NULL
9321         * device/include/stdlib.h: introduced NULL
9322         * device/lib/_memcpy.c: removed NULL
9323         * device/lib/_strcat.c: removed NULL
9324         * device/lib/_strchr.c: removed NULL
9325         * device/lib/_strcmp.c: removed NULL
9326         * device/lib/_strcpy.c: removed NULL
9327         * device/lib/_strcspn.c: removed NULL
9328         * device/lib/_strlen.c: removed NULL
9329         * device/lib/_strncat.c: removed NULL
9330         * device/lib/_strncmp.c: removed NULL
9331         * device/lib/_strncpy.c: removed NULL
9332         * device/lib/_strpbrk.c: removed NULL
9333         * device/lib/_strrchr.c: removed NULL
9334         * device/lib/_strspn.c: removed NULL
9335         * device/lib/_strstr.c: removed NULL
9336         * device/lib/_strtok.c: removed NULL
9337         * device/lib/malloc.c: removed NULL, include own header
9338
9339 2003-02-02    <johan AT balder>
9340
9341         * 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
9342         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9343         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9344         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9345         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9346         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9347
9348 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9349
9350         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9351         area 'DATA'"
9352
9353 2003-02-01    <johan AT balder>
9354
9355         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9356
9357 2003-01-31    <johan AT CP255758-A>
9358
9359         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9360
9361 2003-01-30    <johan AT balder>
9362
9363         * src/SDCCBBlock.c: automatic bug detection
9364         * src/SDCCicode.c: automatic bug detection
9365
9366 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9367
9368         * src/SDCCglobl.h:   now --xram-size 0 works
9369         * src/SDCCmain.c:    now --xram-size 0 works
9370
9371 2003-01-29    <johan AT balder>
9372
9373         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9374
9375 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9376
9377         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9378         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9379         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9380         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9381         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9382         * src/SDCCmain.c:    Added options --xram-size and --code-size
9383
9384 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9385
9386         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9387         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9388
9389 2003-01-27    <johan AT balder>
9390
9391         * src/SDCC.y: fixed bug #613764
9392
9393 2003-01-26    <johan AT balder>
9394
9395         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9396         * src/SDCCsymt.h: fixed bug #673374
9397         * src/SDCCglue.c: fixed bug #661910
9398         * src/SDCCast.c: fixed bug #458099 and 673374
9399
9400 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9401
9402         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9403         * as/mcs51/strcmpi.h: added
9404         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9405         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9406         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9407         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9408         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9409         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9410         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9411         * as/mcs51/Makefile.aslink: new module strcmpi
9412         * as/mcs51/Makefile.asx8051: new module strcmpi
9413         * as/mcs51/Makefil.bcc: new module strcmpi
9414         * as/mcs51/Makefile.in: new module strcmpi
9415         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9416
9417 2003-01-26    <johan AT balder>
9418
9419         * src/SDCCglue.c: reverted back to 1.124
9420         * src/SDCCast.c: reverted back to 1.156
9421         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9422
9423 2003-01-25    <johan AT balder>
9424
9425         * src/SDCCglue.c: A better fix for bug #661910
9426         * src/SDCCast.c: A better fix for bug #661910
9427         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9428
9429 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9430
9431         * src/Makefile.in: remove spawn.o
9432         * src/SDCCmain.c: remove spawn.h
9433         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9434         * src/spawn.c: removed
9435         * src/spawn.h: removed
9436         * support/regression/ports/ds390/spec.mk: link with -r
9437
9438 2003-01-24    <johan AT CP255758-A>
9439
9440         * src/ds390/gen.c (aopOp): fixed bug #667458
9441         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9442         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9443         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9444
9445 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9446
9447         * src/mcs51/peeph.def: better assembler identation by Frieder
9448         * src/mcs51/gen.c: better assembler identation by Frieder
9449
9450 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9451
9452         * as/z80/string.h: removed for gcc 3.2
9453         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9454         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9455
9456 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9457
9458         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9459         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9460         * support/regression/Makefile: separate temp files for ports
9461         * support/regression/generate-cases.py: separate temp files for ports
9462         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9463         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9464
9465 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9466
9467         * moved tinitalk to device/examples/ds390
9468
9469 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9470
9471         * as/mcs51/lkmem.c: rflag is for DS390
9472         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9473         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9474                          (linkEdit): move mem- and map-files the same way as ihx-files
9475         * src/z80/main.c (_setDefaultOptions): removed --generic
9476         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9477         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9478         * src/pic/glue.c (picglue): --c1mode works again
9479         * src/pic16/glue.c (pic16glue): --c1mode works again
9480         * src/asm.c (printCLine): fix #660034
9481
9482 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9483
9484         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9485         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9486         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9487         * as/mcs51/lkmem (summary): better fix for sp problem
9488         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9489         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9490         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9491                                               remove --stack-after-data
9492
9493 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9494
9495         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9496         * src/SDCCutil.c (join): ugly bug: missing '\0'
9497         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9498
9499 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9500
9501         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9502         * src/port.h: typo
9503         * src/pic/main.c (_asmCmd): gpasm supports -o
9504         * src/z80/main.c: more general macros
9505         * device/lib/Makefile.in: remove intermediate files
9506
9507 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9508
9509         * .version: Bumped version number to 2.3.3
9510         * src/SDCCBBlock.c: new option -o
9511         * src/SDCCglobl.h: new option -o
9512         * src/SDCCglue.c: new option -o
9513         * src/SDCCmain.c: new option -o
9514         * src/asm.c: new option -o
9515         * src/ds390/main.c: new option -o
9516         * src/pic/glue.c: new option -o
9517         * src/pic/pcode.c: new option -o
9518         * src/pic/ralloc.c: new option -o
9519         * src/pic16/glue.c: new option -o
9520         * src/pic16/pcode.c: new option -o
9521         * src/pic16/ralloc.c: new option -o
9522         * src/z80/main.c: new option -o
9523         * device/lib/Makefile.in: use -o
9524         * support/regression/ports/ds390/spec.mk: use -o
9525         * support/regression/ports/gbz80/spec.mk: use -o
9526         * support/regression/ports/mcs51/spec.mk: use -o
9527         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9528         * support/regression/ports/z80/spec.mk: use -o
9529         * support/regression/ports/ucz80/spec.mk: use -o
9530         * support/regression/ports/xa51/spec.mk: use -o
9531         * support/regression/fwk/lib/timeout.c: fix usage string
9532
9533 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9534         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9535
9536 2003-01-07    <johan AT balder>
9537
9538         * src/SDCCast.c (decorateType): fixed bug #600035
9539
9540 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9541         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9542         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9543         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9544         * src/pic/pcode.c: outcommented unused variable to remove warnings
9545         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9546
9547 2003-01-06    <karl AT turbobit.com>
9548         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9549    regression tests.
9550
9551 2003-01-06    <johan AT balder>
9552
9553         * src/SDCCicode.c: fixed array add
9554
9555 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9556         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9557         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9558
9559 2003-01-04    <johan AT balder>
9560
9561         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9562
9563 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9564         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9565
9566 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9567         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9568         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9569
9570 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9571         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9572
9573 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9574         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9575
9576 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9577         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9578
9579 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9580
9581     * in \sdcc\as\mcs51\ changed these files in order to create an
9582     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9583     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9584     following files to include the previous two files: aslink.dsp,
9585     Makefile.aslink, Makefile.bcc, and Makefile.in.
9586
9587     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9588     .adb instead of .cdb
9589
9590 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9591
9592         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9593         value from option --iram-size.
9594
9595 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9596
9597         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9598         dram[] array.
9599
9600 2002-09-18    <wiml AT hhhh.org>
9601
9602         * SDCClrange.h: exposed setFromRange() and setToRange()
9603         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9604           packRegsForAccUse() (bug 542397)
9605         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9606           multiple times and emitting the fetch operations more than once
9607           added aopGetUsesAcc() function to allow binary operators to
9608           fetch their operands in the correct order; made genMinus() emit
9609           compact code for X = LITERAL - Y
9610
9611 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9612         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9613         sprintf() in line 1267.
9614
9615 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9616         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9617         like ports.
9618
9619 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9620         Changes to aslink (All the changes are marked with 'JCF'):
9621
9622         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9623         summary().
9624
9625         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9626         area BSEG.  Also moves, if possible, the DATA area down into the internal
9627         ram so more space is available.
9628
9629         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9630         sflag.
9631
9632         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9633         not bytes.  Function summary() which creates a memory usage summary
9634         file with extension .mem.  Reports of overlaping stack and small stack
9635         size.  If the space for the stack is less than 16 bytes aslink trows a
9636         warning.
9637
9638         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9639         the 8051.  Option 'y' for memory summary output file.
9640
9641         Changes to sdcc (All the changes are marked with 'JCF'):
9642
9643         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9644
9645         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9646         overlaying area for it (uses RegBankUsed[4]).
9647
9648         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9649         bank zero as used by default.  By default aslink locates the stack
9650         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9651         the creation of the .mem file.  Delegates the allocation of data area
9652         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9653         the begining of the stack area to aslink.
9654
9655         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9656         glue() in SDCCglue.c creates an area for it.
9657
9658 2002-09-03  Borut Razem <borut.razem AT siol.net>
9659         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9660         sdcc/src/pic/glue.c:
9661         introduced atexit() handler for teporay files removal in case of
9662         errors, assertions, ...
9663
9664 2002-08-29  Borut Razem <borut.razem AT siol.net>
9665         * sdcc/support/cpp2/auto-host_vc_in.h:
9666         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9667         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9668         Maybe there is a similar problem with BORLANDC? It should be checked!
9669
9670         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9671         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9672         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9673         was not executed, and the compiler (cl) launched a warning:
9674         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9675
9676 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9677         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9678
9679 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9680         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9681
9682         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9683           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9684           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9685           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9686           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9687           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9688           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9689         - added Release configuration in VS projects
9690         - review of compiler an linker options
9691         - VC .exe files are generated in bin_vc directory, not to interfere
9692           with binaries generated from other projects (cygwin, mingw, bcc ...)
9693
9694         * sdcc/src/yacc.dsp: added
9695
9696         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9697         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9698         and insert the version number definitions from .version
9699
9700         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9701
9702         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9703         added - genarate auto-host.h using auto-host_vc_in.h as template
9704
9705         * sdcc/sdcc_vc.h,
9706         removed from CVS, generated automatically
9707
9708 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9709         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9710
9711 2002-08-11  Borut Razem <borut.razem AT siol.net>
9712         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9713
9714 2002-08-10  Borut Razem <borut.razem AT siol.net>
9715         * src/SDCCmain.c (main):
9716         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9717         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9718         The consequence was that some temporary files were not removed.
9719
9720         * src/SDCCglue.c:
9721         unification of code in functions tempfilename() and tempfile():
9722         function tempnam() is defined in Visual Studio 6.0 and .NET
9723
9724         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9725
9726         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9727           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9728         - removed compiler command line option /WX: Treats all warnings as errors
9729         - update a list of source files, included into the project
9730
9731         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9732           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9733         changed project type to Generic Project so that can be correcly converted to VS.NET project
9734
9735         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9736
9737         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9738
9739         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9740
9741         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9742         added return 0 statements after assert() to make compiler happy
9743
9744         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9745         added newline in the def file to keep MSC compiler satisfied
9746
9747         * sdcc/src/z80/gen.c:
9748         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9749           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9750         - solved MSC error in function aopDump()
9751
9752         * sdcc_vc.h: define PREFIX as "\\sdcc"
9753
9754 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9755         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9756
9757 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9758         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9759         - Rewrote the register banking algorithm.
9760         - Added pCode live-range analysis to registers (for now, only non-used and
9761         singly-used registers optimized away)
9762
9763         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9764
9765         * 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.
9766
9767 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9768         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9769
9770 2002-04-22  Michael Hope  <michaelh AT vroom>
9771
9772         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9773
9774         * configure.in (DD_COPT): Added include support required for gbdk.
9775
9776         * .version: Bumped version number just to increase it.
9777
9778         * src/SDCCmain.c: Added -nostdinc to the default options.
9779
9780 2002-04-15  Michael Hope  <michaelh AT vroom>
9781
9782         * device/lib/z80/printf.c (sprintf): Added.
9783
9784         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9785
9786         * src/z80/peeph.def: Added transpose redundent load rule.
9787
9788         * src/z80/main.c: Added force callee saves for jaune.
9789
9790         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9791
9792         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9793
9794 2002-03-28  Johan Knol  <johan AT balder>
9795
9796         * src/SDCCval.c: fixed bug #532436
9797
9798 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9799         * /src/port.h:
9800         Added "char *Processor" field to the port structure.
9801
9802         * /src/SDCCmain.c:
9803         Added -p option. Allows port dependent processor to be specified.
9804
9805         * all ports:
9806         Initialized the new field char *Processor field to NULL in all ports
9807
9808         * /src/pic/*:
9809         Compiler generated registers for interrupt context saving
9810         were not getting allocated.
9811
9812 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9813
9814         * /src/SDCCast.c:
9815         Fixed left shift. Will promote the left side of a left shift
9816         if a) left shifting more than size of operand or b) when assigned
9817         to something size > size of left side
9818
9819 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9820         * src/pic/*
9821         tons of changes. Register allocation has been
9822         rewritten. Added customization for the various PICs. Flow
9823         analysis is restructured. ...
9824
9825         * src/pic/device.h:
9826         Added
9827
9828         * src/pic/device.c:
9829         Added. device.c is a PIC port hack to accomodate variations
9830         in PIC devices.
9831
9832 2002-03-13  Michael Hope  <michaelh AT vroom>
9833
9834         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9835
9836 2002-03-04  johanknol  <johanknol AT manik>
9837
9838         * /src/SDCCval.c: fixed
9839
9840         const unsigned char arr[][2] = { { 0, 1 } };
9841         t18.c:1: error: Initializer element is not constant
9842
9843 2002-03-04  bela  <bela AT manik>
9844
9845         * /device/include/mcs51reg.h:
9846         ds89c420 register definition update
9847
9848 2002-03-03    <johan AT FRIJA>
9849
9850         * support/Util/SDCCerr.c: did something, but don't no why anymore
9851
9852         * support/regression/tests/bug-524691.c: made it a little less shy
9853
9854         * src/SDCCast.c (decorateType): fixed bug #524697
9855
9856         * src/SDCCast.c: made some lineno improvements
9857
9858         * src/SDCCval.c (getNelements): changed warning to error
9859
9860         * src/SDCCglue.c (printIvalArray): changed warning to error
9861
9862         * src/SDCCicode.c: fixed a warning for mingw
9863
9864         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9865
9866         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9867
9868 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9869
9870         * src/ds390/peeph.def:
9871         Added some more peephole rules
9872
9873         * src/ds390/gen.c: Various fixes & enhancements
9874
9875         * src/SDCClrange.c, src/SDCClrange.h:
9876         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9877
9878         * src/ds390/ralloc.c:
9879         various fixes & enhancements (ds390) specific
9880
9881         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9882         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9883         from rallocs.
9884
9885         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9886
9887 2002-03-02    <johan AT FRIJA>
9888
9889         * src/SDCCast.c (decorateType): fixed bug #524708
9890
9891         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9892
9893         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9894
9895 2002-03-01  Michael Hope  <michaelh AT vroom>
9896
9897         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9898
9899         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9900
9901 2002-03-01    <johan AT FRIJA>
9902
9903         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9904
9905         * src/SDCCast.c (decorateType): fixed bug #524209
9906
9907         * src/SDCCval.c (valNot): fixed bug #524195
9908
9909 2002-02-26    <johan AT balder>
9910
9911         * src/xa51/gen.c: fixed a warning
9912
9913         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9914
9915         * src/SDCCast.c (decorateType): fixed bug #522534
9916
9917 2002-02-23    <johan AT balder>
9918
9919         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9920
9921 2002-02-22    <johan AT balder>
9922
9923         * src/SDCCast.c: fixed bug #514865
9924
9925         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9926
9927 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9928
9929         * sdcc/src/SDCCloop.c:
9930         Previous fix was not good. basic blocks that have "break" or "return" are
9931         not really partof a loop , but live ranges used in these blocks should
9932         be live thru the entire loop, so set partOfLoop but don't add them to
9933         loop region
9934
9935 2002-02-21    <johan AT FRIJA>
9936
9937         * src/SDCCcse.c: fixed bug #514308
9938
9939 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9940
9941         * src/SDCCloop.c:
9942         Fixed BUG #519583. If a conditional block ended in a return/break
9943         statement inside a loop, it was not being considered part of the loop.
9944
9945         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9946
9947 2002-02-10  Karl Bongers <karl AT turbobit.com>
9948
9949         * debugger/*:
9950         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9951         with lots of comments and notes.
9952
9953         * device/examples/test2.c:
9954         Fix bug, "red" variable not being initialized(compiler complained).
9955
9956         * device/examples/Makefile, examples/test3.c:
9957         Add Makefile in device/examples folder, compiles test3.c
9958         for use as a multiple module SDCDB test case.
9959
9960         * sim/ucsim/cmd.src/cmdset.cc:
9961         Took out debug printfs in ucsim "next" command.
9962
9963         * sim/ucsim/xa.src:
9964         Karl and Johan start ucsim XA support.  Most dissassembly working,
9965         about 75% emulation done(plenty of work remaining).
9966
9967         * sim/ucsim/z80.src:
9968         Add Z80 support to ucsim, add test-ucz80 regression test,
9969         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9970         Notice z80 compiler fails on examples/test3.c/crc code.
9971
9972 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9973
9974         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9975         Added support for --parms-in-bank1
9976
9977         * src/ds390/peeph.def:
9978         added a few more peephole optimzations
9979
9980         * src/ds390/main.c:
9981         1) added __builtin_inp & __builtin_outp used to read in data of given length
9982            from a memory mapped port
9983         2) added __builtin_memcmp
9984         3) added __builtin_swapw swap bytes of a short
9985
9986         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9987         1) handle multiple send & receives from register bank1
9988         2) ralloc can now allocate DPTR1 to some liveRanges
9989
9990         * src/SDCCsymt.c, src/SDCCsymt.h:
9991         changes to handle multiple sends & receives
9992
9993         * src/SDCCptropt.h:
9994         added some pointer arithmetic optimization
9995
9996         * src/SDCCptropt.c:
9997         added some pointer arithmetic optimizations but not stable yet so not
9998         called from anywhere (will get this working shortly)
9999
10000         * src/SDCCopt.c: fixed for multiple sends & receives
10001
10002         * src/SDCCmain.c:
10003         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10004         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10005            set preprocessor defines (depending on options)
10006
10007         * src/SDCCicode.c, src/SDCCicode.h:
10008         changes made to handle multiple sends & receives
10009
10010         * src/SDCCglobl.h:
10011         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10012
10013         * src/SDCCcse.c, src/SDCCcse.h:
10014         added function findbackward def (to be used in upcoming optimization)
10015
10016         * src/SDCCcflow.c, src/SDCCcflow.h:
10017         added function returnAtEnd - to determine if a basic block terminates with
10018         a RETURN iCode
10019
10020         * src/SDCCast.c, src/SDCCast.h:
10021         added option parms-in-bank1
10022
10023         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10024         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10025         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10026         adjusted for --parms-in-bank1 option
10027
10028         * device/include/string.h:
10029         donot redefine "reentrant" keyword
10030
10031         * device/include/ds80c390.h: Added some more SFRs
10032
10033 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10034
10035         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10036
10037 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10038
10039         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10040
10041 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10042
10043         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10044
10045 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10046
10047         * Added --xram-movc option
10048
10049 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10050
10051         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10052
10053 2002-01-11  Johan Knol
10054
10055         * Added math lib of Jesus Calvino-Fraga
10056
10057 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10058
10059         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10060         * support/regression/Makefile: new target test-mcs51-stack-auto
10061         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10062
10063 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10064
10065         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10066
10067 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10068
10069         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10070
10071 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10072
10073         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10074
10075         * src/SDCCglue.h: add definition for printIvalChar()
10076
10077 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10078
10079         * src/SDCCast.c: fix #498138 by Johan
10080
10081         * src/SDCCglue.c: fix #498138 by Johan
10082
10083 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10084
10085         * support/regression/Makefile: fix clean
10086
10087         * support/regression/ports/ds390/support.c: fix transmission of last character
10088
10089 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10090
10091         * /sdcc/src/ds390/gen.c:
10092         a) improved computing address of stack variable
10093         b) took out some #if 0 code
10094         c) improved parmBytes adjustment
10095         d) improved genPlusIncr & genMinusIncr
10096         e) genCmp could generate bad code (when left assigned to DPTR)
10097         f) Fixed bug in hasInc
10098
10099         * /sdcc/src/ds390/ralloc.c:
10100         a) packRegsForSupport could mess up live information (Fixed)
10101         b) packRegsDPTRuse could be incorrect for left & right shift
10102
10103         * /sdcc/src/mcs51/ralloc.c:
10104         packRegsForSupport could mess up the live information (Fixed)
10105
10106         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10107
10108         * /sdcc/src/SDCCast.c:
10109         can reverse a loop even if function call is present as long
10110         as the loop control variable is local & is not passed as parameter
10111
10112 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10113
10114         * /sdcc/ChangeLog: *** empty log message ***
10115
10116         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10117         More builtin function additions for TININative
10118
10119         * /sdcc/src/ds390/ralloc.c:
10120         Had broken the regression testsuite
10121
10122         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10123
10124         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10125         Added funcattr hasStackParms will be set for reentrant functions when there
10126         are paramteres on the stack, this helps in minimizing frame pointer generation
10127         typeFromStr can handle function pointers now
10128
10129         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10130         *** empty log message ***
10131
10132 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10133
10134         * /src/ds390/gen.c, /src/ds390/main.c:
10135         More builtin function additions for TININative
10136
10137         * /src/ds390/ralloc.c:
10138         Had broken the regression testsuite
10139
10140         * /src/SDCCast.c: Fixed a bug in dumptree
10141
10142         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10143         Added funcattr hasStackParms will be set for reentrant functions when there
10144         are paramteres on the stack, this helps in minimizing frame pointer generation
10145         typeFromStr can handle function pointers now
10146
10147         * /doc/builtins.txt, /doc/TININative.txt:
10148         *** empty log message ***
10149
10150
10151 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10152
10153         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10154         ALPHA version for -mTININative
10155
10156         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10157         updated to reflect changes in the port structure
10158
10159         * /src/port.h:
10160         added function do_assemble (similar to do_link) if non-null this function
10161         will be called to do assembly (-mTININative) requires a multi command
10162         assembly
10163         added function genAssemblerEnd will be called to generate assembler Epilogue
10164
10165         * /src/SDCCsymt.c:
10166         added _JavaNative to debug info printing
10167
10168         * /src/SDCCmain.c: added option --tini-libid
10169         added port->do_assemble function (-mTININative) has a multi command assemble
10170
10171         * /src/SDCCglue.c: Disabled "constExpr" check
10172         added port->genAssemblerEnd function
10173
10174         * /src/SDCCglobl.h: Added option --tini-libid value
10175
10176         * /src/SDCCast.h:
10177         tookout optimizeCompare from the header (has no external references)
10178
10179         * /src/SDCCast.c: made one more function "static"
10180
10181 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10182
10183         * src/z80/mappings.i: Added z80asm support.
10184
10185         * src/z80/main.c: Added z80asm support on --asm=z80asm
10186
10187         * src/z80/gen.c: Fixed asm portability issues.
10188
10189         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10190
10191         * src/SDCCglue.c (printExterns): Added global/extern split.
10192
10193 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10194
10195         * support/regression/Makefile: added test for mcs51 model large
10196
10197         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10198
10199         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10200
10201 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10202
10203         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10204
10205 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10206
10207         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10208
10209         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10210
10211 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10212
10213         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10214
10215         * support/regression/tests/simplefloat.c: Port to mcs51.
10216
10217 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10218         * support/regression/tests/bug-485362.c: Added.
10219
10220         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10221
10222         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10223
10224         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10225
10226         * src/z80/gen.c (aopDump): Added a dump function.
10227
10228 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10229         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10230
10231         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10232
10233         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10234
10235         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10236
10237         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10238
10239         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10240
10241         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10242
10243         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10244
10245         * support/regression/ports/ds390/support.c: Use tinibios.
10246
10247         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10248
10249 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10250
10251         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10252         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10253
10254         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10255
10256         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10257
10258 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10259
10260         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10261
10262         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10263         (packRegsForIYUse): Created and optimised.
10264
10265 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10266
10267         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10268 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10269
10270         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10271
10272         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10273
10274         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10275
10276 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10277
10278         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10279
10280         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10281
10282 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10283
10284         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10285
10286         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10287
10288         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10289
10290 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10291
10292         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10293         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10294         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10295
10296         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10297
10298         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10299         (genNotFloat): Added.
10300         (genUminusFloat): Added.
10301
10302         * device/lib/z80/Makefile: Added floating pt stubs.
10303
10304         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10305
10306         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10307
10308         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10309
10310 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10311
10312         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10313
10314         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10315
10316         * sdcc/support/regression/Makefile: Add port ds390.
10317
10318         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10319
10320         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10321
10322         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10323
10324         * sdcc/support/regression/ports/ds390/support.c: Added.
10325
10326         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10327
10328         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10329
10330         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10331
10332 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10333
10334         * device/include/malloc.h: Added z80 and gbz80 support.
10335
10336         * device/lib/gbz80/heap.s: Added.
10337
10338         * device/lib/z80/heap.s: Added.
10339
10340         * device/lib/malloc.c: Added z80 and gbz80 support.
10341
10342         * support/regression/tests/malloc.c (testMalloc): Added.
10343
10344         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10345
10346         * support/regression/tests/bug-478094.c: Added.
10347
10348         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10349
10350 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10351
10352         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10353
10354         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10355
10356         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10357
10358         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10359
10360         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10361
10362 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10363
10364         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10365
10366 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10367
10368         * support/regression/tests/bug-477927.c: Added.
10369
10370         * src/z80/peeph.def: Added minor rules.
10371
10372         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10373
10374         * src/z80/peeph.def: Added jump optimisation modification.
10375
10376 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10377
10378         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10379
10380 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10381
10382         * support/regression/tests/funptrs.c: Added.
10383
10384 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10385
10386         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10387
10388 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10389
10390         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10391
10392         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10393
10394         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10395         (movLeft2ResultLong): Created.
10396
10397         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10398         (joinPushes): Added.  Joins two char pushes into a word push.
10399
10400 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10401
10402         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10403
10404         * support/makebin/Makefile (install): Added creation of dest dir.
10405
10406 2001-10-24 Karl Bongers <karl AT turbobit.com>
10407
10408         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10409
10410 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10411
10412         * src/z80/ralloc.c: Turned off faulty pack for one use.
10413
10414         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10415
10416         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10417
10418 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10419
10420         * support/regression/Makefile: Improved clean
10421
10422         * support/regression/ports/gbz80/spec.mk: Added clean
10423
10424         * support/regression/ports/host/spec.mk: Added clean
10425
10426         * support/regression/ports/z80/spec.mk: Added clean
10427
10428         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10429
10430         * support/regression/ports/mcs51/timeout.c: little improvements
10431
10432 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10433
10434         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10435
10436         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10437
10438         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10439
10440 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10441
10442         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10443
10444         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10445
10446 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10447         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10448
10449         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10450
10451         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10452
10453         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10454
10455         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10456
10457         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10458
10459         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10460
10461         * support/regression/tests/longor.c: Added.
10462
10463 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10464
10465         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10466
10467         * as/mcs51/aslink.h: define PATH_MAX
10468
10469         * as/mcs51/asm.h: define PATH_MAX
10470
10471         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10472
10473         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10474
10475         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10476
10477         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10478
10479         * src/SDCCglobl.h: define PATH_MAX
10480
10481         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10482
10483         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10484
10485 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10486
10487         * src/z80/gen.c (gencjneshort): Fixed
10488
10489         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10490
10491 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10492
10493         * support/regression/tests/bug-469671.c: Added.
10494
10495         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10496
10497 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10498
10499         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10500
10501         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10502
10503 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10504
10505         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10506
10507         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10508
10509         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10510
10511         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10512
10513         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10514
10515         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10516
10517         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10518
10519 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10520
10521         * 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.
10522
10523         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10524
10525         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10526
10527 2001-10-07    <johan AT FRIJA>
10528
10529         * device/lib/gets.c (gets): fixed the return value.
10530
10531 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10532         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10533
10534         * 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.
10535
10536         * 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.
10537
10538         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10539
10540         * src/pic/gen.c: Removed Safe_strdup.
10541
10542         * configure.in: Added option to enable libgc support.
10543
10544         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10545         (bitVectUnion): Optimised.
10546         (bitVectIntersect): Optimised.
10547         (bitVectBitsInCommon): Optimised.
10548         (bitVectCplAnd): Optimised.
10549
10550         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10551
10552 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10553
10554         * src/SDCCmain.c: distinguish between assembler debug and plain options
10555
10556         * src/avr/main.c:   remove standard assembler options
10557
10558         * src/ds390/main.c: remove standard assembler options
10559
10560         * src/mcs51/main.c: remove standard assembler options
10561
10562         * src/port.h: removed "PENDING" comment
10563
10564 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10565
10566         * src/device/lib/_mulint.c  : new, with assember functions
10567
10568         * src/device/lib/_mullong.c : new, with assember functions
10569
10570         * src/device/lib/_divuint.c : with assember functions
10571
10572         * src/device/lib/_divsint.c : with assember functions
10573
10574         * src/device/lib/_divulong.c: with assember functions
10575
10576         * src/device/lib/_divslong.c: with assember functions
10577
10578         * src/device/lib/_moduint.c : with assember functions
10579
10580         * src/device/lib/_modsint.c : with assember functions
10581
10582         * src/device/lib/_modulong.c: with assember functions
10583
10584         * src/device/lib/_modslong.c: with assember functions
10585
10586         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10587
10588         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10589
10590         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10591                                       replaced _mululong.c and _mulslong.c by _mullong.c
10592
10593 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10594
10595         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10596
10597 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10598
10599         * src/SDCCglue.c: test, if win32api is available for MINGW
10600
10601 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10602
10603         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10604         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10605         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10606         * support/regression/ports/host/spec.mk: removed GENERIC
10607         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10608         * support/regression/ports/z80/spec.mk: removed GENERIC
10609
10610 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10611
10612         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10613
10614         * support/regression/tests/bug-467035.c: Created.
10615
10616 2001-10-01    <johan AT FRIJA>
10617
10618         * src/SDCC.y: fixed bug #466586 part 1
10619
10620 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10621
10622         * SDCCicode.c: z80 has no generic pointers
10623         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10624
10625 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10626
10627         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10628
10629 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10630
10631         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10632
10633         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10634
10635 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10636
10637         * configure.in: Fixed up so that ucsim is only configured once.
10638
10639         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10640
10641         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10642         (getPathDifference): As above.
10643
10644         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10645
10646         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10647
10648 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10649         * .version: Updated to 2.3.1
10650
10651         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10652         Added copyright header.
10653
10654         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10655         (assemble): Added support for macro based assembler commands.
10656         (linkEdit): Added support for macro based linker commands.
10657         (preProcess): Changed the pre-processor to use macros.
10658         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10659         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10660
10661         * device/lib/z80/crt0.s: Added module name for debugging.
10662
10663 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10664
10665         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10666
10667         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10668
10669         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10670
10671         * src/Makefile.in: Added SDCCmacro and SDCCutil
10672
10673 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10674
10675         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10676
10677 2001-09-16    <johan AT FRIJA>
10678
10679         * 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.
10680
10681 2001-09-15    <johan AT FRIJA>
10682
10683         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10684         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10685
10686 2001-09-11    <johan AT FRIJA>
10687
10688         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10689
10690 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10691
10692         * support/regression/tests/bug-460444.c: Added test case.
10693
10694         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10695         (genCast): Added justification for all of the asserts.
10696
10697 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10698
10699         * support/regression/support.c: _xdata replaced by xdata
10700
10701         * support/regression/spec.mk: removed _generic
10702
10703 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10704
10705         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10706
10707         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10708         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10709
10710         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10711
10712         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10713
10714         * support/regression/tests/bug-460010.c: Added test case.
10715
10716         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10717
10718 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10719
10720         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10721
10722         * support/regression/testfwk.c: removed workaround for bug #436344
10723
10724         * support/regression/tests/bp.c: use less memory with mcs51
10725
10726         * support/regression/tests/bug-441448.c: use less memory
10727
10728         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10729
10730         * support/regression/collate-results.py: typo
10731
10732 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10733
10734         * support/regression/tests/fetchoverlap.c: Added new test case.
10735
10736         * support/regression/tests/bp.c: Added new test case.
10737
10738         * support/regression/tests/bug-448984.c: Added new test case.
10739
10740         * support/regression/tests/pow2shifts.c: Added new test case.
10741
10742         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10743         (genlshTwo): Fixed right shift for count > 8.
10744
10745         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10746
10747 2001-09-08    <johan AT FRIJA>
10748
10749         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10750
10751 2001-09-07    <johan AT FRIJA>
10752
10753         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10754
10755         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10756
10757 2001-09-06    <johan AT FRIJA>
10758
10759         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10760         * bernhard noted me at this: "() equals to (void)" (1.38)
10761
10762 2001-09-05    <johan AT FRIJA>
10763
10764         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10765
10766 2001-09-04    <johan AT FRIJA>
10767
10768         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10769
10770
10771 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10772
10773         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10774
10775 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10776
10777         * link/z80/aslink.h: Fixed path for PATH_MAX
10778
10779 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10780
10781         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10782
10783         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10784
10785         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10786
10787         * 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.
10788
10789 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10790
10791         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10792         (genCmp): Fixed up genCmp for the GB with longs.
10793
10794         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10795
10796         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10797
10798         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10799
10800         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10801
10802 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10803
10804         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10805
10806 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10807
10808         * 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.
10809
10810         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10811
10812 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10813
10814         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10815
10816         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10817
10818 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10819
10820   * sim/ucsim/configure:    little improvement of Cygwin-detection
10821   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10822   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10823   * support/regression/tests/bug-221100.c: small changes for mcs51
10824   * support/regression/tests/bug-221168.c: small changes for mcs51
10825   * support/regression/tests/bug-227710.c: small changes for mcs51
10826   * support/regression/tests/staticinit.c: small changes for mcs51
10827   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10828   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10829   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10830
10831 $Revision$