applied patch fixing GCC 4.1 build submitted by the Debian SDCC maintainer Aurelien...
[fw/sdcc] / ChangeLog
1 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2
3         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
4         submitted by the Debian SDCC maintainer Aurelien Jarno: 
5         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
6         archive with gcc 4.1 on mips and wrote the patch"
7
8 2006-03-16 Raphael Neider <rneider AT web.de>
9
10         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
11           the left operand is shorter than the result (c* = lit-c* + int),
12           fixes bug #1450796
13         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
14           OP_SYMBOL
15
16 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
17
18         * src/.version: increased version number to 2.5.5
19         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
20         linking is done manually in pic16 port's _linkEdit,
21         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
22         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
23         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
24         allocate asmop as AOP_ACC,
25         (aopForRemat): added parameter 'bool result' in function declaration,
26         (pic16_aopGet): return AOP_ACC when accessing WREG,
27         (pic16_popGetTempReg): minor modification,
28         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
29         'pic16_allocWithIdx',
30         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
31         calling function in absolute addresses,
32         (genAssign): take into account AOP_ACC asmop,
33         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
34         * src/pic16/pcoderegs.c: some debug functions and lines added,
35         * src/pic16/ralloc.c (decodeRegType): added but commented out,
36         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
37         register too,
38         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
39         call to allocReg, not by manually allocating a new one,
40         (pic16_assignRegisters): now before going through the register
41         allocating functions mark all registers as free. This eliminates some
42         side effects resulting from peephole parser done earlier in the backbone
43
44 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
45
46         * src/SDCCicode.c (geniCodeLogic),
47         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
48
49 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
50
51         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
52           (genSend): bugfix, do not allocate and free twice,
53           (shiftRLong): handle partially overlapping aops
54         * support/regression/tests/bitopcse.c: fixed warning redefined idata
55
56 2006-03-08 Borut Razem <borut.razem AT siol.net>
57
58         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
59           for pic16
60
61 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
62
63         * support/regression/tests/bug1409955.c: new, added
64         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
65         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
66           (aopForSym, aopOp): increment asmop.allocated if reused,
67           (freeAsmop): decrement asmop.allocated and check for zero instead of
68           using asmop.freed,
69           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
70           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
71            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
72            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
73            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
74            genSignedRightShift, genRightShift, genDataPointerGet,
75            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
76            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
77             in reverse order from allocation,
78           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
79             added swappedLR to keep track
80         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
81           pdata & code for GCC, z80, gbz80 & hc08
82         * support/regression/tests/zeropad.c: moved defines to testfwk.h
83
84 2006-03-08 Raphael Neider <rneider AT web.de>
85
86         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
87
88 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
89
90         * device/include/mcs51/c8051f410.h: new SiLabs mcu
91         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
92         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
93
94 2006-03-06 Borut Razem <borut.razem AT siol.net>
95
96         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
97           made the linker quiet
98
99 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
100
101         * src/pic16/gen.c (genPcall): fixed bug #1443644
102         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
103         which dumps before the function entry point a data byte which represents
104         the number of the local variables used by the specified function, added
105         'xinst' for initial support for Extended Instruction Support,
106         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
107         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
108         port->fun_prefix anymore (may change later),
109         (genFunction, genEndFunction): do not store/restore local registers for
110         _main (this should take care the --main-return command line option in
111         the future),
112         (genOr): removed some legacy pic-port instructions,
113         * src/pic16/genarith.c (genAddLit): re-enabled old code because
114         performing operations with SFR's causes data to be written more than
115         once to each SFR. Perhaps SFRs should be handled in special cases...
116         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
117         pcode.h
118         * src/pic16/main.c (_process_pragma): stack bound checking did not take
119         into account for stack starting position,
120         (struct OPTIONS pic16_optionsTable): added command line argument
121         --extended or -y for Extended Instruction Support,
122         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
123         (deassignLRs): *** perhaps the most important change, old 'for' code
124         (commented out for reference), didn't account for some registers which
125         were left marked 'not free' after a pointer operation. The change
126         reduces register usage a lot in some cases
127
128 2006-03-04 Borut Razem <borut.razem AT siol.net>
129
130         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
131           _clean
132         * support/regression/tests/bug-524697.c: decreased array size for
133           mcs51 to fit into the internal RAM
134         * support/regression/Makefile.in: a little bit more verbose
135
136 2006-03-03 Borut Razem <borut.razem AT siol.net>
137
138         * support/regression/fwk/lib/testfwk.c,
139           support/regression/fwk/include/testfwk.h: introduced function
140           _prints(), nonrecursive _printn(), call _initEmu() from main()
141         * support/regression/ports/gbz80/support.asm,
142           support/regression/ports/ucz80/support.asm,
143           support/regression/ports/z80/support.asm,
144           support/regression/ports/ds390/support.c,
145           support/regression/ports/hc08/support.c,
146           support/regression/ports/host/support.c,
147           support/regression/ports/mcs51/support.c,
148           support/regression/ports/xa51/support.c: added empty _initEmu()
149           function
150         * support/regression/ports/pic16/gpsim.cmd,
151           support/regression/ports/pic16/spec.mk,
152           support/regression/ports/pic16/support.c,
153           support/regression/Makefile.in: added pic16 regression test
154
155 2006-03-01 Raphael Neider <rneider AT web.de>
156
157         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
158           genConstPointerGet): use safe way of generating MOVFF to cover
159             literals as well as registers, fixes bug #1440527
160         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
161             dereference
162           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
163             more correctly, fixes bug #1232186
164           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
165         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
166             gplink guess the correct processor in more cases, applied patch
167             from Till Riedel attached to and fixing bug #1436552
168
169 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
170
171         * support/regression/tests/array.c: added, contains check for #1434401
172         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
173
174 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
175
176         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
177         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
178         * device/include/mcs51/c8051f326.h,
179         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
180         * device/include/mcs51/c8051f000.h,
181         * device/include/mcs51/c8051f018.h,
182         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
183           PCON_IDLE,PCON_STOP and added sfr16 definitions
184
185 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
186
187         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
188           genGetWord): fixed bug 1409955
189
190 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
191
192         * device/include/hc08/mc68hc908gp32.h,
193         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
194
195 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
196
197         * src/SDCCast.c (constExprValue): return NULL if not a value
198         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
199         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
200         * support/regression/tests/bitfields.c: enabled signed bitfield for all
201
202 2006-02-13 Borut Razem <borut.razem AT siol.net>
203
204         * src/regression/ptrarg.c: added, fails due to bug #1430967
205         * src/regression/Makefile: ptrarg.c added, ...
206
207 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
208
209         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
210         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
211
212 2006-02-11 Borut Razem <borut.razem AT siol.net>
213
214         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
215           print "Processor: xxx" message to stdout only if --verbose
216
217 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
218
219         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
220         * support/regression/tests/bug1426356.c: added
221         * support/regression/tests/bitfields.c: removed 2 tests
222
223 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
224
225         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
226         * device/include/mcs51/c8051f330.h,
227         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
228           PCON_IDLE,PCON_STOP and added sfr16 definitions
229         * device/lib/_divsint.c,
230         * device/lib/_divuint.c,
231         * device/lib/_divulong.c,
232         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
233           register bank bug for small stackauto
234
235 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
236
237         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
238
239 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
240
241         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
242         * all.dsp: corrected several bin paths
243         * device/include/mcs51/c8051f120.h,
244         * device/include/mcs51/c8051f300.h,
245         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
246           to PCON_IDLE,PCON_STOP
247         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
248         * device/lib/printf_large.c (output_float): fixed bug 1388703
249         * support/regression/tests/bug1057979.c: added test for bug 1388703
250
251 2006-02-08 Raphael Neider <rneider AT web.de>
252
253         * src/pic/pcode.c (pciTRIS): fixed typo,
254           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
255           (LinkFlow): fixed handling of flows that end in a call,
256           (ReuseReg): perform safety check earlier
257         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
258             to work with flows at the beginning of a pBlock,
259             fixes #1426557 (Symbol not previously defined),
260           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
261             usage information
262           (RemoveUnusedRegisters): update register usage info
263         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
264             created, reuse existing ones instead
265         * src/pic/gen.c (genPcall): fixed #1424719
266
267 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
268
269         * link/z80/lkmain.c,
270         * link/z80/lklex.c,
271         * link/z80/lkdata.c,
272         * link/z80/aslink.h: fixed build on current cygwin:
273         replaced getline() by lk_getline()
274
275 2006-02-01 Borut Razem <borut.razem AT siol.net>
276
277         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
278           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
279           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
280           src/regression/bool1.c, src/regression/bool2.c,
281           src/regression/bool3.c, src/regression/call1.c,
282           src/regression/compare.c, src/regression/compare10.c,
283           src/regression/compare2.c, src/regression/compare3.c,
284           src/regression/compare4.c, src/regression/compare5.c,
285           src/regression/compare6.c, src/regression/compare7.c,
286           src/regression/compare8.c, src/regression/compare9.c,
287           src/regression/configword.c, src/regression/for.c,
288           src/regression/inline.c, src/regression/mult1.c,
289           src/regression/nestfor.c, src/regression/or1.c,
290           src/regression/pointer1.c, src/regression/ptrfunc.c,
291           src/regression/rotate1.c, src/regression/rotate2.c,
292           src/regression/rotate3.c, src/regression/rotate4.c,
293           src/regression/rotate5.c, src/regression/rotate6.c,
294           src/regression/rotate7.c, src/regression/string1.c,
295           src/regression/struct1.c, src/regression/sub.c,
296           src/regression/sub2.c, src/regression/switch1.c,
297           src/regression/while.c, src/regression/xor.c,
298           src/regression/create_stc, src/regression/simulate,
299           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
300           regression tests
301         * src/regression/gpsim_assert.h: added
302
303 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
304
305         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
306         ((void (code *) (void)) 0) ();
307         * as/hc08/aslex.c,
308         * as/hc08/aslink.h,
309         * as/hc08/asm.h,
310         * as/hc08/asmain.c,
311         * as/hc08/lkdata.c,
312         * as/hc08/lklex.c,
313         * as/hc08/lkmain.c,
314         * as/mcs51/aslex.c,
315         * as/mcs51/aslink.h,
316         * as/mcs51/asm.h,
317         * as/mcs51/asmain.c,
318         * as/mcs51/lkdata.c,
319         * as/mcs51/lklex.c,
320         * as/mcs51/lkmain.c,
321         * as/z80/aslex.c,
322         * as/z80/asm.h,
323         * as/z80/asmain.c: fixed build on current cygwin:
324         replaced getline() by as_getline()
325
326 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
327
328         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
329         declarator in the symbol chain
330         * src/SDCCsymt.h,
331         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
332         parameter list for function pointers
333         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
334         * support/regression/tests/bug-716242.c: added
335
336 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
337
338         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
339         offset if possible
340         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
341
342 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
343
344         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
345         inifinitely recurseable, added static
346         * support/regression/tests/bug-1408066.c: added
347
348 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
349
350         * src/SDCCicode.h,
351         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
352         renamed, added possibility to create "postLoopLbl"-labels
353         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
354         newiTempLoopHeaderLabel
355         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
356         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
357         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
358         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
359         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
360         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
361         (basicInduction): fixed bug #136564, made static,
362         (loopInduction): changed parameter of basicInduction, made static,
363         (addPostLoopBlock): added
364         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
365         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
366         findLoopEndSeq
367         * support/regression/tests/bug-136564.c: added
368         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
369         --std-sdcc99 to LIBSDCCFLAGS
370
371 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
372
373         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
374         while loop
375         * support/regression/tests/bug-1406131.c: added
376
377 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
378
379         * src/SDCCast.c (decorateType): fix promotion of unary minus
380         * src/SDCCsymt.c (computeType): beautified
381         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
382         (valUnaryPM, valComplement): fix sign and promotion,
383         (valNot): ANSI: result type is int (SDCC: unsigned char)
384         * support/regression/tests/uminus.c: speedup by removing superflous
385         test case 'int'
386         * support/regression/tests/onebyte.c: added promotion and signedness
387         tests for unary minus
388         * support/regressions/tests/bug-477927.c: disable warning about
389         uninitialized variables
390         * support/regression/tests/not.c: added
391
392 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
393
394         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
395         * src/mcs51/gen.c (gen51Code): show final register usage after
396         fillGaps in asm with --i-code-in-asm
397         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
398         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
399         incUsed, rliveClear, adjustIChain): made static,
400         (setFromRange): excluded because it's unused,
401         (findPrevUseSym, markWholeLoop): added,
402         (findPrevUse): rewritten; fixes bug 895992; now a complete search
403         through all branches of predecessors enables sdcc to emit the warning
404         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
405         (rlivePoint): made static, added parameter emitWarnings which is only
406         true during the first run out of two,
407         (findRecursiveSucc, findRecursivePred): removed,
408         (computeLiveRanges): made static, added parameter emitWarnings,
409         (dumpIcRlive): added for debugging only
410         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
411         removed prototype of setFromRange()
412         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
413         in call of computeLiveRanges()
414         * support/regression/tests/bug-895992.c: added
415         * support/regression/tests/bug-971834.c: added
416         * support/valdiag/tests/bug-895992.c: added
417         * support/valdiag/tests/bug-971834.c: added
418
419 2005-12-18 Raphael Neider <rneider AT web.de>
420
421         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
422           (genUnpackBits): improved code for direct operands,
423           (genPackBits): improved code for literal assignment to bitfields
424             and for direct destination operands (no FSR indirection),
425             prevented redundant AND, fixes #1362800,
426           (AccLsh): added parameter to disable masking of the result
427         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
428           skip instructions with side-effects (like incfsz),
429           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
430         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
431         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
432           fixes #1375263
433
434 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
435
436         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
437         volatile variables as spill location
438
439 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
440
441         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
442         replacing literals
443         * support/regression/tests/bug-1376320.c: added
444
445 2005-12-08 Raphael Neider <rneider AT web.de>
446
447         * src/pic/device.c: renamed is_shared to pic14_is_shared
448         * src/pic/gen.c (genIfx): re-enabled handling of sbits
449         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
450           (is_valid_identifier): added for above workaround
451
452 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
453
454         * device/lib/Makefile.in: fixed to enable port-specific-objects
455         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
456           char, thanks Hubert Sack
457         * doc/sdccman.lyx: documented --xstack-loc,
458           elaborated a bit more on interrupts and pitfalls,
459           removed "setjmp/longjmp unsupported",
460           documented some unsupported C99 features
461         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
462         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
463           if, thanks Hubert Sack
464         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
465         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
466           make make_library
467         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
468           regression tests can report resource usage (rfe 700441)
469         * support/regression/collate-results.py: report resource usage
470         * support/regression/ports/ds390/spec.mk,
471         * support/regression/ports/hc08/spec.mk,
472         * support/regression/ports/mcs51/spec.mk,
473         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
474         * support/regression/ports/ds390/uCsim.cmd,
475         * support/regression/ports/hc08/uCsim.cmd,
476         * support/regression/ports/mcs51/uCsim.cmd,
477         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
478         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
479           library, use the default one
480         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
481           building the library
482
483 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
484
485         * config.dsp: added dependency on .version and configure_vc.awk
486         * device/include/setjmp.h: updated for --stack-auto and --xstack
487         * device/include/mcs51/at89c51snd1c.h: corrected line endings
488         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
489         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
490         * device/lib/libsdcc.lib: added _setjmp
491         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
492           (decorateType): fixed bug 1372851,
493           (optimizeGetHbit): fixed warning
494         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
495           array initialisation
496         * support/regression/tests/bug1057979.c: added test for bug 1358192
497         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
498
499 2005-12-03 Borut Razem <borut.razem AT siol.net>
500
501         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
502           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
503
504 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
505
506         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
507         createIval): implement symbol independant "flexible array member",
508         (createIvalCharPtr): implemented flexible array initialisation with a
509         string
510         * src/SDCCsymt.c (copyStruct): removed,
511         (getSize): fixed misleading comment,
512         (getAllocSize): removed, the additional allocation size is now in
513         sym->flexArrayLength,
514         (checkStructFlexArray): new, syntax checks for flexible array members,
515         (compStructSize): added syntax checks for "flexible array members"
516         (copyStruct): removed,
517         (copyLinkChain): removed inefficient fix for bug 770487
518         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
519         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
520         symbol->flexArrayLength
521         * src/SDCCerr.c,
522         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
523         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
524         * support/regression/tests/structflexarray.c: added
525         * support/valdiag/tests/structflexiblearray.c: added
526
527 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
528
529         * src/SDCCast.c (decorateType): fixed bug 1368489
530         * support/Util/SDCCerr.c,
531         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
532
533 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
534
535         * device/include/mcs51/at89c51snd1c.h: added file submitted by
536           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
537
538 2005-11-27 Borut Razem <borut.razem AT siol.net>
539
540         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
541           support/cpp2/mkdeps.h: added command line option
542           -obj-ext=<extension> to SDCPP to define object file externion, used
543           for generation of make dependencies (-M)
544         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
545
546 2005-11-26 Borut Razem <borut.razem AT siol.net>
547
548         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
549           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
550           added pic and pic16 libraries
551
552 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
553
554         * device/include/float.h: Corrected typo in prototype of __fsgt
555
556 2005-11-25 Borut Razem <borut.razem AT siol.net>
557
558         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
559           added creation of model-mcs51-stack-auto libraries
560
561 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
562
563         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
564         and fields-list too
565         * src/SDCCast.c (createIvalArray): removed obsolete comment
566
567 2005-11-24 Borut Razem <borut.razem AT siol.net>
568
569         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
570           added missing device/lib/mcs51/crt*.asm sources
571
572 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
573
574         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
575
576 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
577
578         * device/lib/_fs2schar.c,
579         * device/lib/_fs2sint.c,
580         * device/lib/_fs2slong.c: optimized inline asm
581
582 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
583
584         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
585           Better handling of floats between -1.0 and 0.0.
586
587 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
588
589         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
590           (the missing "if"s prohibited removal of redundant labels)
591
592 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
593
594         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
595           Properly convert floats between -1.0 and 0.0 to long, int, and char
596           types (max integer value of negative floats tends to zero).
597         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
598           Removed changes made so to work properly with floats between
599           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
600           and _fs2char.c
601
602 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
603
604         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
605         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
606         (genCast) cosmetic change
607         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
608         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
609         from mcs51
610         * support/regression/tests/bitfields (testSignedBitfields): added
611
612 2005-11-18 Borut Razem <borut.razem AT siol.net>
613
614         * sdcc/device/lib/Makefile.in: remove all unnecessary files
615         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
616           introduced SILENT option to make building of pic16 libraries less
617
618 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
619
620         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
621           Now they work properly with floats between -1.0 and 0.0
622         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
623
624 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
625
626         * src/SDCCicode.c (printOperand): added missing else
627
628 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
629
630         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
631         reformatted for better readability
632         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
633         signed bitfields
634
635 2005-11-17 Borut Razem <borut.razem AT siol.net>
636
637         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
638           introduced SILENT option to make building of pic16 libraries less
639           verbose - used for nightly snapshot build
640         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
641           available on Win32 platforms.
642         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
643           medium, large, pic and pic16
644
645 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
646
647         * device/lib/printf_large.c: Temporary patch for bug 1358192:
648           printf("%f"...) sets fraction to zero.
649
650 2005-11-16 Raphael Neider <rneider AT web.de>
651
652         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
653           fixes #1357221
654         * src/pic/gen.c (genIfx): implemented for CARRY bit
655         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
656           to generic pointers, fixes #1357332,
657           (pic16_movLit2f): NEW,
658           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
659
660 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
661
662         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
663
664 2005-11-11 Raphael Neider <rneider AT web.de>
665
666         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
667         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
668           compute pointer's type from operand,
669           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
670           improved single bit reads, fixes bug #1353379
671
672 2005-11-09 Borut Razem <borut.razem AT siol.net>
673
674         * support/scripts/sdcc.nsi: added lib/pic to the package
675
676 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
677
678         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
679
680 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
681
682         * support/regression/tests/bug1348008.c: added
683         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
684         * support/regression/tests/bug1337835.c: updated comment
685
686 2005-11-06 Borut Razem <borut.razem AT siol.net>
687
688         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
689           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
690           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
691           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
692           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
693           dynamic construction of cl_error_class and derivates - 2.nd try
694
695 2005-11-05 Borut Razem <borut.razem AT siol.net>
696
697         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
698           bug, which caused Bus Errors on sparc solaris
699
700 2005-11-04 Borut Razem <borut.razem AT siol.net>
701
702         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
703           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
704           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
705           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
706           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
707           and derivates to resolve the initialization problem on OSX
708
709 2005-11-02 Borut Razem <borut.razem AT siol.net>
710
711         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
712           corrected typo - #include <winsock2.h>
713
714 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
715
716         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
717           (_asxxxx_mapping): added org directive for future enhancements
718
719 2005-11-01 Borut Razem <borut.razem AT siol.net>
720
721         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
722           enabled sockets on WIN32
723         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
724
725 2005-10-31 Borut Razem <borut.razem AT siol.net>
726
727         * support/regression/generate-cases.py: escape backslashes in {testcase}:
728           WIN32 backslash path delimiters should be escaped when used in C strings
729         * support/regression/tests/bitfields.c: exclude failing assertions for
730           __CYGWIN32__ and __MINGW32__ hosts
731
732 2005-10-30 Borut Razem <borut.razem AT siol.net>
733
734         * src/SDCCutil.c: corrected double comparison typo
735
736 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
737
738         * device/lib/medium/Makefile: added for new memory model medium
739         * device/include/asm/mcs51/features.h: updated for medium/pdata
740         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
741           added Multiply & Accumulate sbit's and MAC0_PAGE define
742         * device/include/mcs51/c8051f300.h: added sfr16 definitions
743         * device/include/mcs51/c8051f310.h: added sfr16 definitions
744         * device/lib/_mullong.c: update for medium model
745         * device/lib/incl.mk: added medium model
746         * doc/sdccman.lyx: documented medium model
747         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
748         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
749         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
750         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
751           (allocParms): set SCLS and OCLS to pdata for medium model
752         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
753           for pdata,
754           (powof2): return <0 if not power of 2
755         * src/avr/gen.c (genBitWise): use updated powof2
756         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
757           (shiftR2Left2Result): small optimization in setup, save acc when storing,
758           (shiftLLeftOrResult): use B if necessary
759         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
760         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
761         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
762         * support/regression/Makefile.in: added test-mcs51-medium
763         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
764
765 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
766
767         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
768         specifier unsigned
769         * device/lib/time.c (mktime): fixed bug 1334315
770
771 2005-10-28 Raphael Neider <rneider AT web.de>
772
773         * device/include/pic/p16f_common.inc: added common declarations
774         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
775
776 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
777
778         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
779           (aopPutUsesAcc): added to predict accumulator use,
780           (assignResultValue): save acc if necessary,
781           (genMinusDec): store result if indirectly addressed,
782           (genDivOneByte):  save acc if necessary,
783           (movLeft2Result): bugfix if left already in acc,
784           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
785             attention to accumulator use (esp. pdata),
786           (genReceive): receive pdata correctly
787         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
788         * src/SDCCicode.h: added isOperandInPagedSpace prototype
789
790 2005-10-27 Raphael Neider <rneider AT web.de>
791
792         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
793
794 2005-10-27 Raphael Neider <rneider AT web.de>
795
796         * .version: changed version to 2.5.4
797         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
798         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
799           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
800             arithmetics support routines
801         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
802         * device/lib/Makefile.in: also create installdir for pic
803
804         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
805           pic14 port as well
806         * src/pic/device.c (dump_sfr): rewritten to delegate register
807           placement to the linker (use `extern sym' rather than sym EQU addr),
808           (validAddress): fixed to check last specified address
809         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
810           (popGetLit): truncate literal value to 8 bit,
811           (popGet): moved assert to more appropriate place
812           (popGetExternal): create pCode operand from and mark the according
813             symbol as being `extern'
814           (popGetAddr): added sanity check on immediate's offset, provide
815             GPOINTER tag on demand
816           (aopPut): fixed for immediates,
817           (mov2w_op): move operand's address or contents to WREG (depending on
818             operand type), safer variant of mov2w,
819           (movwf,call_libraryfunc): NEW, handy abbreviations,
820           (get_argument_pcop,get_return_val_pcop,pass_argument,
821           get_returnvalue): interface for accessing function parameters and
822             return values,
823           (assignResultValuei,genRet): use new parameter/return value interface
824           (pic14_getDataSize): back to old version handling generic pointers,
825           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
826             provided implementation and/or fixed old one,
827           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
828             calls, removed legacy 8051 reference code
829           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
830           (loadSignToC): NEW, move the operands sign bit to CARRY,
831           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
832             genRightShiftSigned, accepts negative shift counts,
833           (setup_fsr): load FSR and adjust IRP (indirect memory access),
834           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
835             generic pointers, __data pointers and __code pointers,
836           (genUnpackBits,genPackBits): rewritten to work with generic pointers
837             and signed bitfields, limit bitfields to 8 bit,
838           (genDataPointerGet): fixed number of bytes read,
839           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
840           (genPointerGet,genPointerSet): fixed handling of __code pointers,
841             pointers to constant data are no longer assumed to point to __code
842             space, removed invalid pointer types,
843           (bitpatternFromVal): retrieve the PICs representation of an integer
844             or float literal,
845           (genDataPointerSet): fixed assigning to po_immediate operands,
846           (genGenPointerSet): implemented as library call,
847           (genIfx): fixed incorrect condition,
848           (genAddrOf): limit generic pointers' addresses to 2 bytes,
849             provide GPOINTER tag according to destination's storage class,
850           (genCast): added code to handle casting to generic pointers, added
851             sign-/zero extension of the result
852           (aop_isLitLike,op_isLitLike): fixed handling of immediates
853         * src/pic/gen.h: added macros to access IRP bit in STATUS register
854         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
855           extend the result
856         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
857           address/register resides in the shared banks
858           (emitSymbolToFile): improved to handle global and `pinned' symbols,
859             put all variables into separate sections (have the linker arrange
860             them)
861           (picglue): put init code and interrupt handlers in separate sections
862         * src/pic/main.c: added port specific options table, modified to PORT
863           structure to make GPOINTERs 3 byte, added pic14_options
864           (_pic14_do_link): private linking routine (update paths to libraries,
865             add libsdcc.lib by default)
866         * src/pic/main.h: declare pic14_options
867         * src/pic/pcode.c: fixed instructions i/o relations,
868           (RegCond): reverted to correct version,
869           (newpCodeOpLit): truncate literals to 8 bit,
870           (genericPrint): added debug output,
871           (getRegFromInstruction): fixed for various operand types, simplified
872           (BuildFlow): fixed broken handling of isntructions with labels
873           (LinkFlow): start at last instruction in flow (skip trailing comments),
874             pass the flow on to the next instruction after CALL
875           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
876           (insertPCodeInstruction): fixed inserting after a skip instruction,
877           (DoBankSelect): fixed for labeled instructions
878           (OptimizepBlock): honor --nopeep switch
879           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
880         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
881         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
882           (pCodeOptime2pCodes): allow disabling this optimization via
883             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
884             but is still buggy), started implementation of a dataflow based
885             pCode optimization (CSE + dead code elimination)
886           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
887         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
888           names are independant of the stack location and therefore portable across
889           devices
890
891 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
892
893         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
894           (selectSpil): fixed bug 1337835 by not spilling bit variables
895         * support/regression/tests/bug1337835.c: added test for this bug
896         * src/mcs51/peeph.def: restart after rule 3.c,
897           addded rules 263.x to optimize loading constants
898
899 2005-10-26 Raphael Neider <rneider AT web.de>
900
901         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
902         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
903           (genAssign): emit warning when casting literals to generic pointer
904             type, also applies when taking the address of a fixed variable,
905           (genCast): improved casting to generic pointers
906         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
907           extern variables, added verbose error message
908         * device/include/pic16/{string.h,errno.h}: added #pragma library c
909
910 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
911
912         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
913         carry must be complemented too
914         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
915         could be emitted by genMinus
916         * src/SDCCval.c (constVal): fixed bug 1305065
917
918 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
919
920         * src/SDCCast.c (addCast): added promotion for bit variables
921         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
922         promotion casts + optimisation
923         (optimizeGetWord): fix warning 'i' might be used uninitialized
924         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
925         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
926
927 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
928
929         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
930         all chars are promoted to int; promotion should be handled in SDCCast.c
931
932 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
933
934         * device/lib/_strcmp.c: Fixed bug 1326457
935
936 2005-10-11 Raphael Neider <rneider AT web.de>
937
938         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
939         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
940
941 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
942
943         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
944         * support/regression/tests/sfr16.c: added test for the sfr32 bug
945
946 2005-10-04 Raphael Neider <rneider AT web.de>
947
948         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
949           device/lib/pic16/pics.all: added pic18f1320
950         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
951
952 2005-09-30 Raphael Neider <rneider AT web.de>
953
954         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
955         * src/pic16/devices.inc: NEW, provides device descriptions
956         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
957
958 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
959
960         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
961           GETHBIT
962
963 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
964
965         * doc/sdccman.lyx: updated Highest Order Bit documentation,
966           documented Any Order Bit, Higher Order Byte and Higher Order Word
967         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
968         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
969           (optimizeGetAbit): new, to get any bit, not only the high bit,
970           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
971           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
972           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
973           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
974             RIGHT_OP: also try GETBYTE, GETWORD optimization,
975             GETABIT, GETBYTE, GETWORD: decorate them,
976           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
977           (ast_print): added GETABIT, GETBYTE, GETWORD
978         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
979         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
980           (geniCodeBinary): new generic binary icode,
981           (ast2iCode): added GETABIT, GETBYTE, GETWORD
982         * src/port.h: updated comment for PORT.hasExtBitOp
983         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
984           (genGetByte): new, to get a single byte,
985           (genGetWord): new, to get a word from a long,
986           (gen51Code): added GETABIT, GETBYTE, GETWORD
987         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
988
989 2005-09-23 Raphael Neider <rneider AT web.de>
990
991         * configure.in, configure: have device/lib/pic configured
992         * device/lib/Makefile.in: added model-pic14
993         * device/lib/clean.mk: added pic/ to clean rule
994         * device/lib/pic: added rudimentary pic14 library providing support
995           functions for multiplication/division/generic pointer access
996         * src/SDCCopt.c (convilong): mark support functions as extern
997           for pic14 port as well
998         * src/pic/gen.c (genMult): added assertions,
999           (genpic14Code): emit warning on unhandled iCodes
1000         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1001         * src/pic/pcode.c (pCodeOpCopy),
1002         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1003           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1004           SFR_REGISTER}), made safe for future extensions
1005         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1006           instructions even if preceeded by SKIP instructions (also remove
1007           them); removed unused code
1008         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1009           prevents leaving parts of the structure uninitialized after copying
1010
1011 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1012
1013         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1014           ago by me
1015         * support/regression/tests/addsub.c: added test for the bug
1016
1017 2005-09-21 Raphael Neider <rneider AT web.de>
1018
1019         * device/include/pic16/pic18f1220.h,
1020           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1021         * device/lib/pic16/Makefile.rules: added missing opening paren
1022         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1023           are provided in genutils.c,
1024           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1025           operand/result sizes,
1026           (genCmp): assert on NULL pointers first, then check deref'ed values
1027         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1028           result size
1029
1030 2005-09-18 Raphael Neider <rneider AT web.de>
1031
1032         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1033           as these are now unused,
1034           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1035         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1036           local, avoids uninitialized pointer dereference on r->name
1037         * src/pic16/ralloc.c (newReg): fixed indentation
1038
1039 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1040
1041         * src/SDCCval.c (constVal): fixed bug 730366
1042         * support/Util/SDCCerr.c,
1043         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1044
1045 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1046
1047         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1048
1049 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1050
1051         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1052
1053 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1054
1055         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1056           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1057         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1058           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1059         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1060         * packihx/packihx.c (hexDigit): made c unsigned char
1061         * as/mcs51/lklibr.c (fndsym),
1062         * link/z80/lkgb.c (gb),
1063         * link/z80/lklibr.c (fndsym),
1064         * link/z80/lkrloc.c (relr),
1065         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1066         * src/SDCC.lex (checkCurrFile, process_pragma),
1067         * src/SDCCglue.c (spacesToUnderscores),
1068         * src/SDCCmain.c (setParseWithComma, processFile),
1069         * src/asm.c (tvsprintf, printCLine),
1070         * src/avr/gen.c (emitcode, aopPut),
1071         * src/ds390/gen.c (emitcode),
1072         * src/hc08/gen.c (emitcode, emitinline),
1073         * src/mcs51/gen.c (emitcode, genInline),
1074         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1075           tokenizeLineNode),
1076         * src/pic/ralloc.c (debugLog),
1077         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1078           tokenizeLineNode),
1079         * src/pic16/ralloc.c (debugLog),
1080         * src/z80/main.c (_process_pragma):
1081            made all ctype.h function calls safe
1082         * src/SDCCopt.c: include math.h for fabs
1083         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1084           and used them throughout the code to make ctype.h function calls safe
1085         * src/ds390/main.c (asmLineNodeFromLineNode),
1086         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1087         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1088            unsigned char*
1089         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1090           (newpCodeAsmDir): made ctype.h function calls safe
1091         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1092           pic16_emitcode):  made lbp unsigned char*
1093         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1094           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1095         * src/xa51/gen.c (emitcode),
1096         * src/z80/gen.c (_emit2): made lbp unsigned char*
1097         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1098            char*
1099
1100 2005-09-05 Raphael Neider <rneider AT web.de>
1101
1102         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1103           access bank splitpoint
1104
1105 2005-09-05 Raphael Neider <rneider AT web.de>
1106
1107         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1108
1109 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1110
1111         * .version: changed to version 2.5.3
1112         * doc/sdccman.lyx: changed version to 2.5.3,
1113           documented --codeseg and --constseg and pragma codeseg and constseg,
1114           documented bit parameters (reentrant) and bit returning
1115         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1116            currFunc->recvSize, but is this ok for all ports?
1117           (ast2iCode): result of ~ on unsigned char must be cast to int for
1118            bool to work
1119         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1120           function pointers in bit space
1121         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1122           (processFuncArgs): call port.reg_parm() with reentrancy info
1123         * src/port.h,
1124         * src/avr/main.c,
1125         * src/ds390/main.c,
1126         * src/hc08/main.c,
1127         * src/pic/main.c,
1128         * src/pic16/main.c,
1129         * src/xa51/main.c,
1130         * src/z80/main.c: port.reg_parm prototype extended with
1131           "bool reentrant" parameter
1132         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1133           options.stackAuto for allocating bit register parameters
1134         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1135           (genSend): set BitBankUsed if it is,
1136           (selectRegBank): factored out of genCall for use in genPcall,
1137           (genCall): removed redundant dtype assignmen, use selectRegBank,
1138           (genPcall): handle returning in Carry properly, save in F0 if needed,
1139           (genReceive): handle bit register parameters
1140         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1141           (mcs51_assignRegisters): enable bit registers for all reentrant
1142            functions and don't set BitBankUsed unconditionally
1143         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1144         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1145         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1146
1147 2005-08-27 Borut Razem <borut.razem AT siol.net>
1148
1149         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1150         ppc-osx (Darwin) does not support -u option. It seems that it is
1151         supported only on Linux - GNU cp
1152
1153 2005-08-25 Borut Razem <borut.razem AT siol.net>
1154
1155         * sim/ucsim/gui.src/serio.src/Makefile.in,
1156           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1157           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1158           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1159           install and strip, since the strip at /usr/ccs/bin should be used
1160           on solaris
1161
1162 2005-08-24 Borut Razem <borut.razem AT siol.net>
1163
1164         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1165
1166 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1167
1168         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1169         ffffffffu
1170
1171 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1172
1173         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1174         * as/mcs51/lkmain.c (link_main): fixed warning
1175         * device/include/stdbool.h: ds390 has no advanced bit support yet
1176         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1177         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1178         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1179           and updated their macros
1180         * src/SDCCval.c (constVal): updated comment for renamed b_long
1181
1182 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1183
1184         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1185         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1186           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1187           (oprio): set priority for '['
1188         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1189            and adb_24_bit
1190         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1191         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1192         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1193         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1194           added overlayable BIT_BANK area
1195         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1196           (summary2): explain 'T' in legenda
1197         * as/mcs51/lkrloc.c: replaced old K&R style,
1198           (relr): added R_BIT processing,
1199           (errmsg): added "Bit-addressable relocation error",
1200           (adb_bit): added for converting from byte- to bit-addressable space,
1201           (adb_24_bit): added for converting from byte- to bit-addressable space
1202         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1203            used in reentrant functions now even as return value
1204         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1205         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1206           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1207         * src/SDCCglobl.h: added indicator BitBankUsed
1208         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1209            the bit registers b0-b7
1210         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1211           (geniCodeCast): fixed bug 1263853,
1212           (geniCodeLogicAndOr): put result in bool or char,
1213           (geniCodeReceive): added parameter func for accessing the return type,
1214           (geniCodeFunctionBody): pass func to geniCodeReceive
1215         * src/SDCCmain.c: added indicator BitBankUsed
1216         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1217         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1218           (checkSClass): don't put automatic bool/bit on stack,
1219           (checkFunction): removed check on function cannot return bit
1220         * src/SDCCsymt.h: added newBoolLink prototype
1221         * src/mcs51/gen.c (rb1regs): added bit registers,
1222           (movc): created for assigning to carry,
1223           (pushReg, popReg): created for pushing registers,
1224           (sameRegs): check both AOP_REG and AOP_CRY types,
1225           (aopOp): handle bit registers,
1226           (aopPut): optimization no self-assign,
1227           (saveRegisters): push reg->base (bits) only once for bit registers,
1228            and use pushReg,
1229           (unsaveRegisters): pop reg->base only once and use popReg,
1230           (assignResultValue): added parameter func and return in carry for bits,
1231           (genIpush): optimization no reload in A if not changed,
1232           (genSend): bit parameters in reentrant functions are passed in bit
1233            registers by first assigning to bits in B, then save registers and
1234            copy B to bits,
1235           (genCall): handle returning in Carry properly, save it in F0 if needed,
1236           (genPcall): updated assignResultValue call, this is not safe yet for bit
1237            returning function !!!
1238           (genFunction): don't generate equ's for bit registers and use pushReg,
1239           (genEndFunction): take care of bit returning functions and use popReg,
1240           (genRet): return bit in Carry,
1241           (genIfx): optimize bit registers and other directly addressable bits,
1242           (genReceive): updated assignResultValue call
1243         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1244           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1245            registers when using stack-auto
1246         * src/mcs51/ralloc.c (_G): added allBitregs,
1247           (regs8051): added the bit registers,
1248           (createStackSpil): use macro IS_BIT,
1249           (getRegBit): added to allocate a bit register, else spill,
1250           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1251           (updateRegUsage): factored out to ease stepping while debugging,
1252           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1253            also allocate bit registers,
1254           (fillGaps): handle bit registers,
1255           (findAllBitregs): added to create bit vector with all bit registers,
1256           (mcs51_allBitregs): returns this bit vector,
1257           (mcs51_assignRegisters): when using stack-auto use bit registers for
1258            passing parameters and creating local variables
1259         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1260
1261 2005-08-22 Borut Razem <borut.razem AT siol.net>
1262
1263         * device/lib/Makefile.in: replaced find option -or with -o
1264           to make it run on solaris
1265
1266 2005-08-22 Raphael Neider <rneider AT web.de>
1267
1268         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1269           fixes #1265442 (crash on Solaris)
1270
1271 2005-08-20 Borut Razem <borut.razem AT siol.net>
1272
1273         * configure, configure.in: added tests for libsocket and libnsl libraries,
1274           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1275           from support/regression/Makefile.in
1276         * support/regression/Makefile.in: added
1277         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1278         * sim/ucsim/libtool: regenerated on sparc-solaris
1279         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1280           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1281           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1282           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1283           sparc-solaris, which doesn't use GNU ld linker
1284         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1285         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1286
1287 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1288
1289         * src/mcs51/peeph.def: updated comments
1290
1291 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1292
1293         * device/lib/_gptrget.c,
1294         * device/lib/_gptrput.c: slightly shorter
1295         * doc/sdccman.lyx: incremented version
1296         * src/mcs51/peeph.def: moved peephole comments to the line of first
1297           change to better keep line correlation, reanimated 186.e
1298         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1299
1300 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1301
1302         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1303           David Saxton with quotes around file name.
1304
1305 2005-08-15 Borut Razem <borut.razem AT siol.net>
1306
1307         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1308           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1309           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1310           make tests run on x86_64 platform
1311
1312 2005-08-13 Raphael Neider <rneider AT web.de>
1313
1314         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1315           as it might be executed DURING a build (parallel make is wonderful)
1316
1317 2005-08-13 Raphael Neider <rneider AT web.de>
1318
1319         * device/lib/Makefile.in (port-specific-objects-pic16):
1320           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1321         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1322           dependency
1323         * device/lib/pic16/Makefile.rules: build subdirs before creating
1324           the library, removed builddir rule, create $(builddir) early in
1325           recurse rule, use empty recurse rule for leaf directories
1326         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1327           mkdir errors (race condition), removed duplicate suffix "hex"
1328           from clean rules
1329         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1330         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1331           prevents mkdir -p from aborting on Alpha
1332
1333 2005-08-12 Raphael Neider <rneider AT web.de>
1334
1335         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1336           db-statements in order to allow for arrays of pointers in code
1337           sections to be placed without interspersed 0-padding, fixes
1338           bug #1256215
1339         * (emitStatistics): fixed division by zero for pic18f1220
1340         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1341           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1342         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1343         * (pic16_pCodeConstString): keep track of already emitted string
1344           literals to prevent "duplicate definitions of symbol _str_NR"
1345         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1346           debug message
1347         * device/lib/Makefile.in: ignore failing PIC16 library builds
1348         * device/lib/pic16/Makefile: do not build if gputils are missing
1349         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1350
1351 2005-08-10 Raphael Neider <rneider AT web.de>
1352
1353         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1354           my last commit)
1355
1356 2005-08-10 Raphael Neider <rneider AT web.de>
1357
1358         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1359           Rokas' patch to add the new fixed point type "__fixed16x16"
1360         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1361           functions for __fixed16x16 arithmetics
1362         * device/lib/pic16: reimplemented the build system to support
1363           a separate build directory, better handling of libio (create
1364           the library in a separate subdir for each architecture) and
1365           easier configuration (centralized in Makefile.common)
1366
1367 2005-08-07 Raphael Neider <rneider AT web.de>
1368
1369         * src/pic16/gen.c (genrshTwo): fixed sign extension
1370         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1371         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1372           added T0CONbits
1373         * device/include/pic16/pic18f4220.h: NEW, header for
1374           pic18f4220 and pic18f4320
1375         * device/include/pic16/pic18fregs.h: added new devices,
1376           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1377         * device/include/pic16/signal.h: resolved name clashes
1378           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1379           to also allow testing for interrupt enable bits, added
1380           comments on how to use the macros
1381         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1382         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1383           register definitions for the devices
1384         * device/lib/pic16/pics.all: added new devices
1385         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1386           allocated memory
1387         * device/lib/pic16/libc/stdlib/memfree: do not count
1388           the block header as free memory
1389         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1390           simplified and added missing end-of-blocklist-marker
1391           (reported by Peter Onion, fixes #1252814)
1392         * (_mergeHeapBlock): fixed loop condition
1393         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1394           len==0, restructured code
1395         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1396           up a bit, reduced bitfield accesses, prevent endless loops
1397           in case of heap corruption
1398         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1399           "unreferenced arguments/must return a value" warnings
1400         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1401           replaced BAUDREG with SPBRG
1402         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1403           device/lib/pic16/debug/gstack/gstack.c: replaced
1404           _naked, _asm, _endasm with __naked, __asm, __endasm
1405
1406 2005-08-05 Raphael Neider <rneider AT web.de>
1407
1408         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1409           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1410
1411 2005-08-05 Borut Razem <borut.razem AT siol.net>
1412
1413         * device/lib/Makefile.in: added missing ';'
1414         * configure: removed ^M characters
1415
1416 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1417
1418         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1419           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1420           License
1421
1422 2005-08-04 Borut Razem <borut.razem AT siol.net>
1423
1424         * configure.in: pic16 libraries build 2nd try - enable running
1425           configure in device/lib/pic16
1426         * configure: regenerated from configure.in
1427         * device/lib/Makefile.in: create $(PORT)/bin directory
1428
1429 2005-08-03 Raphael Neider <rneider AT web.de>
1430
1431         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1432           to get/set values via pointers
1433         * (genUnpackBits,genPackBits): changed detection of
1434           ptr->bitfield vs. sym.bitfield, fixed access via generic
1435           pointers, removed dead (wrong) code for multibyte bitfields
1436         * (genNearPointerGet, genGenPointerGet): removed useless code,
1437           fixed bitfield detection, fixes #1250594
1438         * (genNearPointerSet): removed useless code
1439         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1440           and introduced macro pic16_emitpcode that conditionally emits
1441           the origin of the following pCode (useful for debugging SDCC)
1442         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1443         * (createDefmap): fixed handling of LFSR for --optimize-df
1444
1445 2005-08-02 Borut Razem <borut.razem AT siol.net>
1446
1447         * device/lib/Makefile.in: pic16 libraries build enabled since
1448           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1449
1450 2005-08-02 Raphael Neider <rneider AT web.de>
1451
1452         * src/pic16/gen.c (genPackBits): removed deprecated warning
1453         * (genGenPointerSet): fixed bitfield detection
1454
1455 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1456
1457         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1458
1459 2005-07-31 Raphael Neider <rneider AT web.de>
1460
1461         * device/lib/pic16/libdev/pic18f458.c,
1462           device/include/pic16/pic18f458.h: added missing T0CONbits
1463
1464 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1465
1466         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1467
1468 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1469
1470         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1471
1472 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1473
1474         * device/include/mcs51/at89c51ed2.h: added.
1475
1476 2005-07-23 Raphael Neider <rneider AT web.de>
1477
1478         * src/pic/gen.h: added emitpcode macro for debugging
1479         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1480           and replace by macro adding debug information on demand
1481         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1482         * (gencjne): tried to fix; replaced with correct (slower) code
1483         * (gen{Unp,P}ackBits): fixed single bit access
1484         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1485         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1486           previous instruction
1487         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1488           register has to be handled with care (forbidding movement
1489           of assignments/uses, removing assignments completely, ...)
1490         * (pCodeOptime2pCodes): make use of regIsSpecial
1491         * added lots of debugging output (commented out)
1492         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1493           from being reused as result UNLESS it is known to work
1494
1495 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1496
1497         * support/Util/dbuf.h: include <stddef.h> for size_t
1498         * .version: changed to version 2.5.2
1499
1500 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1501
1502         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1503
1504 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1505
1506         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1507           (genModOneByte): removed needless psha/pula
1508
1509 2005-07-22 Raphael Neider <rneider AT web.de>
1510
1511         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1512           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1513         * src/pic/gen.c (resolveIfx): do not "invent" labels
1514         * (genSkipc): changed to positive logic
1515         * (genSkipCond): removed as no longer needed
1516         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1517           backport from PIC16
1518         * (genLeftShift): check operands are in different registers
1519         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1520           INCF does not update CARRY...
1521         * src/pic/main.c: fixed _linkCmd
1522         * src/pic/pcode.c (unlinkpCode): added inactive code
1523         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1524           alive (do not assign result and operand overlapping registers)
1525
1526 2005-07-22 Raphael Neider <rneider AT web.de>
1527
1528         * src/pic/device.c (dump_sfr): replaced register declaration with
1529           call to emitSymbolToFile() to avoid duplicate symbols
1530         * (assignRelocatableRegisters): do not declare external symbols
1531         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1532           right (take size of type, not etype)
1533         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1534         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1535         * (packRegsForAccUse): disabled assignment of WREG as
1536           the result reg to prevent occurence of just fixed #1235003,
1537           fixes #1242954
1538         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1539           symbols (avoids duplicate symbols in .asm file)
1540         * (pic14emitRegularMap): use emitSymbolToFile()
1541         * src/pic/gen.c (aopOp): fixed spillLocation handling
1542         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1543         * (genDataPointerSet): removed unneccessary variables/output
1544
1545 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1546
1547         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1548         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1549
1550 2005-07-21 Raphael Neider <rneider AT web.de>
1551
1552         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1553           architecture cannot handle them efficiently, fixes bug #1235003
1554         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1555           check for empty sets before using them (fixes bug #1232190)
1556
1557 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1558
1559         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1560           (lnksect2): generate warnings for memory overlap
1561         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1562           constseg to set the name of these segments so you can instruct the linker
1563           to place them in banks
1564         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1565         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1566           added code_seg and const_seg to options
1567         * src/SDCCglue.c (emitMaps): use options.const_seg,
1568           (createInterruptVect): put interrupt vectors in segment HOME,
1569           (glue): put HOME before static segment and put the main glue in HOME,
1570           (glue): use options.code_seg
1571         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1572         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1573           these segments so you can instruct the linker to place them in banks
1574           (linkEdit): use code_loc for HOME segment which should be the first
1575           segment in code memory now
1576         * src/SDCCmem.c: fixed more stuff like bug 1238386
1577         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1578           (changePointer): don't change function pointers to code pointers for
1579           banked functions,
1580           (compareType): added exceptional check for banked function pointers
1581         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1582         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1583           after static in code memory
1584         * src/mcs51/gen.c: added aopLiteralLong prototype,
1585           (aopForSym): use getSize for functions,
1586           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1587           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1588           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1589           the segment,
1590           (genPcall): use call for literal function pointers and generate banked
1591           calls over the one trampoline so there's only one place for the user to
1592           modify according to his/hers hardware,
1593           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1594           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1595         * src/mcs51/main.c: added keyword banked,
1596           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1597         * support/Util/SDCCerr.c,
1598         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1599           needed for passing the bank and address to the trampoline
1600         * device/lib/mcs51/crtbank.asm: added for bankswitching
1601         * device/lib/mcs51/Makefile: added crtbank
1602
1603 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1604
1605         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1606           for fields at offset 0 of a struct or union as reported
1607           on 2005-07-07 in the developer mailing list.
1608
1609 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1610
1611         * src/SDCCmem.c: fixed bug 1238386
1612
1613 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1614
1615         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1616           (patch #1144962), added peephole 300, enabled 259.x
1617         * doc/sdccman.lyx: removed screenshot and provided link instead
1618
1619 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1620
1621         * doc/sdccman.lyx: added section about debugging with ddd
1622         * doc/figures/ddd_example.eps: screenshot of debugging session
1623
1624 2005-07-04 Raphael Neider <rneider AT web.de>
1625
1626         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1627           like CODE pointers, fixes #1115683
1628         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1629           call, fixes bugs #1232211, #1228110,
1630           fixed wrong casts to pCodeFlow from pCodeInstructions
1631
1632 2005-07-04 Raphael Neider <rneider AT web.de>
1633
1634         * src/pic/gen.c (popGet): changed assert to allow for
1635           bit operands
1636         * (popGetAddr): changed signature to provide
1637           an additional index, patched all call sites
1638         * (genCmpEq): handle literal-like operands correctly
1639         * (genAddrOf): added sanity checks on __code/__data pointers
1640         * (genAssign): added handling of symbols from __code section
1641         * (gencjne): do not generate code for comparisons whose result
1642           is neither stored nor used, fixes bug #1171114
1643         * (AccLsh, AccRsh): operate on operand instead of WREG
1644         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1645           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1646           by known count
1647         * rewrote complete shift-by-literal logic, commented unused
1648           functions out
1649         * (genConstPointerGet): get multiple bytes (if result size > 1),
1650           fixed handling of non-immediate addresses
1651         * (genPointerGet): handle CODE pointers like CONST pointers
1652         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1653         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1654           operand is to be treated as a literal or not
1655         * (mov2w,genPcall,genCmpEq),
1656           src/pic/genarith.c: use aop_isLitLike() to decide between
1657           literal/register contents
1658         * (addSign): added missing offset
1659         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1660           only emit comment in debug-mode,
1661           use {aop,op}_isLitLike throughout the file
1662         * src/pic/glue.c: fix initializers for pointers (work in progress)
1663         * src/pic/pcode.c (get_op): honor index on _const symbols
1664         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1665         * (dumppBlock): added pCode size estimation
1666         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1667           check for IS_SYMOP before OP_SYMBOL'ing
1668         * fixed indentation, compacted switch-statements
1669         * (allocReg): find free register and allocate it instead of
1670           allocating new registers all the time
1671         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1672           registers as its operands (necessary only for multibyte GETs)
1673
1674 2005-07-01 Raphael Neider <rneider AT web.de>
1675
1676         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1677           debugging .asm-output macros FENTRY + FEXIT
1678         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1679           way... I wonder...
1680         * (emitpComment): NEW, printf to pCode
1681         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1682           offset handling
1683         * (popGetAddr): NEW, variant of popGet to access an immediates
1684           high(er) bytes instead of the n'th byte of memory they reference,
1685           replaced popGet with popGetAddr where neccessary
1686         * (genDataPointerGet): reactivated and fixed implementation
1687         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1688           accesses
1689         * (genDataPointerSet): fixed multibyte assignments
1690         * (genpic14Code): fixed --i-code-in-asm handling
1691         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1692         * (genPlus): fixed index-out-of-bounds error
1693         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1694         * src/pic/ralloc.c: added debugging output macro FENTRY2
1695         * (spillThis): fixed indentation, enbraced for-body for clarity
1696         * (rematStr): commented out as now unused
1697         * (regTypeNum): commented out special spill case (overwrites
1698           arbitrary values)
1699         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1700
1701 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1702
1703         * doc/sdccman.lyx: documented sfr16/sfr32,
1704           added example for using storage class with function pointers
1705         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1706
1707 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1708
1709         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1710         * device/lib/_itoa.c,
1711         * device/lib/_ltoa.c: optimized codesize
1712         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1713           but don't know how to suppress the double warning.
1714         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1715         * support/Util/SDCCerr.c,
1716         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1717
1718 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1719
1720         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1721           fixed old K&R prototypes
1722         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1723         * device/lib/_gptrget.c,
1724         * device/lib/_gptrgetc.c,
1725         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1726           also new versions for small generic pointers and banked generic pointers
1727         * src/port.h: added const_name
1728         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1729         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1730         * src/SDCCcse.c (findPrevIc): check all associative operators
1731         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1732         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1733         * src/SDCCmem.c: updated comments,
1734           set far-space to 0 for pdata, results in optimized code
1735         * src/SDCCmem.h: added macro CONST_NAME
1736         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1737           moving the info into the highest bits, see also gptrget/gptrput
1738         * src/src.dsp: added sdcc.ico to project files
1739         * src/avr/gen.c (genCast): fixed bug 0x%d
1740         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1741         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1742           relation between ptr_type and DCL_TYPE,
1743           (genCast): fixed bug 0x%d
1744         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1745           (CODE)" for const_name
1746         * src/hc08/gen.c (genCast): fixed bug 0x%d
1747         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1748           (hc08_port): added "CONST (CODE)" for const_name
1749         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1750           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1751           between ptr_type and DCL_TYPE,
1752           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1753           operand* and took AOP() inside function so sfr-ness can be checked,
1754           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1755           new prototype,
1756           (genFunction, genEndFunction): optimized stack setup,
1757           (genMinus): optimized for literals with ending zeroes (in bytes),
1758           (genCast): fixed bug 0x%d
1759         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1760           (mcs51_port): added "CONST (CODE)" for const_name
1761         * src/mcs51/peeph.def: made rule 226 more generic
1762         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1763         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1764         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1765         * src/z80/main.c (z80_port): added NULL for const_name,
1766           (gbz80_port): added NULL for const_name
1767         * support/regression/tests/bug663539.c,
1768         * support/regression/tests/sfr16.c: new tests
1769
1770 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1771
1772         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1773
1774 2005-06-24 Raphael Neider <rneider AT web.de>
1775
1776         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1777           corrected typos...
1778         * device/include/pic16/signal.h: added USBIF
1779           and SIG_USB
1780
1781 2005-06-24 Raphael Neider <rneider AT web.de>
1782
1783         * device/lib/pic16/libdev/pic18f2455.c,
1784           device/include/pic16/pic18f2455.h: NEW
1785         * device/include/pic16/pic18fregs.h,
1786           device/lib/pic16/pics.all,
1787           src/pic16/device.c: added 18f2455
1788         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1789           device/include/pic16/{pic18f[68][567].h,usart.h}:
1790           replaced MULTIPLE_USARTS define with more relaible
1791           compatibility sfrs (for USART access)
1792
1793 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1794
1795         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1796           and the output asm file line is printed on two lines.
1797
1798 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1799
1800         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1801           BGT, BLE, BHI, and BLS instructions
1802         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1803           genCmpEq): removed
1804         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1805           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1806           fixes bug #1216342
1807         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1808
1809 2005-06-15 Raphael Neider <rneider AT web.de>
1810
1811         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1812         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1813         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1814           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1815           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1816
1817 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1818
1819         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1820           Marcel Telka in bug #1215704
1821
1822 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1823
1824         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1825           located in shared memory bank.
1826
1827 2005-05-31 Raphael Neider <rneider AT web.de>
1828
1829         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1830           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1831           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1832
1833 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1834
1835         * device/lib/_strncpy.c: fixed the fix
1836
1837 2005-05-26 Raphael Neider <rneider AT web.de>
1838
1839         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1840           initializers with \0, bug #1208187
1841         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1842           intializers with \0, bug #1208187
1843
1844 2005-05-26 Raphael Neider <rneider AT web.de>
1845
1846         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1847           initializers with \0, bug #1208187
1848         * src/pic16/main.c (_process_pragma): added sanity checks
1849           for stack position and size, emit warnings when appropriate
1850
1851 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1852
1853         * device/lib/_strncpy.c: fixed not filling with \0
1854
1855 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1856
1857         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1858           createFunction),
1859         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1860           compound_statement),
1861         * src/SDCCsymt.h,
1862         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1863
1864 2005-05-24 Raphael Neider <rneider AT web.de>
1865
1866         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1867
1868 2005-05-24 Raphael Neider <rneider AT web.de>
1869
1870         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1871           TRISE definitions, closes bug #1162453
1872
1873 2005-05-22 Raphael Neider <rneider AT web.de>
1874
1875         * src/pic16/main.c (_process_pragma): check for missing
1876           arguments to pragmas code and udata
1877         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1878           consistency fixes to match other headers (thanks to Jim Paris)
1879         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1880
1881 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1882
1883         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1884
1885 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1886
1887         * support/regression/tests/bug1198642.c: new test
1888         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1889         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1890         * support/scripts/resource.h,
1891         * support/scripts/resource.rc,
1892         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1893         * support/scripts/sdcc.ico: added 32x32 icon
1894
1895 2005-05-18 Raphael Neider <rneider AT web.de>
1896
1897         * device/lib/pic16/libdev/pic18f*.c,
1898         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1899           keywords to "__sfr" and "__at (X)"
1900         * device/include/pic16/pic18fregs.h: added pic18f4520
1901         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1902           #1203088 (MPLAB compatibility)
1903
1904 2005-05-17 Raphael Neider <rneider AT web.de>
1905
1906         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1907         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1908         * device/lib/pic16/pics.all: added new devices
1909         * src/pic16/device.c: added support for pic18f4520
1910
1911 2005-05-16 Raphael Neider <rneider AT web.de>
1912         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1913         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1914         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1915           convenience function for bit access
1916
1917 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1918
1919         * device/lib/printf_large.c: fixed bug 1193299
1920         * support/regression/tests/bug1057979.c: added test %3.3s
1921
1922 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1923
1924         * device/include/mcs51/8051.h,
1925         * device/include/mcs51/8052.h: made parseable with lint
1926         * device/include/mcs51/lint.h: added include file for (sp)lint
1927         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1928         * doc/cdbfileformat.lyx,
1929         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1930
1931 2005-05-14 Raphael Neider <rneider AT web.de>
1932
1933         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1934         * device/lib/pic16/libc/stdlib/itoa.c (new)
1935         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1936         * device/lib/pic16/libio/Makefile: exclude subdir according to
1937           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1938         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1939         * src/pic16/gen.c (genFunction): prevent annoying warning
1940         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1941           nameclashes on BeOS
1942         * support/cpp2/cppmain.c (cpp_output_string): new
1943         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1944           fixes bug 1116802
1945
1946 2005-05-13 Borut Razem <borut.razem AT siol.net>
1947
1948         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1949
1950 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1951
1952         * .version: changed to version 2.5.1; back to bleeding edge development
1953
1954 2005-05-11 Borut Razem <borut.razem AT siol.net>
1955
1956         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1957           generate PDF version 1.3 documents
1958
1959 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1960
1961         * .version: changed to version 2.5.0
1962
1963 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1964
1965         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1966
1967 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1968
1969         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1970         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1971         well as many smaller updates.
1972         * .version: changed to version 2.5.0-pre1
1973
1974 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1975
1976         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1977
1978 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1979
1980         * support/regression/tests/bug1185672.c: added
1981         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1982           bug 1185672
1983         * src/mcs51/gen.c (genCall): added comments, made it look safer
1984         * src/mcs51/gen.c (genEndFunction): simplified
1985
1986 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1987
1988         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1989
1990 2005-04-14 Borut Razem <borut.razem AT siol.net>
1991
1992         * fixed bug 1045046 - SIGSEGV with really simple code?:
1993           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1994           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1995
1996 2005-04-14 Borut Razem <borut.razem AT siol.net>
1997
1998         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1999           src/pic16/device.h: temporarily disabled experimental #inline pragma
2000           for 2.5.0 release
2001
2002 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2003
2004         * device/include/z80/stdio.h,
2005         * device/include/z80/string.h: removed these highly incomplete files so
2006           SDCC can use the default ones in device/include/
2007
2008 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2009
2010         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2011         gcc warning.
2012         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2013         fix sdcpp warnings.
2014
2015 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2016
2017         * device/include/malloc.h: removed redundant __reentrant prototypes
2018         * device/lib/_mullong.c: added working xstack variant in asm (C version
2019           doesn't pass regression tests)
2020         * device/lib/bpx.c: used __data and made bpx char for mcs51
2021         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2022           (createFunction): fixed bug with xstackPtr
2023         * src/SDCCcse.c: corrected comments
2024         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2025           (killDeadCode, eBBlockFromiCode): removed unused code
2026         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2027           corrected comments
2028         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2029           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2030           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2031           (genModOneByte): fixed warning in MSVC
2032         * src/mcs51/main.c (): added comments
2033         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2034
2035 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2036
2037         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2038
2039 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2040
2041         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2042
2043 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2044
2045         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2046         characters arrays of larger size than the declared one.
2047
2048 2005-04-10 Borut Razem <borut.razem AT siol.net>
2049
2050         * src/pic/gen.c (genInline),
2051           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2052           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2053           (findNextInstruction), (findPrevInstruction),
2054           (findInstructionUsingLabel),
2055           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2056         * src/pic/pcode.c (findLabel): added missing '\n'
2057         * src/src.dsp: added SDCCdwarf2.c to the project
2058
2059 2005-04-09 Borut Razem <borut.razem AT siol.net>
2060
2061         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2062
2063 2005-04-08 Raphael Neider <rneider AT web.de>
2064
2065         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2066           into the chain after a given one) and mergeDefmapSymbols (combine
2067           defmap entries for each symbol per pcode)
2068         * (createDefmap): have defmap entries merged in the end
2069         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2070           a symbol before replacing one access type's symbol, merge symbols in
2071           the end (replacement symbol might already have an entry)
2072         * (assignValnums): keep reference to written WREG intact
2073
2074 2005-04-08 Raphael Neider <rneider AT web.de>
2075
2076         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2077           Alpha)
2078
2079 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2080
2081         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2082         bytes
2083
2084 2005-04-07 Raphael Neider <rneider AT web.de>
2085
2086         * device/include/pic16/usart.h: added compatibility defines for
2087           devices with more than one USART
2088         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2089
2090 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2091
2092         * device/lib/Makefile.in: updated for port specific include
2093
2094 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2095
2096         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2097
2098 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2099
2100         * device/include/8051.h,
2101         * device/include/8052.h,
2102         * device/include/at89S8252.h,
2103         * device/include/at89c55.h,
2104         * device/include/at89x051.h,
2105         * device/include/at89x51.h,
2106         * device/include/at89x52.h,
2107         * device/include/mcs51reg.h,
2108         * device/include/reg51.h,
2109         * device/include/reg764.h,
2110         * device/include/regc515c.h,
2111         * device/include/sab80515.h: (re)moved these 12 files
2112         * device/include/mcs51/8051.h,
2113         * device/include/mcs51/8052.h,
2114         * device/include/mcs51/at89S8252.h,
2115         * device/include/mcs51/at89c55.h,
2116         * device/include/mcs51/at89x051.h,
2117         * device/include/mcs51/at89x51.h,
2118         * device/include/mcs51/at89x52.h,
2119         * device/include/mcs51/mcs51reg.h,
2120         * device/include/mcs51/reg51.h,
2121         * device/include/mcs51/reg764.h,
2122         * device/include/mcs51/regc515c.h,
2123         * device/include/mcs51/sab80515.h: and added them here
2124
2125 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2126
2127         * device/include/stdarg.h: changed SDCC specific keywords to double
2128           underlined form.
2129         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2130           mcs51 and ds390.
2131         * device/include/hc08/mc68hc908gp32.h,
2132         * device/include/hc08/mc68hc908jb8.h,
2133         * device/include/hc08/mc68hc908jkjl.h,
2134         * device/include/hc08/mc68hc908qy.h: fixed comments
2135         * device/include/mcs51/README: updated
2136         * device/include/mcs51/c8051f120.h: added PINRSF
2137         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2138         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2139           amidst code. Also inline is not supported.
2140
2141 2005-04-06 Raphael Neider <rneider AT web.de>
2142
2143         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2144         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2145           callers stack/frame pointers
2146
2147 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2148
2149         * device/include/pic16/usart.h: added, missing in previous commit,
2150         * device/include/pic16/adc.h: fixed typo,
2151         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2152         commit,
2153         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2154         <p18fxxx.inc>
2155         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2156         uninitialized because a bug appears with gplink
2157         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2158         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2159         complains for unrecognised option
2160
2161 2005-04-05 Raphael Neider <rneider AT web.de>
2162
2163         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2164           structs as well (using memcpy)
2165         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2166           on ISRs (GOTO has no label)
2167         * src/pic16/device.h: added OF_OPTIMIZE_DF
2168         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2169           new data flow analysis/optimization
2170         * src/pic16/pcode.c: added (prototypes for and implementation of)
2171           dataflow analysis functions, fixed pCodeInstructions' inCond and
2172           outCond values, made RCALL a branch instruction
2173         * (pic16_unlinkpCode): keep C line if possible
2174         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2175           C line moved if possible
2176         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2177         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2178           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2179         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2180           new flow)
2181         * (pic16_getJumptabpCode): NEW, needed in...
2182         * (LinkFlow): fixed handling of jumptables, calls and conditional
2183           branches
2184         * (pic16_InsertCommentAfter): NEW
2185         * (pic16_pCodeReplace): made verbose and flow preserving
2186         * (AnalyzeFlow): added call to data flow analysis
2187         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2188         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2189         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2190
2191 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2192
2193         * src/SDCCast.c (decorateType): fixed bug #1105626
2194
2195 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2196
2197         * device/include/asm/pic16/features.h,
2198         * pic18f*.h headers,
2199         * device/include/pic16/adc.h,
2200         * device/include/pic16/delay.h,
2201         * device/include/pic16/i2c.h,
2202         * device/include/pic16/malloc.h,
2203         * device/include/pic16/stdio.h,
2204         * device/include/pic16/stdlib.h,
2205         * device/include/pic16/string.h,
2206         * device/lib/pic16/libc/stdio/printf_tiny.c,
2207         * device/lib/pic16/libc/stdio/printf_small.c,
2208         * device/lib/pic16/libc/stdio/strmgpsim.c,
2209         * device/lib/pic16/libc/stdio/strmmssp.c,
2210         * device/lib/pic16/libc/stdio/strmusart.c,
2211         * device/lib/pic16/libc/stdio/vfprintf.c,
2212         * device/lib/pic16/libc/stdlib/ltoa.c,
2213         * device/lib/pic16/libc/stdlib/putchar.c,
2214         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2215         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2216         * device/lib/pic16/libc/stdlib/memchrram.c,
2217         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2218         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2219         * device/lib/pic16/libio/adc/adcbusy.c,
2220         * device/lib/pic16/libio/adc/adcread.c,
2221         * device/lib/pic16/libio/adc/adcsetch.c,
2222         * device/lib/pic16/libio/usart/ubaud.c,
2223         * device/lib/pic16/libio/usart/ubusy.c,
2224         * device/lib/pic16/libio/usart/udrdy.c,
2225         * device/lib/pic16/libio/usart/uopen.c,
2226         * device/lib/pic16/libio/usart/uputc.c,
2227         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2228         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2229         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2230         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2231         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2232         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2233         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2234         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2235         specific keywords to double underlined form,
2236         * device/lib/pic16/libc/Makefile.rules,
2237         * device/lib/pic16/libsdcc/Makefile.rules,
2238         * device/lib/pic16/libm/Makefile,
2239         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2240         to compile with C standard set in Makefile.common
2241         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2242         rand.c and crc.c in compilation process,
2243         * device/lib/pic16/libsdcc/int/divuint.c,
2244         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2245         `c' from signed to unsigned,
2246         * device/lib/pic16/startup/crt0.c,
2247         * device/lib/pic16/startup/crt0i.c,
2248         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2249         keywords to double underlined form, bug fixes in _do_cinit function
2250         which prevented the correct initialization of the .idata segment,
2251         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2252         core to enter a infinite loop
2253         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2254
2255 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2256
2257         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2258
2259 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2260
2261         * device/include/Makefile.in: add support for hc08 subdirectory
2262         * device/include/hc08/: new subdirectory
2263         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2264         Lucas Loizaga, thanks!
2265         * device/include/hc08/mc68hc908qy.h,
2266         * device/include/hc08/mc68hc908gp32.h,
2267         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2268         their own directory. Changed internal macro names to use the compiler
2269         reserved namespace. Changed SDCC specific keywords to double
2270         underlined form.
2271         * device/include/math.h,
2272         * device/include/malloc.h,
2273         * device/include/stdarg.h,
2274         * device/include/stdbool.h
2275         * device/include/string.h,
2276         * device/include/tinibios.h,
2277         * device/include/ds400rom.h,
2278         * device/include/8051.h,
2279         * device/include/8052.h,
2280         * device/include/80c51xa.h,
2281         * device/include/at89c55.h,
2282         * device/include/at89S8252.h,
2283         * device/include/at89x51.h,
2284         * device/include/at89x52.h,
2285         * device/include/ds80c390.h,
2286         * device/include/reg764.h,
2287         * device/include/regc515c.h,
2288         * device/include/sab80515.h,
2289         * device/include/mcs51/c8051f000.h,
2290         * device/include/mcs51/c8051f018.h,
2291         * device/include/mcs51/c8051f020.h,
2292         * device/include/mcs51/c8051f040.h,
2293         * device/include/mcs51/c8051f060.h,
2294         * device/include/mcs51/c8051f120.h,
2295         * device/include/mcs51/c8051f300.h,
2296         * device/include/mcs51/c8051f310.h,
2297         * device/include/mcs51/c8051f320.h,
2298         * device/include/mcs51/c8051f330.h,
2299         * device/include/mcs51/c8051f350.h,
2300         * device/include/z180.h: Changed SDCC specific keywords to double
2301         underlined form.
2302
2303 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2304
2305         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2306         18F4455,
2307         * (pic16_assignConfigWordValue): disable testing of configuration
2308         register value with config mask,
2309         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2310         function with port->fun_prefix,
2311         * (genFunction): when generating a naked interrupt function never
2312         create an absolute segment placed in interrupt vector address, place
2313         the actual interrupt function at IVA instead, when an interrupt
2314         function is generated with unspecified interrupt then do not create
2315         the absolute section,
2316         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2317         code for generating a call to generic pointer get/put function with
2318         a call to function pic16_callGenericPointer(),
2319         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2320         the call to the generic pointer get/put functions with prefixing the
2321         function name with port->fun_prefix,
2322         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2323         * src/pic16/main.c (_process_pragma): prefix function with
2324         port->fun_prefix,
2325         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2326         calling assembler, old 18Fxxxx macro is deprecated,
2327         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2328         PC_ASMDIR in while condition,
2329         * (findInstruction): add PC_ASMDIR in while condition,
2330         * (buildCallTree): prefix main with port->fun_prefix,
2331         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2332         identifier for variable with banked access in instructions BTFSS,
2333         BTFSC, BCF, BSF, BTG
2334         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2335         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2336         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2337         perform optimization when enviroment variable NO_REG_OPT is set,
2338         * (insideLRBlock): NEW, return 1 if register is inside an
2339         INF_LOCALREGS block,
2340         * (RemoveRegFromLRBlock): remove a register that is completely
2341         eliminated by register optimization, but it is still left in local
2342         register store/restore in/from stack block,
2343         * (Remove2pcodes): after removing register, check to see if it
2344         should be removed from local register store/restore in/from stack
2345         block,
2346         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2347         DUMMY_READ_VOLATILE,
2348
2349         * device/include/pic16/adc.h: minor prototype modifications and
2350         update,
2351         * device/include/pic16/malloc.h: added GPL notice various
2352         modifications,
2353         * device/include/pic16/stdint.h: NEW, standard header for ints
2354         * device/include/pic16/delay.h: NEW, header for delay functions,
2355         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2356         delay1mtcy,
2357         * device/include/pic16/signal.h: NEW, header providing helper macros
2358         for implementing signal handlers,
2359         * device/include/pic16/stdio.h: added prototypes for functions,
2360         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2361         prototypes for stdin and stdout, added macro PUTCHAR to
2362         automatically implement putchar function prototype,
2363         * device/include/pic16/usart.h: modified and updated USART library,
2364         * device/lib/pic16/libio/adc/,
2365         * device/lib/pic16/libio/i2c: some modifications to improve library
2366         performance,
2367         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2368         family of functions,
2369         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2370         family of functions and other sources,
2371         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2372         of the PIC18Fxx[28] devices,
2373         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2374         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2375         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2376         _do_cinit function, because the previous failed when local variables
2377         where not placed in the same memory bank,
2378         * device/lib/pic16/libsdcc/char/: various modifications to improve
2379         library performance,
2380         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2381         information on the new functions of the c library and more...
2382
2383 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2384
2385         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2386
2387 2005-03-26 Raphael Neider <rneider AT web.de>
2388
2389         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2390           if condition == CARRY)
2391         * (genCmp): adapted to new genSkipc semantics
2392         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2393           on rIfx (genCmp was broken)
2394
2395 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2396
2397         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2398         * src/z80/main.c (_keywords[]),
2399         * src/SDCCglobal.h (struct options),
2400         * src/SDCC.y,
2401         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2402         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2403         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2404         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2405         always available in leading double underscore form. The C99 support is
2406         mostly missing, but it's a start.
2407         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2408         reserved identifier "__data".
2409
2410 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2411
2412         * src/mcs51/peeph.def: fixed bug 1170013
2413
2414 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2415
2416         * device/include/mcs51reg.h: fixed bug 842007
2417
2418 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2419
2420         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2421         last time.
2422
2423 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2424
2425         * src/port.h (struct PORT),
2426         * src/avr/ralloc.c (avr_assignRegisters),
2427         * src/avr/main.c,
2428         * src/ds390/ralloc.c (ds390_assignRegisters),
2429         * src/ds390/main.c,
2430         * src/hc08/ralloc.c (hc08_assignRegisters),
2431         * src/hc08/main.c,
2432         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2433         * src/mcs51/main.c,
2434         * src/pic/ralloc.c (pic14_assignRegisters),
2435         * src/pic/main.c,
2436         * src/pic16/ralloc.c (pic16_assignRegisters),
2437         * src/pic16/main.c,
2438         * src/xa51/ralloc.c (xa51_assignRegisters),
2439         * src/xa51/main.c,
2440         * src/z80/ralloc.c (z80_assignRegisters),
2441         * src/z80/ralloc.h,
2442         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2443         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2444         * src/SDCCcse.h,
2445         * src/SDCCdflow.c (computeDataFlow),
2446         * src/SDCCdflow.h,
2447         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2448         * src/SDCCloop.h,
2449         * src/SDCCcflow.c (*),
2450         * src/SDCCcflow.h,
2451         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2452         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2453         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2454         immedDom() returning wrong block; probably fixes bug #1160833)
2455
2456 2005-03-20 Borut Razem <borut.razem AT siol.net>
2457
2458         * support/scripts/inc2h.pl: WIN32 port
2459
2460 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2461
2462         * device/lib/makefile.in: added abs.c and labs.c
2463
2464 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2465
2466         * device/include/stdint.h: added
2467         * device/lib/abs.c: added
2468         * device/lib/labs.c: added
2469         * device/include/stdlib.h: added abs() and labs() prototypes
2470         * device/lib/libsdcc.lib: added abs and labs
2471         * device/include/float.h,
2472         * device/lib/_fsmul.c,
2473         * device/lib/printf_fast.c,
2474         * device/lib/printf_tiny.c: updated comments
2475
2476 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2477
2478         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2479         bug #1164313
2480
2481 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2482
2483         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2484         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2485
2486 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2487
2488         * device/lib/printf_large.c: removed inline assembly for portability and
2489           readability. Use printf_fast if speed or size are more important.
2490         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2491         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2492
2493 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2494
2495         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2496         prevent compiler warning
2497
2498 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2499
2500         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2501         moved to level 0 and declared as static. Also they are explicit
2502         placed in access bank. This was necessery because some times they
2503         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2504         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2505         optimizations. Currently only compare to unsigned char is implemented,
2506         * src/pic16/gen.c: added fReturnIdx array,
2507         * (struct resolvedIfx) is moved to gen.h and made public,
2508         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2509         * (aopForSym): added an optimization to directly store in stack of
2510         the operand of a SEND iCode,
2511         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2512         but as registers instead (AOP_REG) using the fReturnIdx array,
2513         * (pic16_freeAsmop): remove the freed register from the
2514         _G.sregsAlloc field,
2515         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2516         a compare of 'WREG',
2517         * (pic16_popGetTempRegCond): changed function prototype, now
2518         function takes also a bitVector argument v which holds the current
2519         set of registers that are allocated for stack access by aopForSym,
2520         registers allocated in aopForSym for accessing stack symbols are not
2521         any more part of the functions usedRegs field,
2522         * (genCall): some times aopOp is called for a stack variable to be
2523         send, aopForSym might perform the push, if this is true make sure
2524         that genCall doesn't push the variable twice by testing _G.resDirect,
2525         * (genFunction): changed testing for unspecified interrupt number
2526         from 256 to INTNO_UNSPEC,
2527         * modified selection scheme of frame pointer generation. Previously
2528         if function did use local registers a frame pointer was generated,
2529         now a frame pointer is generated only if function has arguments
2530         (that need PLUSW2 register access), or has stack arguments, or the
2531         compiler is not instructed to omit the frame pointer,
2532         * (genEndFunction): before restoring local registers that were saved
2533         in the function preamble, also restore the registers that *might*
2534         have been allocated for stack access,
2535         * (genRet): removed some old comments,
2536         * (genCmp, the active (RN's) version): added a call to the
2537         pic16_genCmp_special function to perform the compare with a more
2538         robust and optimized way,
2539         * (genInline): a feature has been added in inline code generation,
2540         which allows a wildcard variable substitution when writing inline
2541         assembly. Code is incomplete and experimental therefore undocumented,
2542         * (genCast): changed order of aopOp for result and right to allow
2543         aopForSym to directly load the result if possible,
2544         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2545         perform an optimized compare on some selected special occasions,
2546         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2547         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2548         generate an IVT any more,
2549         * src/pic16/main.c (pic16_optionsTable): added command line option
2550         --optimize-cmp,
2551         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2552         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2553         macros,
2554         * src/pic16/NOTES: Raphael Neider added in list of active developers
2555         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2556         jumptable_end to prevent bug #,
2557         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2558         inCond and outCond fields,
2559         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2560         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2561         turn off register spilling,
2562         * (packRegsForOneUse): synced with other ports' versions although it
2563         is not used currently,
2564         * (pic16_packRegisters): added an optimization while reading
2565         structure bitfields, some registers may be saved (malloc code is
2566         decreased by 80 bytes)
2567
2568 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2569
2570         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2571         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2572         this can be optimized more?
2573
2574 2005-03-10 Raphael Neider <rneider AT web.de>
2575
2576         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2577           genNearPointerGet): (hopefully) fixed access to bitfields via
2578           pointers (p->bitN = x; and x = p->bitN; failed)
2579
2580 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2581
2582         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2583
2584 2005-03-09 Raphael Neider <rneider AT web.de>
2585
2586         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2587
2588 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2589
2590         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2591         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2592           (regTypeNum): set REG_BIT type if necessary
2593         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2594         * support/regression/tests/critical.c: check bug 1144613
2595
2596 2005-03-02 Raphael Neider <rneider AT web.de>
2597
2598         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2599
2600 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2601
2602         * src/avr/ralloc.c (serialRegAssign),
2603         * src/ds390/ralloc.c (serialRegAssign),
2604         * src/hc08/ralloc.c (serialRegAssign),
2605         * src/mcs51/ralloc.c (serialRegAssign),
2606         * src/pic/ralloc.c (serialRegAssign),
2607         * src/pic16/ralloc.c (serialRegAssign),
2608         * src/xa51/ralloc.c (serialRegAssign),
2609         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2610
2611 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2612
2613         * src/SDCCast.c (decorateType): fixed bug 1124787
2614
2615 2005-02-20 Hubert Sack <sack AT digiplan.de>
2616         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2617
2618         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2619         patch #1121755
2620
2621 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2622
2623         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2624         to keep the correct label reference count when adding/removing references
2625         to labels. A peephole file using this is appended to patch #1144962.
2626
2627 2005-02-14 Raphael Neider <rneider AT web.de>
2628
2629         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2630         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2631         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2632           retrievals of result operand's value on assignment
2633
2634 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2635
2636         * device/include/pic16/string.h: modified prototype for memccpy()
2637         to memccpy(void *, void *, char, size_t)
2638         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2639         check whether to omit frame pointer or not,
2640         * (genInline): convert all occurences of "\n" to LF in inline
2641         assembler blocks, this helps formatting the inline text,
2642         * (pic16_loadFSR0): modified prototype,
2643         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2644         removed some 8051 legacy code,
2645         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2646         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2647         before allocating temporary registers in functions,
2648
2649 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2650
2651         * support/regression/tests/bitvars.c: corrected the "fix"
2652
2653 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2654
2655         * support/regression/tests/bitvars.c,
2656         * support/regression/tests/bitwise.c,
2657         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2658
2659 2005-02-10 Raphael Neider <rneider AT web.de>
2660
2661         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2662           different size for Alpha
2663         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2664
2665 2005-02-09 Raphael Neider <rneider AT web.de>
2666
2667         * src/SDCC.lex(doPragma) : save and restore warning options as well
2668           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2669         * have #pragma less_pedantic set the errorlevel to WARNING
2670           (fixes #1117001)
2671         * (cloneOptimize) : fixed wrong malloc's size
2672         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2673           facilitate correct handling of #pragma (save|restore)
2674
2675 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2676
2677         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2678
2679 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2680
2681         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2682
2683 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2684
2685         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2686
2687 2005-02-02 Raphael Neider <rneider AT web.de>
2688
2689         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2690         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2691         * (pic16_storeForReturn): fixed to allow returning function pointers
2692         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2693         * device/include/pic16/{stddef.h,stdbool.h}: added
2694
2695 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2696
2697         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2698
2699 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2700
2701         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2702         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2703          appeared to be required
2704
2705 2005-01-31 Borut Razem <borut.razem AT siol.net>
2706
2707         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2708           include/mcs51 and include/z80 directories to the package
2709
2710 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2711
2712         * src/hc08/gen.c (genFunction): fixed bug #1112752
2713
2714 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2715
2716         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2717
2718 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2719
2720         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2721
2722 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2723
2724         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2725
2726 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2727
2728         * device/include/c8051fxxx.h: removed these 6 files
2729         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2730
2731 2005-01-26 Raphael Neider <rneider AT web.de>
2732
2733         * src/pic16/gen.c (genAssign): fixed assignment from longs
2734           in codespace (were cut to three bytes)
2735         * (genDummyRead): implemented (except for CODESPACE...),
2736           fixed bug #1108575
2737         * src/pic16/glue.c (emitStatistics): beautified
2738         * device/lib/pic16/libm/Makefile: added include path
2739
2740 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2741
2742         * src/z80/gen.c (aopPut): fixed bug #1103902
2743
2744 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2745
2746         * device/lib/expf.c: fixed bug #1095792
2747
2748 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2749
2750         * device/lib/pic16/libm: added Math library sources
2751
2752 2005-01-24 Raphael Neider <rneider AT web.de>
2753
2754         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2755           to enable upcast to pCodeOpReg2 (there is no type tag to
2756           differenciate the two and pic16_popGet2p cast into PCOR2)
2757         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2758           (sizeof(sectNames) changed to sizeof(sectName))
2759           Both patches fix segfaults under MinGW.
2760
2761 2005-01-23 Raphael Neider <rneider AT web.de>
2762
2763         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2764           Safe_[mc]?alloc()'ed variables
2765         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2766           of (byte sized) temporaries (assign them to WREG for now)
2767         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2768           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2769           this might fix SIGSEGVs on MinGW...
2770         * src/SDCCopt.c (killDeadCode): restored original behaviour
2771           (volatile operands might get thrown away though)
2772
2773 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2774
2775         * src/pic16/gen.c: fixed bug #1106975,
2776         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2777         pointer update, INTCON is saved, global interrupts are disabled and
2778         restored after updateing TOS.
2779         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2780         * added function attribute 'shadowregs' to take advantage of shadow
2781         registers,
2782         * added function attribute 'wparam' as an alternative to the wparam
2783         pragma,
2784         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2785         user declares a non-ISR function as 'shadowregs',
2786         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2787
2788 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2789
2790         * .version: bumped version number to 2.4.8
2791         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2792         pic16 port,
2793         * device/lib/pic16/libio/i2c/: I2C module support library,
2794         * device/include/pic16/i2c.h: I2C support library header,
2795         * device/lib/pic16/libc/stdio/: standard IO support sources,
2796         * (printf_small.c): printf_small() source, supports float print,
2797         * (printf_tiny.c): printf_tiny() source, does not support floats,
2798         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2799         enable global optimizations for entire library source, other
2800         Makefiles in the source tree are also modified to reflect this,
2801         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2802         function,
2803         * doc/sdccman.lyx: updated to reflect new changes,
2804         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2805         sym->onStack if-case,
2806         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2807         sbit, idata, _idata, xdata, _xdata,
2808         * added pragma library, to link an external library, (see doc),
2809         * removed command line options, --pomit-config-words, --pomit-ivt,
2810         --pleave-reset-vector,
2811         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2812         when calling assembler to reflect memory model used, also define
2813         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2814         reflect stack model used,
2815         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2816         on stack return NULL,
2817
2818 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2819
2820         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2821           of the operands is volatile. Fixes #1020220
2822
2823 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2824
2825         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2826         * (OptimizeRegUsage): make sure that there is really no other flow where
2827           the first pCode is used
2828
2829 2005-01-22 Raphael Neider <rneider AT web.de>
2830
2831         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2832           to fix #1106967 (pCode->seq are not set up correctly)
2833
2834 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2835
2836         * src/SDCCglue.c (glue): make sure code area is declared before the
2837         static initialization area.
2838
2839 2005-01-21 Raphael Neider <rneider AT web.de>
2840
2841         * device/lib/Makefile.in: fixed test for pic16 install dir
2842         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2843           optimizations
2844         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2845           added --optimize-goto compiler switch and pragma wparam documentation
2846         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2847         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2848           and PRODH closing bug #1071770 (peephole optimizer)
2849
2850 2005-01-19 Raphael Neider <rneider AT web.de>
2851
2852         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2853           cmdLine buffers (used when calling sdcpp...) are large enough
2854           (MAX_PATH=256 truncates arguments leading to system halts when
2855           used in MinGW...)
2856         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2857         * (genUminus): rewritten to for efficiency
2858         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2859           used uninitialized in some cases)
2860         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2861           copy the third byte from the int -- now assumes 0x80 (data memory)
2862         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2863           operands (genAddLit expects the iCode's operands to swapped as
2864           well), fixed leftover bytes (crashed for short left operands)
2865         * (pic16_genMinusDec): performance improvements, removed false
2866           PIC14 emitSKPNCs
2867         * (pic16_genMinus): fixed to cope with differently sized operands
2868         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2869           for --obanksel > 1
2870         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2871         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2872           new banksel optimization
2873         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2874           analysis for temporary registers (segfaults...)
2875         * src/pic16/peeph.def: added rule
2876
2877 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2878
2879         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2880         which converts a float number to its ASCII representation
2881         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2882         functions to convert the fractional and integer part of a float to ASCII,
2883         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2884         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2885         ram
2886         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2887         _STATMEM macros,
2888         * device/include/pic16/adc.h: added GPL info,
2889         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2890         a pCodeOp as tested operand,
2891         * (genNearPointerGet): optimized bit testing, does not use
2892         intermediate register for bit value, test directly instead with
2893         BTFSS, BTFSC, works only for single bits,
2894         * (genpic16Code): dump the name of the iCode in the asm,
2895         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2896         renamed to pic16_decodeOp,
2897         * (serialRegAssign): do not allocate a temporary register for iCode
2898         sequences that test a single bit for 1/0
2899
2900 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2901
2902         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2903         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2904         access stack and frame pointers. They are initially assigned to
2905         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2906         accessing SFRs. Updated all occurences of modification of stack or
2907         frame pointer in gen.c and pcode.c,
2908         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2909         assigning of a literal value to pointers,
2910         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2911         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2912         selected
2913
2914 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2915
2916         * doc/sdccman.lyx: update documentation about stack pragma, added
2917         some info for stack memory models
2918
2919 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2920
2921         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2922
2923 2005-01-08 Raphael Neider <rneider AT web.de>
2924
2925         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2926           udata sections to fix bug #1097823
2927
2928 2005-01-05 Raphael Neider <rneider AT web.de>
2929
2930         * src/pic16/gen.c (genGenericShift): added handling of differently
2931           sized left operand and result
2932
2933 2005-01-04 Raphael Neider <rneider AT web.de>
2934
2935         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2936         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2937           to hold the condition bit)
2938         * added new version of genCmp (old code available via #define)
2939         * added new version of genShiftLeft/genShiftRight in a generic
2940           way, now supports shifting by negative values
2941         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2942           shiftCount (expected by genGenericShift)
2943         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2944         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2945           dump
2946         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2947           is an invalid literal too...)
2948
2949 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2950
2951         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2952         from Raphael Neider,
2953         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2954         for 8-bit literals. This fixes some literal operands which are sign
2955         extended to 16-bits ints when instruction needs only 8-bits.
2956
2957 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2958
2959         * device/lib/logf.c: added mcs51 assembly version
2960         * device/lib/expf.c: added mcs51 assembly version
2961         * device/lib/_logexpf.c: new shared asm code for expf and logf
2962         * device/include/math.h: add defines for assembly math library
2963         * device/lib/Makefile.in: build new _logexpf.c
2964         * device/lib/libfloat.lib: use new _logexpf.c
2965
2966 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2967
2968         * src/pic/device.c
2969         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2970           device types which have less than 0x7f registers.
2971
2972 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2973
2974         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2975
2976 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2977
2978         * device/lib/printf_fast.c: only build on supported arch.
2979         * device/lib/printf_tiny.c: only build on supported arch.
2980         * device/lib/printf_fast_f.c: only build if asm float lib
2981         * device/lib/_fsget1arg.c: only build if asm float lib
2982         * device/lib/_fsget2args.c: only build if asm float lib
2983         * device/lib/_fsnormalize.c: only build if asm float lib
2984         * device/lib/_fsreturnval.c: only build if asm float lib
2985         * device/lib/_fsrshift.c: only build if asm float lib
2986         * device/lib/_fsswapargs.c: only build if asm float lib
2987         * device/include/stdio.h: don't provide print_fast,
2988           print_fast_f, print_tiny prototypes if --xstack used
2989
2990 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2991
2992         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2993         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2994           to the SOURCES
2995
2996 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2997
2998         * device/lib/printf_fast_f.c: same as printf_fast, but
2999           with floating point enabled
3000         * device/lib/printf_fast.c: minor tweaks
3001         * device/include/stdio.h: add printf_fast_f
3002
3003 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3004
3005         * src/SDCCmain.c: make --float-reent default for mcs51
3006         * device/lib/_fsadd.c: added mcs51 assembly version
3007         * device/lib/_fssub.c: added mcs51 assembly version
3008         * device/lib/_fsmul.c: added mcs51 assembly version
3009         * device/lib/_fsdiv.c: added mcs51 assembly version
3010         * device/lib/_fseq.c: added mcs51 assembly version
3011         * device/lib/_fsneq.c: added mcs51 assembly version
3012         * device/lib/_fsgt.c: added mcs51 assembly version
3013         * device/lib/_fslt.c: added mcs51 assembly version
3014         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3015         * device/lib/Makefile.in: add _fscmp to build
3016         * device/lib/libfloat.lib: add _fscmp to build
3017
3018 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3019
3020         * device/lib/_fs2slong.c: added mcs51 assembly version
3021         * device/lib/_fs2sint.c: added mcs51 assembly version
3022         * device/lib/_fs2schar.c: added mcs51 assembly version
3023         * device/lib/_fs2ulong.c: added mcs51 assembly version
3024         * device/lib/_fs2uint.c: added mcs51 assembly version
3025         * device/lib/_fs2uchar.c: added mcs51 assembly version
3026         * device/lib/_slong2fs.c: added mcs51 assembly version
3027         * device/lib/_sint2fs.c: added mcs51 assembly version
3028         * device/lib/_schar2fs.c: added mcs51 assembly version
3029         * device/lib/_ulong2fs.c: added mcs51 assembly version
3030         * device/lib/_uint2fs.c: added mcs51 assembly version
3031         * device/lib/_uchar2fs.c: added mcs51 assembly version
3032         * device/include/float.h: added #define to select asm vs c
3033
3034 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3035
3036         * device/lib/printf_fast.c: improvements to float output
3037         * device/include/float.h: add defines for assembly float library
3038         * device/lib/_fsget1arg.c: receive 1 float arg
3039         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3040         * device/lib/_fsnormalize.c: normalize a float
3041         * device/lib/_fsreturnval.c: return float, various helper routines
3042         * device/lib/_fsrshift.c: right shift a float's mantissa
3043         * device/lib/_fsswapargs.c: swap 2 floats
3044         * device/lib/Makefile.in: build these 6 new files for mcs51
3045         * device/lib/libfloat.lib: add these 6 files to the library
3046
3047 2004-12-26 Borut Razem <borut.razem AT siol.net>
3048
3049         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3050           built by gcc 3.4.2
3051
3052 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3053
3054         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3055           and fully reentrant and register bank neutral.
3056         * device/lib/printf_fast.c: added float (not enabled by default),
3057           added compact/slower integer (also not enabled by default),
3058           improved size/speed of fast integer code, other minor changes
3059         * device/include/stdio.h, device/lib/Makefile.in,
3060           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3061
3062 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3063
3064         * src/pic16/pcode.c: declaring variables other than at the start of a
3065           block is not supported in C by VC6.
3066
3067 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3068
3069         * applied a previous patch from Raphael Neider that wasn't included
3070         in the previous commits, which fixes infinite loops within jumptable
3071         improvements,
3072         * made some fixes that previous patches introduced
3073
3074 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3075
3076         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3077         that fixes an issue with AOP_PCODE asmop's offset,
3078         * (pic16_popCopyReg): update instance field too,
3079         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3080         function of pic port,
3081         * (genCmp, genAnd, genAssign),
3082         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3083
3084 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3085
3086         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3087         variables initial values to idata section,
3088         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3089         variables in some functions. This utilizes parmBytes field of iCode
3090         structure to hold the offset of the variable in stack. (might be
3091         able to use the stack field too?)
3092         * applied patch from Raphael Neider # ### , # ###
3093         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3094         variable initial values in idata section,
3095         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3096         for static variables with initial value
3097         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3098         applied fix in while loop from Raphael Neider.
3099
3100 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3101
3102         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3103         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3104         * src/ds390/ralloc.c (serialRegAssign): spill bits
3105         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3106         * support/Util/SDCCerr.c,
3107         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3108         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3109         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3110
3111 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3112
3113         * device/include/sdcc-lib.h: inserted LGPL, added includes
3114           asm/ds390/features.h and asm/mcs51/features.h
3115         * device/include/asm/default/features.h,
3116         * device/include/asm/gbz80/features.h,
3117         * device/include/asm/z80/features.h: added empty _AUTOMEM
3118           and _STATMEM
3119         * device/include/asm/ds390/features.h,
3120         * device/include/asm/mcs51/features.h: added files with defines for
3121           _AUTOMEM and _STATMEM indicating automatic and static storage class
3122         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3123         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3124         * src/SDCCicode.c (geniCodeCast),
3125         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3126         * src/SDCCloop.c (loopInduction): removed unused variable lr
3127         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3128           to convertToFcall to include char modulo (RFE 1065037), added check
3129           if left operand is unsigned and use abs of literal value
3130         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3131           as it doesn't work after conversion from peephole.def to peephole.rul
3132         * src/mcs51/gen.c (toBoolean): added check for size,
3133           (genModOneByte): optimized code for signed char modulo a literal
3134           power of 2 (thanks to Hubert Sack),
3135           (genRRC): removed unnecessary "clr c",
3136           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3137         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3138           jump optimization,
3139           swapped rules 256.c and 256.d,
3140           extended 256.d by using new multiple checks (thanks Erik),
3141           added rules 256.e and 256.f,
3142           updated rule 261.a and 261.b to new generated code
3143         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3144
3145 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3146
3147         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3148           induction related bugs, including first part of bug #1074377
3149
3150 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3151
3152         * applied patch from bug-report #1076292,
3153         * applied patches for genAnd and Goto-optimizations for Raphael
3154         Neider,
3155         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3156         dump a less iCode information,
3157         * src/pic16/device.h (pic16_options_t): added field debgen,
3158         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3159         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3160         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3161         puclic,
3162         * (various functions): added macros FENTRY and FENTRY2 to functions,
3163         to emit function prologue,
3164         * (various functions): fixed indentation,
3165         * (genNearPointerGet): fixed loading of FSR0,
3166         * (genPackBits): applied patch from Raphael Neider to fix updating
3167         of FSR0 and touching only the modified bits,
3168         * src/pic16/genarith.c (various functions): added macros FENTRY to
3169         emit function prologue in comments,
3170         * src/pic16/pcode.h: added functions debugf2, debugf3,
3171         * src/pic16/ralloc.c: partial fix for packForPush caused
3172         segmentation fault,
3173
3174 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3175
3176         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3177           <stsp AT users.sourceforge.net> with reversed byte order
3178         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3179
3180 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3181
3182         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3183           bug #1074377
3184         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3185         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3186
3187 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3188
3189         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3190
3191 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3192
3193         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3194           conditions,
3195           (setFromConditionArgs): friendly operand parser for peephole rules,
3196           (operandBaseName, operandsNotRelated): new peephole condition
3197           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3198           architecture specific register naming into account, handles n-way
3199           comparisons, and supports quoted literals
3200         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3201
3202 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3203
3204         * src/mcs51/peeph.def: fixed bug #1076940
3205
3206 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3207
3208         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3209
3210 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3211
3212         Adding support for replacing ljmps with sjmps in jumptables
3213         generated for switch statements. For now you need to set the
3214         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3215         Now 4 algorithms for mcs51 jumptable generation are used:
3216         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3217         addresses loaded pc-relative for up to 112 cases and stack-pushing
3218         target addresses loaded with offset from dptr for up to 256 cases.
3219
3220         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3221         * src/mcs51/main.c: adapted constants for switch table generation
3222         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3223
3224 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3225
3226         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3227         * support/regression/tests/bug1057979.c: added test for bug 1073386
3228
3229 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3230
3231         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3232         compilers
3233
3234 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3235
3236         * src/pic16/device.h,
3237         * src/pic16/genarith.c,
3238         * src/pic16/glue.c,
3239         * src/pic16/main.c,
3240         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3241
3242 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3243
3244         Large cummulative patch for pic16 port.
3245         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3246         to call when a stack overflow occurs,
3247         * (malloc.h): added CVS Id tag,
3248         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3249         variable,
3250         * added libc directory. The current version of LibC contains string
3251         functions, ctype functions and macros and some functions of the
3252         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3253         be extensively tested in the future. Standard disclaimer here.
3254         Library is not automatically build yet. But one can build it by
3255         invoking 'make' inside the libc directory.
3256         * added ADC library under libio. Preliminary version yet.
3257
3258         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3259         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3260         aopForRemat() now and not by pic16_aopOp(),
3261         * (pic16_popGetTempReg): removed warning messgae when allocating
3262         temporary registers, its a buggy feature and will be removed,
3263         * (pic16_popGet): set register instance field in AOP_CRY,
3264         * (pic16_outBitC): fixed for results in size greater than 1,
3265         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3266         * (pic16_storeForReturn): optimized return of 0,
3267         * (genCmp): experimental code for new genCmp which uses PIC18's
3268         special compare&skip instructions. Initial tests fail some times
3269         with variables grater than 1 byte in size, so new code is disabled,
3270         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3271         a single bit,
3272         * (genCast): began a fix to optimize the casting of a bit to another
3273         bit, now assigning a bitfield to another bitfield will fail, sorry,
3274         * src/pic16/main.c: disabled the use of lr-support feature,
3275         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3276         * added some function prototypes, added function _debugf prototype,
3277         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3278         bits with offset (case PO_GPR_BIT),
3279         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3280         command line,
3281         * (isBankInstruction): modified to return 0 for no banking instruction,
3282         and 1 for banking instruction,
3283         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3284         caused stop processing pCodes after a inline assembly block,
3285         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3286         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3287         registers when it shouldn't,
3288         * src/pic16/ralloc.c (allocReg): add preliminary support for
3289         supporting a limited set of temporary registers,
3290
3291 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3292
3293         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3294           genDataPointerSet): ensure assignments always copy in MSB to LSB
3295           order,
3296           (loadRegFromAop): recognize CLRH optimization,
3297           (genFunction): optimize RECEIVE iCodes in reentrant functions
3298
3299 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3300
3301         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3302           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3303           selected.
3304         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3305         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3306           contiguous with data
3307
3308 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3309
3310         * device/lib/_gptrget.c (_gptrget),
3311         * device/lib/_gptrgetc.c (_gptrgetc),
3312         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3313           instead of sjmp to ret
3314         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3315           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3316
3317 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3318
3319         * .version: bumped version to 2.4.7
3320         * device/lib/_gptrget.c (_gptrget): is now _naked
3321         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3322         * device/lib/_gptrput.c (_gptrput): is now _naked
3323         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3324           (createFunction): fixed xstack
3325         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3326         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3327           or bit either,
3328           (geniCodeCritical): store original interrupt state in an iTemp bit
3329           var unless stack-auto
3330         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3331         * src/SDCCmain.c (setIncludePath): added include/target to search path
3332         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3333         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3334           prototype,
3335           (processFuncArgs): put bit vars in bit area
3336         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3337           unsaveRBank): fixed xstack,
3338           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3339           (genFunction, genEndFunction): fixed xstack,
3340           (genAssign): optimization don't walk backwards through mem
3341         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3342         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3343         * support/regression/Makefile: also make library (for stack-auto) when
3344           making "all" and added "test-mcs51-xstack-auto"
3345         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3346         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3347         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3348         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3349         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3350           make-library by MAKE_LIBRARY
3351         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3352           regression tests for xstack
3353         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3354         * support/regression/tests/critical.c: test for critical on mcs51
3355
3356 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3357
3358         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3359           built version of sdcc instead of installed version
3360
3361 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3362
3363         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3364         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3365           vprintf.c now
3366         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3367         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3368           WARNING: remove device/lib/build/z80/printf.o by hand when
3369           updating from previous build!
3370         * device/lib/z80/printf.c: updated comment
3371         * support/regression/tests/bug1057979.c: test all ports now
3372         * support/regression/tests/bug1065458.c: file added
3373
3374 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3375
3376         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3377           *_start and *_end symbols for static functions
3378
3379 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3380
3381         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3382           and search crt0.o in all library paths,
3383           (setIncludePath): proper handling of --nostdinc,
3384           (setLibPath): proper handling of --nostdlib
3385         * support/regression/Makefile,
3386         * support/regression/ports/ds390/spec.mk,
3387         * support/regression/ports/gbz80/spec.mk,
3388         * support/regression/ports/hc08/spec.mk,
3389         * support/regression/ports/mcs51/spec.mk,
3390         * support/regression/ports/mcs51-large/spec.mk,
3391         * support/regression/ports/mcs51-stack-auto/spec.mk,
3392         * support/regression/ports/z80/spec.mk: use include and lib files from
3393           built version of sdcc instead of installed version
3394         * doc/sdccman.lyx: fixed typo in --nostdinc
3395
3396 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3397
3398         * src/pic/pcode.c,
3399         * src/pic/device.c,
3400         * src/pic/ralloc.c,
3401         * src/pic/gen.c : added support to generate code for struct bit fields.
3402
3403 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3404
3405         * as/xa51/xa_version.h,
3406         * device/include/errno.h,
3407         * device/include/regc515c.h,
3408         * device/lib/_itoa.c,
3409         * device/lib/_ltoa.c,
3410         * device/lib/ser_ir_cts_rts.c,
3411         * sim/ucsim/xa.src/glob.cc,
3412         * sim/ucsim/xa.src/inst_gen.cc,
3413         * sim/ucsim/xa.src/xa_bit.cc,
3414         * sim/ucsim/xa.src/xa_sfr.cc,
3415         * sim/ucsim/z80.src/inst_dd.cc,
3416         * sim/ucsim/z80.src/inst_fdcb.cc,
3417         * support/scripts/keil2sdcc.pl,
3418         * src/pic16/pic16.dsp,
3419         * src/pic16/pic16a.dsp: corrected cvs line endings
3420         * device/lib/printf_large.c: fixed bug 1057979
3421         * src/pic16/gen.c: fixed non-C standard code
3422         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3423         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3424         * support/regression/ports/mcs51/support.c: reload T1 asap
3425         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3426           pdata use and clear idata startup behaviour
3427         * support/regression/tests/bug1057979.c: added
3428
3429 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3430
3431         * device/examples/ds390/ow390/ad26.h,
3432         * device/examples/ds390/ow390/cnt1d.h,
3433         * device/examples/ds390/ow390/crcutil.c,
3434         * device/examples/ds390/ow390/ownet.h,
3435         * device/examples/ds390/ow390/owsesu.c,
3436         * device/examples/ds390/ow390/swt12.h,
3437         * device/examples/ds390/ow390/swtoper.c,
3438         * device/examples/ds390/ow390/temp10.h,
3439         * device/examples/ds390/ow390/thermodl.c,
3440         * device/examples/ds390/tinitalk/tinitalk.dsp,
3441         * device/examples/ds390/tinitalk/tinitalk.dsw,
3442         * device/examples/mcs51/clock/hw.h,
3443         * device/examples/mcs51/simple2/go.bat,
3444         * device/examples/serialcomm/windows/serial.h,
3445         * device/examples/xa51/dummy.c,
3446         * device/examples/xa51/hello.c,
3447         * device/include/80c51xa.h,
3448         * device/include/at89x051.h: corrected cvs line endings
3449
3450 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3451
3452         * src/pic16/main.c (options): added command line --gstack, to trace
3453         stack over/under flows,
3454         * added pragma 'wparam' to allow passing first byte of function
3455         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3456         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3457         call to __gstack_test function and sets up the symbol as extern,
3458         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3459         * popaop): added call to pic16_testStackOverflow,
3460         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3461         wparamList list,
3462         * (genCall, genPcall): now all parameters are passed via stack
3463         except in functions that are pass to wparam pragma in which WREG is
3464         used too,
3465         * (genPcall): REENTRANT flag is checked to see if variable prototype
3466         contains reentrant keyword, don't call a non-reentrant function, via
3467         a reentrant function pointer or vice versa, functions are never
3468         passed via WREG,
3469         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3470         D.Winkler,
3471         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3472         SIGSEGV when accessing a NULL register stucture,
3473         * (pic16_printGPointerType): modified to handle UPPER modifier for
3474         function initializers, changed prototype of function to simpler one,
3475         * (pic16_printIvalFuncPtr): check to see if function is already
3476         added in externs list,
3477         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3478         optimized a move from W to SFR with a move to the same register
3479         later after a CALL,
3480         * device/lib/pic16/debug: NEW directory, contains debug features
3481         which are enabled when linking with libdebug.lib, currently command
3482         line option --gstack enables stack pointer tracing for over/under
3483         flow, corresponding sources are in debug/gstack
3484
3485 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3486
3487         * doc/sdccman.lyx: updated SDCC version,
3488         * (PIC16 port): update list of command line options,
3489         * src/pic16/device.h (structure pic16_options_t): added field gstack
3490         to enable stack overflow tracing on push/pops,
3491         * src/pic16/device.c (statistics structure): added statistics
3492         structure,
3493         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3494         pic16_dump_int_registers): increase statistics counters for each
3495         * variable which is encountered
3496         * (pic16_dump_usection): emit each .udata variable to its own udata
3497         section,
3498         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3499         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3500         parameters via stack, otherwise use old scheme,
3501         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3502         assembler output file,
3503         * src/pic16/main.c: added command line options --gstack to enable
3504         push/pop tracing for stack overflow,
3505         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3506         instructions): added size of each instruction,
3507         * (pic16_countInstruction): estimate size of instructions in
3508         the_pFile list, inline assembly blocks are not counted,
3509         * (pic16_FixRegisterBanking): trace previous register usage, when
3510         banksel optimizations is greater than 0, don't emit a redudant
3511         banksel directive,
3512
3513 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3514
3515         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3516         * src/pic16/ralloc.c : applied same fix for pic16.
3517         * src/pic/gen.c : tidied it up a little.
3518
3519 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3520
3521         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3522         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3523
3524 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3525
3526         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3527
3528 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3529
3530         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3531         non-reentrant function __modsint in the interrupt function (thus
3532         corrupting math operations during serial I/O)
3533         * device/lib/ser_ir.c: as above, changed buffersize
3534         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3535         256.c,d for zeroing
3536         * doc/Makefile: added option -t for rsync
3537
3538 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3539
3540         * src/SDCCast.h (struct ast),
3541         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3542
3543 2004-10-20 Borut Razem <borut.razem AT siol.net>
3544
3545         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3546         package
3547
3548 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3549
3550         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3551         makefile targets,
3552         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3553         support functions to replace long sequences of MOVFF's from access
3554         bank registers to stack and vice versa,
3555         * src/pic16/device.h: added new field opt_flags, where optimization
3556         flags can be set to enable certain features,
3557         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3558         * pBlock, (genFunction, genEndFunction): surroung loop for
3559         saving/loading used registers in stack with PC_INFO pCodes,
3560         INF_LREGS. Code in between can then be optimized by pCode optimizer
3561         to support function calls,
3562         * (genDataPointerSet): fixed bug which loaded float fields in
3563         structures with corrupt data,
3564         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3565         in a standard way debug info on stderr. Feature used for developing
3566         and debugging only,
3567         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3568         obsolete chunks of code,
3569         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3570         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3571         * pic16/src/pcode.c (pic16_newpCodeInfo,
3572         * (pic16_newpCodeOpLocalRegs),
3573         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3574         feature,
3575         * (pic16_pCodeConstString): printing of the initial value of a
3576         symbol as a comment is inhibited since parsing was already done by
3577         copyStr and output is corrupt,
3578         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3579
3580 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3581
3582         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3583
3584 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3585
3586         * as/mcs51/lkarea.c: removed old K&R style,
3587           (lnksect): changed check on boundary error,
3588           (lnksect2): changed check on boundary error,
3589           (lnksect2): extend XSTK to end of page if size = 1
3590         * as/mcs51/lkmain.c: removed old K&R style,
3591           (Areas51): create l_IRAM symbol
3592         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3593         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3594           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3595         * device/lib/_mullong.c: added version to be compiled with xstack
3596         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3597         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3598         * device/lib/mcs51/crtxstack.asm: fixed comment
3599         * src/SDCCglue.c: maxInterrupts defaults to 0,
3600           (emitMaps): added pdata,
3601           (createInterruptVect): (re)moved default,
3602           (glue): added pdata,
3603           (glue): moved __start__xstack to XSTK with default size 1
3604         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3605           and options.float_rent when options.stackAuto is set,
3606           (linkEdit): only write XDATA_NAME if provided on command line
3607         * src/SDCCmem.h,
3608         * src/SDCCmem.c: added pdata
3609         * src/port.h: added pdata_name to PORT
3610         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3611           (saveRegisters, unsaveRegisters): removed usage of B,
3612           (genMinus): fixed accumulator clash,
3613           (genJumpTab): added comment, this needs another look
3614         * src/mcs51/gen.c: added check for "B in use" paranoia,
3615           added pushB() and popB()
3616         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3617           chance
3618         * src/avr/main.c,
3619         * src/ds390/main.c,
3620         * src/hc08/main.c,
3621         * src/mcs51/main.c,
3622         * src/pic/main.c,
3623         * src/pic16/main.c,
3624         * src/xa51/main.c,
3625         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3626           added PSEG (PAG,XDATA) or NULL to port specifier
3627         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3628         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3629           (_mcs51_genInitStartup): removed __start__xstack equ,
3630           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3631         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3632         * src/z80/gen.c (_rleAppend): fixed warnings
3633         * support/regression/tests/zeropad.c: added pdata test
3634         * .version: bumped to 2.4.6
3635
3636 2004-10-17 Borut Razem <borut.razem AT siol.net>
3637
3638         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3639         as a part of nightly build
3640
3641 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3642
3643         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3644         WREG holds the first byte function parameters,
3645         * (aopForSym): take special case for symbols which are in FARSPACE
3646         but in CODESPACE too,
3647         * (assignResultValue): modified to take into account _G.useWreg,
3648         * (genCall): don't use wreg for parameter passing when function is
3649         declared as reentrant, too, added optimization INCF to stack
3650         pointer when stack parameter count is 1,
3651         * (genFunction, genEndFunction): refurnished and fixed to not using
3652         wreg for passing parameters when function has varargs or is
3653         reentrant, fixed bug with symbol name compare for generating
3654         functions in absolute address,
3655         * (pic16_storeForReturn): refurnished,
3656         * (genCmp): began writing a new version of the function, not ready
3657         yet, therefore it is disabled,
3658         * (genAssign): do not read code memory when assigning a function to
3659         a pointer function,
3660         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3661         array of characters, not pointer,
3662         * (pic16initialComments): in debug mode emit an .ident directive for
3663         the assembler,
3664         * (_process_pragma): emit a new warning type (internal to pic16)
3665         when setting stack to default length, emit a similar warning when
3666         placing a function at absolute address and address is not word aligned
3667         * (_pic16_parseOptions): added 'return TRUE' statement,
3668         * (_pic16_linkEdit): if compiling a source, then add the source's
3669         file object, first in the list of objects to link,
3670
3671 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3672
3673         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3674         * src/pic/main.c : removed VC warning.
3675         * src/pic/gen.c : changed comment.
3676
3677 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3678
3679         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3680         reference to a deprecated symbol _GPTRREG was causing failure to
3681         link. Thanks G. M. Gallant for the info.
3682
3683 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3684
3685         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3686         comments for Bugs item #954788.
3687
3688 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3689
3690         * src/pic16/device.c (pic16_dump_gsection,
3691         * pic16_groupRegistersInSection): handle symbols declared to be in
3692         access bank differently,
3693         * src/pic16/gen.c (struct _G): added field resDirect,
3694         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3695         send values read from stack directly to result and don't allocate
3696         temporary values,
3697         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3698         same registers,
3699         * (pic16_sameRegsOfs): NEW,
3700         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3701         free because they were not allocated from temporary pool,
3702         * pic16_popRegFromString): workaround to fix a problem with
3703         allocating variables twice or never,
3704         * (genGenPointerGet): using PRODL instead of FSR0H,
3705         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3706         instead of FSR0H,
3707         * (genAssign): take advantage of the _G.resDirect flag,
3708         * (genCast): around line 11844, use mov2f instead of directly
3709         MOVFF'ing between operands to account for literal values,
3710         * src/pic16/genutils.c: some new debug functions for gpsim have been
3711         added,
3712         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3713         float with integer part only,
3714         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3715         place variables in access bank
3716         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3717         updated sources to reflect recent changes in gen.c
3718
3719 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3720
3721         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3722         sources that searched for headers in installation path, now the
3723         device/include/pic16 is used,
3724         * src/pic16/glue.c (pic16glue),
3725         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3726         .line directives if not in debug mode, this suppresses assembler's
3727         warnings for ignored directives
3728
3729 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3730
3731         * src/port.h: made reset_regparms prototype void parameter explicit.
3732         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3733         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3734         * doc/sdccman.lyx: documented warning disabling and how to use
3735           printf_large to make it print floats.
3736         * device/include/stdbool.h: NEW
3737         * device/lib/_atof.c,
3738         * device/lib/_divuint.c,
3739         * device/lib/_divulong.c,
3740         * device/lib/expf.c,
3741         * device/lib/printf_large.c,
3742         * device/lib/sincosf.c,
3743         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3744         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3745           a completely reentrant lib.
3746
3747 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3748
3749         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3750         * device/include/pic16/stdio.h: fixed bug with colon
3751
3752 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3753
3754         * device/include/pic16/stdio.h,
3755         * device/include/pic16/stdlib.h,
3756         * device/include/pic16/math.h: NEW
3757         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3758         declared as _naked to reduce overhead
3759         * device/lib/Makefile.in (target port-specific-objects-pic16):
3760         changed * to *.* so to ignore the CVS directory,
3761         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3762         stacked variables back in stack,
3763         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3764         corruption
3765
3766 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3767
3768         * .version: bumped version number to 2.4.5
3769         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3770         * support/Util/SDCCerr.c (messages structure): added entry for
3771         W_POSSBUG2
3772
3773         Large cumulative patch for pic16 port and libraries.
3774         * device/include/pic16/sdcc-lib.h,
3775         * device/include/pic16/stdarg.h,
3776         * device/include/asm/pic16/features.h,
3777         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3778         * device/include/pic16/float.h: changes reentrant keyword with
3779         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3780         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3781         updated target build-libraries to include objects from gptr,
3782         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3783         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3784         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3785         all function headings,
3786         * src/SDCCmain.c: added global parameter userIncDirsSet,
3787         * (parseCmdLine): when option -I is encountered add directory to
3788         userIncDirsSet too,
3789         * src/version.awk: added space between control and long,
3790         * src/pic16/NOTES: added some notes for the port,
3791         * src/pic16/gen.c: added prototype for mov2fp function,
3792         * (fReturnpic16[]): properly named return value registers,
3793         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3794         * (aopForSym): added code to handle symbols with onStack flag set,
3795         symbols onStack are allocated PTRSIZE bytes,
3796         * (aopFreeAsmop): handles special case where asmops are stack objects,
3797         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3798         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3799         added argument lock to trace flaws in allocating temporary registers
3800         when developing port,
3801         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3802         * (pic16_popRegFromString): reenabled allocating a direct register
3803         from string,
3804         * (assignResultValue): various beautifications,
3805         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3806         referenced function argument,
3807         * (genIpush): reenabled to allow stacked arguments, handles only
3808         ic->parmPush iCodes,
3809         * (genCall, genPcall): major changes to allow for variable argument
3810         functions, fixed a bug with falsely restoring stack pointer after
3811         returning from call,
3812         * (genFunction): pending code for critical function,
3813         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3814         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3815         * (genNearPointerGet): fixed bug with indirect reading, was always
3816         reading from INDF0
3817         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3818         pointers,
3819         * (genAddrOf): rewrote code to take address of a stacked function parameter
3820         * (genCast): fixed casting to generic pointer type,
3821         * src/pic16/gen.h: added AOP_STA,
3822         * (struct asmop): added field stk,
3823         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3824         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3825         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3826         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3827         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3828         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3829         generic pointers,
3830         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3831         and library paths,
3832         * (pic16_port structure): generic pointer size is set to 3,
3833         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3834         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3835         compiler warning,
3836         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3837         operand is an iTemp,
3838
3839 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3840
3841         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3842         * debugger/mcs51/simi.c: addapt new syntax of s51
3843
3844 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3845
3846         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3847         * src/pic16/pcode.c: commented out some calls to free() in order to
3848         fix bug #989576,
3849
3850 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3851
3852         * src/SDCCicode.h,
3853         * src/SDCCicode.c (isiCodeInFunctionCall),
3854         * src/avr/ralloc.c (selectSpil),
3855         * src/pic/ralloc.c (selectSpil),
3856         * src/pic16/ralloc.c (selectSpil),
3857         * src/ds390/ralloc.c (selectSpil),
3858         * src/hc08/ralloc.c (selectSpil),
3859         * src/xa51/ralloc.c (selectSpil),
3860         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3861         stack in the middle of a function call sequence (fixes bug #1020268)
3862         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3863         costs associated with the minimum switch case.
3864
3865 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3866
3867         * src/SDCC.lex: fixed bug #1030549
3868
3869 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3870
3871         * src/SDCCcse.h (struct cseDef),
3872         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3873         over a function call if the CSE is derived from a symbol whose
3874         address has been taken (fixes bug #1029883)
3875         * support/regression/tests/bug-1029883: a new regression test for
3876         this bug
3877
3878 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3879
3880         * src/hc08/gen.c (emitinline): fixed bug #1029778
3881         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3882         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3883         and starts toward RFE #905167)
3884
3885 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3886
3887         * src/pic16/gen.c (mov2f): New function to move an operand to
3888         another without considering if it is a literal or a register,
3889         * (pic16_sameRegs): don't check if they are both AOP_REG,
3890         * (AccRsh): removed andmask=0 lines,
3891         * (genLeftShift): duplicated to be improved in future versions,
3892         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3893         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3894         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3895         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3896         * (insertBankSwitch): fixed inserting banksel directives algorithm
3897         for instructions that follow a skip instruction, this fixes a report
3898         for broken subtraction code generation,
3899         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3900         iCode is a left op, just in case result and right share the same
3901         registers
3902
3903 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3904
3905         * src/hc08/main.c,
3906         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3907         preservation of HX
3908         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3909         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3910         on 2004-09-12; it was buggy
3911
3912 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3913
3914         * src/SDCCsymt.h: removed RESULT_CHECK
3915         * src/SDCCast.c,
3916         * src/SDCCglue.c,
3917         * src/SDCCval.c,
3918         * src/pic/glue.c,
3919         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3920
3921 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3922
3923         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3924         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3925         configuration values no more rejected by compiler, they are assigned
3926         to configuration registers with a warning message instead,
3927         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3928         the for-loop so last conf register is emitted too,
3929         * (_pic16_initPaths): link library libsdcc.lib by default,
3930         * (_hasNativeMulFor): modified test for multiplication according to
3931         Raphael Neider's remarks. Integer multiplication is also done with
3932         support functions,
3933         * device/include/pic16/pic18fregs.h: corrected type error in while
3934         testing and including 18f6720 header file
3935
3936 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3937
3938         * src/pic16/device.h (pic16_options): removed field use_crt,
3939         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3940         until an optimization to handle single bits is added,
3941         * (pic16_loadFSR0): moved before genUnpackBits,
3942         * (genAnd): some white lines removed,
3943         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3944         leave_reset flags in pic16_options when using crt modules,
3945
3946 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3947
3948         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3949           for bugs 898889 & 979599. Also used some safer print instructions.
3950
3951 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3952
3953         * src/pic16/device.h (pic16_options_t): added field use_crt,
3954         crt_name, no_crt,
3955         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3956         catch a probable future bug,
3957         * src/pic16/gen.c: aopIdx function commented out,
3958         * (genAssign): commented out old code which used aopIdx,
3959         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3960         code, added if conditionals to take into account the --use-crt
3961         command line options,
3962         * src/pic16/main.c (pic16_optionsTable): added new command line
3963         options, --use-crt= and --no-crt,
3964         * (_pic16_linkEdit): now the proper crt object is added in the
3965         linker command line except than when --no-crt is specified,
3966         * src/pic16/pcode.c,
3967         * src/pic16/pcode.h: added some structures and functions for a new
3968         optimization scheme to compansate for instruction overhead between
3969         same iCodes, this scheme is currently under development and is not
3970         working in any way,
3971         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3972         to && operator,
3973         * device/lib/pic16/startup/crt0i.c,
3974         * device/lib/pic16/startup/crt0iz.c: added global char variable
3975         __uflags to force the generation of an idata section
3976
3977 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3978
3979         * doc/Makefile,
3980         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3981         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3982
3983 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3984
3985         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3986         Frieder) and clarified the default code optimization mode
3987
3988 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3989
3990         * src/SDCC.lex (doPragma, process_pragma),
3991         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3992         "opt_code_size", and "opt_code_balanced"
3993         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3994         regrouped options by category, added support for category headers
3995         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3996         and "--opt-code-size"
3997         * doc/sdccman.lyx: documented these new options and pragmas
3998         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3999         preference into account
4000
4001 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4002
4003         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4004           geniCodePreDec): Fixed bug 904237 by generating a warning
4005         * src/SDCCerr.h,
4006         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4007
4008 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4009
4010         * src/pic/device.c : When no max ram set validate full memory range.
4011         * src/pic/pcode.c,
4012         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4013
4014 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4015
4016         * device/lib/_gptrget.c,
4017         * device/lib/_gptrput.c: updated comment
4018         * device/lib/calloc.c,
4019         * device/lib/free.c,
4020         * device/lib/malloc.c,
4021         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4022         * src/SDCCcse.c (cseBBlock),
4023         * src/SDCCicode.c (printOperand, geniCodeArray),
4024         * src/SDCCicode.h (struct operand): fixed bug 868103
4025         * support/regression/tests/bug-868103.c: added
4026         * src/SDCCast.c (searchLitOp),
4027         * src/SDCCcse.h (struct cseDef),
4028         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4029         * src/SDCCicode.h (struct operand),
4030         * src/SDCCsymt.h (struct sym_link),
4031         * src/avr/gen.c (hasInc),
4032         * src/ds390/gen.c (hasInc),
4033         * src/hc08/gen.c (genPlusIncr, hasInc),
4034         * src/mcs51/gen.c (hasInc),
4035         * src/pic16/glue.c (pic16_printIvalChar),
4036         * src/pic16/ralloc.c (regWithIdx),
4037         * src/xa51/gen.c (hasInc) : removed warnings
4038         * src/SDCCast.c (createBlock): added comment ???
4039         * src/hc08/ralloc.c: updated comments
4040
4041 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4042
4043         * doc/sdccman.lyx: updated section on switch statements, added
4044         section about semaphore locking
4045         * doc/Makefile: added option -info for latex2html
4046         * device/lib/_gptrget.c,
4047         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4048
4049 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4050
4051         * src/pic/device.h,
4052         * src/pic/device.c,
4053         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4054          maxram is less than 0x100.
4055
4056 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4057
4058         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4059
4060 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4061
4062         * src/port.h,
4063         * src/mcs51/main.c,
4064         * src/ds390/main.c,
4065         * src/z80/main.c,
4066         * src/hc08/main.c,
4067         * src/pic/main.c,
4068         * src/pic16/main.c,
4069         * src/avr/main.c,
4070         * src/xa51/main.c
4071         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4072         a jump table is the best form for a switch statement, including
4073         automatic insertion of missing cases to make the case range
4074         continuous. Developed in collaboration with Frieder Ferlemann.
4075
4076 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4077
4078         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4079         accumulator result if it needs sign extension
4080
4081 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4082
4083         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4084
4085 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4086
4087         * device/lib/gbz80/printf.c,
4088         * device/lib/z80/printf.c: removed define for NULL
4089
4090 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4091
4092         * as/xa51/xa_link.c,
4093         * device/examples/ds390/ow390/ad26.c,
4094         * device/examples/ds390/ow390/cnt1d.c,
4095         * device/examples/ds390/ow390/counter.c,
4096         * device/examples/ds390/ow390/ds2480.h,
4097         * device/examples/ds390/ow390/ds2480ut.c,
4098         * device/examples/ds390/ow390/findtype.c,
4099         * device/examples/ds390/ow390/gethumd.c,
4100         * device/examples/ds390/ow390/owllu.c,
4101         * device/examples/ds390/ow390/ownetu.c,
4102         * device/examples/ds390/ow390/swt12.c,
4103         * device/examples/ds390/ow390/swtloop.c,
4104         * device/examples/ds390/ow390/temp.c,
4105         * device/examples/ds390/ow390/temp10.c,
4106         * device/examples/ds390/ow390/thermo21.c,
4107         * device/examples/ds390/ow390/tinilnk.c,
4108         * device/examples/ds390/ow390/tstfind.c,
4109         * device/examples/serialcomm/windows/serial.cpp,
4110         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4111         * device/include/reg51.h: fixed line endings for cvs
4112
4113 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4114
4115         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4116         packRegsForAccUse, packRegisters): new accumulator register
4117         packing algorithm
4118         * support/regression/ports/hc08/support.c (_putchar): suppress
4119         warning of unused variable
4120         * src/SDCCicode.c: added SWAP entry to codeTable
4121
4122 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4123
4124         * device/lib/sprintf.c: forgot to add this file before previous commit
4125
4126 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4127
4128         * src/pic16/gen.c (genPackBits): added operand right in function
4129         parameters, load result directly if p_type is POINTER (that is
4130         called by genNearPointerSet)
4131         * (genUnPackBits): added operand left in function parameters,
4132         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4133         FSR0 if accessing bitfields,
4134
4135 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4136
4137         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4138           _print_format; updated printf, sprintf, vsprintf
4139         * device/include/asm/default/features.h: corrected comment/define
4140         * device/lib/Makefile.in: added sprintf.c
4141         * device/lib/libsdcc.lib: added sprintf module
4142         * device/lib/printf_large.c,
4143         * device/lib/vprintf.c,
4144         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4145           into these 3 files
4146         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4147         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4148         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4149           hc08 test
4150         * support/regression/tests/zeropad.c: define idata as data for hc08
4151
4152 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4153
4154         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4155         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4156         labels are referenced at least once (even if a reference is not found)
4157         * src/hc08/gen.c (emitcode): set isComment flag for comments
4158         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4159         loads), rules 6a..6b (optimize jumps to return)
4160
4161 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4162
4163         * device/lib/acosf.c (acosf),
4164         * device/lib/asinf.c (asinf),
4165         * device/lib/atanf.c (atanf),
4166         * device/lib/ceilf.c (ceilf),
4167         * device/lib/cosf.c (cosf),
4168         * device/lib/coshf.c (coshf),
4169         * device/lib/cotf.c (cotf),
4170         * device/lib/fabsf.c (fabsf),
4171         * device/lib/floorf.c (floorf),
4172         * device/lib/log10f.c (log10f),
4173         * device/lib/logf.c (logf),
4174         * device/lib/sinf.c (sinf),
4175         * device/lib/sinhf.c (sinhf),
4176         * device/lib/sqrtf.c (sqrtf),
4177         * device/lib/tanf.c (tanf),
4178         * device/lib/tanhf.c (tanhf),
4179         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4180         replaced all instances of "reentrant" in the library functions
4181         defined in math.h with this macro.
4182         * support/regression/tests/float_trans.c: reenabled test for hc08
4183
4184 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4185
4186         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4187         erroneously deleted
4188
4189 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4190
4191         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4192         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4193         multi-byte volatile operands are used
4194         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4195         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4196         initialization to area GSINIT0 so that it would always precede
4197         any static initializers in GSINIT
4198         * support/regression/tests/zeropad.c: fixed idata define for hc08
4199         * support/regression/tests/bug-927659.c,
4200         * support/regression/tests/float_trans.c: disabled tests for hc08
4201         pending missing library routines
4202         * .version: increased version number to 2.4.4 - hc08 port now passes
4203         regression tests
4204
4205
4206 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4207
4208         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4209         * Makefile.common.in,
4210         * as/Makefile,
4211         * as/hc08/Makefile.in,
4212         * as/mcs51/Makefile.in,
4213         * as/z80/Makefile.in,
4214         * debugger/mcs51/Makefile.in,
4215         * device/include/Makefile.in,
4216         * device/lib/Makefile.in,
4217         * doc/Makefile,
4218         * link/Makefile,
4219         * link/z80/Makefile.in,
4220         * packihx/Makefile.in,
4221         * sim/ucsim/main_in.mk,
4222         * sim/ucsim/avr.src/Makefile.in,
4223         * sim/ucsim/doc/Makefile.in,
4224         * sim/ucsim/gui.src/serio.src/Makefile.in,
4225         * sim/ucsim/hc08.src/Makefile.in,
4226         * sim/ucsim/s51.src/Makefile.in,
4227         * sim/ucsim/xa.src/Makefile.in,
4228         * sim/ucsim/z80.src/Makefile.in,
4229         * src/Makefile.in,
4230         * support/cpp2/Makefile.in,
4231         * support/librarian/Makefile,
4232         * support/makebin/Makefile: added DESTDIR to the install path proposed
4233         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4234         * doc/sdccman.lyx: added DESTDIR documentation
4235
4236 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4237
4238         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4239         instruction for interrupt handlers, use fast returns when returning
4240         from high priority interrupts
4241
4242 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4243
4244         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4245         code generation
4246         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4247         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4248         bugs, ported much of Bernhard's code from mcs51
4249         * src/mcs51/gen.c (genSend),
4250         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4251         than one when calling a reentrant function
4252         * device/lib/_mullong.c: defined an alternate struct layout for big
4253         endian ports (hc08)
4254
4255 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4256
4257         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4258         test
4259
4260 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4261
4262         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4263         are sane and complete before asking the port its prefered parameter
4264         passing method (fixes bug #1017633)
4265         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4266         and _ret3
4267
4268 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4269
4270         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4271         problem in bitfields >= 8 bits.
4272
4273 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4274
4275         * src/SDCCsymt.c: undid changes that were not meant to be committed
4276
4277 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4278
4279         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4280
4281 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4282
4283         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4284           copied and wrong bit got inverted
4285
4286 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4287
4288         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4289         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4290         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4291         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4292         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4293         assignments to bitfields at known addresses
4294         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4295         reads from bitfields at known addresses
4296         * src/hc08/ralloc.c (packRegisters),
4297         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4298         genhc08Code): optimize pointer get values used as conditionals
4299         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4300         and branch
4301
4302 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4303
4304         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4305         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4306         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4307         as conditionals
4308
4309 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4310
4311         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4312
4313 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4314
4315         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4316         related problems
4317
4318 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4319
4320         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4321
4322 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4323
4324         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4325         mcs51 port
4326
4327 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4328
4329         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4330
4331 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4332
4333         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4334         cases use more compact code.
4335
4336 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4337
4338         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4339
4340 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4341
4342         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4343
4344 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4345
4346         * src/SDCCsymt.h,
4347         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4348         parameter of changePointer() from symbol* to sym_link*
4349         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4350         * src/SDCCsymt.c (compareType): void* type is castable to other
4351         pointers, but not necesarily an exact match.
4352         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4353         is no longer blindly treated as an exact match.
4354         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4355
4356 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4357
4358         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4359
4360 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4361
4362         * src/pic/gen.c,
4363         * src/pic/pcode.c,
4364         * src/pic/ralloc.h,
4365         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4366
4367 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4368
4369         * src/pic/device.c,
4370         * src/pic/device.h,
4371         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4372
4373 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4374
4375         * src/mcs51/gen.c (emitcode): fixed bug #992819
4376
4377 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4378
4379         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4380           there's no need to make it worse
4381
4382 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4383
4384         * src/mcs51/ralloc.c (deassignLR),
4385         * src/ds390/ralloc.c (deassignLR),
4386         * src/hc08/ralloc.c (deassignLR),
4387         * src/z80/ralloc.c (deassignLR),
4388         * src/pic/ralloc.c (deassignLR),
4389         * src/pic16/ralloc.c (deassignLR),
4390         * src/avr/ralloc.c (deassignLR),
4391         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4392         rlivePoint): fixed another part of bug #971834
4393
4394 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4395
4396         * src/z80/main.c: enabled "critical" keyword
4397         * src/z80/mappings.i,
4398         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4399         functions (fixes bug #979646)
4400         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4401
4402 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4403
4404         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4405           such as c:\mydir.
4406
4407 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4408
4409         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4410           doesn't disable too much optimizations
4411
4412 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4413
4414         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4415
4416 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4417
4418         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4419
4420 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4421
4422         * src/pic/gen.c tidied up tabs
4423         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4424         * src/pic/main.c tidied up tabs
4425         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4426         * src/pic/pcoderegs.c tidied up tabs
4427         * src/pic/ralloc.c tidied up tabs
4428
4429 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4430
4431         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4432         to S_FIXED for pic16 port and when symbol is not in level 0,
4433         allocate for S_REGISTER storage class and pic16 port, too,
4434         * src/pic16/device.h: prototype for checkSym,
4435         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4436         * (pic16_assignConfigWordValue): test the value and the mask to
4437         validate that the value is suitable for the configuration word,
4438         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4439         collect extern declared symbols, don't emit symbol twice, check
4440         first if symbol is in publics set first,
4441         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4442         * added command line '--fstack' which enables an experimental
4443         feature for stack access, too buggy to be used yet...
4444         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4445         * (pic16_allocDirReg): when register has storage class S_REGISTER
4446         allocate in pic16_dynAccessRegs,
4447         * device/include/pic16/pic18f????.h: modified configuration word
4448         naming convention, words started as CONFIG0H but should be CONFIG1H
4449
4450 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4451
4452         * device/include/mcs51reg.h: fixed bug 970993
4453
4454 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4455
4456         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4457         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4458         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4459         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4460         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4461         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4462           error/warning numbers,
4463           added function setWarningDisabled()
4464         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4465         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4466           _memcmp.c _memmove.c calloc.c realloc.c free.c
4467         * support/regression/tests/malloc.c: added tests for new functionality
4468         * support/regression/tests/zeropad.c: added tests for truncated initializers
4469           and initialized char arrays starting with '\x0'
4470         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4471
4472 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4473
4474         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4475
4476 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4477
4478         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4479         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4480         peephole 177.e. Thanks to anonymous
4481
4482 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4483
4484         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4485         function isn't used in the source but referenced as a
4486         variable initializer then declare it as extern in .asm file
4487
4488 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4489
4490         * .version: increased version number to 2.4.3
4491
4492         Adding version extension according to ChangeLog CVS revision
4493         * src/Makefile.in (target all): added dependency 'version.h'
4494         * (rule version.h): added rule to create version.h from ChangeLog,
4495         * (rule dep): added dependency version.h,
4496         * src/version.awk: AWK script to create version.h
4497         * src/SDCCdwarf2.c (dwWriteModule),
4498         * src/SDCCglue.c (initialComments),
4499         * src/SDCCmain.c (printVersionInfo): modified to write after
4500         version string the version extension number,
4501         * src/SDCCutil.c: included "version.h"
4502         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4503         number,
4504         * src/SDCCutil.h: added prototype for getBuildNumber
4505
4506         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4507         includeDirsSet, too,
4508         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4509         const char [] is found in function prototype...
4510
4511         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4512         moving to WREG with source is already in WREG,
4513         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4514         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4515         * (aopForSym): stack'ed symbols are partially supported, added
4516         if-clause to support symbols in FARSPACE,
4517         * (sameRegs): added test for AOP_ACC to see if registers are same,
4518         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4519         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4520         * (pic16_popRegFromString): will not allocate a new register if it
4521         doesn't find one by name, bug may have introduced...
4522         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4523         * (genIpush): revived to use pic16 port's stack,
4524         * (genAddrOf): added incomplete case for stack'ed operand,
4525         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4526         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4527         can handle multibyte operands,
4528         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4529         * (pic16initialComments): added message for MPLAB compatibility
4530         mode enabled,
4531         * src/pic16/main.h: prototype for pic16_mplab_comp,
4532         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4533         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4534         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4535         because of increased complexity of procedure,
4536         * (_process_pragma): stack pragma changed to format 'stack pos len',
4537         emit symbol '_stack_end' to conform with gplink,
4538         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4539         to search for register,
4540         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4541         PO_GPR_REGISTER,
4542         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4543         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4544         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4545         case for PO_GPR_REGISTER,
4546         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4547         dies, the new era is ahead !...
4548         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4549         pic16_dynInternalRegs,
4550         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4551         * (pic16_allocDirReg): minor optimizations and bug fixes,
4552         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4553
4554         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4555         load stack and frame pointer with address of 'stack_end' symbol
4556
4557 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4558
4559         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4560         without source code but only variable initializers
4561
4562 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4563
4564         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4565         external are not declared as extern to reduce overhead while linking
4566
4567 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4568
4569         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4570
4571 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4572
4573         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4574           Yee Keat for the patch
4575         * src/SDCCast.c (decorateType): fixed bug #979599
4576         * src/ds390/gen.h: removed local fReturnSizeDS390
4577         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4578         * src/ds390/gen.c (genAnd, genOr, genXor),
4579         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4580
4581 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4582
4583         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4584         add relFilesSet to $3, manipulate $2 to handle linking of object
4585         files without source files in command line,
4586         * device/include/pic16 (all headers): added ID location macros,
4587         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4588         entries for ID location bytes,
4589         * (pic16_assignIdByteValue): NEW,
4590         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4591         added field dumpcalltree to pic16_options_t,
4592         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4593         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4594         emitting rFalseIfx label after check_carry label,
4595         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4596         pic16_emitDIRegs), NEW
4597         * (pic16glue): dump .calltree file when option --calltree found,
4598         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4599         * (_pic16_genAssemblerPreamble): emit ID locations after
4600         configuration registers,
4601         * (pic16_linkCmd): modifications of the link command,
4602         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4603         * (pic16_pCodeInitRegisters): don't init stack registers,
4604         * (pic16_findPrevInstruction): fixed bug,
4605         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4606         bug with immediate registers,
4607         * (buildCallTree): traces stack push and pop,
4608         * (pct2): dump also stack usage for each function,
4609         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4610         * (pic16_allocDirReg): various modifications,
4611         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4612         fixed to 1,
4613
4614 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4615
4616         * src/pic16/pcode.c: removed buggy double colon
4617
4618 2004-07-01 Borut Razem <borut.razem AT siol.net>
4619
4620         * support/scripts/sdcc.nsi: added include/pic16 to setup
4621
4622 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4623
4624         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4625         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4626         target 'clean',
4627         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4628         specific command line arguments. Also added sample lkr script
4629         for placing a variable at a specific memory bank.
4630         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4631         at a specific memory bank,
4632         * (pic16_dump_isection): fixed bug which caused string literals to
4633         be omitted when dumping idata section,
4634         * (pic16_groupRegistersInSection): added code to handle registers
4635         in specific memory banks,
4636         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4637         public, all references are renamed too,
4638         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4639         AOP_DPTR2,
4640         * (pic16_storeForReturn): added case to handle when dest is WREG,
4641         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4642         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4643         pic16_rel_udata, check to see if that register is marked as being
4644         a member of a specific memory bank,
4645         * (pic16_printIvalCharPtr): added code to add string literals either
4646         to code or the idata sections,
4647         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4648         also accept the 'udata' pragma,
4649         * src/pic16/main.h: new structure types sectName and sectSym
4650         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4651         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4652         * (pic16_findPrevInstruction): fixed, it returned nothing,
4653         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4654         instruction combinations,
4655         * (pic16_FixRegisterBanking): heavily reorganised,
4656         * (pic16_AnalyzeBanking): if generating banksel directives is
4657         disabled, then don't call FixRegisterBanking at all,
4658         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4659         completely removed,
4660         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4661
4662 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4663
4664         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4665         Phuah Yee Keat <yk.phuah AT nestac.com>
4666
4667 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4668
4669         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4670         correctly the IVT even if it is relocated to some other location
4671
4672 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4673
4674         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4675         * device/include/pic16/pic18f2220.h: NEW,
4676         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4677         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4678         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4679         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4680         nodefaultlibs, ivt_loc is the location of the interrupt vector
4681         table, and nodefaultlibs signs that default libraries should not be
4682         linked in link stage,
4683         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4684         according to --ivt-loc argument,
4685         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4686         when pragma stack is found,
4687
4688 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4689
4690         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4691         256 (range check), 257 (do while), 258.a-f (bit banging
4692         f.e. on 3-wire SPI bus)
4693
4694 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4695
4696         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4697         variables used exclusively within a loop
4698
4699 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4700
4701         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4702
4703 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4704
4705         * src/SDCClrange.c (computeClash): fixed bug #971834
4706
4707 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4708
4709         * src/mcs51/gen.c (genCmp): fixed bug #975903
4710         * src/hc08/gen.c (operandsEqu),
4711         * src/ds390/gen.c (operandsEqu),
4712         * src/z80/gen.c (operandsEqu),
4713         * src/pic/gen.c (operandsEqu),
4714         * src/pic16/gen.c (operandsEqu),
4715         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4716         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4717
4718 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4719
4720         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4721
4722 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4723
4724         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4725         default case in switch statement,
4726         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4727         to eliminate problem with initialisation of pointers, but problem
4728         still exists,
4729         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4730         * (emitStaticSegment): removed various lines emitting debug info,
4731         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4732         added processor registers for utilizing EEPROM,
4733         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4734         configurable and set 8
4735
4736 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4737
4738         * .version: increased version number to 2.4.2,
4739
4740         Cumulative patch for pic16 port
4741         * src/pic16/device.c: changed scheme to dump initial values for
4742         variables in idata segment, all print_idata* functions were removed,
4743         now the pic16_printIval* will be called,
4744         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4745         * _pic16_printPointerType, pic16_printPointerType,
4746         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4747         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4748         NEW, similar to the respective functions in SDCCglue.c,
4749         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4750         way, emitting hex bytes,
4751         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4752
4753 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4754
4755         * src/avr/ralloc.c (serialRegAssign),
4756         * src/xa51/ralloc.c (serialRegAssign),
4757         * src/pic/ralloc.c (serialRegAssign),
4758         * src/pic16/ralloc.c (serialRegAssign),
4759         * src/hc08/ralloc.c (serialRegAssign),
4760         * src/z80/ralloc.c (serialRegAssign),
4761         * src/ds390/ralloc.c (serialRegAssign),
4762         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4763
4764 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4765
4766         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4767         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4768
4769 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4770
4771         Cumulative patch for pic16 port:
4772         * src/pic16/device.h (typedef PIC16_device) modified fields for
4773         defining microcontrollers,
4774         * src/pic16/device.c: added new info for all devices in Pics16 array,
4775         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4776         to be optimised out by the pCode optimiser,
4777         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4778         specially, bug reported by G.M. Gallant,
4779         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4780         as force'd so that cannot be optimised out by pCode optimiser,
4781         * src/pic16/pcode.c,
4782         * src/pic16/pcodepeeph.c,
4783         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4784         they are disabled by default, but can be enabled explicit with
4785         command argument --denable-peeps, for testing,
4786         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4787         --pomit-ivt in COMPILE_FLAGS
4788
4789 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4790
4791         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4792           compilation on MSVC
4793
4794 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4795
4796         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4797
4798 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4799
4800         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4801         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4802
4803 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4804
4805         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4806         would only assign 0x300001 register.
4807
4808 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4809
4810         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4811         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4812
4813 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4814
4815         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4816         for ds80c400
4817         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4818         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4819         added peephole 254 (left shift), 255 (jump table)
4820
4821 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4822
4823         * device/lib/Makefile.in: removed comment line with model-pic16,
4824         * (target port-specific-objects-pic16): the libraries and objects
4825         are copied to the build directory form the device/lib/pic16/bin
4826         directory
4827
4828         Cumulative patch concerning pic16 port:
4829         * library directory has been re-organized,
4830         * added support for PIC18F1220,
4831         * added headers and library sources for chips 18f1220,18f6520,
4832         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4833
4834         * configuration registers setting has changed, now each supported
4835         device has a complete description of the registers it uses,
4836         * all initialisations are moved to idata sections, these section
4837         can be absolute or relocatable,
4838         * fixed initialisation of codespace variables,
4839         * fixed warning about PCLATU and gpsim,
4840         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4841         * (genAssign): use table reads when assigning from variables in codespace,
4842         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4843         char/int variables placed in codespace,
4844         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4845         registers set in .asm file, no need for --pomit-config-words anymore,
4846         * (pic16glue): some 8051 legacy segments are commented out
4847         (to be removed completely),
4848         * added support for alternative assembler and linker with --asm=
4849         and --link= command line arguments,
4850         * peepholes are disabled automatically in the port, no need to
4851         specify on command line,
4852         * port supports natively char/int/long multiplication, but converts
4853         all divisions to support functions,
4854         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4855         to the file set in variable $2,
4856         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4857         strings in ASCII format and not in hex,
4858         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4859         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4860         allocate proper register if iCodes aren't temporary,
4861
4862 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4863
4864         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4865
4866 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4867
4868         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4869         is commented out
4870
4871 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4872
4873         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4874         computed address is reused
4875         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4876         multi-byte bitfields
4877
4878 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4879
4880         * src/z80/gen.c: (genArrayInit): must check for pointers too
4881
4882 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4883
4884         * support/regression/tests/zeropad.c: never meant to commit the
4885           nestedstruct test: removed, added check for GCC version
4886
4887 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4888
4889         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4890         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4891         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4892           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4893           bugs 928906 and 954082 half-empty initializers
4894         * src/SDCCsymt.h,
4895         * src/SDCCsymt.c (getAllocSize): added for above fix
4896         * src/z80/gen.c (genArrayInit): fixed bug 741044
4897         * support/regression/tests/zeropad.c: added tests
4898
4899 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4900
4901         * src/pic16/device.c (pic16_dump_section): corrected bug which
4902         caused some symbols of the libraries to be misplaced
4903
4904 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4905
4906         * src/pic16/glue.c,
4907         * src/pic16/ralloc.h,
4908         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4909         to fix conflict with pic port
4910
4911 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4912
4913         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4914         externs configuration variables,
4915         * src/pic16/ralloc.h,
4916         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4917         prototype in header, commented out some debug messages
4918
4919 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4920
4921         * src/pic16/glue.c,
4922         * src/pic16/main.c,
4923         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4924         for gpasm COFF object generation. Thanks to D. Hawkins for
4925         his patch info
4926
4927 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4928
4929         * src/ds390/main.c,
4930         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4931         Brock for spotting this)
4932         * src/ds390/gen.c (genEndFunction),
4933         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4934         interrupt handler and critical. Disable push/pop optimizations when
4935         peephole optimizations disabled.
4936
4937 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4938
4939         Updated pic16 library sources and headers.
4940         * device/lib/pic16/pic18f*/ ,
4941         * device/include/pic16/*.h: modified to handle structured SFR
4942         definitions
4943
4944 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4945
4946         * src/port.h (PORT structure): added hook initPaths, now each
4947         port can declare its own default search paths,
4948         which can been seen with the --print-search-dirs option,
4949         see pic16 port for example,
4950         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4951         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4952         * (doPrintSearchDirs): NEW, replaces in a central manner the
4953         printing of search dirs which was split in set*Paths functions,
4954         * (main): added call to port->initPaths and doPrintSearchDirs,
4955         * src/avr/main.c,
4956         * src/ds390/main.c,
4957         * src/hc08/main.c,
4958         * src/izt/i186.c,
4959         * src/izt/tlcs900h.c,
4960         * src/mcs51/main.c,
4961         * src/pic/main.c,
4962         * src/pic16/main.c: modified port structures to reflect addition of
4963         initPaths hook,
4964
4965         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4966         * (pic16_dump_section): for registers in same address reserve memory once,
4967         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4968         to no_banksel,
4969         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4970         result is greater in size than right or left,
4971         * (pic16_genUMult8X8_8): there are some cases where the result can
4972         be 16 bits size, so handle these,
4973         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4974         * (pic16_outBitC): modified to emit pcodes,
4975         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4976         or not,
4977         * (genDivOneByte): implemented algorithm to divide 8-bits,
4978         * (genCmp): uncommented goto, but issues still exist,
4979         * (genAnd): fixed a bug with variables >8bits,
4980         * (genPackBits): optimization added that uses BCF/BSF to change a
4981         single bit,
4982         * (genAssign): fixed bug when assigning floating point literals,
4983         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4984         __sdcc_gsinit_startup label,
4985         * src/pic16/main.c (_pic16_init): removed search directory
4986         initialisations,
4987         * (_pic16_initPaths): NEW, used to initialise search directories,
4988         * (_hasNativeMulFor): support functions for all except char/int
4989         multiplication, and char division,
4990         * (PIC16_port struct): modified entry for native mul support,
4991         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4992         no_banksel option,
4993         * (buildCallTree): call to register_usage is ifdef'ed out,
4994
4995 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4996
4997         * device/include/string.h: applied Stas Sergeev's patch to make this
4998         header file compatible with the preprocessor -Wundef option
4999         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5000         failure (fixes bug #941458)
5001
5002 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5003
5004         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5005         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5006         that the variable, not the function, should be static
5007         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5008         to be consistent with non-literal case
5009
5010 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5011
5012         * src/SDCCast.c (isConformingBody): fixed bug #949967
5013         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5014         convilong): fixed bug #952086
5015
5016 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5017
5018         * src/SDCCmem.c (allocVariables): fixed bug #955321
5019
5020 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5021
5022         * src/hc08/main.c (_hc08_genAssemblerEnd),
5023         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5024         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5025         completely eliminated the use of a temporary file
5026         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5027         when more than one file linked
5028         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5029
5030 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5031
5032         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5033         which fixes bug #543481
5034         * support/regression/tests/bug-751703.c: fixed comments left from a
5035         cut and paste error
5036         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5037         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5038         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5039         scopes
5040         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5041         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5042         are now changed to underscores in moduleName
5043
5044 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5045
5046         * as/mcs51/lkmem.c: better fix for bug #954173
5047
5048 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5049         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5050
5051         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5052         * device/include/c8051f000.h,
5053         * device/include/c8051f120.h,
5054         * device/include/c8051f300.h,
5055         * device/include/c8051f310.h,
5056         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5057         PWM16) and detab'ed
5058
5059 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5060
5061         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5062         and mailing lists, doc'ed --no-peep-comments, removed reference
5063         to knoppix (newest version has no LyX/LaTeX), other minor changes
5064         * src/SDCCglue.c (glue): save 2 bytes stack space with
5065         option --main-return. The ljmp could probably be avoided too
5066
5067 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5068
5069         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5070
5071 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5072
5073         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5074         * src/SDCCopt.c (isLocalWithoutDef),
5075         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5076         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5077         (credit to Maarten Brock for patch #949363, on which this is based)
5078         * support/regression/tests/bug-751703.c: some test cases of extern used
5079         within inner scopes.
5080
5081 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5082
5083         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5084         SPEC_STRUCT
5085         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5086         struct definitions
5087         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5088         dwWriteLabel): fix to create valid debugger symbols even when
5089         the module name has non-alphanumeric symbols in it
5090         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5091         when a variable's allocation has been optimized away
5092
5093
5094 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5095
5096         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5097         * src/hc08/main.c,
5098         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5099         * src/mcs51/main.c,
5100         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5101         * src/ds390/main.c,
5102         * src/z80/gen.c (z80_emitDebuggerSymbol),
5103         * src/z80/main.c,
5104         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5105         * src/pic/main.c,
5106         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5107         * src/pic16/main.c,
5108         * src/avr/gen.c (avr_emitDebuggerSymbol),
5109         * src/avr/main.c,
5110         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5111         * src/xa51/main.c,
5112         * src/SDCCdebug.c (emitDebuggerSymbol),
5113         * src/SDCCdebug.h,
5114         * src/port.h: added a debugger struct to the port struct. Added a
5115         callback for defining debugger symbols
5116
5117         * src/SDCCast.c (createLabel),
5118         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5119         with isitmp = 1
5120         * src/SDCCicode.h,
5121         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5122         iCode back to the ast for the function
5123
5124         * src/hc08/ralloc.c (hc08_assignRegisters),
5125         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5126         unneeded fields from the regs struct.
5127         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5128         pushReg() & pullReg() functions instead of emitcode()
5129
5130         * src/hc08/gen.c (genLabel, genhc08Code),
5131         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5132
5133         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5134         debugger hooks
5135
5136         * src/hc08/gen.c (genEndFunction, genhc08Code),
5137         * src/hc08/gen.h,
5138         * src/mcs51/gen.c (genEndFunction, gen51Code),
5139         * src/mcs51/gen.h,
5140         * src/ds390/gen.c (genEndFunction, gen390Code),
5141         * src/ds390/gen.h,
5142         * src/z80/gen.c (genEndFunction, genZ80Code),
5143         * src/z80/gen.h,
5144         * src/z80/z80.h,
5145         * src/pic/gen.c (genEndFunction, genpic14Code),
5146         * src/pic/gen.h,
5147         * src/pic16/gen.c (genEndFunction, genpic16Code),
5148         * src/pic16/gen.h,
5149         * src/avr/gen.c (genEndFunction, genAVRCode),
5150         * src/avr/gen.h,
5151         * src/xa51/gen.c (genEndFunction, genXA51Code),
5152         * src/xa51/gen.h,
5153         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5154         specific code to cdbFile.c and out of the backend code generators
5155
5156         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5157         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5158         starting address is now 0
5159
5160         * as/hc08/asm.h,
5161         * as/hc08/m08pst.c,
5162         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5163         assembler directive for DWARF support
5164         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5165
5166         * src/src.dsp,
5167         * src/Makefile.in,
5168         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5169
5170 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5171
5172         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5173         and inappropriate peephole optimization in jump tables
5174
5175 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5176
5177         * as/hc08/m08pst.c,
5178         * src/SDCCglue.c: sdccopt works for the hc08 port now
5179
5180 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5181
5182         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5183
5184 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5185
5186         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5187
5188 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5189
5190         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5191         rules
5192         * src/SDCCmain.c,
5193         * src/SDCCglobl.h,
5194         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5195         comments from the peephole optimizer replacement rules
5196         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5197         symbols
5198         * src/SDCCcse.c (updateSpillLocation),
5199         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5200         equivalents
5201         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5202         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5203         objects far pointers
5204
5205 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5206
5207         * src/SDCCsymt.h: a missing part of my last change
5208         * src/pic/ralloc.c (regTypeNum),
5209         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5210
5211 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5212
5213         * src/SDCCicode.h,
5214         * src/SDCCicode.c (aggrToPtrDclType),
5215         * src/SDCCptropt.h,
5216         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5217         ptrPseudoSymConvert),
5218         * src/pic/ralloc.c (regTypeNum),
5219         * src/pic16/ralloc.c (regTypeNum),
5220         * src/hc08/ralloc.c (regTypeNum),
5221         * src/ds390/ralloc.c (regTypeNum),
5222         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5223         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5224
5225 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5226
5227         * link/z80/lkmain.c (afile),
5228         * as/hc08/lkmain.c (afile),
5229         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5230         prevent a pointer problem when a filename has no directory and
5231         no extension specified.
5232
5233 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5234
5235         * link/z80/lkmain.c (afile): allow periods in directory names
5236         * link/z80/lkmain.c (afile),
5237         * as/mcs51/lkmain.c (afile),
5238         * as/hc08/lkmain.c (afile): allow linker script file to have an
5239         extension other than ".lnk"
5240         * link/z80/lklex.c (getfid),
5241         * link/z80/lkmain.c (parse),
5242         * as/mcs51/lklex.c (getfid),
5243         * as/mcs51/lkmain.c (parse),
5244         * as/hc08/lklex.c (getfid),
5245         * as/hc08/lkmain.c (parse): Support comments in the linker script
5246         file on lines by themselves and after filenames
5247
5248 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5249
5250         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5251
5252 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5253
5254         * src/z80/peeph-z80.def: removed some peephole rules that don't
5255         work with multibyte arithmetic (fixed bug #937126)
5256         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5257         to registers and not global variables
5258         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5259         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5260         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5261         checking for assignments not internally generated (fixed bug #931895)
5262         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5263         structure member (fixed bug #930072)
5264
5265 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5266
5267         * src/SDCCmain.c (linkEdit),
5268         * src/hc08/main.c (_hc08_parseOptions),
5269         * as/hc08/Makefile.in,
5270         * as/hc08/aslink.h,
5271         * as/hc08/asm.h,
5272         * as/hc08/m08pst.c,
5273         * as/hc08/lkrloc.c (relr, rele),
5274         * as/hc08/lkarea.c (lnkarea)
5275         * as/hc08/lkmain.c (afile, parse),
5276         * as/hc08/lkelf.c: support for ELF output
5277         * as/hc08/lks19.c (s19),
5278         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5279
5280 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5281
5282         * as/mcs51/lkihx.c: Fixed bug #899105.
5283
5284 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5285
5286         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5287         .dsp files from Unix to DOS.
5288
5289 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5290
5291         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5292         function pointers; we have been compliant for several months now.
5293         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5294         change that was accidently commented out
5295         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5296         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5297         bug #922319
5298
5299 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5300
5301         * src/hc08/gen.c: output of all of the internal debugging information
5302         is now controlled by the D() macro; it is disabled by default
5303
5304 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5305
5306         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5307         harder to keep the same registers during a CAST iCode
5308         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5309         long via int can be done in a single cast, if the signedness is
5310         correct.
5311         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5312         putchar() in tinibios.c in ds390's library
5313
5314 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5315
5316         * src/SDCCast.c (decorateType): fixed bug #898889,
5317         cast result of a literal complement too
5318         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5319         fixed check for bitfields
5320
5321 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5322
5323         * src/SDCCicode.c (geniCodeLogic): made it static,
5324         (geniCodeLogicAndOr): added in order to fix bug #905492,
5325         (ast2iCode): fixed bug #905492
5326         * support/regression/tests/bug-905492.c: added
5327         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5328         (processParms): fixed bug #927659: don't copy parms, this will clear
5329         decorated flag
5330         * support/regression/tests/bug-927659.c: added
5331
5332 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5333
5334         * src/SDCCast.c (addCast): don't cast float to char
5335         * device/lib/libsdcc.lib: added _memmove
5336
5337 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5338
5339         * device/lib/large/Makefile: fixed parallel execution by
5340         replacing `make` by `$(MAKE)`
5341
5342 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5343
5344         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5345         offsets (fixes bug #923936)
5346
5347 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5348
5349         * device/lib/small/Makefile: fixed parallel execution by
5350         replacing `make` by `$(MAKE)`
5351
5352 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5353
5354         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5355
5356 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5357
5358         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5359         * src/regression/Makefile: Regression test was not running.
5360
5361 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5362
5363         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5364         complement if possible
5365         * src/SDCCval.c (valComplement),
5366         * src/SDCCicode.c (operandOperation): fixed complement of literal
5367         * support/regression/tests/onebyte.c (testComplement): added
5368
5369 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5370
5371         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5372         return an optimized tree; actually replace actParm with the new tree
5373         * src/SDCCast.h: added some parantheses to remove side effects
5374         * support/regression/tests/bug-920866.c
5375
5376 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5377         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5378         Bit operands were not being handled properly in the pic14 port.
5379         (now src/regression/add.c passes again).
5380
5381 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5382
5383         * src/SDCC.y (labeled_statement): case and default no longer require
5384         a following statement (RFE #893037)
5385
5386 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5387
5388         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5389         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5390         disabled (fixes bug #916294)
5391         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5392         "mov a,acc"; patch provided by Lenny Story
5393         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5394
5395 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5396
5397         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5398         functions
5399         * src/ds390/gen.c (genFunction, genEndFunction),
5400         * src/ds390/ralloc.c (ds390_assignRegisters),
5401         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5402         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5403         pushed if there are parameters passed on the stack. Also, a cleaner
5404         way to decide if r0/r1 should be pushed/popped. (Together they fix
5405         bug #918693)
5406
5407 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5408
5409         * doc/sdccman.lyx,
5410         * device/lib/mcs51/crtpagesfr.asm,
5411         * device/lib/mcs51/crtxinit.asm,
5412         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5413         to avoid confusion with Si Lab's SFRPAGE register.
5414
5415 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5416
5417         * src/SDCCglue.c (emitMaps): allow public sfr variables
5418         * src/SDCCglue.c (initialComments): include compiler build date
5419         with compiler version and put the timestamp of the generated
5420         assembly file on a serperate line to be less confusing.
5421         * src/port.h: added genInitStartup hook
5422         * src/avr/main.c,
5423         * src/ds390/main.c,
5424         * src/hc08/main.c,
5425         * src/pic/main.c,
5426         * src/pic16/main.c,
5427         * src/xa51/main.c,
5428         * src/z80/main.c: genInitStartup initialize as NULL (default to
5429         historical behaviour)
5430         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5431         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5432         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5433         library instead of hard coding it into the compiler.
5434         * support/regression/ports/mcs51-stack-auto/spec.mk,
5435         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5436         * device/lib/mcs51/Makefile,
5437         * device/lib/small/Makefile,
5438         * device/lib/large/Makefile,
5439         * device/lib/mcs51/crtpagesfr.asm,
5440         * device/lib/mcs51/crtstart.asm,
5441         * device/lib/mcs51/crtxclear.asm,
5442         * device/lib/mcs51/crtxinit.asm,
5443         * device/lib/mcs51/crtclear.asm,
5444         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5445         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5446         and into user configurable files.
5447         * device/lib/clean.mk: clean mcs51 directory too
5448         * support/regression/tests/longlit.c: added static to T1 declaration
5449         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5450         accesses in the initialization code
5451
5452 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5453
5454         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5455         OSCTRIMVAL as noted in bug #916008
5456
5457 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5458
5459         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5460         in loops with multiple exits (reported as incorrect registers
5461         used by Martin Helmling in Sdcc-user list)
5462
5463 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5464
5465         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5466         made ds390 register extensions look less like error messages
5467
5468 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5469
5470         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5471         reported by Adam Wozniak in Sdcc-user list
5472
5473 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5474
5475         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5476         arithmetic optimizations, added debug output
5477
5478 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5479
5480         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5481         * sdcc.spec: updated and split sdcc into 3 rpms
5482         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5483         needed for literals of LEFT_OP and '+'
5484         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5485         introduced RESULT_TYPE_NOPROM
5486         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5487         left shift
5488         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5489         limited promotion to int only for '*'
5490         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5491
5492 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5493
5494         * src/pic16/gen.c (genSkip),
5495         (genc16bit2lit), (gencjneshort): commented out
5496         (is_LitOp): new helper function, checks operand type
5497         (genCmpEq): rewritten
5498
5499 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5500
5501         * support/regression/tests/bug-908454.c: added
5502
5503 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5504
5505         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5506         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5507         (geniCodeCast): cosmetic, don't preserve bit storage class
5508         (geniCodeLeftShift): added promotion
5509         (geniCodeLogic): fixed regression
5510         * src/SDCCsymt.c (computeTypeOr): accept bits too
5511         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5512
5513 2004-03-07  Borut Razem <borut.razem AT siol.net>
5514
5515         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5516
5517 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5518
5519         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5520         version of pic16_genPackRegisters which does not check if ic is a
5521         CAST operator,
5522         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5523         function cause string1.c regression test fails
5524
5525 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5526
5527         * sim/ucsim/configure.in,
5528         * sim/ucsim/configure,
5529         * sim/ucsim/doc/Makefile.in: use docdir
5530         * src/SDCC.y: fixed sbit atrributes
5531         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5532         * src/SDCCast.c (decorateType): |^& need special promotion handling
5533         * src/SDCCast.h,
5534         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5535         * src/SDCCsymt.h (computeType),
5536         * src/SDCCicode.c: computeType() needs op
5537         * src/SDCCsymt.c (checkTypeSanity),
5538         * doc/sddman.lyx: "plain" bitfields are unsigned
5539         * src/SDCCsymt.c (computeTypeOr): added
5540         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5541         |^& ops
5542         * src/SDCCval.c (val*): computeType() needs op
5543         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5544         * support/regression/tests/onebyte.c: added tests for |^&
5545
5546 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5547
5548         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5549         for writing icode into asm output.
5550
5551 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5552
5553         * src/pic16/device.c: added some debug lines enabled
5554         with macro DEBUG_CHECK,
5555         * src/pic16/genarith.c: more debug in genPlus,
5556         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5557         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5558         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5559         * (aopForSym): onStack symbols are re-placed in data memspace,
5560         and onStack flag is cleared,
5561         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5562         copy temporary pcodeop,
5563         * (genPcall): added warning for not updating PCLATU,
5564         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5565         always true for pic16 port,
5566         * (genMultOneWord): NEW, supports integer multiplication,
5567         * (genMult): modified to call genMultOneWord,
5568         * (ifxForOp): added warning when return NULL,
5569         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5570         flag is set before call to operandFromSymbol for implicit
5571         added structures,
5572         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5573         options.intlong_rent are set by default,
5574         * (_hasNativeMulFor): modified to allow port generation of integer
5575         multiplication,
5576         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5577         set regtype to REG_SFR for all registers, restricting seting the
5578         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5579
5580 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5581
5582         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5583         more than 500 times in the regression tests
5584
5585 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5586
5587         * support/Util/SDCCerr.h,
5588         * support/Util/SDCCerr.c,
5589         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5590         enumerator_list),
5591         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5592         for symbol conflicts.
5593         * support/valdiags/tests/enum.c,
5594         * support/valdiags/tests/tentdecl.c,
5595         * support/valdiags/tests/struct.c: expect possible error messages
5596         referring to original symbol definitions.
5597         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5598         * src/SDCCsymt.h,
5599         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5600
5601 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5602
5603         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5604
5605 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5606
5607         * src/pic16/ralloc.c (newReg): fixed bug #908929
5608
5609 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5610
5611         * src/ds390/gen.c: added missing #include "main.h"
5612
5613 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5614
5615         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5616         checking if symbol is already in set,
5617         * src/pic16/device.h: prototype for checkAddSym,
5618         * src/pic16/gen.c: (_G): added entry interruptvector,
5619         * (assignResultValue): removed some commented out lines,
5620         * (genFunction): check for ISR via sym->type, absolute section for
5621         interrupt code is created via a new pBlock, the goto instruction is
5622         placed now correctly at the interrupt vector position, changed all
5623         references from ivec to _G.interruptvector,
5624         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5625         is the interrupt is a high priority one, same for return from ISR,
5626         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5627         externs to calls of checkAddSym,
5628         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5629         pic16_pcode_verbose flag is set,
5630         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5631         * src/pic16/pcoderegs.c: message about how many registers are saved
5632         will only be emitted if pic16_pcode_verbose flag is set,
5633
5634 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5635
5636         * src/ds390/ralloc.h,
5637         * src/ds390/ralloc.c (ds390_regWithIdx),
5638         * src/ds390/gen.c (emitcode),
5639         * src/ds390/main.h,
5640         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5641         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5642         ds390operandCompare, getRegsRead, getRegsWritten,
5643         initializeAsmLineNode): customized instruction size calculation for
5644         ds390, started basis for some register optimizations
5645         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5646         corresponding assembly output
5647         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5648         missing push/pop of r0/r1. Optimized push/pops
5649
5650 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5651
5652         * src/mcs51/main.c (instructionSize): fixed ACALL size
5653         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5654
5655 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5656
5657         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5658         the sorting of rlist with NULL elements
5659         * (print_idataType, print_idata): NEW to create idata sections
5660         * src/pic16/device.h: idataSymSet new variable
5661         * src/pic16/gen.c (genFunction): fixed some bugs in string
5662         comparing, improved the absolute section creation for ISRs,
5663         added FSR0L/FSR0H in registers that are saved in an ISR,
5664         * (genInline): fixed the processing of inline snippets,
5665         now they undergo no process by the peephole optimizer
5666         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5667         are placed in idataSymSet,
5668         * (pic16emitStaticSeg): extern symbols are added in externs,
5669         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5670         switching when aboslute variables are placed in access bank memory
5671         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5672         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5673         commented out with #if,
5674         * (pic16_packRegisters): reintroduce the check for CAST because some
5675         symbols are not correctly handled,
5676         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5677         pCodeInstruction instead of pCode,
5678         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5679         pCodeAsmDir definition,
5680         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5681         directive, then the argument directive is emitted without the leading
5682         tab, hack for inline labels which must be in the first column,
5683         * (compareLabel,pic16_findNextInstruction),
5684         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5685         * (insertBankSwitch): modified for the new pCodeAsmDir,
5686
5687 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5688         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5689
5690         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5691         instance,
5692         * (pushSide): commented out with #if,
5693         * (assignResultValue): fixed some typos in saving
5694         registers,
5695         * (genPcall): FIXED and sync'ed with genCall,
5696         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5697         * (genNearPointerGet): fixed to handle some more cases,
5698         implementation scheme via table reads,
5699         * (genConstPointerGet): modified to access code memory correct,
5700         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5701         and improved to handle some cases
5702         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5703         instead of "RETLW" for init data
5704         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5705         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5706         variables are placed in access bank memory (<0x80 and >=0xf80),
5707         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5708         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5709         TBLWT_POSTDEC,TBLWT_PREINC
5710         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5711         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5712         directives
5713         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5714         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5715         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5716         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5717
5718 2004-02-29  Borut Razem <borut.razem AT siol.net>
5719
5720         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5721         support/Util/findme.h, support/Util/system.h: enhance binary relative
5722         search for lib and include by using findProgramPath()
5723
5724 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5725
5726         * src/SDCCpeeph.h,
5727         * src/SDCCpeeph.c (pcDistance),
5728         * src/port.h,
5729         * src/mcs51/ralloc.h,
5730         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5731         * src/mcs51/main.h,
5732         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5733         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5734         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5735         size calculation port specific, started basis for some register
5736         optimizations
5737         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5738         missing push/pop of r0/r1. Optimized push/pops
5739         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5740         * device/lib/_modsint.c (_modsint),
5741         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5742         and stack version so regression tests pass
5743
5744 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5745
5746         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5747         * src/SDCCast.c (decorateType): catch another small optimization
5748         with '?' operator
5749         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5750         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5751         modified to finally use computeType() all over SDCC,
5752         see Feature Request #877103
5753         * src/SDCCval.h: cosmetic
5754         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5755         valCompare(); regression tested in muldiv.c
5756         * support/regression/tests/muldiv.c (testMod): mod sign follows
5757         dividend only
5758
5759 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5760
5761         * src/SDCCast.c (decorateType): fixed bug #902362
5762         * doc/INSTALL.txt: fixed install instructions for win32
5763
5764 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5765
5766         * device/include/Makefile.in (install): fixed by replacing spaces
5767         by tabs
5768         * doc/README.txt,
5769         * doc/INSTALL.txt: updated for release
5770         * doc/sdccman.lyx: added warning for --xstack being buggy
5771
5772 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5773
5774         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5775         to eliminate build warnings.
5776         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5777
5778 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5779            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5780
5781         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5782         removed -penable-stack, added comment for stack pragma, added
5783         warning for not initializing the stack/frame registers, removed
5784         comment at interrupts section
5785
5786         Stack is made permanent, there is no ability to disable stack usage.
5787         * src/pic16/device.h,
5788         * src/pic16/device.c: removed all references to USE_STACK macro,
5789         * src/pic16/device.c (pic16_dump_section): when no elements in
5790         rlist, free rlist before return,
5791         * (pic16_dump_int_registers): NEW, internal registers are a new set
5792         of general purpose registers reused by each function,
5793         * (checkAddReg): returns 1 if registers is added to set,
5794         * (pic16_groupRegistersInSection): when a registers is of type
5795         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5796         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5797         SRCASECMP macro is moved here from device.c
5798         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5799         PO_PCLATU, PO_PRODL, PO_PRODH,
5800         * (pic16_pCodeOpType, genMinus,
5801         changed compares to "a" register, with AOP_ACC,
5802         * (pic16_genPlus): fixed some bugs and indented properly,
5803         * (pic16_addSign): changed size to size+offset in the MOVWF
5804         instruction,
5805         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5806         multiply 8-bit operand by literal, result is 8-bit,
5807         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5808         multiply 2 8-bit operand, result is 8-bit,
5809         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5810         genUMult8X*_16,
5811         * src/pic16/gen.c: changed accUse to contain WREG only,
5812         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5813         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5814         true, do not use immediate addressing any more unless sym is a
5815         pointer in codespace,
5816         * (aopForRemat): do not use immediate addressing when symbol not in
5817         codespace and when symbol's address is requested,
5818         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5819         accUse size (= 1),
5820         * (aopGet): added case for AOP_ACC and don't return "accumulator
5821         bug" but WREG instead,
5822         * (popGetTempReg): pushes contents of temporary register in stack,
5823         * (popReleaseTempReg): pops contents of temporary register from
5824         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5825         * (pic16_popGet): separated case AOP_ACC to return register WREG
5826         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5827         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5828         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5829         the use of immediate pointers to certain cases only.
5830
5831         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5832         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5833         * (assignResultValue, genCall, genRet): modified to use the new
5834         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5835         genPcall is still broken,
5836         * (genFunction): added code to create 'A' type pBlocks when
5837         interrupt functions are generated, code not extensively tested yet,
5838         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5839         * (genEndFunction): modified so ISRs pop stored registers from stack,
5840         * (genMultOneByte): cleanup,
5841         * (AccRsh): added flag andmask, to and result with appropriate mask,
5842         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5843         * (genDataPointerGet): fixed and reenabled its use,
5844         * (genNearDataPointerGet): bugs fixed,
5845         * (genDataPointerSet): bugs fixed,
5846         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5847         pic16_DumpSymbol, pic16_DumpOp,
5848         * src/pic16/genutils.h: function prototypes for the above functions,
5849         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5850         pointers,
5851         * (pic16emitRegularMap): many many many improvements, but needs a
5852         major cleanup,
5853         * src/pic16/main.c: enable_stack in pic16_options is removed,
5854         * (_pic16_parseOptions): removed command line options -penable-stack,
5855         * (_process_pragma): emit stack symbol only when stack pragma is
5856         processed,
5857         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5858         redirected to FSR0L/FSR0H pair,
5859         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5860         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5861         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5862         for immediates,
5863         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5864         * (dumpPicOptype): NEW,
5865         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5866         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5867         with movff instruction,
5868         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5869         added pic16_int_regs, some packRegsFor* functions are commented out,
5870         because produce errors,
5871         * src/pic16/NOTES: minor modifications
5872
5873 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5874
5875         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5876         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5877         --pack-iram.
5878         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5879         * as/mcs51/lkaomf51.c: fixed bug #895763
5880
5881 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5882
5883         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5884
5885 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5886
5887         * doc/sdccman.lyx: added details about the HC08 storage classes and
5888         interrupts, fixed the register usage info for z80 & gbz80
5889
5890 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5891
5892         * doc/sdccman.lyx: added more pic16 port documentation
5893         * device/include/pic16/: added header pic18fregs.h
5894
5895 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5896
5897         * doc/sdccman.lyx: added Vangelis' contribution
5898
5899 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5900
5901         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5902         extend to the next CALL or PCALL, not just to the next CALL.
5903
5904 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5905
5906         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5907
5908 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5909
5910         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5911         bug #895752 and a better fix for bug #716790
5912
5913 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5914
5915         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5916
5917 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5918
5919         * doc/sdccman.lyx: minor changes, minor changed
5920
5921 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5922
5923         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5924         which can't handle SDCC_NEWONEBYTEOPS,
5925         (geniCodeMultiply): removed conversion from mult to shift for pic14
5926         and pic16
5927
5928 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5929
5930         * src/hc08/gen.h,
5931         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5932         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5933         thus fixing bug #895406
5934
5935 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5936
5937         * device/lib/_modsint.c,
5938         * device/lib/_modslong.c: sign follows divisor only
5939         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5940         signs or signedness can be ignored
5941         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5942         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5943         added optimization for IFX,
5944         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5945         arguments;
5946         reenabled optimization for IFX, which was removed on 2004-01-11
5947         * src/SDCCast.h: added return type IFX
5948         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5949         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5950         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5951         SDCC_OLDONEBYTEOPS selects the old behaviour
5952         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5953         changed again and commented promotion rule
5954         * src/SDCCval.c (valDiv): promotion no longer necessary
5955         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5956         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5957         rewritten
5958         * support/regression/tests/onebyte.c: added
5959
5960 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5961
5962         * gen.c (genInline): reverted to old code for assemnling inline
5963         code because of bug reported James Chadd
5964
5965 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5966
5967         * ralloc.h: missing declarations from previous patch,
5968         seems that patch for ralloc.h was never applied, fixed
5969
5970 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5971            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5972
5973         * pcode.c,
5974         * pcode.h,
5975         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5976         indirect addressing. Marked FSR0 as deprecated
5977         * gen.c (pointerCode): commented out, not needed now
5978         (pic16_popGet2p): new MOVFF helper function
5979         (genGenPointerGet),
5980         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5981         (shiftRLong): removed duplicate debugging info
5982
5983 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5984
5985         * src/ds390/gen.c (genNearPointerGet),
5986         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5987         optimization with bits, but not bitfields.
5988         * src/ds390/ralloc.c (packRegisters),
5989         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5990
5991 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5992
5993         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5994
5995 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5996
5997         * src/SDCCsymt.h,
5998         * src/SDCCicode.c (operandFromSymbol),
5999         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6000         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6001         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6002         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6003         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6004         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6005         bug #892038
6006         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6007         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6008         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6009         * src/SDCCsymt.c (newSymbol),
6010         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6011         enumerator_list),
6012         * src/SDCCval.h,
6013         * src/SDCCval.c (newiList): fixed bug #885705
6014
6015 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6016
6017         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6018         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6019
6020 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6021
6022         * device/include/c8051f120.h,
6023         * device/include/c8051f300.h,
6024         * device/include/c8051f310.h: added/updated header files for Silicon
6025         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6026         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6027         in new section Submitting patches
6028
6029 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6030
6031         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6032         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6033         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6034         genGenPointerSet),
6035         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6036         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6037         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6038         genGenPointerSet),
6039         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6040         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6041         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6042         genGenPointerSet),
6043         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6044         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6045         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6046         genGenPointerSet): fixed bug #892400
6047         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6048         to eliminate build warnings.
6049         * src/SDCCast.c (processParms),
6050         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6051         fixed bug 751859
6052         * support/valdiag/valdiag.py: added GCC to the list of defines active
6053         when compiling with gcc
6054
6055 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6056
6057         * support/Util/SDCCerr.h,
6058         * support/Util/SDCCerr.c,
6059         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6060         with an incomplete type (fixed bug #883734)
6061         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6062
6063 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6064
6065         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6066
6067 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6068
6069         * src/SDCCast.c (decorateType),
6070         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6071         function pointer implementation
6072         * support/regression/tests/funptrs.c: added tests to verify both forms
6073         of function pointers work correctly. Added tests to verify parameters
6074         are passed in the correct order.
6075
6076 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6077
6078         * device.c (regCompare): registers are sorted by ascending
6079         address and increasing size,
6080         * main.c (_pic16_finaliseOptions): removed the declaration
6081         of compiler macro MCU. Now a macro of the format pic18fxxxx
6082         will be defined from the command line
6083
6084 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6085             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6086
6087         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6088         PCOP_RLCF was overwritten!
6089         * gen.c (genSkip): commented out calls to pic16_emitcode,
6090         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6091         * (genlshTwo),
6092         * (genRRC): added debugging info,
6093         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6094         overwritten while shifting,
6095         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6096         overwritten while shifting,
6097         * (AccLsh),
6098         * (AccRsh),
6099         * (shiftLLeftOrResult),
6100         * (shiftRLeftOrResult),
6101         * (shiftRLong),
6102         * (shiftLLong): Implemented with pic16_emitpcode
6103         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6104         * (genLeftShift): Fixed bug, operand for shift by variable always
6105         was "and"ed with 0x0f,
6106         * (genLeftShiftLiteral),
6107         * (genrshTwo),
6108         * (genRightShiftLiteral): added debugging info,
6109         * (genrshFour): added comment,
6110         * (genRightShift): determined signedness from operand "left"
6111         instead of "result"
6112
6113 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6114
6115         * src/SDCCicode.c (geniCodeParms),
6116         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6117         function pointers, fixed function pointer bugs #861242 and #861896
6118
6119 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6120
6121         * device/include/c8051f000.h,
6122         * device/include/c8051f120.h,
6123         * device/include/c8051f300.h: added header files for Silicon
6124         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6125
6126 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6127
6128         * src/SDCCast.c (processParams): added new type flow and restructured
6129         (gatherAutoInit): added new type flow
6130         (addCast): cosmetic changes
6131         (getLeftResultType): added new type flow for array indices, patch
6132         provided by Stas, see FR #877103
6133         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6134         array index patch by Stas
6135         * src/SDCCast.h: added prototype getResultTypeFromType()
6136         * src/SDCCval.h,
6137         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6138         * src/pic/glue.c (pic14emitStaticSeg),
6139         * src/pic16/glue.c (pic16emitStaticSeg),
6140         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6141         for initialization of symbols
6142         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6143         * support/Util/SDCCerr.h:
6144         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6145         * .version: bumped version number to 2.3.8
6146         * device/include/Makefile.in (install),
6147         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6148         avoid warnings
6149
6150 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6151
6152         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6153         Slade Rich fixed an optimization bug
6154         * src/pic/pcodepeep.c,
6155         * src/pic/pcoderegs.c
6156         * doc/Makefile (install): added test for directory
6157
6158 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6159
6160         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6161         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6162         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6163         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6164         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6165         * as/mcs51/asexpr.c (term),
6166         * as/hc08/asexpr.c (term): fixed bug #887146
6167
6168 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6169
6170         * src/z80/gen.c (genMult): handle single byte result product
6171         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6172         DUMMY_READ_VOLATILE (fixed bug #886367)
6173
6174 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6175
6176         * support/regression/tests/libmullong.c: fixed logic, on little endian
6177         hosts we ended without a mullong_wrapper()
6178
6179 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6180
6181         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6182         virus/worm forged address usage.
6183
6184 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6185
6186         Fixed promotion, it should be done on AST level:
6187         * src/SDCCast.c (addCast): added promotion to int
6188         (decorateType): updated call to upCast()
6189         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6190         usualUnaryConversions()
6191
6192 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6193
6194         * support/regression/tests/literalop.c (mulWrapper): Added a
6195         wrapper to remove integer overflow warnings.
6196
6197         * support/regression/tests/float_trans.c: Made work on host.
6198
6199         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6200         location of sz80.
6201
6202         * support/regression/generate-cases.py (main): Changed from inline
6203         to a main method.
6204
6205         * doc/Makefile (install): Changed to depth first to get rid of
6206         missing directory install warning.
6207
6208         * as/Makefile (install-doc): Made work on Mac.
6209
6210 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6211
6212         * src/SDCCast.c: added an additional type flow in decorateType() of
6213         opposite direction, see feature request #860006; it's enabled at runtime
6214         by setting the environment variable SDCC_NEWTYPEFLOW
6215         * src/SDCCast.h: changed prototype of decorateType()
6216         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6217         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6218         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6219         see feature request #877103
6220         * src/SDCCval.c: updated call of decorateType()
6221         (valBitwise): fixed bug #882876
6222         (valMinus): added promotion
6223         (valLogicAndOr): result is unsigned
6224         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6225         * src/SDCCsymt.c (computeType),
6226         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6227         must not cause an unsigned operation
6228         * src/pic/glue (pic14emitRegularMap),
6229         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6230
6231 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6232
6233         * src/pic/pcode.c (PCodeID): commented out left over debug code
6234
6235 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6236
6237         * support/valdiag/tests/overflow.c: added shift tests
6238         * src/pic/device.c,
6239         * src/pic/gen.c,
6240         * src/pic/gen.h,
6241         * src/pic/glue.c,
6242         * src/pic/main.c,
6243         * src/pic/pcode.c,
6244         * src/pic/pcode.h,
6245         * src/pic/pcodepeep.c,
6246         * src/pic/pcoderegs.c,
6247         * src/pic/ralloc.c,
6248         * src/pic/ralloc.h: applied patch from Slade Rich;
6249         added support for multiple code pages and multiple RAM banks on the
6250         PIC 14 port. The ASM files now no longer simply assume all the
6251         code / RAM are in the same page / bank. This means the linker can
6252         safely allocate code/RAM of separate ASM files to different pages/banks.
6253         * doc/sdccman.lyx: added Slade's tips
6254         * src/mcs51/peeph.def: fixed bug #880768
6255
6256 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6257
6258         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6259         * src/SDCCast.c (decorateType): fixed bug #880197
6260
6261 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6262
6263         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6264         getopt.h.
6265
6266         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6267         strtof is not part of C89 and isn't included with Mac OS X.
6268
6269 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6270
6271         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6272         shiftL2Left2Result): fixed bug #879326
6273         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6274         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6275         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6276         address fetch for clr instruction
6277         * device/lib/hc08/_mulint.c: created optimized assembly version
6278         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6279
6280 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6281
6282         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6283         proposed in FR #877103
6284
6285 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6286
6287         * src/SDCCval.c (cheapestVal): added missing checks
6288         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6289         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6290
6291 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6292
6293         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6294         equal operands
6295
6296 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6297
6298         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6299         loaded with the linker search paths (-L arguments) and the libraries
6300         to be linked with the current source (-l arguments). Changes
6301         currently will affect only the pic16 port.
6302         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6303         include path the port specific paths and port specific libraries,
6304         * gplink command now contains the $3 argument,
6305         * src/pic16/device.h,
6306         * src/pic16/device.c,: structure PIC_device is made public and
6307         renamed to PIC16_device, the same for variable Pics which is renamed
6308         to Pics16. Updated all references to them.
6309         * src/pic16/glue.c (pic16glue): corrected bug with code
6310         initialization which bypassed the variable initializations block.
6311
6312         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6313         COMPILE_FLAGS and added the --nostdinc option
6314
6315 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6316
6317         * device/include/mc68hc908jb8.h: Register defs for another member
6318         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6319
6320 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6321
6322         Documenting changes from previous commits.
6323         * configure.in (version 1.56),
6324         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6325         when generating output files to configure the pic16 library,
6326         but now I've commented it out, since gputils aren't installed in the
6327         SF compile farm, so library won't compile
6328
6329         * device/lib/Makefile.in (version 1.56): initially I've added in
6330         target 'all' the prerequestive 'model-pic16' so it compiled the
6331         pic16 library, but now I've commented it out for the same reasons
6332         above,
6333         * added targets 'model-pic16' and 'objects-pic16' to compile the
6334         library
6335         * added target 'port-specific-objects-pic16' to handle the
6336         generated libraries and copy them into the build/ directory
6337         * added target 'clean-intermediate-pic16' to clean intermediate
6338         files into pic16 directory
6339         * in target 'installdirs' added line to create directory pic16 in
6340         the installation path
6341
6342         * device/include/Makefile.in (version 1.11): in target 'install'
6343         added lines to copy all header files to installation path,
6344         * in target 'installdirs' added line create directory for pic16
6345         headers in the installation path
6346
6347 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6348
6349         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6350          a function call
6351
6352 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6353
6354         * configure,
6355         * device/lib/configure.in,
6356         * device/lib/configure: fixed for autoconf 2.57
6357
6358 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6359
6360         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6361         option so that it actually works. Made it specific to the z80, since
6362         the gbz80 doesn't have these kinds of I/O ports.
6363
6364 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6365
6366         * device/include/z180.h,
6367         * device/lib/_memcpy.c,
6368         * device/lib/_memmove.c,
6369         * device/lib/_mulint.c,
6370         * device/lib/ser_ir.c,
6371         * device/lib/ser_ir_cts_rts.c,
6372         * device/lib/_strcmp.c,
6373         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6374         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6375         portmode; added deprecation warning for bank= and protmode= forms.
6376         Also, guard against buffer overflow.
6377         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6378
6379 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6380
6381         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6382         changed interrupt vector table generation to only emit declared vectors.
6383         * device/include/Makefile.in: added missing backslash
6384         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6385
6386 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6387
6388         Mainly changes to support compilation of the device libraries
6389         * src/pic16/device.c: stack is allocated via symbol and not
6390         via literal number. The symbol is placed in the corresponding
6391         position of the data ram
6392         * (pic16_dump_section): relocatable and absolute uninitialized
6393         data are now emitted in sorted order to reduce section naming,
6394         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6395         weren't marked as being in the access bank,
6396
6397 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6398
6399         Added portion of GNU PIC Library under the directory
6400         device/include/pic16 and device/lib/pic16. These files
6401         contain the declarations of SFRs for the PIC18Fxx2 devices.
6402         The directory is initialized via configure from toplevel.
6403
6404 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6405
6406         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6407         the spilllocations to be compared correctly
6408
6409 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6410
6411         * src/SDCCast.c (decorateType): fixed bug introduced today
6412
6413 2004-01-12  Borut Razem <borut.razem AT siol.net>
6414
6415         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6416         doc/sdccman.lyx: upper case pragmas are deprecated
6417
6418 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6419
6420         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6421         in simpler and even better code
6422
6423 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6424
6425         * src/SDCCicode.c (operandOperation): fixed bug #874819
6426         * src/SDCCast.c (decorateType): fixed
6427         char foo (unsigned long ul) { return ul > 0; }
6428
6429 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6430
6431         * doc/sdccman.lyx: Moved and added some sections, small changes
6432         all over. Telling LaTeX to be less strict with word spacing
6433         to better keep the right margin. Changed some notes about
6434         maintainance of the ports in section 3.2.1 - is it OK like this?
6435
6436 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6437
6438         SDCC source changes:
6439         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6440         convilong): modified to inform the pic16 port that builtin functions
6441         are external
6442
6443         PIC16 PORT specific changes:
6444         * src/pic16/device.c pic16_dump_equates() added,
6445         processor registers declared internally by the port are emitted in
6446         the translation as equates,
6447         * src/pic16/gen.c: inline code is passed unprocessed to the
6448         translation,
6449         * (pic16_popGetLit2): fnuction modified to take second operand as
6450         pCodeOp pointer and not as literal,
6451         * (popRegFromIdx): prefixed with pic16_,
6452         * (pic16_popCombine2): modified to receive already allocated pCode
6453         operands,
6454         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6455         * (genFunction): initializes local stack frame and pushes on stack
6456         all the registers used by this function,
6457         * (genEndFunction): restores all registers from stack and restores
6458         stack frame,
6459         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6460         improvements,
6461         * (pic16glue): changed the program startup sequence,
6462         * added new dbName code 'A' for functions placed in absolute section
6463         * src/pic16/main.c: added function attribute _naked,
6464         * added pragma 'code' to place a fnuction at an absolute address,
6465         * added command line arguments --debug-ralloc and --pcode-verbose,
6466         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6467         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6468         * (pic16_newpCodeOpLit2): modified to take the second operand as
6469         pCodeOp pointer,
6470         * (pic16_printpBlock): modified to emit each function in a separate
6471         section,
6472         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6473         UPPER for immediate operands,
6474         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6475         instruction,
6476         * src/pic16/peeph.def: all peepholes with movff are commented out,
6477         because there is a problem in the pcode peep optimizer,
6478         * src/pic16/ralloc.c: the register allocator can now reuse local
6479         function symbols for another function. This saves register usage.
6480         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6481
6482         Added file src/pic16/NOTES with information about program writing on
6483         the current port version.
6484
6485 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6486
6487         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6488         and peephole 252 (array access)
6489
6490 2004-01-09  Borut Razem <borut.razem AT siol.net>
6491
6492         * src/SDCCmain.c : fixed #872250: -l command line defined library
6493           files are scanned before standard library files
6494
6495 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6496
6497         * src/SDCCast.c (decorateType): fixed bug #874046
6498
6499 2004-01-09  Borut Razem <borut.razem AT siol.net>
6500
6501         * support/scripts/sdcc.nsi: remove previous installation
6502
6503 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6504
6505         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6506         bytes for last interrupt vector (mcs51)
6507         * sdcc.spec: fixed typo
6508
6509 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6510
6511         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6512         gen51Code): more efficient parameter receive for --model-large
6513         ("bug" #845294)
6514
6515 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6516
6517         * src/ds390/main.c,
6518         * src/z80/main.c: added missed needLinkerScript flags (more than
6519         one port structure defined in these file)
6520         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6521         bug #795325
6522
6523 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6524
6525         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6526         * src/port.h: added flag needLinkerScript in port->linker
6527         structure to inform whether to create a .lnk file or not,
6528         * src/avr/main.c,
6529         * src/ds390/main.c,
6530         * src/hc08/main.c,
6531         * src/mcs51/main.c,
6532         * src/pic/main.c,
6533         * src/pic16/main.c,
6534         * src/xa51/main.c,
6535         * src/z80/main.c: changed appropriately to configure
6536         needLinkerScript flag
6537         * src/pic/gen.c,
6538         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6539         * src/pic/glue.c: added variable udata_section_name to
6540         override default uninitialized data segment definition for
6541         devices only with SHAREBANK memory (reported from Erik Epetrich)
6542         * (pic14emitOverlay): modified to emit a commented overlay segment
6543         directive when no overlay data exist
6544         * (picglue): modified to emit uninitialized data segment
6545         according to udata_section_name
6546         * src/pic/main.c (_pic14_parseOptions): added command line
6547         options --udata-section-name=[name] to override default
6548         udata definition name
6549         * modified _linkCmd and _asmCmd to include compiler passed
6550         arguments via -W option
6551         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6552         object file from '.rel' to '.o' in port->linker structure,
6553         changed size of fptr from 2 to 3 in port structure
6554
6555 2004-01-07  Borut Razem <borut.razem AT siol.net>
6556
6557         * support/scripts/sdcc.nsi: update PATH
6558         * support/scripts/sdcc.ico: craeted
6559
6560 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6561
6562         * device/include/Makefile.in: fix install
6563         * doc/Makefile: fix install
6564
6565 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6566
6567         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6568         in bug #860505
6569         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6570         how the function variable allocation summary is displayed; also
6571         include information about variables allocated to the overlay
6572         segment
6573
6574 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6575
6576         * as/mcs51/lkmain.c: Help about -Y option
6577         * as/mcs51/lkarea.c: Fixed gcc warnings
6578
6579 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6580
6581         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6582         fixed warning
6583         * support/valdiag/tests/overflow.c: added
6584         * src/SDCCast.c (decorateType),
6585         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6586         LEFT_OP (left shift)
6587
6588 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6589
6590         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6591         (default behaviour).
6592
6593 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6594
6595         A python script to validate compiler diagnostic messages. It can be
6596         used to verify that sdcc complains about bad c source code and
6597         gives a good location of the error.
6598         * support/valdiag/Makefile,
6599         * support/valdiag/valdiag.py,
6600         * support/valdiag/tests/*
6601
6602 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6603
6604         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6605         * src/SDCCsymt.c (newEnumType),
6606         * src/SDCCsymt.h
6607         * support/Util/SDCCerr.c,
6608         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6609         enum related bugs.
6610         * support/regression/tests/enum.c: added test for enum values that
6611         require at least 2 bytes of storage.
6612
6613 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6614
6615         * src/common.h: added ifndef/define/endif macros
6616         around the header file.
6617         Bug reported from Jesus Calvino-Fraga
6618
6619 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6620
6621         * sdcc.spec: updated
6622         * device/include/Makefile.in: don't install CVS directories
6623         * device/lib/Makefile.in: added removal of CVS directories after install
6624         * doc/Makefile: fixed install, added local_icons
6625         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6626         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6627         * src/ds390/gen.c (genRightShift): fixed bug #870788
6628         * src/SDCCast.c (decorateType): fixed bug #870781
6629
6630 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6631
6632         PIC16 port related changes:
6633         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6634         added variable stackPos,
6635
6636         * gen.c: genCall, assignResultValue: added support for
6637         pushing/retrieving function parameters to/from stack,
6638         genFunction,genEndFunction: setup stack frame for the
6639         generated function,
6640         genAddrOf: will be changed according to bug 863624
6641
6642         * added files genutils.c and genutils.h which contain gen*
6643         debugged and optimised functions extracted from gen.c
6644
6645         * glue.c: added variable 'externs' which holds extern symbols,
6646         pic16emitRegularMap: is modified to properly handle relocatable
6647          symbols under the new scheme,
6648         pic16createInterruptVect: is modified
6649         pic16printPublics: is modified to emit 'global' assembler directives,
6650         added pic16_printExterns to print extern symbols,
6651         pic16glue: initializes stack/frame pointer in the beginning of
6652         the assembly output. Temporary hack, will be corrected later,
6653         because gplink yet does not support stack and SDCC does not
6654         yet support a type of crt0.o object to create the final binary.
6655
6656         * Removed many lines that contain 8051 legacy code.
6657         * The code is finally placed under a 'code' directive.
6658         * Added port specific options.
6659
6660         * _process_pragma: simplified since now we do not need *special*
6661         include file to define SFR registers. But a separate header
6662         will be needed. This will be developed later.
6663         * _pic16_parseOptions: added, parses port specific options:
6664         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6665         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6666         --preplace-udata-with=
6667
6668         * _pic16_setDefaultOptions: modified to initialize section names,
6669         but hack is temporarly out of order since it needs improvement.
6670         * _pic16_genAssemblerPreamble: configuration words are emitted by
6671         their address instead of their name. This part is incomplete and
6672         supports only the 18Fxx2 devices. Other devices will emit an error
6673         during assembly since they do not contain the same set of config
6674         registers
6675         * _pic16_genIVT: is modified,
6676
6677         * pcode.c: added definitions for some hardware registers that are needed
6678         for stack support
6679         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6680         All PCI entries are updated. Now LFSR is supported.
6681         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6682         * added pic16_newpCodeOpLit2 to support instructions with
6683         two literal arguments
6684         * pic16_pCode2str: corrected code that emits assembler instructions
6685         with two literal operands and those that have an access bit modifier
6686         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6687         this fixes a bug which caused some labels to be lost, when an
6688         assembler directive was added, i.e. banksel,
6689         * pic16_FixRegisterBanking: improved logic that causes the insertion
6690         of bank switching,
6691         * InlineFunction: functions that are called once, are not any more
6692         inlined. This can be a port option in the future,
6693
6694         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6695
6696         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6697         hold the corresponding uninitialized symbols,
6698         * pic16_allocProcessorRegister: registers have explicit marked the
6699         accessBank field,
6700         * pic16_allocInternalRegister: registers are explicit marked as
6701         not used,
6702         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6703         processing list, so bit registers were lost,
6704         *
6705
6706         * ralloc.h: added field 'accessBank' and original symbol operand
6707         in register definition,
6708         * removed the field isMapped from register definition,
6709
6710         ** Several functions have been removed from various sources:
6711         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6712         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6713         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6714         pic16_assignRelocatableRegisters
6715
6716         ** others have been introduced:
6717         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6718         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6719
6720 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6721
6722         * support/scripts/inc2h.pl: changed definition of BIT_AT
6723         to emit 'sbit at' instead of 'bit at'. This was a request.
6724
6725         PIC16 port related preliminary changes:
6726         * gen.c: prefixed function popRegFromString with
6727         pic16_ and all references to it corrected
6728         * pcode.c: all pic16_pc_* hardware registers prefixed
6729         with underscore (_),
6730         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6731         * ralloc.c: newReg(): when register is REG_SFR then
6732         set address to rIdx,
6733         pic16_allocProcessorRegister(): marks register wasUsed=0
6734         pic16_writeUsedRegs(): added a call to assign processor
6735         registers via pic16_assignFixedRegisters
6736
6737 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6738
6739         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6740         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6741         variables in unused register banks.  Also the SSEG is placed
6742         wherever there is enough space for it, and IDATA can be anywhere
6743         in internal RAM.  For now compile using -Wl-Y[stack_size].
6744         The mem file is different for this option as well, since it
6745         makes no sense of talking about DSEG lenght.
6746
6747 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6748
6749         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6750         in certain cases, e.g. when ROM assignment, patch provided
6751         from Albert den Haan.
6752
6753 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6754
6755         Many signedness and type propagation fixes:
6756         * src/SDCCicode.c: made geniCodeCast() static
6757         replaced SPEC_ by IS_ (cosmetic)
6758         (operandOperation): fixed div and mod operation
6759         (usualBinaryConversions): added support for promotion of char
6760         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6761         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6762         (geniCodeAdd): an array index will stay unsigned, even if promoted
6763         from char to int
6764         (geniCodeArray): ditto
6765         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6766         * src/SDCCsymt.c (computeType): added more support for char;
6767         promotion of char is selectable by promoteCharToInt, fixed signedness
6768         for all cases
6769         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6770         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6771         * src/SDCCval (val*): replaced signedness calculation by
6772         computeType()
6773         rearranged if-branches (cosmetic)
6774         (valShift): added warning W_SHIFT_CHANGED
6775         (valCompare): fixed problem with different types
6776         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6777         * support/regression/tests/literalop.c: added many cases
6778         * support/regression/tests/ast_constant_folding.c: changed finally to
6779         'unsigned int'
6780         * .version: new year, new version: 2.3.7
6781         * src/SDCCmain.c (main): applied patch #866468
6782         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6783         provided by Scott Bronson
6784         * doc/sdccman.lyx: updated documentation for sdcdb
6785         updated and added chapter tips
6786
6787 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6788
6789         * src/SDCCsymt.h: missing from yesterday's commits
6790
6791 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6792
6793         * src/SDCC.y (struct_or_union_specifier),
6794         * support/Util/SDCCerr.c,
6795         * support/Util/SDCCerr.h: verify that struct & union tags are used
6796         as declared.
6797
6798 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6799
6800         * src/SDCCglobl.h: missing from yesterday's commits
6801
6802 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6803
6804         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6805         sft_attributes, struct_declaration, parameter_declaration,
6806         type_name, start_block, declaration_list),
6807         * src/SDCC.lex (check_type): support redefinition of typedef names
6808
6809 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6810
6811         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6812         aligned xdata arrays. Erik helped me with the if clause.
6813
6814 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6815
6816         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6817         warning
6818
6819 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6820
6821         * src/SDCCast.h,
6822         * src/SDCCast.c (newAst_),
6823         * src/SDCCicode.h,
6824         * src/SDCCicode.c (ast2iCode, newiCode),
6825         * src/SDCCglobl.h,
6826         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6827         expr, statement, expression_statement, selection_statement,
6828         iteration_statement, expr_opt, jump_statement): foundation for tracking
6829         sequence points
6830         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6831         point code too)
6832
6833 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6834
6835         * support/Util/SDCCerr.c,
6836         * src/SDCCast.h,
6837         * src/SDCCast.c (createCase, createDefault, decorateType),
6838         * src/SDCClabel.c (labelUnreach),
6839         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6840         to error messages.
6841         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6842         (with thanks to Stas Sergeev)
6843         * device/include/time.h,
6844         * device/lib/time.c (CheckTime): suppress unreachable code warning
6845
6846 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6847
6848         * src/SDCCast.c (createIvalCharPtr),
6849         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6850         bug #753752)
6851         * support/regression/tests/nullstring.c: tests for these two bugs
6852
6853 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6854
6855         * support/Util/SDCCerr.h,
6856         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6857         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6858         about storage class and 'at' used inside struct or union
6859         * src/SDCCBBlock.c (iCodeFromeBBlock),
6860         * src/SDCCcse.c (ifxOptimize),
6861         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6862         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6863         printIval, emitStaticSeg, emitOverlay),
6864         * src/SDCClabel.c (deleteIfx),
6865         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6866         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6867         gatherAutoInit, processParms),
6868         * support/Util/SDCCerr.h,
6869         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6870         reporting for post-parse errors.
6871
6872 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6873
6874         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6875         implicit casts via union; they don't work on big endian systems
6876         (possible fix for bug #861138)
6877
6878 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6879
6880         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6881         * src/mcs51/main.c: fixed the fix for bug #737001
6882
6883 2003-12-15  Borut Razem <borut.razem AT siol.net>
6884
6885         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6886
6887 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6888
6889         * support/makebin/makebin.c: put output in binary mode
6890
6891 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6892
6893         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6894         xdata and data memory on startup. Set the environment variable
6895         SDCC_NOGENRAMCLEAR to disable this.
6896         * src/mcs51/peephole.def,
6897         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6898         (allows non-interrupt and interrupt code to safely compete for a resource
6899         without the non-interrupt code having to disable interrupts)
6900
6901 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6902
6903         * src/SDCCicode.c (geniCodeAdd),
6904         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6905         with valFromType if type might be a pointer and host is big endian).
6906         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6907         types, not just integer types.
6908         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6909         multiply defined with mismatching "at" address.
6910
6911 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6912
6913         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6914         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6915         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6916         with embedded nulls (fixed bug #753752)
6917
6918 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6919
6920         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6921         Apparently this did not see much testing (endless loop)
6922
6923 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6924
6925         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6926
6927 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6928
6929         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6930         gracefully handle NULL memmap pointers
6931
6932 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6933
6934         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6935         instead of deleting the iCode when an operand is volatile
6936         * src/z80/gen.c (genDummyRead),
6937         * src/mcs51/gen.c (genDummyRead),
6938         * src/ds390/gen.c (genDummyRead),
6939         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6940         not just IC_RIGHT
6941         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6942         * src/SDCC.y: fixed bug #850420
6943
6944 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6945
6946         Applied z80 i/o port patch from Peter Townson and fixed some operators
6947         to better handle operands in A register.
6948         * device/include/z180.h
6949         * src/SDCC.y
6950         * src/SDCCglue.c
6951         * src/z80/gen.c
6952         * src/z80/gen.h
6953         * src/z80/main.c
6954         * src/z80/peeph-z80.def
6955         * src/z80/peeph.def
6956         * src/z80/z80.h
6957
6958 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6959
6960         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6961
6962 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6963
6964         * device/lib/hc08/_mullong.c: Removed extra #endif
6965
6966 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6967
6968         * sim/ucsim/hc08.src/inst.cc,
6969         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6970         carries from x to h
6971         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6972         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6973         * device/include/stdarg.h: fixed varargs for hc08
6974         * device/lib/Makefile.in,
6975         * device/lib/hc08/Makefile,
6976         * device/lib/hc08/_mulint.c,
6977         * device/lib/hc08/_mullong.c: fixed some endian problems
6978
6979 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6980
6981         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6982         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6983         * device/lib/_gptrget.c,
6984         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6985
6986 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6987
6988         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6989         * src/SDCCast.c (astErrors): fixed bug #846007
6990         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6991
6992 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6993
6994         * src/SDCCast.c (decorateType): disabled a transformation I added in
6995         revision 1.188 (access to fields of a structure at an absolute address);
6996         it breaks with bitfields, extern declarations, and gcse analysis.
6997         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6998         could be assigned through a pointer, so don't complain.
6999         * src/SDCCast.c (astErrors),
7000         * src/SDCCast.h,
7001         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7002
7003 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7004
7005         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7006         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7007         output of __config directives, since gpasm now supports them
7008         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7009         pre-processor macro, i.e. -DMCU=p18f452
7010         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7011         and modified to handle 'cast' icode similarly to '=' icode
7012         * src/pic16/device.h (typedef struct PIC_device): added field
7013         'extMIface' to indicate that chip has external memory interface
7014         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7015         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7016         18F8720
7017
7018 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7019
7020         * src/SDCC.y (pointer): fixed bug #846006
7021         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7022         * src/SDCCast.c (decorateType): fixed bug #846009
7023         * src/ds390/peeph.def,
7024         * src/ds390/gen.c (genAnd, genOr),
7025         * src/mcs51/peeph.def,
7026         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7027
7028 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7031         * src/SDCCdflow.c
7032         * src/SDCCcse.c
7033         * src/SDCCcse.h
7034         * src/SDCCBBlock.h
7035         * src/SDCCBBlock.c
7036
7037 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7038
7039         fixed bug #845089
7040         * src/SDCCbitv.h,
7041         * src/SDCCbitv.c: added function to free a bitvector
7042         * src/SDCClrange.h,
7043         * src/SDCClrange.c: added function to recompute the liveranges
7044         * src/avr/ralloc.c,
7045         * src/ds390/ralloc.c,
7046         * src/hc08/ralloc.c,
7047         * src/mcs51/ralloc.c,
7048         * src/pic/ralloc.c,
7049         * src/pic16/ralloc.c,
7050         * src/xa51/ralloc.c,
7051         * src/z80/ralloc.c: recompute the liveranges after register packing
7052
7053 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7054
7055         * src/SDCCloop.c (newInduction): fixed bug #845630
7056
7057 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7058
7059         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7060         inadvertantly left behind from my 2003-11-12 change
7061
7062 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7063
7064         Updated headers I neglected to commit yesterday.
7065         * src/SDCClrange.h,
7066         * src/SDCCicode.h
7067
7068 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7069
7070         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7071         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7072         * src/SDCCopt.c (eBBlockFromiCode),
7073         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7074         the creation of the key hash table from the sequencing so it can be used
7075         earlier (for some GCSE bug fixes still pending)
7076
7077 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7078
7079         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7080         * support/regression/tests/addsub.c: testing genPlus shortcut
7081
7082 2003-11-15  Borut Razem <borut.razem AT siol.net>
7083
7084         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7085
7086 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7087
7088         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7089         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7090         ordering is immaterial.
7091         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7092
7093 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7094
7095         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7096         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7097         (SIGSEV) of bug #840381
7098         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7099         unlink new file before rename if new and old filenames are the same)
7100
7101 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7102
7103         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7104         uninitialized variables) for the mcs51. Set environment variable
7105         SDCC_GENRAMCLEAR to test.
7106         xdata initialization slightly shorter
7107
7108 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7109
7110         * src/SDCCsymt.h,
7111         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7112         #838241 & 780691 (basicly the same bug)
7113         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7114         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7115
7116 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7117
7118         * src/SDCCmain.c (linkEdit): "fix" #834252
7119
7120 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7121
7122         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7123         * src/SDCCast.h,
7124         * src/SDCC.y: fixed bug #819403
7125
7126 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7127
7128         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7129         the reentrant attribute.
7130         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7131         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7132         simulation
7133         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7134         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7135         erroneously reduced to a literal.
7136         * src/hc08/ralloc.c (packRegisters, rematStr),
7137         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7138         some cases
7139
7140 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7141
7142         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7143         * doc/sdccman.lyx: changed from 'article' to 'book'
7144         * doc/Makefile: readded test_suite_spec and cdbfileformat
7145
7146 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7147
7148         * device/include/stdlib.h: include malloc.h to comply with ANSI
7149         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7150
7151 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7152
7153         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7154         * doc/clean.mk: also remove *.out files
7155         * doc/sdccman.lyx: some additions, larger top/bottom margins
7156
7157 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7158
7159         * src/SDCC.y: fixed bug #837365
7160         * support/regression/tests/bitopcse.c
7161         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7162         a symbol (might be valop instead)
7163         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7164         * device/lib/clean.mk: added hc08 to the cleaning list
7165
7166 2003-11-04  Borut Razem <borut.razem AT siol.net>
7167
7168         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7169           made 2003-11-04
7170         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7171           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7172           malloc is declared in standard stdlib.h
7173
7174 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7175
7176         * device/lib/hc08/Makefile: need to clean .rel not .o files
7177         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7178
7179 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7180
7181         * src/port.h,
7182         * src/hc08/main.c,
7183         * src/mcs51/main.c,
7184         * src/ds390/main.c,
7185         * src/z80/main.c,
7186         * src/avr/main.c,
7187         * src/pic/main.c,
7188         * src/pic16/main.c,
7189         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7190         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7191         tests (which uses the port's oclsExpense function)
7192         * src/SDCC.y,
7193         * src/SDCCast.c,
7194         * src/SDCCicode.c,
7195         * src/hc08/gen.c,
7196         * src/ds390/gen.c,
7197         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7198
7199 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7200
7201         * src/SDCCcse.c (ifxOptimize),
7202         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7203         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7204         deleting the IFX iCode.
7205         * src/hc08/ralloc.c: reduced unneeded slocs
7206         * src/hc08/gen.c: fixed bug in asmopToBoolean
7207
7208 2003-11-04  Borut Razem <borut.razem AT siol.net>
7209
7210         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7211           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7212           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7213           transferred to configure
7214
7215 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7216
7217         Use headers defined in the C[++] standards:
7218         * sim/ucsim/gui.src/serio.src/fileio.cc
7219         * sim/ucsim/gui.src/serio.src/frontend.cc
7220         * sim/ucsim/gui.src/serio.src/main.cc
7221         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7222         * support/Util/NewAlloc.c
7223         * as/hc08/lklibr.c
7224         * as/mcs51/lklibr.c
7225         * as/z80/aslist.c
7226         * as/z80/assym.c
7227
7228 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7229
7230         * Added MSVC projects for hc08 assembler and linker:
7231         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7232         /as/hc08/link_hc08.dsp
7233
7234 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7235
7236         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7237
7238 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7239
7240         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7241
7242 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7243
7244         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7245
7246 2003-10-31  Borut Razem <borut.razem AT siol.net>
7247
7248         * support/cpp2/cpplib.h,
7249           support/cpp2/cpplib.c,
7250           support/cpp2/cpplex.c,
7251           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7252           to switch _asm block preprocessing on / off. Default is
7253           #pragma preproc_asm +
7254
7255 2003-10-31  Borut Razem <borut.razem AT siol.net>
7256
7257         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7258           when outputting comment blocks (when executed with -C option) and
7259           _asm (SDCPP specific) blocks
7260
7261 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7262
7263         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7264
7265 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7266
7267         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7268
7269 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7270
7271         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7272         * src/SDCCast.c (decorateType): fixed bug #832664
7273
7274 2003-10-31  Borut Razem <borut.razem AT siol.net>
7275
7276         * support\cpp2\cpplex.c: fixed for SDCPP:
7277           comments(when executed with -C option) and _asm blocks
7278           were included even if they where in skipped #if block.
7279           Applied solution from GCC cpp 3.3.2
7280
7281 2003-10-31  Borut Razem <borut.razem AT siol.net>
7282
7283         * src/SDCC.lex: sdcc now understands both formats:
7284           '# <line_number> <file_name>' and
7285           '#line <line_number> <file_name>'
7286         * support/cpp2/cppmain.c: sdcpp now generates the standard
7287           '# <line_number> <file_name>' instead of former
7288           '#line <line_number> <file_name>'
7289
7290 2003-10-30  Borut Razem <borut.razem AT siol.net>
7291
7292         * support/cpp2/cpphash.h,
7293         * support/cpp2/cpplib.h
7294         * support/cpp2/cpplex.c,
7295         * support/cpp2/cppmain.c,
7296         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7297
7298 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7299
7300         Fixed a number of problems revealed by bug #827883.
7301         * src/SDCCloop.c (loopInvariants): Spill location of the
7302         result operand should be recomputed if extracted from
7303         a loop. Also, don't extract assignments of an iTemp
7304         from a literal.
7305         * src/SDCCast.c (isConformingBody): loop reversal should
7306         not occur if the control variable is involved with a
7307         relational operator.
7308
7309 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7310
7311         * .version: bumped to 2.3.6 to reflect the big improvements
7312         made by Erik and Klaus. Thanks!
7313
7314 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7315
7316         Replaced the livrange code.
7317         * src/SDCClrange.c: added new LR code
7318         * src/SDCCloop.c,
7319         * src/SDCCBBlock.h: removed remainig parts from old LR code
7320         * src/ds390/ralloc.c,
7321         * src/ds390/gen.c: minor fixes to make it work with new code
7322
7323 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7324
7325         * as/hc08/asm.h,
7326         * as/hc08/lkrloc.c,
7327         * src/hc08/gen.c,
7328         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7329         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7330         (tweaked fix for bug #818696)
7331
7332 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7333
7334         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7335
7336 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7337
7338         * src/SDCCmain.c,
7339         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7340         * src/mcs51/gen.c (gencjneshort),
7341         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7342         more efficient (per Scott Bronson's suggestion)
7343
7344 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7345
7346         Extended the semantics of the critical keyword to include
7347         individual statements. See RFE #827755 and #799831
7348         * src/SDCC.y
7349         * src/SDCCicode.c
7350         * src/SDCCopt.c
7351         * src/SDCCast.c
7352         * support/Util/SDCCerr.c
7353         * support/Util/SDCCerr.h
7354         * src/mcs51/gen.c
7355         * src/ds390/gen.c
7356         * src/hc08/gen.c
7357
7358 2003-10-19  Borut Razem <borut.razem AT siol.net>
7359
7360         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7361
7362 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7363
7364         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7365         Fixed bug #818696
7366         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7367         and predecrement operand is displayed
7368
7369 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7370
7371         * src/SDCCval.c (valMinus): fixed bug #826041
7372
7373 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7374
7375         Some hc08 related updates that I missed earlier
7376         * sim/ucsim/stypes.h
7377         * support/regression/ports/hc08/spec.mk
7378
7379 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7380
7381         New target "hc08" for the Motorola 68hc08 family of micros
7382
7383         * configure
7384         * configure.in
7385         * Makefile
7386         * src/hc08/*
7387         * src/SDCCmain.c
7388         * src/port.h
7389         * sim/ucsim/hc08.src/*
7390         * sim/ucsim/configure.in
7391         * src/ucsim/configure
7392         * sim/ucsim/packages_in.mk
7393         * as/hc08/*
7394         * as/Makefile
7395         * device/include/mc68hc908qy.h
7396         * device/lib/hc08/*
7397         * device/lib/Makefile.in
7398         * support/regression/ports/hc08/*
7399         * support/regression/Makefile
7400
7401 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7402
7403         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7404         regression test
7405         * src/ds390/gen.c (genCast): fixed bug #821957
7406
7407 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7408
7409         * device/lib/logf.c: "fixed" overlay bug
7410         * support/regression/ports/host/spec.mk: added m library
7411         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7412         * support/regression/tests/float_trans: added (for Eric)
7413
7414 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7415
7416         * src/mcs51/gen.c (genCpl): fixed bug
7417         http://sf.net/mailarchive/message.php?msg_id=6263915
7418
7419 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7420
7421         * src/SDCCast.c (decorateType): added extended constant folding
7422         * src/SDCCsymt.c (computeType): cleanup
7423         * src/SDCCval.c (valShift): minor optimization
7424         * support/regression/tests/ast_constant_folding.c: added
7425
7426 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7427
7428         * src/SDCCmain.c: removed some unintended changes
7429
7430 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7431
7432         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7433         * src/z80/gen.c: fixed part of bug #817589
7434         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7435
7436 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7437
7438         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7439         * src/SDCCcflow.c
7440         * src/SDCCcse.c
7441         * src/SDCCdflow.c
7442         * src/SDCClabel.c
7443         * src/SDCClrange.c
7444         * src/SDCCmem.c
7445         * src/SDCCopt.c
7446         * src/SDCCpeeph.c
7447         * src/SDCCset.c
7448         * src/avr/ralloc.c
7449         * src/ds390/ralloc.c
7450         * src/izt/ralloc.c
7451         * src/mcs51/ralloc.c
7452         * src/pic/ralloc.c
7453         * src/pic16/ralloc.c
7454         * src/xa51/ralloc.c
7455         * src/z80/ralloc.c
7456         * src/z80/gen.c: removed unused label "release:"
7457
7458 2003-10-06  Borut Razem <borut.razem AT siol.net>
7459
7460         * src/SDCC.lex: removed definition of unused variables
7461           save_optimize and save_options
7462
7463 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7464
7465         * clean.mk: removed '=' in "-maxdepth=1"
7466         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7467         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7468
7469 2003-10-06  Borut Razem <borut.razem AT siol.net>
7470
7471         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7472           my_unput() replaced by unput()
7473
7474 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7475
7476         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7477         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7478         type-punned pointer will break strict-aliasing rules"
7479         Old LR behaviour is again default; Klaus' LR can be choosen by
7480         defining the environment variable LRKLAUS
7481         * src/SDCCBBlock.h
7482         * src/SDCCloop.c
7483         * src/SDCClrange.c
7484         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7485         * clean.mk: fixed removal of files in bin/CVS/
7486         * device/lib/clean.mk: fixed removal of directories small and large
7487         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7488         * src/SDCCicode.c,
7489         * src/SDCCval.c: removed superflous test for pedantic
7490
7491 2003-10-05  Borut Razem <borut.razem AT siol.net>
7492
7493         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7494           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7495           message "unmatched #pragma SAVE and #pragma RESTORE"
7496
7497 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7498
7499         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7500           assembly, critical functions, atomic, nojtbound)
7501
7502 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7503
7504         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7505         * src/SDCCBBlock.h
7506         * src/SDCCloop.c
7507         * src/SDCCloop.h
7508         * src/SDCClrange.c
7509
7510 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7511
7512         * src/z80/gen.h,
7513         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7514         * src/mcs51/gen.h
7515         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7516         * src/ds390/gen.h
7517         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7518         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7519         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7520
7521 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7522
7523         * src/z80/gen.c (genRet): fixed bug #524753
7524         * src/z80/gen.c (genCast): fixed internal error on cast from
7525         pointer to long
7526         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7527         fix for bug #477835 to the z80
7528         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7529         for tracking iCodes in the peephole optimizer for z80
7530
7531 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7532
7533         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7534         the other part of bug #814548
7535         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7536
7537 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7538
7539         * src/SDCCcse.c: fixed part of bug #814548
7540
7541 2003-09-28  Borut Razem <borut.razem AT siol.net>
7542
7543         * src/asm.c: rewrite of printILine() to use temporary file instead
7544           a pipe
7545         * src/xa51/main.c: commented out declaration of int rewinds
7546
7547 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7548
7549         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7550
7551 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7552
7553         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7554         * src/asm.c (printILine): Fixed bug #811015
7555
7556 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7557
7558         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7559         freeing.
7560
7561 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7562
7563         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7564         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7565         to correctly handle general case of AOP_PAIRPTR
7566         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7567
7568 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7569
7570         * src/mcs51/ralloc.c (fillGaps),
7571         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7572         register positioning bug)
7573
7574 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7575
7576         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7577
7578 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7579
7580         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7581         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7582         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7583         (ralloc doesn't intentionally do this now, but perhaps later)
7584         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7585         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7586         register positioning bugs (Fixed bug #762602 and #795325)
7587         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7588         (Fixed bug #808779)
7589         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7590         lines that --i-code-in-asm generates
7591
7592 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7593
7594         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7595         trying to fclose a FILE* that was already closed.
7596
7597 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7598
7599         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7600         of const struct should be treated as if const themselves)
7601
7602 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7603
7604         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7605
7606 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7607
7608         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7609         Unix (/n) and DOS (/r/n) line terminations.
7610
7611 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7612
7613         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7614         bug #613775
7615
7616 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7617
7618         * src/mcs51/gen.c (genFunction, genEndFunction),
7619         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7620         and restore of EA so that stack offsets to parameters are
7621         correct when using both critical and reentrant/stack-auto.
7622         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7623         size (can be triggered in error if sloc is shared between
7624         different sized objects)
7625         * device/include/float.h: fixed macros to explicitly use
7626         unsigned long where needed
7627
7628 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7629
7630         Feature req. 799831: added code to allow nesting of critical functions
7631         * src/mcs51/gen.c (genFunction, genEndFunction)
7632         * src/ds390/gen.c (genFunction, genEndFunction)
7633
7634 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7635
7636         * src/SDCCsymt.c (sclsFromPtr),
7637         * src/SDCCsymt.h,
7638         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7639         support for standard C idiom of memory mapped variables; for
7640         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7641         to xdata int at 0x1234 tempvar = 1.
7642         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7643         provided by Akiya ISHIDA
7644
7645 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7646
7647         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7648         * src/SDCCval.c (constVal): added reduction from int to char
7649         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7650         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7651         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7652         to ignore the sign
7653         * support/regression/tests/shifts.c: fixed
7654
7655 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7656
7657         * src/z80/gen.c (genXor): Fixed bug #805445
7658
7659 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7660
7661         Fixed bug #621531 (const & volatile confusion in the type chain).
7662         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7663         refer to the const or volatile state of the pointer itself.
7664
7665         * src/SDCCast.c
7666         * src/SDCCglue.c
7667         * src/SDCCicode.c
7668         * src/SDCCsymt.c
7669         * src/SDCCval.c
7670         * src/SDCC.y
7671         * src/SDCCsymt.h
7672         * src/pic/gen.c
7673         * src/pic/ralloc.c
7674         * src/pic16/gen.c
7675         * src/pic16/ralloc.c
7676         * support/regression/tests/const.c
7677
7678 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7679
7680         When checking for duplicated modules, use absolute paths
7681         instead of relative paths.  Files changed:
7682
7683         * as/mcs51/lklib.c
7684         * link/z80/lklib.c
7685
7686 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7687
7688         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7689
7690 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7691
7692         * device/include/string.h: added size_t typedef, changed
7693         prototypes to use size_t, eliminated separate reentrant and
7694         non-reentrant declarations, added _memmove declaration
7695         * device/lib/_memcpy.c: changed to use size_t instead of int,
7696         changed /4 to >>2 to avoid division library call
7697         * device/lib/_memcmp.c,
7698         * device/lib/_memset.c,
7699         * device/lib/_strncat.c,
7700         * device/lib/_strncpy.c,
7701         * device/lib/_strncmp.c: changed to use size_t instead of int
7702         * device/lib/_memmove.c: new file (fixed bug #772294)
7703         * device/lib/Makefile.in: added _memmove.c
7704         * device/lib/z80/asm_strings.s: fixed bug #772290
7705         * support/regression/tests/bitfields.c: attempt to fix host assertion
7706         failure on amd64-unknown-linux2.2
7707
7708 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7709
7710         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7711         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7712         * as/z80/asmain.c (main): fixed bug #801766
7713
7714 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7715
7716         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7717         compilers
7718
7719 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7720
7721         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7722         reported in bug #800609
7723
7724 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7725
7726         * Top header beautifications in src/pic16 directory:
7727           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7728           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7729           pcoderegs.h, ralloc.c, ralloc.h
7730         * main.c: added top header and GPL license notice
7731         * pcode.c: fixed the if-conditional warning
7732
7733 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7734
7735         * device/lib/_mullong.c: replaced int by short for gcc
7736
7737 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7738
7739         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7740         and JUMPTABLE iCodes properly now (worked by accident before)
7741         * src/mcs51/gen.c (leftRightUseAcc),
7742         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7743         iCode properly now. Use getSize instead of nRegs since a & b
7744         aren't part of the nRegs tally.
7745
7746 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7747
7748         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7749         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7750           before instructions that use the _STATUS register
7751
7752 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7753
7754         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7755         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7756         fetching of the pointer
7757         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7758         copied from genNearPointerSet()
7759         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7760         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7761         If they pop r0/r1 they must be called in the opposite order than aopOp().
7762         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7763         (resp. --stack-auto), prepared for --xstack
7764
7765 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7766
7767         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7768
7769 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7770
7771         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7772         these ports have their own __sdcc_external_start()
7773
7774 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7775
7776         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7777         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7778         type for bits was changed. It resulted in bit variables becoming
7779         global, which is not permitted in PIC 14 assembly output.
7780
7781 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7782
7783         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7784
7785 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7786
7787         Z80 and MCS51 linkers complaint if a public symbol is defined
7788         in more than one library module:
7789
7790         * as/mcs51/lklib.c
7791         * link/z80/lklib.c
7792         * as/mcs51/Makefile.in
7793
7794 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7795
7796         A few small changes that speed up the peephole optimizer.
7797
7798         * src/SDCCpeeph.c
7799
7800 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7801
7802         Try to make the peephole optimizer smarter by maintaining
7803         an association between the assembly source code and the
7804         iCodes that originated them. Put this information to use
7805         with a new peephole rule condition "notVolatile" so that
7806         the rules can be aggressive yet still safe.
7807
7808         * src/SDCCpeeph.c
7809         * src/SDCCpeeph.h
7810         * src/mcs51/gen.c
7811         * src/mcs51/peeph.def
7812
7813 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7814
7815         Fixed bug #741761
7816
7817         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7818         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7819         if the left or right operand symbols have the accuse flag set.
7820
7821 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7822
7823         Changed the type of the result of the ! (NOT) operator to char;
7824         previously it returned the same type as the source. This allows
7825         us to eliminate all the genFloatNot functions (all of its target
7826         implementations were very buggy) since !float can use the same
7827         code as !long now.
7828
7829         * src/SDCCicode.c (ast2iCode): ! returns char
7830         * src/mcs51/gen.c (genNot, genNotFloat),
7831         * src/ds390/gen.c (genNot, genNotFloat),
7832         * src/z80/gen.c (genNot, genNotFloat),
7833         * src/pic/gen.c (genNot, genNotFloat),
7834         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7835
7836 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7837
7838         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7839         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7840            during interrupts. Ensure WSAVE is located at a shared bank address.
7841         2. Fixed page selection in some places
7842         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7843            the registers name strings.
7844         4. Fixed "signed / unsigned compare" compiler warnings.
7845         5. The PIC port manages its own allocation of the general purpose
7846            registers, but makes no attempt to reuse them. As a result when
7847            compiling it soon runs out of general purpose registers. Some
7848            additional code was added to the files pcode.c and device.c to walk
7849            through the function call tree and rename the registers so that they
7850            get reused.
7851
7852         * src/pic/device.c
7853         * src/pic/gen.c
7854         * src/pic/glue.c
7855         * src/pic/pcode.c
7856         * src/pic/pcode.h
7857         * src/pic/ralloc.c
7858         * src/pic/ralloc.h
7859         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7860         genPlus() & genMinus() when the result is the same as left or right
7861
7862 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7863
7864         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7865
7866 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7867
7868         Made bitfield a distinct type from bit so that bitfields
7869         convert as per ANSI C and bits retain their traditional
7870         boolean style behaviour. Implemented bitfield support in
7871         the z80 port.
7872
7873         * src/SDCCsymt.h,
7874         * src/SDCCsymt.c,
7875         * src/SDCCast.c,
7876         * src/cdbFile.c,
7877         * src/mcs51/gen.c,
7878         * src/ds390/gen.c: bit v bitfield split
7879         * src/z80/gen.c: New support for bitfields
7880         * support/regression/tests/bitfields.c: reenabled z80,
7881         added more tests
7882
7883 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7884
7885         Rules 246.x, 247.x relate to bitfields, the others speed up
7886         access to xdata mapped I/O devices.
7887
7888         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7889
7890 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7891
7892         Cleaned up genPackBits and genUnpackBits and added two helper
7893         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7894         for literal assignments in genPackBits (thanks to Frieder for
7895         reminding me).
7896
7897         * src/mcs51/gen.c
7898         * src/ds390/gen.c
7899
7900 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7901
7902         Fixed bug #748310 (pointer to function type mishandled when the
7903         function name is omitted). Also fixed a SIGSEGV when a function
7904         attribute (reentrant, etc) is used on a non-function or on a
7905         function but misplaced before the parameter list.
7906
7907         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7908         bug #748310
7909         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7910         * support/Util/SDCCerr.h,
7911         * support/Util/SDCCerr.c: Added func attr misuse error msg
7912
7913 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7914
7915         Fixed bug #787649 by anonymous
7916         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7917         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7918
7919 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7920
7921         Fixed numerous bitfield problems.
7922
7923         * src/SDCC.y: More bitfield related error checking
7924         * src/SDCCsymt.h,
7925         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7926         * support/Util/SDCCerr.h,
7927         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7928         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7929         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7930         * support/regression/tests/bitfields.c: tests added
7931
7932 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7933
7934         Made the constant following the "interrupt" keyword optional. If
7935         omitted, the function will not automatically be given an entry
7936         in the interrupt vector table (similar to #pragma NOIV, but
7937         less syntacticly kludgy). The interrupt number is also now
7938         range checked. Also fixed a bug in the high order bit example
7939         in the manual.
7940
7941         * src/SDCC.y
7942         * src/SDCCmem.c
7943         * src/SDCCglue.c
7944         * src/SDCCsymt.h
7945         * support/Util/SDCCerr.c
7946         * support/Util/SDCCerr.h
7947         * doc/sdccman.lyx
7948
7949 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7950
7951         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7952         * src/SDCCicode.c (operandOperation): rewritten some ops
7953         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7954         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7955         other type
7956         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7957         be re-activated by defining REDUCE_LITERALS)
7958         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7959         unsigned, but are signed by default
7960         * src/SDCCval.c (constVal): rearranged
7961         * src/SDCCval.c (valMod): preliminary fix
7962         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7963         * support/regression/literalop.c: added, work in progress
7964
7965 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7966
7967         Generate warnings for useless declarations like "char data;"
7968         that don't do what new users expect.
7969
7970         * src/SDCC.y
7971         * support/Util/SDCCerr.h
7972         * support/Util/SDCCerr.c
7973
7974 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7975
7976         * src/SDCCval.c (valMult): fix overflow detection of negative int
7977
7978 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7979
7980         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7981
7982         Changes to support big endian targets:
7983
7984         * src/ports.h
7985         * src/SDCCglue.c
7986         * src/avr/main.c
7987         * src/ds390/main.c
7988         * src/izt/i186.c
7989         * src/mcs51/main.c
7990         * src/pic/main.c
7991         * src/pic16/main.c
7992         * src/xa51/main.c
7993         * src/z80/main.c
7994
7995 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7996
7997         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7998         * device/lib/time.c: fixed warning "integer overflow in expression"
7999
8000 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8001
8002         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8003         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8004         constants are unsigned; added recognition of "u" flag for unsigned
8005         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8006         * src/SDCCval.c (valDiv, valMod): fixed signdness
8007         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8008         signedness of modulo, left and right shift
8009         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8010         * support/Util/SDCCerr.h: added warning W_INT_OVL
8011         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8012         * src/SDCCast.c (ast_print): improved output of constants
8013
8014 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8015
8016         Fixed some warnings when building with MSVC:
8017
8018         * as\mcs51\asdata.c
8019         * as\z80\asdata.c
8020         * as\mcs51\asm.h
8021         * as\z80\asm.h
8022         * link\z80\aslink.h
8023         * link\z80\lkdata.c
8024         * link\z80\lkeval.c
8025         * link\z80\lkgb.c
8026         * link\z80\lkihx.c
8027         * link\z80\lks19.c
8028         * link\z80\lksym.c
8029         * support\cpp2\cpplib.c
8030         * src\ds390\gen.c
8031         * src\mcs51\gen.c
8032
8033 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8034
8035         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8036
8037 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8038
8039         * support\librarian\clean.mk: Do not remove Makefile.
8040         * support\librarian\Makefile: added.
8041
8042 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8043
8044         Added librarian to MSVC build:
8045         * all.dsp
8046         * sdcc.dsw
8047         * support\librarian\librarian.dsp
8048
8049         'configure' not needed for librarian, removed:
8050         * support\librarian\configure
8051         * support\librarian\configure.in
8052         * support\librarian\config_in.h
8053         * support\librarian\Makefile.in
8054
8055         Hopefully these ones built the librarian and the rest of sdcc properly:
8056         * Makefile
8057         * Makefile.common.in
8058
8059         Messed up 'configure', so revert to previous version:
8060         * configure
8061         * configure.in
8062
8063 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8064
8065         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8066         there, while the mantissa of a double is "only" 53 bits wide.
8067
8068 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8069
8070         Adding sdcclib to the build.  MSVC project coming soon.
8071         Files added/changed:
8072
8073         * support\librarian\clean.mk
8074         * support\librarian\configure
8075         * support\librarian\configure.in
8076         * support\librarian\config_in.h
8077         * support\librarian\Makefile.bcc
8078         * support\librarian\Makefile.in
8079         * support\librarian\sdcclib.c
8080         * Makefile.bcc
8081         * Makefile
8082         * Makefile.common.in
8083         * configure
8084         * configure.in
8085
8086 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8087
8088         Linker now complaints if linked modules have conflicting options, for
8089         example, one compiled using --model-large and another one compiled with
8090         --model-small.  The following files were modified:
8091
8092         * as\mcs51\asdata.c
8093         * as\mcs51\aslink.h
8094         * as\mcs51\asm.h
8095         * as\mcs51\asmain.c
8096         * as\mcs51\asout.c
8097         * as\mcs51\i51pst.c
8098         * as\mcs51\lkdata.c
8099         * as\mcs51\lklibr.c
8100         * as\mcs51\lkmain.c
8101         * as\z80\asdata.c
8102         * as\z80\asm.h
8103         * as\z80\asmain.c
8104         * as\z80\asout.c
8105         * as\z80\z80pst.c
8106         * link\z80\aslink.h
8107         * link\z80\lkdata.c
8108         * link\z80\lklibr.c
8109         * link\z80\lkmain.c
8110         * src\SDCCglue.c
8111
8112 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8113
8114         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8115         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8116
8117 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8118
8119         * src/z80/mappings.i: fix _mul[us][int,long] entries
8120
8121 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8122
8123         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8124
8125 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8126
8127         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8128         * support/regression/tests/bitopcse.c: added
8129         fixed warning:
8130         * src/avr/gen.c:
8131         * src/pic/gen.c:
8132         * src/pic16/gen.c:
8133         * src/z80/gen.c:
8134         * src/xa51/gen.c:
8135
8136 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8137
8138         added support for new library format to z80, gbz80 linkers:
8139         *link/z80/aslink.h
8140         *link/z80/lklex.c
8141         *link/z80/lklib.c
8142         *link/z80/lklist.c
8143
8144 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8145
8146         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8147         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8148
8149 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8150
8151         added DUMMY_READ_VOLATILE:
8152         * src/SDCC.y:
8153         * src/avr/gen.c:
8154         * src/xa51/gen.c:
8155         * src/z80/gen.c:
8156         * src/pic/gen.c:
8157         * src/pic16/gen.c:
8158         * src/mcs51/gen.c:
8159         * src/ds390/gen.c:
8160         * src/SDCCcse.c (algebraicOpts): many improvements
8161         * src/SDCCcse.h: removed algebraicOpts()
8162         * src/SDCCicode.c (picDummyRead): added
8163
8164 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8165
8166         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8167         "Insufficient space in data memory".
8168
8169 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8170
8171         * src/mcs51/gen.c: fixed bug #771358
8172         * src/z80/gen.c: fixed bug #759087
8173
8174 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8175
8176         * src/pic16/glue.c: minor cleanup by Vangelis
8177
8178 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8179
8180         * device/include/regc515c.h: fixed #758477
8181         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8182         * device/lib/_gptrput.c: saved a few bytes
8183         * my tab spacing is 8, yours too?)
8184         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8185         * device/lib/serial.c: process RX bytes earlier than TX bytes
8186         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8187
8188 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8189
8190         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8191
8192 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8193
8194     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8195
8196 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8197
8198         * device/lib/Makefile.in: bad fix, reverted to 1.43
8199
8200 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8201
8202         * device/lib/Makefile.in: added missing z80 object files
8203
8204 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8205
8206         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8207         pic16 progress by Vangelis:
8208         * src/SDCCglobl.h:
8209         * src/SDCCmain.c:
8210         * src/pic/Makefile:
8211         * src/pic:
8212         * pic/Makefile:
8213         * pic16/device.c:
8214         * pic16/device.h:
8215         * pic16/gen.c:
8216         * pic16/gen.h:
8217         * pic16/genarith.c:
8218         * pic16/glue.c:
8219         * pic16/main.c:
8220         * pic16/pcode.c:
8221         * pic16/pcode.h:
8222         * pic16/pcodepeep.c:
8223         * pic16/peeph.def:
8224
8225 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8226
8227     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8228
8229 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8230
8231     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8232     added gbz80 build to MSVC project.
8233     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8234     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8235     from 8051 stuff and setup so it links using a .lnk file.
8236
8237 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8238
8239     * support/librarian/sdcclib.c: sdcc librarian.
8240     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8241     with sdcclib.
8242
8243 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8244
8245     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8246
8247 2003-07-02  Borut Razem <borut.razem AT siol.net>
8248
8249         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8250         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8251         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8252         src/xa51/main.c, src/z80/main.c:
8253         virtualization of glue() function: each port has it's own glue function,
8254         which is accessed by do_glue function pointer in PORT.general structure
8255
8256 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8257
8258         * DS800C400 fun, improved ROM interface and tinibios.
8259
8260 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8261
8262         * More support for DS80C400. Now includes beginning of interface to ROM.
8263
8264 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8265
8266         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8267
8268 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8269
8270         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8271
8272 2003-06-19  Borut Razem <borut.razem AT siol.net>
8273
8274         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8275
8276 2003-06-19  Borut Razem <borut.razem AT siol.net>
8277
8278         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8279         fixed Z80 port - crt0.o: cannot open.
8280
8281 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8282
8283         * support/Util/MySystem.c (merge_command): revert bad fix
8284
8285 2003-06-18  Borut Razem <borut.razem AT siol.net>
8286
8287         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8288
8289 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8290
8291         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8292         option --use-stdout sends errors to stdout instead of stderr.
8293
8294 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8295
8296         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8297
8298 2003-06-15  Borut Razem <borut.razem AT siol.net>
8299
8300         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8301         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8302         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8303         fixed width array of pointers replaced with sets;
8304         multiple include and lib paths ared transferred to preprocessor and linker
8305         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8306         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8307         fixed width array of pointers
8308         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8309         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8310         fixupPath(), getPathDifference()
8311         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8312         fixed width array of pointers
8313
8314 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8315
8316         * src/pic16/ralloc.c: fix warnings
8317         * src/pic16/pcode.c: fix warning
8318
8319 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8320
8321          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8322         know all the details, but essentially this set of changes enable
8323         the pic16 port to generate movff instructions and generate assembler
8324         directives,
8325         * src/SDCCmain.c:
8326         * src/pic16/gen.c:
8327         * src/pic16/glue.c:
8328         * src/pic16/pcode.c:
8329         * src/pic16/device.c:
8330         * src/pic16/main.c:
8331         * src/pic16/pcode.h:
8332         * src/pic16/pcoderegs.c:
8333         * src/pic16/ralloc.c:
8334         * src/pic16/ralloc.h:
8335
8336 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8337
8338         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8339         added option --vc, so sdcc errors and warnings are compatible with
8340         Microsoft Visual Studio.
8341
8342 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8343
8344         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8345           device/lib/libfloat.lib: added atof function.
8346
8347 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8348
8349         * doc/sdccman.lyx: updated to Lyx 1.3
8350         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8351         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8352         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8353
8354 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8355
8356         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8357
8358 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8359
8360         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8361           additions to the "related tools/documentation" section
8362
8363 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8364
8365         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8366
8367 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8368
8369         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8370         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8371
8372 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8373
8374         * doc/sdccman.lyx: fix double dash and other minor things
8375         * doc/Makefile: fix double dash
8376
8377 2003-05-28  Karl Bongers(patches from Martin Helmling)
8378         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8379           condition and ignore commands.
8380
8381 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8382
8383         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8384           is in parts still quite out of date, I did changes as far as I felt makes sense
8385           for a non-native english speaker.
8386           Please feel free to add to the manual or to correct my changes.
8387         * doc/Makefile: undid touching the date of intermediate tex files.
8388
8389 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8390
8391         * doc/sdccman.lyx: Manual has an index now
8392
8393 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         Finalize muluint/mulsint and mululong/mulslong merging:
8396         * device/lib/_mulint.c
8397         * device/lib/_mullong.c
8398         * device/lib/gbz80/mul.s
8399         * device/lib/gbz80/stubs.s
8400         * device/lib/z80/mul.s
8401         * device/lib/z80/stubs.s
8402         * src/SDCCsymt.c (initCSupport)
8403
8404 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8405
8406         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8407         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8408           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8409           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8410           instead of /Zm500.
8411
8412 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8413
8414         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8415           the regression tests I'm not brave enough to enable 245.b, 245.c
8416         * doc/sdccman.lyx: added latex preamble for hyperref package.
8417           Using pdflatex this will give you a hyperlinked pdf file with
8418           bookmarks. (prepend '%' before /usepackage if this breaks something)
8419
8420 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8421
8422          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8423
8424 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8425
8426         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8427
8428 2003-05-21    <johan AT balder>
8429
8430         * src/SDCCglue.c (printIval): fixed bug #739934
8431
8432 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8433
8434         Applied patch from bug 737905 (renamed yylineo to mylineno):
8435         * src/altlex.c
8436         * src/SDCCast.c
8437         * src/SDCglobl.h
8438         * src/SDCC.lex
8439         * src/SDCCsymt.c
8440         * src/SDCCval.c
8441         * src/pic16/pcode.c: Cleaned warnings
8442         * src/pic16/pcodeflow.c: Cleaned warnings
8443         * src/pic16/pcoderegs.c: Cleaned warnings
8444
8445 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8446
8447         * src/pic16/pcode.c: Cleaned warnings
8448         * src/pic16/pcodepeep.c: Cleaned warnings
8449         * src/pic16/ralloc.c: Cleaned warnings
8450
8451 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8452
8453         * doc/sdccman.lyx: fixed bug 739745
8454         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8455
8456 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8457
8458         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8459         it can be defined with CFLAGS when running configure
8460         * src/SDCCmain.c: fixed compiling + linking with object files
8461
8462 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8463
8464         * configure.in: configure for pic16 port,
8465             added --disable-pic16-port
8466         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8467         * src/SDCCmain.c: linkOptions is changed to set *,
8468             added if/endif conditional macros to remove options help
8469             messages from optionsTable when a port is not configured, added
8470             support for the PIc16 port in the ports table, when executing
8471             the compiler with no port specified on command line, a default
8472             port is selected with the new macro DEFAULT_PORT which is
8473             defined in port.h, in setDefaultOptions() linkOptions is removed
8474             from initialization assignment, since now it is a set,
8475             parseCmdLine uses setParseWithComma for linkOptions, in
8476             linkEdit() linkOptions are accessed with new function indexSet()
8477             which returns the i'th item of a set variable. See SDCCset.c, in
8478             linkEdit() when calling buildCmdLine(), added linkOptions as
8479             last argument. Now users can pass arguments to gplink via the
8480             -Wl option, main() uses pic16glue() to glue up pic16 programs
8481         * src/SDCCpeeph.c: various changes to support pic16
8482         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8483             return the i'th item of the set
8484         * src/SDCCset.h: added function prototype for indexSet()
8485         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8486         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8487         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8488             added macro DEFAULT_PORT
8489         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8490         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8491             generated
8492         * src/pic16/glue.c: commented out some error producing lines
8493         * src/pic16/main.c: __config directives are commented out to stop
8494             gpasm complaining and test the linkage with gplink, _linkCmd and
8495             _asmCmd changed to be more gplink and gpasm friendly
8496         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8497             produced an error when parsed, peep rule 12 is added to utilize
8498             movff, but it is commented out since the pCode does not support
8499             yet a command with 2 address arguments
8500
8501 2003-05-18    <johan AT balder>
8502
8503         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8504         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8505 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8506
8507         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8508   Added feature to script commands from file.
8509
8510 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8511
8512         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8513         * src/SDCCutil.c: include ctype.h for win32
8514
8515 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8516
8517         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8518
8519 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8520
8521         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8522   Fixed so you can set breakpoints prior to run, run does not stop
8523   on entry now.  Add tbreak.  Other enhancements and fixes for use
8524   with ddd.
8525
8526 2003-05-12  Borut Razem <borut.razem AT siol.net>
8527
8528         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8529
8530 2003-05-11  Borut Razem <borut.razem AT siol.net>
8531
8532         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8533         the path of bin directory, so that PATH is the only env. variable, which has to be set
8534         in case of standard installation.
8535         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8536         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8537         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8538
8539 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8540
8541         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8542         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8543         temp files are in the port dir; clean the gen/test directory when
8544         generating new test.c
8545         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8546         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8547         * support/regression/tests/zeropad.c: added
8548
8549 2003-05-09    <johan AT balder>
8550
8551         * src/SDCCglue.c: fixed bug #597940
8552
8553 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8554
8555         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8556   cache sfr, optimize next,step, fix off by one sourceline,
8557   support ddd list function.
8558         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8559
8560 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8561
8562         * support/regression/HTMLgen.py: added compare_s2f()
8563         * support/regression/Makefile: redo 1.27
8564         * support/regression/generate-cases.py: redo 1.5
8565
8566 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8567
8568         * support/regression/tests/float.c: workaround 33 bit hex constant
8569         * support/regression/tests/simplefloat.c: fix division for host
8570
8571 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8572
8573         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8574         that tame's the PIC's over-aggressive optimizer.
8575
8576 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8577
8578          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8579          support for MSVC.
8580
8581 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8582
8583         Initial support for DS80C400. "Hello world" runs on TINIm400
8584         (with polled I/O).
8585
8586 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8587
8588          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8589          * Some notes on ddd usage added in debugger/README
8590          Martin Helmling adding more features and fixes for ddd GUI debugger.
8591          Code added for nexti, stepi, up, down, and other adjustments.
8592
8593 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8594
8595         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8596         * src/pic/peeph.def Added two rules to optimize carry manipulation
8597         * src/pic/* removed debug printfs
8598
8599 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8600
8601         * debugger/mcs51/cmd.c: added header newalloc.h
8602
8603 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8604
8605         * as/Makefile: new EXEEXT
8606         * as/z80/Makefile: remove trailing slash of BUILDIR
8607         * as/z80/clean.mk: new EXEEXT
8608         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8609         * support/cpp2/Makefile.in: new EXEEXT
8610         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8611
8612 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8613
8614         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8615         EXEEXT was introduced to fix all related problems with targets
8616         "clean", "install" and "uninstall"; a couple of further flaws
8617         especially with "clean" have been fixed too
8618         * as/mcs51/Makefile.in
8619         * as/mcs51/clean.mk
8620         * as/z80/Makefile
8621         * Makefile
8622         * clean.mk
8623         * debugger/mcs51/Makefile.in
8624         * debugger/mcs51/clean.mk
8625         * link/z80/Makefile
8626         * link/z80/Makefile.in
8627         * link/z80/clean.mk
8628         * link/Makefile
8629         * packihx/Makefile.in
8630         * packihx/clean.mk
8631         * sim/ucsim/Makefile
8632         * sim/ucsim/clean.mk
8633         * sim/ucsim/avr.src/Makefile.in
8634         * sim/ucsim/avr.src/clean.mk
8635         * sim/ucsim/s51.src/Makefile.in
8636         * sim/ucsim/s51.src/clean.mk
8637         * sim/ucsim/xa.src/Makefile.in
8638         * sim/ucsim/xa.src/clean.mk
8639         * sim/ucsim/z80.src/Makefile.in
8640         * sim/ucsim/z80.src/clean.mk
8641         * sim/ucsim/main_in.mk
8642         * sim/ucsim/packages_in.mk
8643         * sim/ucsim/gui.src/Makefile.in
8644         * sim/ucsim/gui.src/serio.src/Makefile.in
8645         * sim/ucsim/gui.src/serio.src/clean.mk
8646         * src/Makefile.in
8647         * src/clean.mk
8648         * support/cpp2/Makefile.in
8649         * support/cpp2/clean.mk
8650         * support/makebin/Makefile
8651         * support/makebin/clean.mk
8652         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8653         * doc/sdccman.lyx: --program-suffix no longer needed
8654
8655 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8656
8657          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8658          Martin Helmling added support for ddd GUI debugger.
8659          Code added to display assembly, set variables, and other commands
8660          to interface to ddd.
8661
8662 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8663
8664         * as/Makefile: fix target clean
8665         * as/clean.mk: fix target clean
8666         * as/z80/clean.mk: fix target clean
8667
8668 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8669
8670         * Makefile.common.in: added  AT EXEEXT AT
8671         * configure.in: removed all mingw32 stuff
8672         * configure: rebuilt from configure.in
8673         * doc/sdccman.lyx: updated section "installation"
8674         * support/scripts/sdcc_mingw32: adapted to configure
8675         * support/scripts/sdcc_cygwin_mingw32: added
8676
8677 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8678
8679         * src/pic Added object file support for the PIC port
8680         * src/pic Applied patch from Craig Franklin (this started the object file support)
8681         * src/regression Updated the PIC regression tests for object files
8682
8683 2003-04-20  Borut Razem <borut.razem AT siol.net>
8684
8685         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8686           lklex.c: In function `getfid':
8687           lklex.c:203: warning: array subscript has type `char'
8688         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8689           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8690         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8691           stack handling macros
8692
8693 2003-04-19  Borut Razem <borut.razem AT siol.net>
8694
8695         * "handling space characters in file path" task:
8696         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8697         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8698         * support/Util/MySystem.h: make it self-sufficient
8699         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8700           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8701           handling space characters in file path
8702         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8703           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8704         * support/Util/MySystem.c: handling space characters in executable's path
8705
8706 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8707
8708         * as/z80/Makefile: fix permanent rebuild of z80
8709         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8710         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8711
8712 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8713
8714         * src/SDCCopt.c: add special case optimization to replace modulo by
8715           a power of two with a bitwise AND.
8716
8717 2003-04-18    <johan AT balder>
8718
8719         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8720
8721 2003-04-17    <johan AT balder>
8722
8723         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8724         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8725
8726 2003-04-13  Borut Razem <borut.razem AT siol.net>
8727
8728         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8729         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8730           fixed mingw problem in adl_NORMALIZE_PATH
8731
8732 2003-04-12  Borut Razem <borut.razem AT siol.net>
8733
8734         * fixed "#pragma SAVE/RESTORE can not be nested":
8735         * src/SDCC.lex: reworked pragma handling functions
8736         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8737         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8738
8739 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8740
8741         * src/SDCCutil.c (pathEquivalent): defined but not used
8742         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8743         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8744         * configure: rebuilt from configure.in
8745         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8746         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8747         * device/include/Makefile.in: replace sdcc_datadir
8748         * device/lib/Makefile.in: replace sdcc_datadir
8749         * Makefile.common.in: add LDFLAGS from configure
8750         * packihx/Makefile.in: use LDFLAGS
8751         * src/Makefile.in: use LDFLAGS
8752         * support/cpp2/Makefile.in: add LDFLAGS from configure
8753         * support/makebin/Makefile: use LDFLAGS
8754         * .version: bumped version number to 2.3.5
8755
8756 2003-04-12  Borut Razem <borut.razem AT siol.net>
8757
8758         * completed "different paths" task:
8759         * src/SDCCmacro.c: fixed bug in handling quotes
8760         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8761         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8762
8763 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8764
8765         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8766
8767 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8768
8769         * ds390/gen.c ds390/peeph.def: fix bug 706781
8770
8771 2003-04-11  Borut Razem <borut.razem AT siol.net>
8772
8773         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8774
8775 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8776
8777         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8778         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8779          set - this bit used to not be set...).
8780         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8781           bad code in PIC Port
8782         * src/regression/and2.c added to test bug 609268
8783         * src/regression/Makefile added and2.c to regression test
8784
8785
8786 2003-04-08    <johan AT CP255758-A>
8787
8788         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8789         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8790         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8791
8792 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8793
8794         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8795         fix bug #487815
8796         * support/cpp2/Makefile.in: fix bug #487815
8797         * configure: rebuilt from configure.in
8798         * Makefile.common.in: docdir changed, new path suffixes
8799         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8800         * sdcc_vc_in.h: reflect changes from sdccconf.h
8801         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8802         * src/SDCCutil.h: remove BINDIR hack
8803         * doc/sdccman.lyx: update new path hierarchy
8804
8805 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8806
8807         * src/SDCCpeeph.c: added okToRemoveSLOC test
8808
8809 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8810
8811         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8812
8813 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8814
8815         * src/SDCCpeeph.c: added labelIsReturnOnly test
8816         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8817
8818 2003-04-05    <johan AT balder>
8819
8820         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8821         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8822         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8823         * src/SDCCast.c: fixed a warning
8824         * src/SDCCast.h: fixed a warning
8825         * src/SDCCicode.c (operandFromAst): fixed a warning
8826
8827 2003-04-04    <johan AT balder>
8828
8829         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8830         * src/SDCCast.c (decorateType): fixed bug #715076
8831         * src/SDCC.y: fixed bug #702907
8832
8833 2003-04-03    <johan AT balder>
8834
8835         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8836         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8837         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8838         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8839         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8840
8841 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8842
8843         * _decdptr.c: fix return values
8844         * _gptrget.c: fix return values
8845         * _gptrgetc.c: fix return values
8846         * _gptrput.c: fix return values
8847         * _mulint.c: fix return values
8848         * as/z80/Makefile: fix 'make -j' problem
8849
8850 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8851
8852         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8853         * configure.in: big cleanup, updated to autoconf 2.5x
8854         * configure: rebuilt from configure.in
8855         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8856         * sdcc_vc_in.h: reflect changes from sdccconf.h
8857         * doc/Makefile: fixed a flaw in "make install"
8858
8859 2003-04-02    <johan AT balder>
8860
8861         * src/ds390/gen.c (genCmp): no comments
8862         * src/mcs51/gen.c (genCmp): no comments
8863         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8864         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8865
8866 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8867
8868         * support/regression/generate-cases.py: place generated file in given sub directory
8869         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8870         * support/regression/Makefile: improvements for 'make -j';
8871         side effect: it's simpler and faster now
8872
8873 2003-03-31  Borut Razem <borut.razem AT siol.net>
8874
8875         * src/z80/main.c: link-{port} and as-{port} defined without path
8876         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8877
8878 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8879
8880         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8881
8882 2003-03-30  Borut Razem <borut.razem AT siol.net>
8883
8884         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8885           changed type of list parameter to set
8886         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8887         * src/port.h: changed type of do_assemble() parameter to set
8888         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8889           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8890           definition of "cppoutfilename" macro with NULL value in preProcess()
8891         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8892         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8893         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8894           replaced with set *binPathSet
8895         * shash_add() deallocates the item, if allready exsists, before adding the new one
8896         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8897
8898 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8899
8900         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8901           a nested for loop bug in the PIC port
8902         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8903           for loops
8904
8905 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8906
8907         * support/Util/dbuf.h: remove C++ stuff to make it portable
8908
8909 2003-03-28  Borut Razem <borut.razem AT siol.net>
8910
8911         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8912           literal strings in stringLiteral()
8913         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8914         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8915           to the project
8916
8917 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8918
8919         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8920
8921 2003-03-26    <johan AT balder>
8922
8923         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8924         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8925         * src/SDCCast.c (decorateType): fixed " -v < 3"
8926
8927 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8928
8929         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8930         Added Lenny Story's debug infrastructure changes:
8931         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8932         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8933         * src/cdbFile.c: added
8934         * src/SDCCdebug.c: added
8935         * src/SDCCdebug.h: added
8936         * src/SDCCast.c (createFunction)
8937         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8938         * src/SDCCmain.c (parseCmdLine, main)
8939         * src/SDCCmem.c (redoStackOffsets)
8940         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8941         * src/SDCCsymt.h
8942         * src/common.h
8943         * src/avr/gen.c (genAVRCode)
8944         * src/ds390/gen.c (gen390Code)
8945         * src/mcs51/gen.c (gen51Code)
8946         * src/pic/gen.c (genpic14Code)
8947         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8948         * src/xa51/gen.c (genXA51Code)
8949         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8950
8951 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8952
8953         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8954         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8955
8956 2003-03-22    <johan AT balder>
8957
8958         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8959
8960 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8961
8962         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8963         * doc/cdbfileformat.lyx: added, written by Lenny Story
8964         * doc/Makefile: added cdbfileformat.lyx
8965         * doc/clean.mk: added cdbfileformat.lyx
8966
8967 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8968
8969         * src/mcs51/peeph.def: fix bug #705773
8970
8971 2003-03-20    <johan AT balder>
8972
8973         An sfr/sbit can have an "at #" AND an initializer
8974         * src/SDCCsymt.c (checkSClass):
8975         * src/SDCCmem.c (allocGlobal):
8976         * src/SDCCmem.c (allocLocal):
8977         * src/SDCCast.c (createBlock):
8978
8979 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8980
8981         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8982
8983 2003-03-16    <johan AT balder>
8984
8985         Undid the hackup of const and volatile, the problem is much bigger
8986         * src/SDCC.y:1.65
8987         * src/SDCCast.c:1.171
8988         * src/SDCCglue.c:1.138
8989         * src/SDCCicode.c:1.146
8990         * src/SDCCsymt.c:1.150
8991         * src/SDCCval.c:1.65
8992
8993 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8994
8995         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8996         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8997
8998 2003-03-13    <johan AT balder>
8999
9000         Hackup const and volatile modifiers in type chains a bit:
9001         * src/SDCC.y:1.63
9002         * src/SDCCast.c:1.169
9003         * src/SDCCglue.c:1.136
9004         * src/SDCCicode.c:1.143
9005         * src/SDCCsymt.c1.146
9006         * src/SDCCsymt.h1.59
9007         * src/SDCCval.c:1.63
9008
9009 2003-03-12    <johan AT balder>
9010
9011         * src/SDCCBBlock.h: more LRH debugging junk
9012         * src/SDCCcflow.h: more LRH debugging junk
9013         * src/SDCCloop.c: more LRH debugging junk
9014         * src/SDCC.y (struct_declaration): fixed bug #697590
9015         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9016         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9017         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9018
9019 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9020         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9021         test function names must now match exactly).
9022         * src/SDCCcse.c: added special case in findCheaperOp to allow
9023         extending a short integer. Makes less awful code for bug 700121 test case.
9024
9025 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9026
9027         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9028         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9029
9030 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9031
9032         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9033         actually called (operandsNotEqual() was called for all
9034         operandsNotEqualX tests).
9035
9036 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9037
9038         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9039         with shorter literals. Fixes bug 700121.
9040
9041 2003-03-11    <johan AT balder>
9042
9043         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9044
9045 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9046
9047         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9048         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9049
9050 2003-03-10  Borut Razem <borut.razem AT siol.net>
9051
9052         * src/SDCCmain.c: pipe preprocessor's output
9053         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9054         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9055         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9056         which closes all pipes in pipeSet set
9057         * src/SDCCset.c: free deleted item in function deleteSetItem()
9058         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9059         moved from z80 to src subproject
9060         * .version: increased version number to 2.3.4
9061
9062 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9063
9064         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9065         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9066         * support/regression/ports/xa51/spec.mk: fix typo
9067
9068 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9069
9070         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9071
9072 2003-03-09  Borut Razem <borut.razem AT siol.net>
9073
9074         * src/SDCCmain.c: pipe preprocessor's output
9075         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9076         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9077         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9078         which closes all pipes in pipeSet set
9079         * src/SDCCset.c: free deleted item in function deleteSetItem()
9080         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9081         moved from z80 to src subproject
9082
9083 2003-03-09  Borut Razem <borut.razem AT siol.net>
9084
9085         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9086         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9087         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9088         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9089         * src/SDCCglobl.h: unification of WIN32 native definitions
9090
9091 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9092
9093         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9094
9095 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9096
9097         * src/configure.in:   check for endianess (even while cross-compiling)
9098         * src/configure:      check for endianess (even while cross-compiling)
9099         * src/configure_in.h: check for endianess (even while cross-compiling)
9100         * src/avr/gen.c:        remove old endianess stuff
9101         * src/mcs51/gen.c:      remove old endianess stuff
9102         * src/ds390/gen.c:      remove old endianess stuff
9103         * src/pic/gen.c:        remove old endianess stuff
9104         * src/pic/genarith.c:   remove old endianess stuff
9105         * src/pic/glue.c:       fix endianess check
9106         * src/pic16/gen.c:      remove old endianess stuff
9107         * src/pic16/genarith.c: remove old endianess stuff
9108         * src/pic16/glue.c:     fix endianess check
9109         * src/xa51/gen.c:       remove old endianess stuff
9110         * src/z80/gen.c:        fix endianess check
9111         * src/SDCCglue.c:       fix endianess check
9112         * src/ds390/peeph.def: fix bug 700036
9113
9114 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9115
9116         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9117         * src/configure: find appropriate data-types on host for SDCC's int and long
9118         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9119         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9120         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9121
9122 2003-03-07    <johan AT balder>
9123
9124         Just a big NOOP:
9125                 some minor cleanups before the big shot
9126                 OP_DEFS and OP_USES now use Kevin's protection
9127                 new option --nolabelopt
9128
9129         * src/SDCCBBlock.c:
9130         * src/SDCCast.c,:
9131         * src/SDCCcflow.c:
9132         * src/SDCCcse.c:
9133         * src/SDCCicode.c:
9134         * src/SDCCicode.h:
9135         * src/SDCClabel.c:
9136         * src/SDCCloop.c:
9137         * src/SDCCmain.c:
9138         * src/ds390/ralloc.c:
9139         * src/mcs51/ralloc.c:
9140         * src/pic/ralloc.c:
9141         * src/xa51/ralloc.c:
9142         * src/z80/ralloc.c:
9143
9144 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9145
9146         * src/pic/pcode.c (get_op): fix 64 bit warnings
9147         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9148         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9149         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9150         * support/regression/tests/malloc.c: fix 64 bit warnings
9151
9152 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9153
9154         * src/mcs51/gen.c (genMinus): fixed bug 696436
9155
9156 2003-03-02  Borut Razem <borut.razem AT siol.net>
9157
9158         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9159
9160 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9161
9162         * configure.in: test for mkstemp
9163         * sdccconf_in.h: add HAVE_MKSTEMP
9164
9165 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9166
9167         * device/include/ctype.h: removed warning while using --stack-auto
9168         * device/include/malloc.h: removed warning while using --stack-auto
9169         * device/include/string.h: removed warning while using --stack-auto
9170
9171 2003-02-23  Borut Razem <borut.razem AT siol.net>
9172
9173         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9174         because NDEBUG is defined (see man assert)
9175         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9176
9177 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9178
9179         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9180         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9181
9182 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9183
9184         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9185         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9186
9187 2003-02-18    <johan AT balder>
9188
9189         * as/mcs51/asmain.c (asmbl): module can start with a digit
9190         * as/z80/asmain.c (asmbl): module can start with a digit
9191
9192 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9193
9194         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9195         * src/asm.c: fix pipe() for Mingw32
9196
9197 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9198
9199         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9200         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9201         make -V work again; --c1mode reads now from stdin
9202         * doc/sdccman.lyx: added --c1mode
9203         * support/Util/SDCCerr.c: new messages for c1 mode
9204         * support/Util/SDCCerr.h: new messages for c1 mode
9205         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9206
9207 2003-02-15    <johan AT balder>
9208
9209         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9210
9211 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9212
9213         * doc/sdccman.lyx: Environment variables, -o and other minor things
9214
9215 2003-02-14    <johan AT balder>
9216
9217         * src/xa51/main.c: before anyone really tries to use it :)
9218
9219         * Install doc's in share/sdcc/doc
9220         * removed some obsolete files
9221         * Do a proper make distclean and uninstall
9222         M Makefile.common.in
9223         R sdccbuild.sh
9224         M as/Makefile
9225         M device/include/Makefile.in
9226         M device/lib/Makefile.in
9227         M doc/sdccman.lyx
9228         M link/Makefile
9229         M sim/ucsim/doc/Makefile.in
9230         M src/clean.mk
9231         R src/avr/peeph.rul
9232         R src/xa51/peeph.rul
9233         M support/cpp2/Makefile.in
9234         M support/makebin/Makefile
9235
9236
9237 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9238
9239         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9240
9241 2003-02-10  Borut Razem <borut.razem AT siol.net>
9242
9243         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9244         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9245         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9246         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9247         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9248         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9249         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9250         src/z80/Makefile.bcc: Borland Makefile cleanup
9251         * as/z80/Makefile.bcc: Added Borland Makefile
9252         * support/cpp2/borland.h: Removed
9253
9254 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9255
9256         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9257         * src/SDCC.lex: new pragma NOIV
9258         * src/SDCCglobl.h: new pragma NOIV
9259         * src/SDCCmem.c: new pragma NOIV
9260
9261 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9262
9263         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9264
9265 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9266
9267         * src/SDCCmain.c: signal handling is switched off by --debug
9268         * doc/Makefile: small fix for install; use clean.mk again
9269         * doc/clean.mk: clean *.pdf and *.html too
9270
9271 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9272
9273         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9274         * device/lib/printfl.c: fix a ds390 bug by making it portable
9275         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9276         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9277         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9278         * debugger/mcs51/cmd.c: converted multi-line string literals
9279         * sim/ucsim/globals.cc: converted multi-line string literals
9280         * src/SDCCmain.c: introduced signal handler to remove temp files
9281         * doc/Makefile: small tweaks, implement clean
9282         * doc: removed generated files
9283
9284 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9285
9286         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9287         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9288         Address Record is not correctly generated for DS390."
9289
9290 2003-02-02  Borut Razem <borut.razem AT siol.net>
9291
9292         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9293         * as/mcs51/asm.h: fixed compilation with Borland C
9294         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9295         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9296         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9297         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9298         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9299         src/z80/Makefile.bcc: delete $(LIB) only if exist
9300         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9301
9302 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9303
9304         * device/include/malloc.h: introduced NULL
9305         * device/include/string.h: introduced NULL
9306         * device/include/stdlib.h: introduced NULL
9307         * device/lib/_memcpy.c: removed NULL
9308         * device/lib/_strcat.c: removed NULL
9309         * device/lib/_strchr.c: removed NULL
9310         * device/lib/_strcmp.c: removed NULL
9311         * device/lib/_strcpy.c: removed NULL
9312         * device/lib/_strcspn.c: removed NULL
9313         * device/lib/_strlen.c: removed NULL
9314         * device/lib/_strncat.c: removed NULL
9315         * device/lib/_strncmp.c: removed NULL
9316         * device/lib/_strncpy.c: removed NULL
9317         * device/lib/_strpbrk.c: removed NULL
9318         * device/lib/_strrchr.c: removed NULL
9319         * device/lib/_strspn.c: removed NULL
9320         * device/lib/_strstr.c: removed NULL
9321         * device/lib/_strtok.c: removed NULL
9322         * device/lib/malloc.c: removed NULL, include own header
9323
9324 2003-02-02    <johan AT balder>
9325
9326         * 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
9327         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9328         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9329         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9330         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9331         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9332
9333 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9334
9335         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9336         area 'DATA'"
9337
9338 2003-02-01    <johan AT balder>
9339
9340         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9341
9342 2003-01-31    <johan AT CP255758-A>
9343
9344         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9345
9346 2003-01-30    <johan AT balder>
9347
9348         * src/SDCCBBlock.c: automatic bug detection
9349         * src/SDCCicode.c: automatic bug detection
9350
9351 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9352
9353         * src/SDCCglobl.h:   now --xram-size 0 works
9354         * src/SDCCmain.c:    now --xram-size 0 works
9355
9356 2003-01-29    <johan AT balder>
9357
9358         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9359
9360 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9361
9362         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9363         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9364         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9365         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9366         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9367         * src/SDCCmain.c:    Added options --xram-size and --code-size
9368
9369 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9370
9371         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9372         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9373
9374 2003-01-27    <johan AT balder>
9375
9376         * src/SDCC.y: fixed bug #613764
9377
9378 2003-01-26    <johan AT balder>
9379
9380         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9381         * src/SDCCsymt.h: fixed bug #673374
9382         * src/SDCCglue.c: fixed bug #661910
9383         * src/SDCCast.c: fixed bug #458099 and 673374
9384
9385 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9386
9387         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9388         * as/mcs51/strcmpi.h: added
9389         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9390         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9391         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9392         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9393         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9394         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9395         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9396         * as/mcs51/Makefile.aslink: new module strcmpi
9397         * as/mcs51/Makefile.asx8051: new module strcmpi
9398         * as/mcs51/Makefil.bcc: new module strcmpi
9399         * as/mcs51/Makefile.in: new module strcmpi
9400         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9401
9402 2003-01-26    <johan AT balder>
9403
9404         * src/SDCCglue.c: reverted back to 1.124
9405         * src/SDCCast.c: reverted back to 1.156
9406         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9407
9408 2003-01-25    <johan AT balder>
9409
9410         * src/SDCCglue.c: A better fix for bug #661910
9411         * src/SDCCast.c: A better fix for bug #661910
9412         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9413
9414 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9415
9416         * src/Makefile.in: remove spawn.o
9417         * src/SDCCmain.c: remove spawn.h
9418         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9419         * src/spawn.c: removed
9420         * src/spawn.h: removed
9421         * support/regression/ports/ds390/spec.mk: link with -r
9422
9423 2003-01-24    <johan AT CP255758-A>
9424
9425         * src/ds390/gen.c (aopOp): fixed bug #667458
9426         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9427         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9428         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9429
9430 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9431
9432         * src/mcs51/peeph.def: better assembler identation by Frieder
9433         * src/mcs51/gen.c: better assembler identation by Frieder
9434
9435 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9436
9437         * as/z80/string.h: removed for gcc 3.2
9438         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9439         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9440
9441 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9442
9443         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9444         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9445         * support/regression/Makefile: separate temp files for ports
9446         * support/regression/generate-cases.py: separate temp files for ports
9447         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9448         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9449
9450 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9451
9452         * moved tinitalk to device/examples/ds390
9453
9454 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9455
9456         * as/mcs51/lkmem.c: rflag is for DS390
9457         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9458         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9459                          (linkEdit): move mem- and map-files the same way as ihx-files
9460         * src/z80/main.c (_setDefaultOptions): removed --generic
9461         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9462         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9463         * src/pic/glue.c (picglue): --c1mode works again
9464         * src/pic16/glue.c (pic16glue): --c1mode works again
9465         * src/asm.c (printCLine): fix #660034
9466
9467 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9468
9469         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9470         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9471         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9472         * as/mcs51/lkmem (summary): better fix for sp problem
9473         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9474         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9475         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9476                                               remove --stack-after-data
9477
9478 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9479
9480         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9481         * src/SDCCutil.c (join): ugly bug: missing '\0'
9482         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9483
9484 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9485
9486         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9487         * src/port.h: typo
9488         * src/pic/main.c (_asmCmd): gpasm supports -o
9489         * src/z80/main.c: more general macros
9490         * device/lib/Makefile.in: remove intermediate files
9491
9492 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9493
9494         * .version: Bumped version number to 2.3.3
9495         * src/SDCCBBlock.c: new option -o
9496         * src/SDCCglobl.h: new option -o
9497         * src/SDCCglue.c: new option -o
9498         * src/SDCCmain.c: new option -o
9499         * src/asm.c: new option -o
9500         * src/ds390/main.c: new option -o
9501         * src/pic/glue.c: new option -o
9502         * src/pic/pcode.c: new option -o
9503         * src/pic/ralloc.c: new option -o
9504         * src/pic16/glue.c: new option -o
9505         * src/pic16/pcode.c: new option -o
9506         * src/pic16/ralloc.c: new option -o
9507         * src/z80/main.c: new option -o
9508         * device/lib/Makefile.in: use -o
9509         * support/regression/ports/ds390/spec.mk: use -o
9510         * support/regression/ports/gbz80/spec.mk: use -o
9511         * support/regression/ports/mcs51/spec.mk: use -o
9512         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9513         * support/regression/ports/z80/spec.mk: use -o
9514         * support/regression/ports/ucz80/spec.mk: use -o
9515         * support/regression/ports/xa51/spec.mk: use -o
9516         * support/regression/fwk/lib/timeout.c: fix usage string
9517
9518 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9519         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9520
9521 2003-01-07    <johan AT balder>
9522
9523         * src/SDCCast.c (decorateType): fixed bug #600035
9524
9525 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9526         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9527         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9528         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9529         * src/pic/pcode.c: outcommented unused variable to remove warnings
9530         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9531
9532 2003-01-06    <karl AT turbobit.com>
9533         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9534    regression tests.
9535
9536 2003-01-06    <johan AT balder>
9537
9538         * src/SDCCicode.c: fixed array add
9539
9540 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9541         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9542         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9543
9544 2003-01-04    <johan AT balder>
9545
9546         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9547
9548 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9549         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9550
9551 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9552         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9553         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9554
9555 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9556         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9557
9558 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9559         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9560
9561 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9562         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9563
9564 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9565
9566     * in \sdcc\as\mcs51\ changed these files in order to create an
9567     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9568     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9569     following files to include the previous two files: aslink.dsp,
9570     Makefile.aslink, Makefile.bcc, and Makefile.in.
9571
9572     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9573     .adb instead of .cdb
9574
9575 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9576
9577         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9578         value from option --iram-size.
9579
9580 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9581
9582         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9583         dram[] array.
9584
9585 2002-09-18    <wiml AT hhhh.org>
9586
9587         * SDCClrange.h: exposed setFromRange() and setToRange()
9588         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9589           packRegsForAccUse() (bug 542397)
9590         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9591           multiple times and emitting the fetch operations more than once
9592           added aopGetUsesAcc() function to allow binary operators to
9593           fetch their operands in the correct order; made genMinus() emit
9594           compact code for X = LITERAL - Y
9595
9596 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9597         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9598         sprintf() in line 1267.
9599
9600 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9601         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9602         like ports.
9603
9604 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9605         Changes to aslink (All the changes are marked with 'JCF'):
9606
9607         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9608         summary().
9609
9610         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9611         area BSEG.  Also moves, if possible, the DATA area down into the internal
9612         ram so more space is available.
9613
9614         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9615         sflag.
9616
9617         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9618         not bytes.  Function summary() which creates a memory usage summary
9619         file with extension .mem.  Reports of overlaping stack and small stack
9620         size.  If the space for the stack is less than 16 bytes aslink trows a
9621         warning.
9622
9623         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9624         the 8051.  Option 'y' for memory summary output file.
9625
9626         Changes to sdcc (All the changes are marked with 'JCF'):
9627
9628         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9629
9630         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9631         overlaying area for it (uses RegBankUsed[4]).
9632
9633         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9634         bank zero as used by default.  By default aslink locates the stack
9635         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9636         the creation of the .mem file.  Delegates the allocation of data area
9637         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9638         the begining of the stack area to aslink.
9639
9640         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9641         glue() in SDCCglue.c creates an area for it.
9642
9643 2002-09-03  Borut Razem <borut.razem AT siol.net>
9644         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9645         sdcc/src/pic/glue.c:
9646         introduced atexit() handler for teporay files removal in case of
9647         errors, assertions, ...
9648
9649 2002-08-29  Borut Razem <borut.razem AT siol.net>
9650         * sdcc/support/cpp2/auto-host_vc_in.h:
9651         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9652         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9653         Maybe there is a similar problem with BORLANDC? It should be checked!
9654
9655         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9656         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9657         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9658         was not executed, and the compiler (cl) launched a warning:
9659         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9660
9661 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9662         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9663
9664 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9665         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9666
9667         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9668           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9669           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9670           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9671           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9672           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9673           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9674         - added Release configuration in VS projects
9675         - review of compiler an linker options
9676         - VC .exe files are generated in bin_vc directory, not to interfere
9677           with binaries generated from other projects (cygwin, mingw, bcc ...)
9678
9679         * sdcc/src/yacc.dsp: added
9680
9681         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9682         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9683         and insert the version number definitions from .version
9684
9685         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9686
9687         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9688         added - genarate auto-host.h using auto-host_vc_in.h as template
9689
9690         * sdcc/sdcc_vc.h,
9691         removed from CVS, generated automatically
9692
9693 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9694         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9695
9696 2002-08-11  Borut Razem <borut.razem AT siol.net>
9697         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9698
9699 2002-08-10  Borut Razem <borut.razem AT siol.net>
9700         * src/SDCCmain.c (main):
9701         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9702         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9703         The consequence was that some temporary files were not removed.
9704
9705         * src/SDCCglue.c:
9706         unification of code in functions tempfilename() and tempfile():
9707         function tempnam() is defined in Visual Studio 6.0 and .NET
9708
9709         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9710
9711         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9712           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9713         - removed compiler command line option /WX: Treats all warnings as errors
9714         - update a list of source files, included into the project
9715
9716         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9717           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9718         changed project type to Generic Project so that can be correcly converted to VS.NET project
9719
9720         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9721
9722         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9723
9724         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9725
9726         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9727         added return 0 statements after assert() to make compiler happy
9728
9729         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9730         added newline in the def file to keep MSC compiler satisfied
9731
9732         * sdcc/src/z80/gen.c:
9733         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9734           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9735         - solved MSC error in function aopDump()
9736
9737         * sdcc_vc.h: define PREFIX as "\\sdcc"
9738
9739 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9740         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9741
9742 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9743         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9744         - Rewrote the register banking algorithm.
9745         - Added pCode live-range analysis to registers (for now, only non-used and
9746         singly-used registers optimized away)
9747
9748         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9749
9750         * 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.
9751
9752 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9753         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9754
9755 2002-04-22  Michael Hope  <michaelh AT vroom>
9756
9757         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9758
9759         * configure.in (DD_COPT): Added include support required for gbdk.
9760
9761         * .version: Bumped version number just to increase it.
9762
9763         * src/SDCCmain.c: Added -nostdinc to the default options.
9764
9765 2002-04-15  Michael Hope  <michaelh AT vroom>
9766
9767         * device/lib/z80/printf.c (sprintf): Added.
9768
9769         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9770
9771         * src/z80/peeph.def: Added transpose redundent load rule.
9772
9773         * src/z80/main.c: Added force callee saves for jaune.
9774
9775         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9776
9777         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9778
9779 2002-03-28  Johan Knol  <johan AT balder>
9780
9781         * src/SDCCval.c: fixed bug #532436
9782
9783 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9784         * /src/port.h:
9785         Added "char *Processor" field to the port structure.
9786
9787         * /src/SDCCmain.c:
9788         Added -p option. Allows port dependent processor to be specified.
9789
9790         * all ports:
9791         Initialized the new field char *Processor field to NULL in all ports
9792
9793         * /src/pic/*:
9794         Compiler generated registers for interrupt context saving
9795         were not getting allocated.
9796
9797 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9798
9799         * /src/SDCCast.c:
9800         Fixed left shift. Will promote the left side of a left shift
9801         if a) left shifting more than size of operand or b) when assigned
9802         to something size > size of left side
9803
9804 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9805         * src/pic/*
9806         tons of changes. Register allocation has been
9807         rewritten. Added customization for the various PICs. Flow
9808         analysis is restructured. ...
9809
9810         * src/pic/device.h:
9811         Added
9812
9813         * src/pic/device.c:
9814         Added. device.c is a PIC port hack to accomodate variations
9815         in PIC devices.
9816
9817 2002-03-13  Michael Hope  <michaelh AT vroom>
9818
9819         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9820
9821 2002-03-04  johanknol  <johanknol AT manik>
9822
9823         * /src/SDCCval.c: fixed
9824
9825         const unsigned char arr[][2] = { { 0, 1 } };
9826         t18.c:1: error: Initializer element is not constant
9827
9828 2002-03-04  bela  <bela AT manik>
9829
9830         * /device/include/mcs51reg.h:
9831         ds89c420 register definition update
9832
9833 2002-03-03    <johan AT FRIJA>
9834
9835         * support/Util/SDCCerr.c: did something, but don't no why anymore
9836
9837         * support/regression/tests/bug-524691.c: made it a little less shy
9838
9839         * src/SDCCast.c (decorateType): fixed bug #524697
9840
9841         * src/SDCCast.c: made some lineno improvements
9842
9843         * src/SDCCval.c (getNelements): changed warning to error
9844
9845         * src/SDCCglue.c (printIvalArray): changed warning to error
9846
9847         * src/SDCCicode.c: fixed a warning for mingw
9848
9849         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9850
9851         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9852
9853 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9854
9855         * src/ds390/peeph.def:
9856         Added some more peephole rules
9857
9858         * src/ds390/gen.c: Various fixes & enhancements
9859
9860         * src/SDCClrange.c, src/SDCClrange.h:
9861         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9862
9863         * src/ds390/ralloc.c:
9864         various fixes & enhancements (ds390) specific
9865
9866         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9867         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9868         from rallocs.
9869
9870         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9871
9872 2002-03-02    <johan AT FRIJA>
9873
9874         * src/SDCCast.c (decorateType): fixed bug #524708
9875
9876         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9877
9878         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9879
9880 2002-03-01  Michael Hope  <michaelh AT vroom>
9881
9882         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9883
9884         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9885
9886 2002-03-01    <johan AT FRIJA>
9887
9888         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9889
9890         * src/SDCCast.c (decorateType): fixed bug #524209
9891
9892         * src/SDCCval.c (valNot): fixed bug #524195
9893
9894 2002-02-26    <johan AT balder>
9895
9896         * src/xa51/gen.c: fixed a warning
9897
9898         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9899
9900         * src/SDCCast.c (decorateType): fixed bug #522534
9901
9902 2002-02-23    <johan AT balder>
9903
9904         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9905
9906 2002-02-22    <johan AT balder>
9907
9908         * src/SDCCast.c: fixed bug #514865
9909
9910         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9911
9912 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9913
9914         * sdcc/src/SDCCloop.c:
9915         Previous fix was not good. basic blocks that have "break" or "return" are
9916         not really partof a loop , but live ranges used in these blocks should
9917         be live thru the entire loop, so set partOfLoop but don't add them to
9918         loop region
9919
9920 2002-02-21    <johan AT FRIJA>
9921
9922         * src/SDCCcse.c: fixed bug #514308
9923
9924 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9925
9926         * src/SDCCloop.c:
9927         Fixed BUG #519583. If a conditional block ended in a return/break
9928         statement inside a loop, it was not being considered part of the loop.
9929
9930         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9931
9932 2002-02-10  Karl Bongers <karl AT turbobit.com>
9933
9934         * debugger/*:
9935         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9936         with lots of comments and notes.
9937
9938         * device/examples/test2.c:
9939         Fix bug, "red" variable not being initialized(compiler complained).
9940
9941         * device/examples/Makefile, examples/test3.c:
9942         Add Makefile in device/examples folder, compiles test3.c
9943         for use as a multiple module SDCDB test case.
9944
9945         * sim/ucsim/cmd.src/cmdset.cc:
9946         Took out debug printfs in ucsim "next" command.
9947
9948         * sim/ucsim/xa.src:
9949         Karl and Johan start ucsim XA support.  Most dissassembly working,
9950         about 75% emulation done(plenty of work remaining).
9951
9952         * sim/ucsim/z80.src:
9953         Add Z80 support to ucsim, add test-ucz80 regression test,
9954         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9955         Notice z80 compiler fails on examples/test3.c/crc code.
9956
9957 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9958
9959         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9960         Added support for --parms-in-bank1
9961
9962         * src/ds390/peeph.def:
9963         added a few more peephole optimzations
9964
9965         * src/ds390/main.c:
9966         1) added __builtin_inp & __builtin_outp used to read in data of given length
9967            from a memory mapped port
9968         2) added __builtin_memcmp
9969         3) added __builtin_swapw swap bytes of a short
9970
9971         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9972         1) handle multiple send & receives from register bank1
9973         2) ralloc can now allocate DPTR1 to some liveRanges
9974
9975         * src/SDCCsymt.c, src/SDCCsymt.h:
9976         changes to handle multiple sends & receives
9977
9978         * src/SDCCptropt.h:
9979         added some pointer arithmetic optimization
9980
9981         * src/SDCCptropt.c:
9982         added some pointer arithmetic optimizations but not stable yet so not
9983         called from anywhere (will get this working shortly)
9984
9985         * src/SDCCopt.c: fixed for multiple sends & receives
9986
9987         * src/SDCCmain.c:
9988         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9989         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9990            set preprocessor defines (depending on options)
9991
9992         * src/SDCCicode.c, src/SDCCicode.h:
9993         changes made to handle multiple sends & receives
9994
9995         * src/SDCCglobl.h:
9996         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9997
9998         * src/SDCCcse.c, src/SDCCcse.h:
9999         added function findbackward def (to be used in upcoming optimization)
10000
10001         * src/SDCCcflow.c, src/SDCCcflow.h:
10002         added function returnAtEnd - to determine if a basic block terminates with
10003         a RETURN iCode
10004
10005         * src/SDCCast.c, src/SDCCast.h:
10006         added option parms-in-bank1
10007
10008         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10009         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10010         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10011         adjusted for --parms-in-bank1 option
10012
10013         * device/include/string.h:
10014         donot redefine "reentrant" keyword
10015
10016         * device/include/ds80c390.h: Added some more SFRs
10017
10018 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10019
10020         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10021
10022 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10023
10024         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10025
10026 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10027
10028         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10029
10030 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10031
10032         * Added --xram-movc option
10033
10034 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10035
10036         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10037
10038 2002-01-11  Johan Knol
10039
10040         * Added math lib of Jesus Calvino-Fraga
10041
10042 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10043
10044         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10045         * support/regression/Makefile: new target test-mcs51-stack-auto
10046         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10047
10048 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10049
10050         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10051
10052 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10053
10054         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10055
10056 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10057
10058         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10059
10060         * src/SDCCglue.h: add definition for printIvalChar()
10061
10062 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10063
10064         * src/SDCCast.c: fix #498138 by Johan
10065
10066         * src/SDCCglue.c: fix #498138 by Johan
10067
10068 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10069
10070         * support/regression/Makefile: fix clean
10071
10072         * support/regression/ports/ds390/support.c: fix transmission of last character
10073
10074 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10075
10076         * /sdcc/src/ds390/gen.c:
10077         a) improved computing address of stack variable
10078         b) took out some #if 0 code
10079         c) improved parmBytes adjustment
10080         d) improved genPlusIncr & genMinusIncr
10081         e) genCmp could generate bad code (when left assigned to DPTR)
10082         f) Fixed bug in hasInc
10083
10084         * /sdcc/src/ds390/ralloc.c:
10085         a) packRegsForSupport could mess up live information (Fixed)
10086         b) packRegsDPTRuse could be incorrect for left & right shift
10087
10088         * /sdcc/src/mcs51/ralloc.c:
10089         packRegsForSupport could mess up the live information (Fixed)
10090
10091         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10092
10093         * /sdcc/src/SDCCast.c:
10094         can reverse a loop even if function call is present as long
10095         as the loop control variable is local & is not passed as parameter
10096
10097 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10098
10099         * /sdcc/ChangeLog: *** empty log message ***
10100
10101         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10102         More builtin function additions for TININative
10103
10104         * /sdcc/src/ds390/ralloc.c:
10105         Had broken the regression testsuite
10106
10107         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10108
10109         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10110         Added funcattr hasStackParms will be set for reentrant functions when there
10111         are paramteres on the stack, this helps in minimizing frame pointer generation
10112         typeFromStr can handle function pointers now
10113
10114         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10115         *** empty log message ***
10116
10117 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10118
10119         * /src/ds390/gen.c, /src/ds390/main.c:
10120         More builtin function additions for TININative
10121
10122         * /src/ds390/ralloc.c:
10123         Had broken the regression testsuite
10124
10125         * /src/SDCCast.c: Fixed a bug in dumptree
10126
10127         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10128         Added funcattr hasStackParms will be set for reentrant functions when there
10129         are paramteres on the stack, this helps in minimizing frame pointer generation
10130         typeFromStr can handle function pointers now
10131
10132         * /doc/builtins.txt, /doc/TININative.txt:
10133         *** empty log message ***
10134
10135
10136 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10137
10138         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10139         ALPHA version for -mTININative
10140
10141         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10142         updated to reflect changes in the port structure
10143
10144         * /src/port.h:
10145         added function do_assemble (similar to do_link) if non-null this function
10146         will be called to do assembly (-mTININative) requires a multi command
10147         assembly
10148         added function genAssemblerEnd will be called to generate assembler Epilogue
10149
10150         * /src/SDCCsymt.c:
10151         added _JavaNative to debug info printing
10152
10153         * /src/SDCCmain.c: added option --tini-libid
10154         added port->do_assemble function (-mTININative) has a multi command assemble
10155
10156         * /src/SDCCglue.c: Disabled "constExpr" check
10157         added port->genAssemblerEnd function
10158
10159         * /src/SDCCglobl.h: Added option --tini-libid value
10160
10161         * /src/SDCCast.h:
10162         tookout optimizeCompare from the header (has no external references)
10163
10164         * /src/SDCCast.c: made one more function "static"
10165
10166 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10167
10168         * src/z80/mappings.i: Added z80asm support.
10169
10170         * src/z80/main.c: Added z80asm support on --asm=z80asm
10171
10172         * src/z80/gen.c: Fixed asm portability issues.
10173
10174         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10175
10176         * src/SDCCglue.c (printExterns): Added global/extern split.
10177
10178 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10179
10180         * support/regression/Makefile: added test for mcs51 model large
10181
10182         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10183
10184         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10185
10186 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10187
10188         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10189
10190 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10191
10192         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10193
10194         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10195
10196 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10197
10198         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10199
10200         * support/regression/tests/simplefloat.c: Port to mcs51.
10201
10202 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10203         * support/regression/tests/bug-485362.c: Added.
10204
10205         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10206
10207         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10208
10209         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10210
10211         * src/z80/gen.c (aopDump): Added a dump function.
10212
10213 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10214         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10215
10216         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10217
10218         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10219
10220         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10221
10222         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10223
10224         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10225
10226         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10227
10228         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10229
10230         * support/regression/ports/ds390/support.c: Use tinibios.
10231
10232         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10233
10234 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10235
10236         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10237         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10238
10239         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10240
10241         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10242
10243 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10244
10245         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10246
10247         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10248         (packRegsForIYUse): Created and optimised.
10249
10250 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10251
10252         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10253 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10254
10255         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10256
10257         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10258
10259         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10260
10261 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10262
10263         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10264
10265         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10266
10267 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10268
10269         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10270
10271         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10272
10273         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10274
10275 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10276
10277         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10278         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10279         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10280
10281         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10282
10283         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10284         (genNotFloat): Added.
10285         (genUminusFloat): Added.
10286
10287         * device/lib/z80/Makefile: Added floating pt stubs.
10288
10289         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10290
10291         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10292
10293         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10294
10295 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10296
10297         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10298
10299         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10300
10301         * sdcc/support/regression/Makefile: Add port ds390.
10302
10303         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10304
10305         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10306
10307         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10308
10309         * sdcc/support/regression/ports/ds390/support.c: Added.
10310
10311         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10312
10313         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10314
10315         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10316
10317 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10318
10319         * device/include/malloc.h: Added z80 and gbz80 support.
10320
10321         * device/lib/gbz80/heap.s: Added.
10322
10323         * device/lib/z80/heap.s: Added.
10324
10325         * device/lib/malloc.c: Added z80 and gbz80 support.
10326
10327         * support/regression/tests/malloc.c (testMalloc): Added.
10328
10329         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10330
10331         * support/regression/tests/bug-478094.c: Added.
10332
10333         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10334
10335 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10336
10337         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10338
10339         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10340
10341         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10342
10343         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10344
10345         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10346
10347 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10348
10349         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10350
10351 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10352
10353         * support/regression/tests/bug-477927.c: Added.
10354
10355         * src/z80/peeph.def: Added minor rules.
10356
10357         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10358
10359         * src/z80/peeph.def: Added jump optimisation modification.
10360
10361 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10362
10363         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10364
10365 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10366
10367         * support/regression/tests/funptrs.c: Added.
10368
10369 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10370
10371         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10372
10373 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10374
10375         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10376
10377         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10378
10379         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10380         (movLeft2ResultLong): Created.
10381
10382         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10383         (joinPushes): Added.  Joins two char pushes into a word push.
10384
10385 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10386
10387         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10388
10389         * support/makebin/Makefile (install): Added creation of dest dir.
10390
10391 2001-10-24 Karl Bongers <karl AT turbobit.com>
10392
10393         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10394
10395 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10396
10397         * src/z80/ralloc.c: Turned off faulty pack for one use.
10398
10399         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10400
10401         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10402
10403 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10404
10405         * support/regression/Makefile: Improved clean
10406
10407         * support/regression/ports/gbz80/spec.mk: Added clean
10408
10409         * support/regression/ports/host/spec.mk: Added clean
10410
10411         * support/regression/ports/z80/spec.mk: Added clean
10412
10413         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10414
10415         * support/regression/ports/mcs51/timeout.c: little improvements
10416
10417 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10418
10419         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10420
10421         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10422
10423         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10424
10425 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10426
10427         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10428
10429         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10430
10431 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10432         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10433
10434         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10435
10436         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10437
10438         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10439
10440         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10441
10442         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10443
10444         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10445
10446         * support/regression/tests/longor.c: Added.
10447
10448 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10449
10450         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10451
10452         * as/mcs51/aslink.h: define PATH_MAX
10453
10454         * as/mcs51/asm.h: define PATH_MAX
10455
10456         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10457
10458         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10459
10460         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10461
10462         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10463
10464         * src/SDCCglobl.h: define PATH_MAX
10465
10466         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10467
10468         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10469
10470 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10471
10472         * src/z80/gen.c (gencjneshort): Fixed
10473
10474         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10475
10476 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10477
10478         * support/regression/tests/bug-469671.c: Added.
10479
10480         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10481
10482 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10483
10484         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10485
10486         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10487
10488 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10489
10490         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10491
10492         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10493
10494         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10495
10496         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10497
10498         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10499
10500         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10501
10502         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10503
10504 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10505
10506         * 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.
10507
10508         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10509
10510         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10511
10512 2001-10-07    <johan AT FRIJA>
10513
10514         * device/lib/gets.c (gets): fixed the return value.
10515
10516 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10517         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10518
10519         * 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.
10520
10521         * 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.
10522
10523         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10524
10525         * src/pic/gen.c: Removed Safe_strdup.
10526
10527         * configure.in: Added option to enable libgc support.
10528
10529         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10530         (bitVectUnion): Optimised.
10531         (bitVectIntersect): Optimised.
10532         (bitVectBitsInCommon): Optimised.
10533         (bitVectCplAnd): Optimised.
10534
10535         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10536
10537 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10538
10539         * src/SDCCmain.c: distinguish between assembler debug and plain options
10540
10541         * src/avr/main.c:   remove standard assembler options
10542
10543         * src/ds390/main.c: remove standard assembler options
10544
10545         * src/mcs51/main.c: remove standard assembler options
10546
10547         * src/port.h: removed "PENDING" comment
10548
10549 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10550
10551         * src/device/lib/_mulint.c  : new, with assember functions
10552
10553         * src/device/lib/_mullong.c : new, with assember functions
10554
10555         * src/device/lib/_divuint.c : with assember functions
10556
10557         * src/device/lib/_divsint.c : with assember functions
10558
10559         * src/device/lib/_divulong.c: with assember functions
10560
10561         * src/device/lib/_divslong.c: with assember functions
10562
10563         * src/device/lib/_moduint.c : with assember functions
10564
10565         * src/device/lib/_modsint.c : with assember functions
10566
10567         * src/device/lib/_modulong.c: with assember functions
10568
10569         * src/device/lib/_modslong.c: with assember functions
10570
10571         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10572
10573         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10574
10575         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10576                                       replaced _mululong.c and _mulslong.c by _mullong.c
10577
10578 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10579
10580         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10581
10582 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10583
10584         * src/SDCCglue.c: test, if win32api is available for MINGW
10585
10586 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10587
10588         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10589         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10590         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10591         * support/regression/ports/host/spec.mk: removed GENERIC
10592         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10593         * support/regression/ports/z80/spec.mk: removed GENERIC
10594
10595 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10596
10597         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10598
10599         * support/regression/tests/bug-467035.c: Created.
10600
10601 2001-10-01    <johan AT FRIJA>
10602
10603         * src/SDCC.y: fixed bug #466586 part 1
10604
10605 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10606
10607         * SDCCicode.c: z80 has no generic pointers
10608         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10609
10610 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10611
10612         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10613
10614 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10615
10616         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10617
10618         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10619
10620 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10621
10622         * configure.in: Fixed up so that ucsim is only configured once.
10623
10624         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10625
10626         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10627         (getPathDifference): As above.
10628
10629         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10630
10631         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10632
10633 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10634         * .version: Updated to 2.3.1
10635
10636         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10637         Added copyright header.
10638
10639         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10640         (assemble): Added support for macro based assembler commands.
10641         (linkEdit): Added support for macro based linker commands.
10642         (preProcess): Changed the pre-processor to use macros.
10643         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10644         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10645
10646         * device/lib/z80/crt0.s: Added module name for debugging.
10647
10648 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10649
10650         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10651
10652         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10653
10654         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10655
10656         * src/Makefile.in: Added SDCCmacro and SDCCutil
10657
10658 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10659
10660         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10661
10662 2001-09-16    <johan AT FRIJA>
10663
10664         * 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.
10665
10666 2001-09-15    <johan AT FRIJA>
10667
10668         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10669         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10670
10671 2001-09-11    <johan AT FRIJA>
10672
10673         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10674
10675 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10676
10677         * support/regression/tests/bug-460444.c: Added test case.
10678
10679         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10680         (genCast): Added justification for all of the asserts.
10681
10682 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10683
10684         * support/regression/support.c: _xdata replaced by xdata
10685
10686         * support/regression/spec.mk: removed _generic
10687
10688 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10689
10690         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10691
10692         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10693         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10694
10695         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10696
10697         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10698
10699         * support/regression/tests/bug-460010.c: Added test case.
10700
10701         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10702
10703 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10704
10705         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10706
10707         * support/regression/testfwk.c: removed workaround for bug #436344
10708
10709         * support/regression/tests/bp.c: use less memory with mcs51
10710
10711         * support/regression/tests/bug-441448.c: use less memory
10712
10713         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10714
10715         * support/regression/collate-results.py: typo
10716
10717 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10718
10719         * support/regression/tests/fetchoverlap.c: Added new test case.
10720
10721         * support/regression/tests/bp.c: Added new test case.
10722
10723         * support/regression/tests/bug-448984.c: Added new test case.
10724
10725         * support/regression/tests/pow2shifts.c: Added new test case.
10726
10727         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10728         (genlshTwo): Fixed right shift for count > 8.
10729
10730         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10731
10732 2001-09-08    <johan AT FRIJA>
10733
10734         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10735
10736 2001-09-07    <johan AT FRIJA>
10737
10738         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10739
10740         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10741
10742 2001-09-06    <johan AT FRIJA>
10743
10744         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10745         * bernhard noted me at this: "() equals to (void)" (1.38)
10746
10747 2001-09-05    <johan AT FRIJA>
10748
10749         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10750
10751 2001-09-04    <johan AT FRIJA>
10752
10753         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10754
10755
10756 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10757
10758         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10759
10760 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10761
10762         * link/z80/aslink.h: Fixed path for PATH_MAX
10763
10764 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10765
10766         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10767
10768         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10769
10770         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10771
10772         * 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.
10773
10774 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10775
10776         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10777         (genCmp): Fixed up genCmp for the GB with longs.
10778
10779         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10780
10781         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10782
10783         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10784
10785         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10786
10787 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10788
10789         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10790
10791 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10792
10793         * 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.
10794
10795         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10796
10797 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10798
10799         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10800
10801         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10802
10803 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10804
10805   * sim/ucsim/configure:    little improvement of Cygwin-detection
10806   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10807   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10808   * support/regression/tests/bug-221100.c: small changes for mcs51
10809   * support/regression/tests/bug-221168.c: small changes for mcs51
10810   * support/regression/tests/bug-227710.c: small changes for mcs51
10811   * support/regression/tests/staticinit.c: small changes for mcs51
10812   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10813   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10814   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10815
10816 $Revision$