* src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
[fw/sdcc] / ChangeLog
1 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2
3         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
4
5 2006-03-23 Maarten Brock <sourceforge.brock AT dse.nl>
6
7         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
8           implemented patch 1120823 Thanks to Willy De la Court (normal
9           interrupts need an interrupt number now if they are made critical),
10           and enabled nesting of critical functions though not for gbz80
11           (genCritical, genEndCritical): added functions
12           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
13         * src/z80/mappings.i: added "ei" to all mappings
14
15 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
16
17         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
18         submitted by the Debian SDCC maintainer Aurelien Jarno:
19         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
20         archive with gcc 4.1 on mips and wrote the patch"
21
22 2006-03-16 Raphael Neider <rneider AT web.de>
23
24         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
25           the left operand is shorter than the result (c* = lit-c* + int),
26           fixes bug #1450796
27         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
28           OP_SYMBOL
29
30 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
31
32         * src/.version: increased version number to 2.5.5
33         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
34         linking is done manually in pic16 port's _linkEdit,
35         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
36         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
37         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
38         allocate asmop as AOP_ACC,
39         (aopForRemat): added parameter 'bool result' in function declaration,
40         (pic16_aopGet): return AOP_ACC when accessing WREG,
41         (pic16_popGetTempReg): minor modification,
42         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
43         'pic16_allocWithIdx',
44         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
45         calling function in absolute addresses,
46         (genAssign): take into account AOP_ACC asmop,
47         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
48         * src/pic16/pcoderegs.c: some debug functions and lines added,
49         * src/pic16/ralloc.c (decodeRegType): added but commented out,
50         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
51         register too,
52         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
53         call to allocReg, not by manually allocating a new one,
54         (pic16_assignRegisters): now before going through the register
55         allocating functions mark all registers as free. This eliminates some
56         side effects resulting from peephole parser done earlier in the backbone
57
58 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
59
60         * src/SDCCicode.c (geniCodeLogic),
61         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
62
63 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
64
65         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
66           (genSend): bugfix, do not allocate and free twice,
67           (shiftRLong): handle partially overlapping aops
68         * support/regression/tests/bitopcse.c: fixed warning redefined idata
69
70 2006-03-08 Borut Razem <borut.razem AT siol.net>
71
72         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
73           for pic16
74
75 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
76
77         * support/regression/tests/bug1409955.c: new, added
78         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
79         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
80           (aopForSym, aopOp): increment asmop.allocated if reused,
81           (freeAsmop): decrement asmop.allocated and check for zero instead of
82           using asmop.freed,
83           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
84           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
85            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
86            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
87            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
88            genSignedRightShift, genRightShift, genDataPointerGet,
89            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
90            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
91             in reverse order from allocation,
92           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
93             added swappedLR to keep track
94         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
95           pdata & code for GCC, z80, gbz80 & hc08
96         * support/regression/tests/zeropad.c: moved defines to testfwk.h
97
98 2006-03-08 Raphael Neider <rneider AT web.de>
99
100         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
101
102 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
103
104         * device/include/mcs51/c8051f410.h: new SiLabs mcu
105         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
106         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
107
108 2006-03-06 Borut Razem <borut.razem AT siol.net>
109
110         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
111           made the linker quiet
112
113 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
114
115         * src/pic16/gen.c (genPcall): fixed bug #1443644
116         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
117         which dumps before the function entry point a data byte which represents
118         the number of the local variables used by the specified function, added
119         'xinst' for initial support for Extended Instruction Support,
120         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
121         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
122         port->fun_prefix anymore (may change later),
123         (genFunction, genEndFunction): do not store/restore local registers for
124         _main (this should take care the --main-return command line option in
125         the future),
126         (genOr): removed some legacy pic-port instructions,
127         * src/pic16/genarith.c (genAddLit): re-enabled old code because
128         performing operations with SFR's causes data to be written more than
129         once to each SFR. Perhaps SFRs should be handled in special cases...
130         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
131         pcode.h
132         * src/pic16/main.c (_process_pragma): stack bound checking did not take
133         into account for stack starting position,
134         (struct OPTIONS pic16_optionsTable): added command line argument
135         --extended or -y for Extended Instruction Support,
136         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
137         (deassignLRs): *** perhaps the most important change, old 'for' code
138         (commented out for reference), didn't account for some registers which
139         were left marked 'not free' after a pointer operation. The change
140         reduces register usage a lot in some cases
141
142 2006-03-04 Borut Razem <borut.razem AT siol.net>
143
144         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
145           _clean
146         * support/regression/tests/bug-524697.c: decreased array size for
147           mcs51 to fit into the internal RAM
148         * support/regression/Makefile.in: a little bit more verbose
149
150 2006-03-03 Borut Razem <borut.razem AT siol.net>
151
152         * support/regression/fwk/lib/testfwk.c,
153           support/regression/fwk/include/testfwk.h: introduced function
154           _prints(), nonrecursive _printn(), call _initEmu() from main()
155         * support/regression/ports/gbz80/support.asm,
156           support/regression/ports/ucz80/support.asm,
157           support/regression/ports/z80/support.asm,
158           support/regression/ports/ds390/support.c,
159           support/regression/ports/hc08/support.c,
160           support/regression/ports/host/support.c,
161           support/regression/ports/mcs51/support.c,
162           support/regression/ports/xa51/support.c: added empty _initEmu()
163           function
164         * support/regression/ports/pic16/gpsim.cmd,
165           support/regression/ports/pic16/spec.mk,
166           support/regression/ports/pic16/support.c,
167           support/regression/Makefile.in: added pic16 regression test
168
169 2006-03-01 Raphael Neider <rneider AT web.de>
170
171         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
172           genConstPointerGet): use safe way of generating MOVFF to cover
173             literals as well as registers, fixes bug #1440527
174         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
175             dereference
176           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
177             more correctly, fixes bug #1232186
178           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
179         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
180             gplink guess the correct processor in more cases, applied patch
181             from Till Riedel attached to and fixing bug #1436552
182
183 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
184
185         * support/regression/tests/array.c: added, contains check for #1434401
186         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
187
188 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
189
190         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
191         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
192         * device/include/mcs51/c8051f326.h,
193         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
194         * device/include/mcs51/c8051f000.h,
195         * device/include/mcs51/c8051f018.h,
196         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
197           PCON_IDLE,PCON_STOP and added sfr16 definitions
198
199 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
200
201         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
202           genGetWord): fixed bug 1409955
203
204 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
205
206         * device/include/hc08/mc68hc908gp32.h,
207         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
208
209 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
210
211         * src/SDCCast.c (constExprValue): return NULL if not a value
212         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
213         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
214         * support/regression/tests/bitfields.c: enabled signed bitfield for all
215
216 2006-02-13 Borut Razem <borut.razem AT siol.net>
217
218         * src/regression/ptrarg.c: added, fails due to bug #1430967
219         * src/regression/Makefile: ptrarg.c added, ...
220
221 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
222
223         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
224         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
225
226 2006-02-11 Borut Razem <borut.razem AT siol.net>
227
228         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
229           print "Processor: xxx" message to stdout only if --verbose
230
231 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
232
233         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
234         * support/regression/tests/bug1426356.c: added
235         * support/regression/tests/bitfields.c: removed 2 tests
236
237 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
238
239         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
240         * device/include/mcs51/c8051f330.h,
241         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
242           PCON_IDLE,PCON_STOP and added sfr16 definitions
243         * device/lib/_divsint.c,
244         * device/lib/_divuint.c,
245         * device/lib/_divulong.c,
246         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
247           register bank bug for small stackauto
248
249 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
250
251         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
252
253 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
254
255         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
256         * all.dsp: corrected several bin paths
257         * device/include/mcs51/c8051f120.h,
258         * device/include/mcs51/c8051f300.h,
259         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
260           to PCON_IDLE,PCON_STOP
261         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
262         * device/lib/printf_large.c (output_float): fixed bug 1388703
263         * support/regression/tests/bug1057979.c: added test for bug 1388703
264
265 2006-02-08 Raphael Neider <rneider AT web.de>
266
267         * src/pic/pcode.c (pciTRIS): fixed typo,
268           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
269           (LinkFlow): fixed handling of flows that end in a call,
270           (ReuseReg): perform safety check earlier
271         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
272             to work with flows at the beginning of a pBlock,
273             fixes #1426557 (Symbol not previously defined),
274           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
275             usage information
276           (RemoveUnusedRegisters): update register usage info
277         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
278             created, reuse existing ones instead
279         * src/pic/gen.c (genPcall): fixed #1424719
280
281 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
282
283         * link/z80/lkmain.c,
284         * link/z80/lklex.c,
285         * link/z80/lkdata.c,
286         * link/z80/aslink.h: fixed build on current cygwin:
287         replaced getline() by lk_getline()
288
289 2006-02-01 Borut Razem <borut.razem AT siol.net>
290
291         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
292           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
293           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
294           src/regression/bool1.c, src/regression/bool2.c,
295           src/regression/bool3.c, src/regression/call1.c,
296           src/regression/compare.c, src/regression/compare10.c,
297           src/regression/compare2.c, src/regression/compare3.c,
298           src/regression/compare4.c, src/regression/compare5.c,
299           src/regression/compare6.c, src/regression/compare7.c,
300           src/regression/compare8.c, src/regression/compare9.c,
301           src/regression/configword.c, src/regression/for.c,
302           src/regression/inline.c, src/regression/mult1.c,
303           src/regression/nestfor.c, src/regression/or1.c,
304           src/regression/pointer1.c, src/regression/ptrfunc.c,
305           src/regression/rotate1.c, src/regression/rotate2.c,
306           src/regression/rotate3.c, src/regression/rotate4.c,
307           src/regression/rotate5.c, src/regression/rotate6.c,
308           src/regression/rotate7.c, src/regression/string1.c,
309           src/regression/struct1.c, src/regression/sub.c,
310           src/regression/sub2.c, src/regression/switch1.c,
311           src/regression/while.c, src/regression/xor.c,
312           src/regression/create_stc, src/regression/simulate,
313           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
314           regression tests
315         * src/regression/gpsim_assert.h: added
316
317 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
318
319         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
320         ((void (code *) (void)) 0) ();
321         * as/hc08/aslex.c,
322         * as/hc08/aslink.h,
323         * as/hc08/asm.h,
324         * as/hc08/asmain.c,
325         * as/hc08/lkdata.c,
326         * as/hc08/lklex.c,
327         * as/hc08/lkmain.c,
328         * as/mcs51/aslex.c,
329         * as/mcs51/aslink.h,
330         * as/mcs51/asm.h,
331         * as/mcs51/asmain.c,
332         * as/mcs51/lkdata.c,
333         * as/mcs51/lklex.c,
334         * as/mcs51/lkmain.c,
335         * as/z80/aslex.c,
336         * as/z80/asm.h,
337         * as/z80/asmain.c: fixed build on current cygwin:
338         replaced getline() by as_getline()
339
340 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
341
342         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
343         declarator in the symbol chain
344         * src/SDCCsymt.h,
345         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
346         parameter list for function pointers
347         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
348         * support/regression/tests/bug-716242.c: added
349
350 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
351
352         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
353         offset if possible
354         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
355
356 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
357
358         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
359         inifinitely recurseable, added static
360         * support/regression/tests/bug-1408066.c: added
361
362 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
363
364         * src/SDCCicode.h,
365         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
366         renamed, added possibility to create "postLoopLbl"-labels
367         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
368         newiTempLoopHeaderLabel
369         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
370         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
371         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
372         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
373         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
374         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
375         (basicInduction): fixed bug #136564, made static,
376         (loopInduction): changed parameter of basicInduction, made static,
377         (addPostLoopBlock): added
378         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
379         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
380         findLoopEndSeq
381         * support/regression/tests/bug-136564.c: added
382         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
383         --std-sdcc99 to LIBSDCCFLAGS
384
385 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
386
387         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
388         while loop
389         * support/regression/tests/bug-1406131.c: added
390
391 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
392
393         * src/SDCCast.c (decorateType): fix promotion of unary minus
394         * src/SDCCsymt.c (computeType): beautified
395         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
396         (valUnaryPM, valComplement): fix sign and promotion,
397         (valNot): ANSI: result type is int (SDCC: unsigned char)
398         * support/regression/tests/uminus.c: speedup by removing superflous
399         test case 'int'
400         * support/regression/tests/onebyte.c: added promotion and signedness
401         tests for unary minus
402         * support/regressions/tests/bug-477927.c: disable warning about
403         uninitialized variables
404         * support/regression/tests/not.c: added
405
406 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
407
408         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
409         * src/mcs51/gen.c (gen51Code): show final register usage after
410         fillGaps in asm with --i-code-in-asm
411         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
412         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
413         incUsed, rliveClear, adjustIChain): made static,
414         (setFromRange): excluded because it's unused,
415         (findPrevUseSym, markWholeLoop): added,
416         (findPrevUse): rewritten; fixes bug 895992; now a complete search
417         through all branches of predecessors enables sdcc to emit the warning
418         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
419         (rlivePoint): made static, added parameter emitWarnings which is only
420         true during the first run out of two,
421         (findRecursiveSucc, findRecursivePred): removed,
422         (computeLiveRanges): made static, added parameter emitWarnings,
423         (dumpIcRlive): added for debugging only
424         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
425         removed prototype of setFromRange()
426         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
427         in call of computeLiveRanges()
428         * support/regression/tests/bug-895992.c: added
429         * support/regression/tests/bug-971834.c: added
430         * support/valdiag/tests/bug-895992.c: added
431         * support/valdiag/tests/bug-971834.c: added
432
433 2005-12-18 Raphael Neider <rneider AT web.de>
434
435         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
436           (genUnpackBits): improved code for direct operands,
437           (genPackBits): improved code for literal assignment to bitfields
438             and for direct destination operands (no FSR indirection),
439             prevented redundant AND, fixes #1362800,
440           (AccLsh): added parameter to disable masking of the result
441         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
442           skip instructions with side-effects (like incfsz),
443           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
444         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
445         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
446           fixes #1375263
447
448 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
449
450         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
451         volatile variables as spill location
452
453 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
454
455         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
456         replacing literals
457         * support/regression/tests/bug-1376320.c: added
458
459 2005-12-08 Raphael Neider <rneider AT web.de>
460
461         * src/pic/device.c: renamed is_shared to pic14_is_shared
462         * src/pic/gen.c (genIfx): re-enabled handling of sbits
463         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
464           (is_valid_identifier): added for above workaround
465
466 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
467
468         * device/lib/Makefile.in: fixed to enable port-specific-objects
469         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
470           char, thanks Hubert Sack
471         * doc/sdccman.lyx: documented --xstack-loc,
472           elaborated a bit more on interrupts and pitfalls,
473           removed "setjmp/longjmp unsupported",
474           documented some unsupported C99 features
475         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
476         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
477           if, thanks Hubert Sack
478         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
479         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
480           make make_library
481         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
482           regression tests can report resource usage (rfe 700441)
483         * support/regression/collate-results.py: report resource usage
484         * support/regression/ports/ds390/spec.mk,
485         * support/regression/ports/hc08/spec.mk,
486         * support/regression/ports/mcs51/spec.mk,
487         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
488         * support/regression/ports/ds390/uCsim.cmd,
489         * support/regression/ports/hc08/uCsim.cmd,
490         * support/regression/ports/mcs51/uCsim.cmd,
491         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
492         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
493           library, use the default one
494         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
495           building the library
496
497 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
498
499         * config.dsp: added dependency on .version and configure_vc.awk
500         * device/include/setjmp.h: updated for --stack-auto and --xstack
501         * device/include/mcs51/at89c51snd1c.h: corrected line endings
502         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
503         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
504         * device/lib/libsdcc.lib: added _setjmp
505         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
506           (decorateType): fixed bug 1372851,
507           (optimizeGetHbit): fixed warning
508         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
509           array initialisation
510         * support/regression/tests/bug1057979.c: added test for bug 1358192
511         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
512
513 2005-12-03 Borut Razem <borut.razem AT siol.net>
514
515         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
516           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
517
518 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
519
520         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
521         createIval): implement symbol independant "flexible array member",
522         (createIvalCharPtr): implemented flexible array initialisation with a
523         string
524         * src/SDCCsymt.c (copyStruct): removed,
525         (getSize): fixed misleading comment,
526         (getAllocSize): removed, the additional allocation size is now in
527         sym->flexArrayLength,
528         (checkStructFlexArray): new, syntax checks for flexible array members,
529         (compStructSize): added syntax checks for "flexible array members"
530         (copyStruct): removed,
531         (copyLinkChain): removed inefficient fix for bug 770487
532         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
533         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
534         symbol->flexArrayLength
535         * src/SDCCerr.c,
536         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
537         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
538         * support/regression/tests/structflexarray.c: added
539         * support/valdiag/tests/structflexiblearray.c: added
540
541 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
542
543         * src/SDCCast.c (decorateType): fixed bug 1368489
544         * support/Util/SDCCerr.c,
545         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
546
547 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
548
549         * device/include/mcs51/at89c51snd1c.h: added file submitted by
550           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
551
552 2005-11-27 Borut Razem <borut.razem AT siol.net>
553
554         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
555           support/cpp2/mkdeps.h: added command line option
556           -obj-ext=<extension> to SDCPP to define object file externion, used
557           for generation of make dependencies (-M)
558         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
559
560 2005-11-26 Borut Razem <borut.razem AT siol.net>
561
562         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
563           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
564           added pic and pic16 libraries
565
566 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
567
568         * device/include/float.h: Corrected typo in prototype of __fsgt
569
570 2005-11-25 Borut Razem <borut.razem AT siol.net>
571
572         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
573           added creation of model-mcs51-stack-auto libraries
574
575 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
576
577         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
578         and fields-list too
579         * src/SDCCast.c (createIvalArray): removed obsolete comment
580
581 2005-11-24 Borut Razem <borut.razem AT siol.net>
582
583         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
584           added missing device/lib/mcs51/crt*.asm sources
585
586 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
587
588         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
589
590 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
591
592         * device/lib/_fs2schar.c,
593         * device/lib/_fs2sint.c,
594         * device/lib/_fs2slong.c: optimized inline asm
595
596 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
597
598         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
599           Better handling of floats between -1.0 and 0.0.
600
601 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
602
603         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
604           (the missing "if"s prohibited removal of redundant labels)
605
606 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
607
608         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
609           Properly convert floats between -1.0 and 0.0 to long, int, and char
610           types (max integer value of negative floats tends to zero).
611         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
612           Removed changes made so to work properly with floats between
613           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
614           and _fs2char.c
615
616 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
617
618         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
619         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
620         (genCast) cosmetic change
621         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
622         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
623         from mcs51
624         * support/regression/tests/bitfields (testSignedBitfields): added
625
626 2005-11-18 Borut Razem <borut.razem AT siol.net>
627
628         * sdcc/device/lib/Makefile.in: remove all unnecessary files
629         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
630           introduced SILENT option to make building of pic16 libraries less
631
632 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
633
634         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
635           Now they work properly with floats between -1.0 and 0.0
636         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
637
638 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
639
640         * src/SDCCicode.c (printOperand): added missing else
641
642 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
643
644         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
645         reformatted for better readability
646         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
647         signed bitfields
648
649 2005-11-17 Borut Razem <borut.razem AT siol.net>
650
651         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
652           introduced SILENT option to make building of pic16 libraries less
653           verbose - used for nightly snapshot build
654         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
655           available on Win32 platforms.
656         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
657           medium, large, pic and pic16
658
659 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
660
661         * device/lib/printf_large.c: Temporary patch for bug 1358192:
662           printf("%f"...) sets fraction to zero.
663
664 2005-11-16 Raphael Neider <rneider AT web.de>
665
666         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
667           fixes #1357221
668         * src/pic/gen.c (genIfx): implemented for CARRY bit
669         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
670           to generic pointers, fixes #1357332,
671           (pic16_movLit2f): NEW,
672           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
673
674 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
675
676         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
677
678 2005-11-11 Raphael Neider <rneider AT web.de>
679
680         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
681         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
682           compute pointer's type from operand,
683           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
684           improved single bit reads, fixes bug #1353379
685
686 2005-11-09 Borut Razem <borut.razem AT siol.net>
687
688         * support/scripts/sdcc.nsi: added lib/pic to the package
689
690 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
691
692         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
693
694 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
695
696         * support/regression/tests/bug1348008.c: added
697         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
698         * support/regression/tests/bug1337835.c: updated comment
699
700 2005-11-06 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/set.cc, sim/ucsim/cmd.src/show.cc:
707           dynamic construction of cl_error_class and derivates - 2.nd try
708
709 2005-11-05 Borut Razem <borut.razem AT siol.net>
710
711         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
712           bug, which caused Bus Errors on sparc solaris
713
714 2005-11-04 Borut Razem <borut.razem AT siol.net>
715
716         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
717           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
718           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
719           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
720           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
721           and derivates to resolve the initialization problem on OSX
722
723 2005-11-02 Borut Razem <borut.razem AT siol.net>
724
725         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
726           corrected typo - #include <winsock2.h>
727
728 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
729
730         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
731           (_asxxxx_mapping): added org directive for future enhancements
732
733 2005-11-01 Borut Razem <borut.razem AT siol.net>
734
735         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
736           enabled sockets on WIN32
737         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
738
739 2005-10-31 Borut Razem <borut.razem AT siol.net>
740
741         * support/regression/generate-cases.py: escape backslashes in {testcase}:
742           WIN32 backslash path delimiters should be escaped when used in C strings
743         * support/regression/tests/bitfields.c: exclude failing assertions for
744           __CYGWIN32__ and __MINGW32__ hosts
745
746 2005-10-30 Borut Razem <borut.razem AT siol.net>
747
748         * src/SDCCutil.c: corrected double comparison typo
749
750 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
751
752         * device/lib/medium/Makefile: added for new memory model medium
753         * device/include/asm/mcs51/features.h: updated for medium/pdata
754         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
755           added Multiply & Accumulate sbit's and MAC0_PAGE define
756         * device/include/mcs51/c8051f300.h: added sfr16 definitions
757         * device/include/mcs51/c8051f310.h: added sfr16 definitions
758         * device/lib/_mullong.c: update for medium model
759         * device/lib/incl.mk: added medium model
760         * doc/sdccman.lyx: documented medium model
761         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
762         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
763         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
764         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
765           (allocParms): set SCLS and OCLS to pdata for medium model
766         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
767           for pdata,
768           (powof2): return <0 if not power of 2
769         * src/avr/gen.c (genBitWise): use updated powof2
770         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
771           (shiftR2Left2Result): small optimization in setup, save acc when storing,
772           (shiftLLeftOrResult): use B if necessary
773         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
774         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
775         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
776         * support/regression/Makefile.in: added test-mcs51-medium
777         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
778
779 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
780
781         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
782         specifier unsigned
783         * device/lib/time.c (mktime): fixed bug 1334315
784
785 2005-10-28 Raphael Neider <rneider AT web.de>
786
787         * device/include/pic/p16f_common.inc: added common declarations
788         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
789
790 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
791
792         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
793           (aopPutUsesAcc): added to predict accumulator use,
794           (assignResultValue): save acc if necessary,
795           (genMinusDec): store result if indirectly addressed,
796           (genDivOneByte):  save acc if necessary,
797           (movLeft2Result): bugfix if left already in acc,
798           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
799             attention to accumulator use (esp. pdata),
800           (genReceive): receive pdata correctly
801         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
802         * src/SDCCicode.h: added isOperandInPagedSpace prototype
803
804 2005-10-27 Raphael Neider <rneider AT web.de>
805
806         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
807
808 2005-10-27 Raphael Neider <rneider AT web.de>
809
810         * .version: changed version to 2.5.4
811         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
812         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
813           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
814             arithmetics support routines
815         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
816         * device/lib/Makefile.in: also create installdir for pic
817
818         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
819           pic14 port as well
820         * src/pic/device.c (dump_sfr): rewritten to delegate register
821           placement to the linker (use `extern sym' rather than sym EQU addr),
822           (validAddress): fixed to check last specified address
823         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
824           (popGetLit): truncate literal value to 8 bit,
825           (popGet): moved assert to more appropriate place
826           (popGetExternal): create pCode operand from and mark the according
827             symbol as being `extern'
828           (popGetAddr): added sanity check on immediate's offset, provide
829             GPOINTER tag on demand
830           (aopPut): fixed for immediates,
831           (mov2w_op): move operand's address or contents to WREG (depending on
832             operand type), safer variant of mov2w,
833           (movwf,call_libraryfunc): NEW, handy abbreviations,
834           (get_argument_pcop,get_return_val_pcop,pass_argument,
835           get_returnvalue): interface for accessing function parameters and
836             return values,
837           (assignResultValuei,genRet): use new parameter/return value interface
838           (pic14_getDataSize): back to old version handling generic pointers,
839           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
840             provided implementation and/or fixed old one,
841           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
842             calls, removed legacy 8051 reference code
843           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
844           (loadSignToC): NEW, move the operands sign bit to CARRY,
845           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
846             genRightShiftSigned, accepts negative shift counts,
847           (setup_fsr): load FSR and adjust IRP (indirect memory access),
848           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
849             generic pointers, __data pointers and __code pointers,
850           (genUnpackBits,genPackBits): rewritten to work with generic pointers
851             and signed bitfields, limit bitfields to 8 bit,
852           (genDataPointerGet): fixed number of bytes read,
853           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
854           (genPointerGet,genPointerSet): fixed handling of __code pointers,
855             pointers to constant data are no longer assumed to point to __code
856             space, removed invalid pointer types,
857           (bitpatternFromVal): retrieve the PICs representation of an integer
858             or float literal,
859           (genDataPointerSet): fixed assigning to po_immediate operands,
860           (genGenPointerSet): implemented as library call,
861           (genIfx): fixed incorrect condition,
862           (genAddrOf): limit generic pointers' addresses to 2 bytes,
863             provide GPOINTER tag according to destination's storage class,
864           (genCast): added code to handle casting to generic pointers, added
865             sign-/zero extension of the result
866           (aop_isLitLike,op_isLitLike): fixed handling of immediates
867         * src/pic/gen.h: added macros to access IRP bit in STATUS register
868         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
869           extend the result
870         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
871           address/register resides in the shared banks
872           (emitSymbolToFile): improved to handle global and `pinned' symbols,
873             put all variables into separate sections (have the linker arrange
874             them)
875           (picglue): put init code and interrupt handlers in separate sections
876         * src/pic/main.c: added port specific options table, modified to PORT
877           structure to make GPOINTERs 3 byte, added pic14_options
878           (_pic14_do_link): private linking routine (update paths to libraries,
879             add libsdcc.lib by default)
880         * src/pic/main.h: declare pic14_options
881         * src/pic/pcode.c: fixed instructions i/o relations,
882           (RegCond): reverted to correct version,
883           (newpCodeOpLit): truncate literals to 8 bit,
884           (genericPrint): added debug output,
885           (getRegFromInstruction): fixed for various operand types, simplified
886           (BuildFlow): fixed broken handling of isntructions with labels
887           (LinkFlow): start at last instruction in flow (skip trailing comments),
888             pass the flow on to the next instruction after CALL
889           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
890           (insertPCodeInstruction): fixed inserting after a skip instruction,
891           (DoBankSelect): fixed for labeled instructions
892           (OptimizepBlock): honor --nopeep switch
893           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
894         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
895         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
896           (pCodeOptime2pCodes): allow disabling this optimization via
897             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
898             but is still buggy), started implementation of a dataflow based
899             pCode optimization (CSE + dead code elimination)
900           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
901         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
902           names are independant of the stack location and therefore portable across
903           devices
904
905 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
906
907         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
908           (selectSpil): fixed bug 1337835 by not spilling bit variables
909         * support/regression/tests/bug1337835.c: added test for this bug
910         * src/mcs51/peeph.def: restart after rule 3.c,
911           addded rules 263.x to optimize loading constants
912
913 2005-10-26 Raphael Neider <rneider AT web.de>
914
915         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
916         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
917           (genAssign): emit warning when casting literals to generic pointer
918             type, also applies when taking the address of a fixed variable,
919           (genCast): improved casting to generic pointers
920         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
921           extern variables, added verbose error message
922         * device/include/pic16/{string.h,errno.h}: added #pragma library c
923
924 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
925
926         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
927         carry must be complemented too
928         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
929         could be emitted by genMinus
930         * src/SDCCval.c (constVal): fixed bug 1305065
931
932 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
933
934         * src/SDCCast.c (addCast): added promotion for bit variables
935         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
936         promotion casts + optimisation
937         (optimizeGetWord): fix warning 'i' might be used uninitialized
938         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
939         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
940
941 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
942
943         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
944         all chars are promoted to int; promotion should be handled in SDCCast.c
945
946 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
947
948         * device/lib/_strcmp.c: Fixed bug 1326457
949
950 2005-10-11 Raphael Neider <rneider AT web.de>
951
952         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
953         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
954
955 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
956
957         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
958         * support/regression/tests/sfr16.c: added test for the sfr32 bug
959
960 2005-10-04 Raphael Neider <rneider AT web.de>
961
962         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
963           device/lib/pic16/pics.all: added pic18f1320
964         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
965
966 2005-09-30 Raphael Neider <rneider AT web.de>
967
968         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
969         * src/pic16/devices.inc: NEW, provides device descriptions
970         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
971
972 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
973
974         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
975           GETHBIT
976
977 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
978
979         * doc/sdccman.lyx: updated Highest Order Bit documentation,
980           documented Any Order Bit, Higher Order Byte and Higher Order Word
981         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
982         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
983           (optimizeGetAbit): new, to get any bit, not only the high bit,
984           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
985           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
986           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
987           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
988             RIGHT_OP: also try GETBYTE, GETWORD optimization,
989             GETABIT, GETBYTE, GETWORD: decorate them,
990           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
991           (ast_print): added GETABIT, GETBYTE, GETWORD
992         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
993         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
994           (geniCodeBinary): new generic binary icode,
995           (ast2iCode): added GETABIT, GETBYTE, GETWORD
996         * src/port.h: updated comment for PORT.hasExtBitOp
997         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
998           (genGetByte): new, to get a single byte,
999           (genGetWord): new, to get a word from a long,
1000           (gen51Code): added GETABIT, GETBYTE, GETWORD
1001         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1002
1003 2005-09-23 Raphael Neider <rneider AT web.de>
1004
1005         * configure.in, configure: have device/lib/pic configured
1006         * device/lib/Makefile.in: added model-pic14
1007         * device/lib/clean.mk: added pic/ to clean rule
1008         * device/lib/pic: added rudimentary pic14 library providing support
1009           functions for multiplication/division/generic pointer access
1010         * src/SDCCopt.c (convilong): mark support functions as extern
1011           for pic14 port as well
1012         * src/pic/gen.c (genMult): added assertions,
1013           (genpic14Code): emit warning on unhandled iCodes
1014         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1015         * src/pic/pcode.c (pCodeOpCopy),
1016         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1017           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1018           SFR_REGISTER}), made safe for future extensions
1019         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1020           instructions even if preceeded by SKIP instructions (also remove
1021           them); removed unused code
1022         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1023           prevents leaving parts of the structure uninitialized after copying
1024
1025 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1026
1027         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1028           ago by me
1029         * support/regression/tests/addsub.c: added test for the bug
1030
1031 2005-09-21 Raphael Neider <rneider AT web.de>
1032
1033         * device/include/pic16/pic18f1220.h,
1034           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1035         * device/lib/pic16/Makefile.rules: added missing opening paren
1036         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1037           are provided in genutils.c,
1038           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1039           operand/result sizes,
1040           (genCmp): assert on NULL pointers first, then check deref'ed values
1041         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1042           result size
1043
1044 2005-09-18 Raphael Neider <rneider AT web.de>
1045
1046         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1047           as these are now unused,
1048           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1049         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1050           local, avoids uninitialized pointer dereference on r->name
1051         * src/pic16/ralloc.c (newReg): fixed indentation
1052
1053 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1054
1055         * src/SDCCval.c (constVal): fixed bug 730366
1056         * support/Util/SDCCerr.c,
1057         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1058
1059 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1060
1061         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1062
1063 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1064
1065         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1066
1067 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1068
1069         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1070           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1071         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1072           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1073         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1074         * packihx/packihx.c (hexDigit): made c unsigned char
1075         * as/mcs51/lklibr.c (fndsym),
1076         * link/z80/lkgb.c (gb),
1077         * link/z80/lklibr.c (fndsym),
1078         * link/z80/lkrloc.c (relr),
1079         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1080         * src/SDCC.lex (checkCurrFile, process_pragma),
1081         * src/SDCCglue.c (spacesToUnderscores),
1082         * src/SDCCmain.c (setParseWithComma, processFile),
1083         * src/asm.c (tvsprintf, printCLine),
1084         * src/avr/gen.c (emitcode, aopPut),
1085         * src/ds390/gen.c (emitcode),
1086         * src/hc08/gen.c (emitcode, emitinline),
1087         * src/mcs51/gen.c (emitcode, genInline),
1088         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1089           tokenizeLineNode),
1090         * src/pic/ralloc.c (debugLog),
1091         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1092           tokenizeLineNode),
1093         * src/pic16/ralloc.c (debugLog),
1094         * src/z80/main.c (_process_pragma):
1095            made all ctype.h function calls safe
1096         * src/SDCCopt.c: include math.h for fabs
1097         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1098           and used them throughout the code to make ctype.h function calls safe
1099         * src/ds390/main.c (asmLineNodeFromLineNode),
1100         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1101         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1102            unsigned char*
1103         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1104           (newpCodeAsmDir): made ctype.h function calls safe
1105         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1106           pic16_emitcode):  made lbp unsigned char*
1107         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1108           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1109         * src/xa51/gen.c (emitcode),
1110         * src/z80/gen.c (_emit2): made lbp unsigned char*
1111         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1112            char*
1113
1114 2005-09-05 Raphael Neider <rneider AT web.de>
1115
1116         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1117           access bank splitpoint
1118
1119 2005-09-05 Raphael Neider <rneider AT web.de>
1120
1121         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1122
1123 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1124
1125         * .version: changed to version 2.5.3
1126         * doc/sdccman.lyx: changed version to 2.5.3,
1127           documented --codeseg and --constseg and pragma codeseg and constseg,
1128           documented bit parameters (reentrant) and bit returning
1129         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1130            currFunc->recvSize, but is this ok for all ports?
1131           (ast2iCode): result of ~ on unsigned char must be cast to int for
1132            bool to work
1133         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1134           function pointers in bit space
1135         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1136           (processFuncArgs): call port.reg_parm() with reentrancy info
1137         * src/port.h,
1138         * src/avr/main.c,
1139         * src/ds390/main.c,
1140         * src/hc08/main.c,
1141         * src/pic/main.c,
1142         * src/pic16/main.c,
1143         * src/xa51/main.c,
1144         * src/z80/main.c: port.reg_parm prototype extended with
1145           "bool reentrant" parameter
1146         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1147           options.stackAuto for allocating bit register parameters
1148         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1149           (genSend): set BitBankUsed if it is,
1150           (selectRegBank): factored out of genCall for use in genPcall,
1151           (genCall): removed redundant dtype assignmen, use selectRegBank,
1152           (genPcall): handle returning in Carry properly, save in F0 if needed,
1153           (genReceive): handle bit register parameters
1154         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1155           (mcs51_assignRegisters): enable bit registers for all reentrant
1156            functions and don't set BitBankUsed unconditionally
1157         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1158         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1159         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1160
1161 2005-08-27 Borut Razem <borut.razem AT siol.net>
1162
1163         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1164         ppc-osx (Darwin) does not support -u option. It seems that it is
1165         supported only on Linux - GNU cp
1166
1167 2005-08-25 Borut Razem <borut.razem AT siol.net>
1168
1169         * sim/ucsim/gui.src/serio.src/Makefile.in,
1170           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1171           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1172           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1173           install and strip, since the strip at /usr/ccs/bin should be used
1174           on solaris
1175
1176 2005-08-24 Borut Razem <borut.razem AT siol.net>
1177
1178         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1179
1180 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1181
1182         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1183         ffffffffu
1184
1185 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1186
1187         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1188         * as/mcs51/lkmain.c (link_main): fixed warning
1189         * device/include/stdbool.h: ds390 has no advanced bit support yet
1190         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1191         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1192         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1193           and updated their macros
1194         * src/SDCCval.c (constVal): updated comment for renamed b_long
1195
1196 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1197
1198         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1199         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1200           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1201           (oprio): set priority for '['
1202         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1203            and adb_24_bit
1204         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1205         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1206         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1207         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1208           added overlayable BIT_BANK area
1209         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1210           (summary2): explain 'T' in legenda
1211         * as/mcs51/lkrloc.c: replaced old K&R style,
1212           (relr): added R_BIT processing,
1213           (errmsg): added "Bit-addressable relocation error",
1214           (adb_bit): added for converting from byte- to bit-addressable space,
1215           (adb_24_bit): added for converting from byte- to bit-addressable space
1216         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1217            used in reentrant functions now even as return value
1218         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1219         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1220           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1221         * src/SDCCglobl.h: added indicator BitBankUsed
1222         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1223            the bit registers b0-b7
1224         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1225           (geniCodeCast): fixed bug 1263853,
1226           (geniCodeLogicAndOr): put result in bool or char,
1227           (geniCodeReceive): added parameter func for accessing the return type,
1228           (geniCodeFunctionBody): pass func to geniCodeReceive
1229         * src/SDCCmain.c: added indicator BitBankUsed
1230         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1231         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1232           (checkSClass): don't put automatic bool/bit on stack,
1233           (checkFunction): removed check on function cannot return bit
1234         * src/SDCCsymt.h: added newBoolLink prototype
1235         * src/mcs51/gen.c (rb1regs): added bit registers,
1236           (movc): created for assigning to carry,
1237           (pushReg, popReg): created for pushing registers,
1238           (sameRegs): check both AOP_REG and AOP_CRY types,
1239           (aopOp): handle bit registers,
1240           (aopPut): optimization no self-assign,
1241           (saveRegisters): push reg->base (bits) only once for bit registers,
1242            and use pushReg,
1243           (unsaveRegisters): pop reg->base only once and use popReg,
1244           (assignResultValue): added parameter func and return in carry for bits,
1245           (genIpush): optimization no reload in A if not changed,
1246           (genSend): bit parameters in reentrant functions are passed in bit
1247            registers by first assigning to bits in B, then save registers and
1248            copy B to bits,
1249           (genCall): handle returning in Carry properly, save it in F0 if needed,
1250           (genPcall): updated assignResultValue call, this is not safe yet for bit
1251            returning function !!!
1252           (genFunction): don't generate equ's for bit registers and use pushReg,
1253           (genEndFunction): take care of bit returning functions and use popReg,
1254           (genRet): return bit in Carry,
1255           (genIfx): optimize bit registers and other directly addressable bits,
1256           (genReceive): updated assignResultValue call
1257         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1258           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1259            registers when using stack-auto
1260         * src/mcs51/ralloc.c (_G): added allBitregs,
1261           (regs8051): added the bit registers,
1262           (createStackSpil): use macro IS_BIT,
1263           (getRegBit): added to allocate a bit register, else spill,
1264           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1265           (updateRegUsage): factored out to ease stepping while debugging,
1266           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1267            also allocate bit registers,
1268           (fillGaps): handle bit registers,
1269           (findAllBitregs): added to create bit vector with all bit registers,
1270           (mcs51_allBitregs): returns this bit vector,
1271           (mcs51_assignRegisters): when using stack-auto use bit registers for
1272            passing parameters and creating local variables
1273         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1274
1275 2005-08-22 Borut Razem <borut.razem AT siol.net>
1276
1277         * device/lib/Makefile.in: replaced find option -or with -o
1278           to make it run on solaris
1279
1280 2005-08-22 Raphael Neider <rneider AT web.de>
1281
1282         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1283           fixes #1265442 (crash on Solaris)
1284
1285 2005-08-20 Borut Razem <borut.razem AT siol.net>
1286
1287         * configure, configure.in: added tests for libsocket and libnsl libraries,
1288           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1289           from support/regression/Makefile.in
1290         * support/regression/Makefile.in: added
1291         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1292         * sim/ucsim/libtool: regenerated on sparc-solaris
1293         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1294           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1295           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1296           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1297           sparc-solaris, which doesn't use GNU ld linker
1298         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1299         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1300
1301 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1302
1303         * src/mcs51/peeph.def: updated comments
1304
1305 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1306
1307         * device/lib/_gptrget.c,
1308         * device/lib/_gptrput.c: slightly shorter
1309         * doc/sdccman.lyx: incremented version
1310         * src/mcs51/peeph.def: moved peephole comments to the line of first
1311           change to better keep line correlation, reanimated 186.e
1312         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1313
1314 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1315
1316         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1317           David Saxton with quotes around file name.
1318
1319 2005-08-15 Borut Razem <borut.razem AT siol.net>
1320
1321         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1322           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1323           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1324           make tests run on x86_64 platform
1325
1326 2005-08-13 Raphael Neider <rneider AT web.de>
1327
1328         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1329           as it might be executed DURING a build (parallel make is wonderful)
1330
1331 2005-08-13 Raphael Neider <rneider AT web.de>
1332
1333         * device/lib/Makefile.in (port-specific-objects-pic16):
1334           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1335         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1336           dependency
1337         * device/lib/pic16/Makefile.rules: build subdirs before creating
1338           the library, removed builddir rule, create $(builddir) early in
1339           recurse rule, use empty recurse rule for leaf directories
1340         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1341           mkdir errors (race condition), removed duplicate suffix "hex"
1342           from clean rules
1343         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1344         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1345           prevents mkdir -p from aborting on Alpha
1346
1347 2005-08-12 Raphael Neider <rneider AT web.de>
1348
1349         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1350           db-statements in order to allow for arrays of pointers in code
1351           sections to be placed without interspersed 0-padding, fixes
1352           bug #1256215
1353         * (emitStatistics): fixed division by zero for pic18f1220
1354         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1355           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1356         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1357         * (pic16_pCodeConstString): keep track of already emitted string
1358           literals to prevent "duplicate definitions of symbol _str_NR"
1359         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1360           debug message
1361         * device/lib/Makefile.in: ignore failing PIC16 library builds
1362         * device/lib/pic16/Makefile: do not build if gputils are missing
1363         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1364
1365 2005-08-10 Raphael Neider <rneider AT web.de>
1366
1367         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1368           my last commit)
1369
1370 2005-08-10 Raphael Neider <rneider AT web.de>
1371
1372         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1373           Rokas' patch to add the new fixed point type "__fixed16x16"
1374         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1375           functions for __fixed16x16 arithmetics
1376         * device/lib/pic16: reimplemented the build system to support
1377           a separate build directory, better handling of libio (create
1378           the library in a separate subdir for each architecture) and
1379           easier configuration (centralized in Makefile.common)
1380
1381 2005-08-07 Raphael Neider <rneider AT web.de>
1382
1383         * src/pic16/gen.c (genrshTwo): fixed sign extension
1384         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1385         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1386           added T0CONbits
1387         * device/include/pic16/pic18f4220.h: NEW, header for
1388           pic18f4220 and pic18f4320
1389         * device/include/pic16/pic18fregs.h: added new devices,
1390           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1391         * device/include/pic16/signal.h: resolved name clashes
1392           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1393           to also allow testing for interrupt enable bits, added
1394           comments on how to use the macros
1395         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1396         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1397           register definitions for the devices
1398         * device/lib/pic16/pics.all: added new devices
1399         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1400           allocated memory
1401         * device/lib/pic16/libc/stdlib/memfree: do not count
1402           the block header as free memory
1403         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1404           simplified and added missing end-of-blocklist-marker
1405           (reported by Peter Onion, fixes #1252814)
1406         * (_mergeHeapBlock): fixed loop condition
1407         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1408           len==0, restructured code
1409         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1410           up a bit, reduced bitfield accesses, prevent endless loops
1411           in case of heap corruption
1412         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1413           "unreferenced arguments/must return a value" warnings
1414         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1415           replaced BAUDREG with SPBRG
1416         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1417           device/lib/pic16/debug/gstack/gstack.c: replaced
1418           _naked, _asm, _endasm with __naked, __asm, __endasm
1419
1420 2005-08-05 Raphael Neider <rneider AT web.de>
1421
1422         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1423           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1424
1425 2005-08-05 Borut Razem <borut.razem AT siol.net>
1426
1427         * device/lib/Makefile.in: added missing ';'
1428         * configure: removed ^M characters
1429
1430 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1431
1432         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1433           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1434           License
1435
1436 2005-08-04 Borut Razem <borut.razem AT siol.net>
1437
1438         * configure.in: pic16 libraries build 2nd try - enable running
1439           configure in device/lib/pic16
1440         * configure: regenerated from configure.in
1441         * device/lib/Makefile.in: create $(PORT)/bin directory
1442
1443 2005-08-03 Raphael Neider <rneider AT web.de>
1444
1445         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1446           to get/set values via pointers
1447         * (genUnpackBits,genPackBits): changed detection of
1448           ptr->bitfield vs. sym.bitfield, fixed access via generic
1449           pointers, removed dead (wrong) code for multibyte bitfields
1450         * (genNearPointerGet, genGenPointerGet): removed useless code,
1451           fixed bitfield detection, fixes #1250594
1452         * (genNearPointerSet): removed useless code
1453         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1454           and introduced macro pic16_emitpcode that conditionally emits
1455           the origin of the following pCode (useful for debugging SDCC)
1456         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1457         * (createDefmap): fixed handling of LFSR for --optimize-df
1458
1459 2005-08-02 Borut Razem <borut.razem AT siol.net>
1460
1461         * device/lib/Makefile.in: pic16 libraries build enabled since
1462           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1463
1464 2005-08-02 Raphael Neider <rneider AT web.de>
1465
1466         * src/pic16/gen.c (genPackBits): removed deprecated warning
1467         * (genGenPointerSet): fixed bitfield detection
1468
1469 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1470
1471         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1472
1473 2005-07-31 Raphael Neider <rneider AT web.de>
1474
1475         * device/lib/pic16/libdev/pic18f458.c,
1476           device/include/pic16/pic18f458.h: added missing T0CONbits
1477
1478 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1479
1480         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1481
1482 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1483
1484         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1485
1486 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1487
1488         * device/include/mcs51/at89c51ed2.h: added.
1489
1490 2005-07-23 Raphael Neider <rneider AT web.de>
1491
1492         * src/pic/gen.h: added emitpcode macro for debugging
1493         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1494           and replace by macro adding debug information on demand
1495         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1496         * (gencjne): tried to fix; replaced with correct (slower) code
1497         * (gen{Unp,P}ackBits): fixed single bit access
1498         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1499         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1500           previous instruction
1501         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1502           register has to be handled with care (forbidding movement
1503           of assignments/uses, removing assignments completely, ...)
1504         * (pCodeOptime2pCodes): make use of regIsSpecial
1505         * added lots of debugging output (commented out)
1506         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1507           from being reused as result UNLESS it is known to work
1508
1509 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1510
1511         * support/Util/dbuf.h: include <stddef.h> for size_t
1512         * .version: changed to version 2.5.2
1513
1514 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1515
1516         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1517
1518 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1519
1520         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1521           (genModOneByte): removed needless psha/pula
1522
1523 2005-07-22 Raphael Neider <rneider AT web.de>
1524
1525         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1526           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1527         * src/pic/gen.c (resolveIfx): do not "invent" labels
1528         * (genSkipc): changed to positive logic
1529         * (genSkipCond): removed as no longer needed
1530         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1531           backport from PIC16
1532         * (genLeftShift): check operands are in different registers
1533         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1534           INCF does not update CARRY...
1535         * src/pic/main.c: fixed _linkCmd
1536         * src/pic/pcode.c (unlinkpCode): added inactive code
1537         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1538           alive (do not assign result and operand overlapping registers)
1539
1540 2005-07-22 Raphael Neider <rneider AT web.de>
1541
1542         * src/pic/device.c (dump_sfr): replaced register declaration with
1543           call to emitSymbolToFile() to avoid duplicate symbols
1544         * (assignRelocatableRegisters): do not declare external symbols
1545         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1546           right (take size of type, not etype)
1547         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1548         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1549         * (packRegsForAccUse): disabled assignment of WREG as
1550           the result reg to prevent occurence of just fixed #1235003,
1551           fixes #1242954
1552         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1553           symbols (avoids duplicate symbols in .asm file)
1554         * (pic14emitRegularMap): use emitSymbolToFile()
1555         * src/pic/gen.c (aopOp): fixed spillLocation handling
1556         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1557         * (genDataPointerSet): removed unneccessary variables/output
1558
1559 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1560
1561         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1562         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1563
1564 2005-07-21 Raphael Neider <rneider AT web.de>
1565
1566         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1567           architecture cannot handle them efficiently, fixes bug #1235003
1568         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1569           check for empty sets before using them (fixes bug #1232190)
1570
1571 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1572
1573         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1574           (lnksect2): generate warnings for memory overlap
1575         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1576           constseg to set the name of these segments so you can instruct the linker
1577           to place them in banks
1578         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1579         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1580           added code_seg and const_seg to options
1581         * src/SDCCglue.c (emitMaps): use options.const_seg,
1582           (createInterruptVect): put interrupt vectors in segment HOME,
1583           (glue): put HOME before static segment and put the main glue in HOME,
1584           (glue): use options.code_seg
1585         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1586         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1587           these segments so you can instruct the linker to place them in banks
1588           (linkEdit): use code_loc for HOME segment which should be the first
1589           segment in code memory now
1590         * src/SDCCmem.c: fixed more stuff like bug 1238386
1591         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1592           (changePointer): don't change function pointers to code pointers for
1593           banked functions,
1594           (compareType): added exceptional check for banked function pointers
1595         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1596         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1597           after static in code memory
1598         * src/mcs51/gen.c: added aopLiteralLong prototype,
1599           (aopForSym): use getSize for functions,
1600           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1601           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1602           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1603           the segment,
1604           (genPcall): use call for literal function pointers and generate banked
1605           calls over the one trampoline so there's only one place for the user to
1606           modify according to his/hers hardware,
1607           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1608           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1609         * src/mcs51/main.c: added keyword banked,
1610           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1611         * support/Util/SDCCerr.c,
1612         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1613           needed for passing the bank and address to the trampoline
1614         * device/lib/mcs51/crtbank.asm: added for bankswitching
1615         * device/lib/mcs51/Makefile: added crtbank
1616
1617 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1618
1619         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1620           for fields at offset 0 of a struct or union as reported
1621           on 2005-07-07 in the developer mailing list.
1622
1623 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1624
1625         * src/SDCCmem.c: fixed bug 1238386
1626
1627 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1628
1629         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1630           (patch #1144962), added peephole 300, enabled 259.x
1631         * doc/sdccman.lyx: removed screenshot and provided link instead
1632
1633 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1634
1635         * doc/sdccman.lyx: added section about debugging with ddd
1636         * doc/figures/ddd_example.eps: screenshot of debugging session
1637
1638 2005-07-04 Raphael Neider <rneider AT web.de>
1639
1640         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1641           like CODE pointers, fixes #1115683
1642         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1643           call, fixes bugs #1232211, #1228110,
1644           fixed wrong casts to pCodeFlow from pCodeInstructions
1645
1646 2005-07-04 Raphael Neider <rneider AT web.de>
1647
1648         * src/pic/gen.c (popGet): changed assert to allow for
1649           bit operands
1650         * (popGetAddr): changed signature to provide
1651           an additional index, patched all call sites
1652         * (genCmpEq): handle literal-like operands correctly
1653         * (genAddrOf): added sanity checks on __code/__data pointers
1654         * (genAssign): added handling of symbols from __code section
1655         * (gencjne): do not generate code for comparisons whose result
1656           is neither stored nor used, fixes bug #1171114
1657         * (AccLsh, AccRsh): operate on operand instead of WREG
1658         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1659           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1660           by known count
1661         * rewrote complete shift-by-literal logic, commented unused
1662           functions out
1663         * (genConstPointerGet): get multiple bytes (if result size > 1),
1664           fixed handling of non-immediate addresses
1665         * (genPointerGet): handle CODE pointers like CONST pointers
1666         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1667         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1668           operand is to be treated as a literal or not
1669         * (mov2w,genPcall,genCmpEq),
1670           src/pic/genarith.c: use aop_isLitLike() to decide between
1671           literal/register contents
1672         * (addSign): added missing offset
1673         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1674           only emit comment in debug-mode,
1675           use {aop,op}_isLitLike throughout the file
1676         * src/pic/glue.c: fix initializers for pointers (work in progress)
1677         * src/pic/pcode.c (get_op): honor index on _const symbols
1678         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1679         * (dumppBlock): added pCode size estimation
1680         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1681           check for IS_SYMOP before OP_SYMBOL'ing
1682         * fixed indentation, compacted switch-statements
1683         * (allocReg): find free register and allocate it instead of
1684           allocating new registers all the time
1685         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1686           registers as its operands (necessary only for multibyte GETs)
1687
1688 2005-07-01 Raphael Neider <rneider AT web.de>
1689
1690         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1691           debugging .asm-output macros FENTRY + FEXIT
1692         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1693           way... I wonder...
1694         * (emitpComment): NEW, printf to pCode
1695         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1696           offset handling
1697         * (popGetAddr): NEW, variant of popGet to access an immediates
1698           high(er) bytes instead of the n'th byte of memory they reference,
1699           replaced popGet with popGetAddr where neccessary
1700         * (genDataPointerGet): reactivated and fixed implementation
1701         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1702           accesses
1703         * (genDataPointerSet): fixed multibyte assignments
1704         * (genpic14Code): fixed --i-code-in-asm handling
1705         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1706         * (genPlus): fixed index-out-of-bounds error
1707         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1708         * src/pic/ralloc.c: added debugging output macro FENTRY2
1709         * (spillThis): fixed indentation, enbraced for-body for clarity
1710         * (rematStr): commented out as now unused
1711         * (regTypeNum): commented out special spill case (overwrites
1712           arbitrary values)
1713         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1714
1715 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1716
1717         * doc/sdccman.lyx: documented sfr16/sfr32,
1718           added example for using storage class with function pointers
1719         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1720
1721 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1722
1723         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1724         * device/lib/_itoa.c,
1725         * device/lib/_ltoa.c: optimized codesize
1726         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1727           but don't know how to suppress the double warning.
1728         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1729         * support/Util/SDCCerr.c,
1730         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1731
1732 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1733
1734         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1735           fixed old K&R prototypes
1736         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1737         * device/lib/_gptrget.c,
1738         * device/lib/_gptrgetc.c,
1739         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1740           also new versions for small generic pointers and banked generic pointers
1741         * src/port.h: added const_name
1742         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1743         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1744         * src/SDCCcse.c (findPrevIc): check all associative operators
1745         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1746         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1747         * src/SDCCmem.c: updated comments,
1748           set far-space to 0 for pdata, results in optimized code
1749         * src/SDCCmem.h: added macro CONST_NAME
1750         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1751           moving the info into the highest bits, see also gptrget/gptrput
1752         * src/src.dsp: added sdcc.ico to project files
1753         * src/avr/gen.c (genCast): fixed bug 0x%d
1754         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1755         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1756           relation between ptr_type and DCL_TYPE,
1757           (genCast): fixed bug 0x%d
1758         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1759           (CODE)" for const_name
1760         * src/hc08/gen.c (genCast): fixed bug 0x%d
1761         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1762           (hc08_port): added "CONST (CODE)" for const_name
1763         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1764           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1765           between ptr_type and DCL_TYPE,
1766           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1767           operand* and took AOP() inside function so sfr-ness can be checked,
1768           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1769           new prototype,
1770           (genFunction, genEndFunction): optimized stack setup,
1771           (genMinus): optimized for literals with ending zeroes (in bytes),
1772           (genCast): fixed bug 0x%d
1773         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1774           (mcs51_port): added "CONST (CODE)" for const_name
1775         * src/mcs51/peeph.def: made rule 226 more generic
1776         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1777         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1778         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1779         * src/z80/main.c (z80_port): added NULL for const_name,
1780           (gbz80_port): added NULL for const_name
1781         * support/regression/tests/bug663539.c,
1782         * support/regression/tests/sfr16.c: new tests
1783
1784 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1785
1786         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1787
1788 2005-06-24 Raphael Neider <rneider AT web.de>
1789
1790         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1791           corrected typos...
1792         * device/include/pic16/signal.h: added USBIF
1793           and SIG_USB
1794
1795 2005-06-24 Raphael Neider <rneider AT web.de>
1796
1797         * device/lib/pic16/libdev/pic18f2455.c,
1798           device/include/pic16/pic18f2455.h: NEW
1799         * device/include/pic16/pic18fregs.h,
1800           device/lib/pic16/pics.all,
1801           src/pic16/device.c: added 18f2455
1802         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1803           device/include/pic16/{pic18f[68][567].h,usart.h}:
1804           replaced MULTIPLE_USARTS define with more relaible
1805           compatibility sfrs (for USART access)
1806
1807 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1808
1809         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1810           and the output asm file line is printed on two lines.
1811
1812 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1813
1814         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1815           BGT, BLE, BHI, and BLS instructions
1816         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1817           genCmpEq): removed
1818         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1819           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1820           fixes bug #1216342
1821         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1822
1823 2005-06-15 Raphael Neider <rneider AT web.de>
1824
1825         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1826         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1827         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1828           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1829           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1830
1831 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1832
1833         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1834           Marcel Telka in bug #1215704
1835
1836 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1837
1838         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1839           located in shared memory bank.
1840
1841 2005-05-31 Raphael Neider <rneider AT web.de>
1842
1843         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1844           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1845           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1846
1847 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1848
1849         * device/lib/_strncpy.c: fixed the fix
1850
1851 2005-05-26 Raphael Neider <rneider AT web.de>
1852
1853         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1854           initializers with \0, bug #1208187
1855         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1856           intializers with \0, bug #1208187
1857
1858 2005-05-26 Raphael Neider <rneider AT web.de>
1859
1860         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1861           initializers with \0, bug #1208187
1862         * src/pic16/main.c (_process_pragma): added sanity checks
1863           for stack position and size, emit warnings when appropriate
1864
1865 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1866
1867         * device/lib/_strncpy.c: fixed not filling with \0
1868
1869 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1870
1871         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1872           createFunction),
1873         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1874           compound_statement),
1875         * src/SDCCsymt.h,
1876         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1877
1878 2005-05-24 Raphael Neider <rneider AT web.de>
1879
1880         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1881
1882 2005-05-24 Raphael Neider <rneider AT web.de>
1883
1884         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1885           TRISE definitions, closes bug #1162453
1886
1887 2005-05-22 Raphael Neider <rneider AT web.de>
1888
1889         * src/pic16/main.c (_process_pragma): check for missing
1890           arguments to pragmas code and udata
1891         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1892           consistency fixes to match other headers (thanks to Jim Paris)
1893         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1894
1895 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1896
1897         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1898
1899 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1900
1901         * support/regression/tests/bug1198642.c: new test
1902         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1903         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1904         * support/scripts/resource.h,
1905         * support/scripts/resource.rc,
1906         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1907         * support/scripts/sdcc.ico: added 32x32 icon
1908
1909 2005-05-18 Raphael Neider <rneider AT web.de>
1910
1911         * device/lib/pic16/libdev/pic18f*.c,
1912         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1913           keywords to "__sfr" and "__at (X)"
1914         * device/include/pic16/pic18fregs.h: added pic18f4520
1915         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1916           #1203088 (MPLAB compatibility)
1917
1918 2005-05-17 Raphael Neider <rneider AT web.de>
1919
1920         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1921         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1922         * device/lib/pic16/pics.all: added new devices
1923         * src/pic16/device.c: added support for pic18f4520
1924
1925 2005-05-16 Raphael Neider <rneider AT web.de>
1926         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1927         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1928         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1929           convenience function for bit access
1930
1931 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1932
1933         * device/lib/printf_large.c: fixed bug 1193299
1934         * support/regression/tests/bug1057979.c: added test %3.3s
1935
1936 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1937
1938         * device/include/mcs51/8051.h,
1939         * device/include/mcs51/8052.h: made parseable with lint
1940         * device/include/mcs51/lint.h: added include file for (sp)lint
1941         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1942         * doc/cdbfileformat.lyx,
1943         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1944
1945 2005-05-14 Raphael Neider <rneider AT web.de>
1946
1947         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1948         * device/lib/pic16/libc/stdlib/itoa.c (new)
1949         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1950         * device/lib/pic16/libio/Makefile: exclude subdir according to
1951           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1952         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1953         * src/pic16/gen.c (genFunction): prevent annoying warning
1954         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1955           nameclashes on BeOS
1956         * support/cpp2/cppmain.c (cpp_output_string): new
1957         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1958           fixes bug 1116802
1959
1960 2005-05-13 Borut Razem <borut.razem AT siol.net>
1961
1962         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1963
1964 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1965
1966         * .version: changed to version 2.5.1; back to bleeding edge development
1967
1968 2005-05-11 Borut Razem <borut.razem AT siol.net>
1969
1970         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1971           generate PDF version 1.3 documents
1972
1973 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1974
1975         * .version: changed to version 2.5.0
1976
1977 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1978
1979         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1980
1981 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1982
1983         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1984         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1985         well as many smaller updates.
1986         * .version: changed to version 2.5.0-pre1
1987
1988 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1989
1990         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1991
1992 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1993
1994         * support/regression/tests/bug1185672.c: added
1995         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1996           bug 1185672
1997         * src/mcs51/gen.c (genCall): added comments, made it look safer
1998         * src/mcs51/gen.c (genEndFunction): simplified
1999
2000 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2001
2002         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2003
2004 2005-04-14 Borut Razem <borut.razem AT siol.net>
2005
2006         * fixed bug 1045046 - SIGSEGV with really simple code?:
2007           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2008           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2009
2010 2005-04-14 Borut Razem <borut.razem AT siol.net>
2011
2012         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2013           src/pic16/device.h: temporarily disabled experimental #inline pragma
2014           for 2.5.0 release
2015
2016 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2017
2018         * device/include/z80/stdio.h,
2019         * device/include/z80/string.h: removed these highly incomplete files so
2020           SDCC can use the default ones in device/include/
2021
2022 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2023
2024         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2025         gcc warning.
2026         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2027         fix sdcpp warnings.
2028
2029 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2030
2031         * device/include/malloc.h: removed redundant __reentrant prototypes
2032         * device/lib/_mullong.c: added working xstack variant in asm (C version
2033           doesn't pass regression tests)
2034         * device/lib/bpx.c: used __data and made bpx char for mcs51
2035         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2036           (createFunction): fixed bug with xstackPtr
2037         * src/SDCCcse.c: corrected comments
2038         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2039           (killDeadCode, eBBlockFromiCode): removed unused code
2040         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2041           corrected comments
2042         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2043           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2044           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2045           (genModOneByte): fixed warning in MSVC
2046         * src/mcs51/main.c (): added comments
2047         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2048
2049 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2050
2051         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2052
2053 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2054
2055         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2056
2057 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2058
2059         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2060         characters arrays of larger size than the declared one.
2061
2062 2005-04-10 Borut Razem <borut.razem AT siol.net>
2063
2064         * src/pic/gen.c (genInline),
2065           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2066           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2067           (findNextInstruction), (findPrevInstruction),
2068           (findInstructionUsingLabel),
2069           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2070         * src/pic/pcode.c (findLabel): added missing '\n'
2071         * src/src.dsp: added SDCCdwarf2.c to the project
2072
2073 2005-04-09 Borut Razem <borut.razem AT siol.net>
2074
2075         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2076
2077 2005-04-08 Raphael Neider <rneider AT web.de>
2078
2079         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2080           into the chain after a given one) and mergeDefmapSymbols (combine
2081           defmap entries for each symbol per pcode)
2082         * (createDefmap): have defmap entries merged in the end
2083         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2084           a symbol before replacing one access type's symbol, merge symbols in
2085           the end (replacement symbol might already have an entry)
2086         * (assignValnums): keep reference to written WREG intact
2087
2088 2005-04-08 Raphael Neider <rneider AT web.de>
2089
2090         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2091           Alpha)
2092
2093 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2094
2095         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2096         bytes
2097
2098 2005-04-07 Raphael Neider <rneider AT web.de>
2099
2100         * device/include/pic16/usart.h: added compatibility defines for
2101           devices with more than one USART
2102         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2103
2104 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2105
2106         * device/lib/Makefile.in: updated for port specific include
2107
2108 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2109
2110         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2111
2112 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2113
2114         * device/include/8051.h,
2115         * device/include/8052.h,
2116         * device/include/at89S8252.h,
2117         * device/include/at89c55.h,
2118         * device/include/at89x051.h,
2119         * device/include/at89x51.h,
2120         * device/include/at89x52.h,
2121         * device/include/mcs51reg.h,
2122         * device/include/reg51.h,
2123         * device/include/reg764.h,
2124         * device/include/regc515c.h,
2125         * device/include/sab80515.h: (re)moved these 12 files
2126         * device/include/mcs51/8051.h,
2127         * device/include/mcs51/8052.h,
2128         * device/include/mcs51/at89S8252.h,
2129         * device/include/mcs51/at89c55.h,
2130         * device/include/mcs51/at89x051.h,
2131         * device/include/mcs51/at89x51.h,
2132         * device/include/mcs51/at89x52.h,
2133         * device/include/mcs51/mcs51reg.h,
2134         * device/include/mcs51/reg51.h,
2135         * device/include/mcs51/reg764.h,
2136         * device/include/mcs51/regc515c.h,
2137         * device/include/mcs51/sab80515.h: and added them here
2138
2139 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2140
2141         * device/include/stdarg.h: changed SDCC specific keywords to double
2142           underlined form.
2143         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2144           mcs51 and ds390.
2145         * device/include/hc08/mc68hc908gp32.h,
2146         * device/include/hc08/mc68hc908jb8.h,
2147         * device/include/hc08/mc68hc908jkjl.h,
2148         * device/include/hc08/mc68hc908qy.h: fixed comments
2149         * device/include/mcs51/README: updated
2150         * device/include/mcs51/c8051f120.h: added PINRSF
2151         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2152         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2153           amidst code. Also inline is not supported.
2154
2155 2005-04-06 Raphael Neider <rneider AT web.de>
2156
2157         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2158         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2159           callers stack/frame pointers
2160
2161 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2162
2163         * device/include/pic16/usart.h: added, missing in previous commit,
2164         * device/include/pic16/adc.h: fixed typo,
2165         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2166         commit,
2167         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2168         <p18fxxx.inc>
2169         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2170         uninitialized because a bug appears with gplink
2171         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2172         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2173         complains for unrecognised option
2174
2175 2005-04-05 Raphael Neider <rneider AT web.de>
2176
2177         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2178           structs as well (using memcpy)
2179         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2180           on ISRs (GOTO has no label)
2181         * src/pic16/device.h: added OF_OPTIMIZE_DF
2182         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2183           new data flow analysis/optimization
2184         * src/pic16/pcode.c: added (prototypes for and implementation of)
2185           dataflow analysis functions, fixed pCodeInstructions' inCond and
2186           outCond values, made RCALL a branch instruction
2187         * (pic16_unlinkpCode): keep C line if possible
2188         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2189           C line moved if possible
2190         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2191         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2192           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2193         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2194           new flow)
2195         * (pic16_getJumptabpCode): NEW, needed in...
2196         * (LinkFlow): fixed handling of jumptables, calls and conditional
2197           branches
2198         * (pic16_InsertCommentAfter): NEW
2199         * (pic16_pCodeReplace): made verbose and flow preserving
2200         * (AnalyzeFlow): added call to data flow analysis
2201         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2202         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2203         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2204
2205 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2206
2207         * src/SDCCast.c (decorateType): fixed bug #1105626
2208
2209 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2210
2211         * device/include/asm/pic16/features.h,
2212         * pic18f*.h headers,
2213         * device/include/pic16/adc.h,
2214         * device/include/pic16/delay.h,
2215         * device/include/pic16/i2c.h,
2216         * device/include/pic16/malloc.h,
2217         * device/include/pic16/stdio.h,
2218         * device/include/pic16/stdlib.h,
2219         * device/include/pic16/string.h,
2220         * device/lib/pic16/libc/stdio/printf_tiny.c,
2221         * device/lib/pic16/libc/stdio/printf_small.c,
2222         * device/lib/pic16/libc/stdio/strmgpsim.c,
2223         * device/lib/pic16/libc/stdio/strmmssp.c,
2224         * device/lib/pic16/libc/stdio/strmusart.c,
2225         * device/lib/pic16/libc/stdio/vfprintf.c,
2226         * device/lib/pic16/libc/stdlib/ltoa.c,
2227         * device/lib/pic16/libc/stdlib/putchar.c,
2228         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2229         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2230         * device/lib/pic16/libc/stdlib/memchrram.c,
2231         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2232         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2233         * device/lib/pic16/libio/adc/adcbusy.c,
2234         * device/lib/pic16/libio/adc/adcread.c,
2235         * device/lib/pic16/libio/adc/adcsetch.c,
2236         * device/lib/pic16/libio/usart/ubaud.c,
2237         * device/lib/pic16/libio/usart/ubusy.c,
2238         * device/lib/pic16/libio/usart/udrdy.c,
2239         * device/lib/pic16/libio/usart/uopen.c,
2240         * device/lib/pic16/libio/usart/uputc.c,
2241         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2242         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2243         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2244         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2245         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2246         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2247         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2248         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2249         specific keywords to double underlined form,
2250         * device/lib/pic16/libc/Makefile.rules,
2251         * device/lib/pic16/libsdcc/Makefile.rules,
2252         * device/lib/pic16/libm/Makefile,
2253         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2254         to compile with C standard set in Makefile.common
2255         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2256         rand.c and crc.c in compilation process,
2257         * device/lib/pic16/libsdcc/int/divuint.c,
2258         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2259         `c' from signed to unsigned,
2260         * device/lib/pic16/startup/crt0.c,
2261         * device/lib/pic16/startup/crt0i.c,
2262         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2263         keywords to double underlined form, bug fixes in _do_cinit function
2264         which prevented the correct initialization of the .idata segment,
2265         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2266         core to enter a infinite loop
2267         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2268
2269 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2270
2271         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2272
2273 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2274
2275         * device/include/Makefile.in: add support for hc08 subdirectory
2276         * device/include/hc08/: new subdirectory
2277         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2278         Lucas Loizaga, thanks!
2279         * device/include/hc08/mc68hc908qy.h,
2280         * device/include/hc08/mc68hc908gp32.h,
2281         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2282         their own directory. Changed internal macro names to use the compiler
2283         reserved namespace. Changed SDCC specific keywords to double
2284         underlined form.
2285         * device/include/math.h,
2286         * device/include/malloc.h,
2287         * device/include/stdarg.h,
2288         * device/include/stdbool.h
2289         * device/include/string.h,
2290         * device/include/tinibios.h,
2291         * device/include/ds400rom.h,
2292         * device/include/8051.h,
2293         * device/include/8052.h,
2294         * device/include/80c51xa.h,
2295         * device/include/at89c55.h,
2296         * device/include/at89S8252.h,
2297         * device/include/at89x51.h,
2298         * device/include/at89x52.h,
2299         * device/include/ds80c390.h,
2300         * device/include/reg764.h,
2301         * device/include/regc515c.h,
2302         * device/include/sab80515.h,
2303         * device/include/mcs51/c8051f000.h,
2304         * device/include/mcs51/c8051f018.h,
2305         * device/include/mcs51/c8051f020.h,
2306         * device/include/mcs51/c8051f040.h,
2307         * device/include/mcs51/c8051f060.h,
2308         * device/include/mcs51/c8051f120.h,
2309         * device/include/mcs51/c8051f300.h,
2310         * device/include/mcs51/c8051f310.h,
2311         * device/include/mcs51/c8051f320.h,
2312         * device/include/mcs51/c8051f330.h,
2313         * device/include/mcs51/c8051f350.h,
2314         * device/include/z180.h: Changed SDCC specific keywords to double
2315         underlined form.
2316
2317 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2318
2319         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2320         18F4455,
2321         * (pic16_assignConfigWordValue): disable testing of configuration
2322         register value with config mask,
2323         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2324         function with port->fun_prefix,
2325         * (genFunction): when generating a naked interrupt function never
2326         create an absolute segment placed in interrupt vector address, place
2327         the actual interrupt function at IVA instead, when an interrupt
2328         function is generated with unspecified interrupt then do not create
2329         the absolute section,
2330         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2331         code for generating a call to generic pointer get/put function with
2332         a call to function pic16_callGenericPointer(),
2333         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2334         the call to the generic pointer get/put functions with prefixing the
2335         function name with port->fun_prefix,
2336         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2337         * src/pic16/main.c (_process_pragma): prefix function with
2338         port->fun_prefix,
2339         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2340         calling assembler, old 18Fxxxx macro is deprecated,
2341         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2342         PC_ASMDIR in while condition,
2343         * (findInstruction): add PC_ASMDIR in while condition,
2344         * (buildCallTree): prefix main with port->fun_prefix,
2345         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2346         identifier for variable with banked access in instructions BTFSS,
2347         BTFSC, BCF, BSF, BTG
2348         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2349         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2350         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2351         perform optimization when enviroment variable NO_REG_OPT is set,
2352         * (insideLRBlock): NEW, return 1 if register is inside an
2353         INF_LOCALREGS block,
2354         * (RemoveRegFromLRBlock): remove a register that is completely
2355         eliminated by register optimization, but it is still left in local
2356         register store/restore in/from stack block,
2357         * (Remove2pcodes): after removing register, check to see if it
2358         should be removed from local register store/restore in/from stack
2359         block,
2360         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2361         DUMMY_READ_VOLATILE,
2362
2363         * device/include/pic16/adc.h: minor prototype modifications and
2364         update,
2365         * device/include/pic16/malloc.h: added GPL notice various
2366         modifications,
2367         * device/include/pic16/stdint.h: NEW, standard header for ints
2368         * device/include/pic16/delay.h: NEW, header for delay functions,
2369         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2370         delay1mtcy,
2371         * device/include/pic16/signal.h: NEW, header providing helper macros
2372         for implementing signal handlers,
2373         * device/include/pic16/stdio.h: added prototypes for functions,
2374         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2375         prototypes for stdin and stdout, added macro PUTCHAR to
2376         automatically implement putchar function prototype,
2377         * device/include/pic16/usart.h: modified and updated USART library,
2378         * device/lib/pic16/libio/adc/,
2379         * device/lib/pic16/libio/i2c: some modifications to improve library
2380         performance,
2381         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2382         family of functions,
2383         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2384         family of functions and other sources,
2385         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2386         of the PIC18Fxx[28] devices,
2387         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2388         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2389         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2390         _do_cinit function, because the previous failed when local variables
2391         where not placed in the same memory bank,
2392         * device/lib/pic16/libsdcc/char/: various modifications to improve
2393         library performance,
2394         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2395         information on the new functions of the c library and more...
2396
2397 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2398
2399         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2400
2401 2005-03-26 Raphael Neider <rneider AT web.de>
2402
2403         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2404           if condition == CARRY)
2405         * (genCmp): adapted to new genSkipc semantics
2406         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2407           on rIfx (genCmp was broken)
2408
2409 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2410
2411         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2412         * src/z80/main.c (_keywords[]),
2413         * src/SDCCglobal.h (struct options),
2414         * src/SDCC.y,
2415         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2416         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2417         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2418         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2419         always available in leading double underscore form. The C99 support is
2420         mostly missing, but it's a start.
2421         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2422         reserved identifier "__data".
2423
2424 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2425
2426         * src/mcs51/peeph.def: fixed bug 1170013
2427
2428 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2429
2430         * device/include/mcs51reg.h: fixed bug 842007
2431
2432 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2433
2434         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2435         last time.
2436
2437 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2438
2439         * src/port.h (struct PORT),
2440         * src/avr/ralloc.c (avr_assignRegisters),
2441         * src/avr/main.c,
2442         * src/ds390/ralloc.c (ds390_assignRegisters),
2443         * src/ds390/main.c,
2444         * src/hc08/ralloc.c (hc08_assignRegisters),
2445         * src/hc08/main.c,
2446         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2447         * src/mcs51/main.c,
2448         * src/pic/ralloc.c (pic14_assignRegisters),
2449         * src/pic/main.c,
2450         * src/pic16/ralloc.c (pic16_assignRegisters),
2451         * src/pic16/main.c,
2452         * src/xa51/ralloc.c (xa51_assignRegisters),
2453         * src/xa51/main.c,
2454         * src/z80/ralloc.c (z80_assignRegisters),
2455         * src/z80/ralloc.h,
2456         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2457         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2458         * src/SDCCcse.h,
2459         * src/SDCCdflow.c (computeDataFlow),
2460         * src/SDCCdflow.h,
2461         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2462         * src/SDCCloop.h,
2463         * src/SDCCcflow.c (*),
2464         * src/SDCCcflow.h,
2465         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2466         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2467         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2468         immedDom() returning wrong block; probably fixes bug #1160833)
2469
2470 2005-03-20 Borut Razem <borut.razem AT siol.net>
2471
2472         * support/scripts/inc2h.pl: WIN32 port
2473
2474 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2475
2476         * device/lib/makefile.in: added abs.c and labs.c
2477
2478 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2479
2480         * device/include/stdint.h: added
2481         * device/lib/abs.c: added
2482         * device/lib/labs.c: added
2483         * device/include/stdlib.h: added abs() and labs() prototypes
2484         * device/lib/libsdcc.lib: added abs and labs
2485         * device/include/float.h,
2486         * device/lib/_fsmul.c,
2487         * device/lib/printf_fast.c,
2488         * device/lib/printf_tiny.c: updated comments
2489
2490 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2491
2492         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2493         bug #1164313
2494
2495 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2496
2497         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2498         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2499
2500 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2501
2502         * device/lib/printf_large.c: removed inline assembly for portability and
2503           readability. Use printf_fast if speed or size are more important.
2504         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2505         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2506
2507 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2508
2509         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2510         prevent compiler warning
2511
2512 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2513
2514         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2515         moved to level 0 and declared as static. Also they are explicit
2516         placed in access bank. This was necessery because some times they
2517         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2518         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2519         optimizations. Currently only compare to unsigned char is implemented,
2520         * src/pic16/gen.c: added fReturnIdx array,
2521         * (struct resolvedIfx) is moved to gen.h and made public,
2522         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2523         * (aopForSym): added an optimization to directly store in stack of
2524         the operand of a SEND iCode,
2525         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2526         but as registers instead (AOP_REG) using the fReturnIdx array,
2527         * (pic16_freeAsmop): remove the freed register from the
2528         _G.sregsAlloc field,
2529         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2530         a compare of 'WREG',
2531         * (pic16_popGetTempRegCond): changed function prototype, now
2532         function takes also a bitVector argument v which holds the current
2533         set of registers that are allocated for stack access by aopForSym,
2534         registers allocated in aopForSym for accessing stack symbols are not
2535         any more part of the functions usedRegs field,
2536         * (genCall): some times aopOp is called for a stack variable to be
2537         send, aopForSym might perform the push, if this is true make sure
2538         that genCall doesn't push the variable twice by testing _G.resDirect,
2539         * (genFunction): changed testing for unspecified interrupt number
2540         from 256 to INTNO_UNSPEC,
2541         * modified selection scheme of frame pointer generation. Previously
2542         if function did use local registers a frame pointer was generated,
2543         now a frame pointer is generated only if function has arguments
2544         (that need PLUSW2 register access), or has stack arguments, or the
2545         compiler is not instructed to omit the frame pointer,
2546         * (genEndFunction): before restoring local registers that were saved
2547         in the function preamble, also restore the registers that *might*
2548         have been allocated for stack access,
2549         * (genRet): removed some old comments,
2550         * (genCmp, the active (RN's) version): added a call to the
2551         pic16_genCmp_special function to perform the compare with a more
2552         robust and optimized way,
2553         * (genInline): a feature has been added in inline code generation,
2554         which allows a wildcard variable substitution when writing inline
2555         assembly. Code is incomplete and experimental therefore undocumented,
2556         * (genCast): changed order of aopOp for result and right to allow
2557         aopForSym to directly load the result if possible,
2558         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2559         perform an optimized compare on some selected special occasions,
2560         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2561         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2562         generate an IVT any more,
2563         * src/pic16/main.c (pic16_optionsTable): added command line option
2564         --optimize-cmp,
2565         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2566         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2567         macros,
2568         * src/pic16/NOTES: Raphael Neider added in list of active developers
2569         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2570         jumptable_end to prevent bug #,
2571         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2572         inCond and outCond fields,
2573         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2574         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2575         turn off register spilling,
2576         * (packRegsForOneUse): synced with other ports' versions although it
2577         is not used currently,
2578         * (pic16_packRegisters): added an optimization while reading
2579         structure bitfields, some registers may be saved (malloc code is
2580         decreased by 80 bytes)
2581
2582 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2583
2584         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2585         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2586         this can be optimized more?
2587
2588 2005-03-10 Raphael Neider <rneider AT web.de>
2589
2590         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2591           genNearPointerGet): (hopefully) fixed access to bitfields via
2592           pointers (p->bitN = x; and x = p->bitN; failed)
2593
2594 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2595
2596         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2597
2598 2005-03-09 Raphael Neider <rneider AT web.de>
2599
2600         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2601
2602 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2603
2604         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2605         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2606           (regTypeNum): set REG_BIT type if necessary
2607         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2608         * support/regression/tests/critical.c: check bug 1144613
2609
2610 2005-03-02 Raphael Neider <rneider AT web.de>
2611
2612         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2613
2614 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2615
2616         * src/avr/ralloc.c (serialRegAssign),
2617         * src/ds390/ralloc.c (serialRegAssign),
2618         * src/hc08/ralloc.c (serialRegAssign),
2619         * src/mcs51/ralloc.c (serialRegAssign),
2620         * src/pic/ralloc.c (serialRegAssign),
2621         * src/pic16/ralloc.c (serialRegAssign),
2622         * src/xa51/ralloc.c (serialRegAssign),
2623         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2624
2625 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2626
2627         * src/SDCCast.c (decorateType): fixed bug 1124787
2628
2629 2005-02-20 Hubert Sack <sack AT digiplan.de>
2630         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2631
2632         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2633         patch #1121755
2634
2635 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2636
2637         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2638         to keep the correct label reference count when adding/removing references
2639         to labels. A peephole file using this is appended to patch #1144962.
2640
2641 2005-02-14 Raphael Neider <rneider AT web.de>
2642
2643         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2644         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2645         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2646           retrievals of result operand's value on assignment
2647
2648 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2649
2650         * device/include/pic16/string.h: modified prototype for memccpy()
2651         to memccpy(void *, void *, char, size_t)
2652         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2653         check whether to omit frame pointer or not,
2654         * (genInline): convert all occurences of "\n" to LF in inline
2655         assembler blocks, this helps formatting the inline text,
2656         * (pic16_loadFSR0): modified prototype,
2657         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2658         removed some 8051 legacy code,
2659         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2660         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2661         before allocating temporary registers in functions,
2662
2663 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2664
2665         * support/regression/tests/bitvars.c: corrected the "fix"
2666
2667 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2668
2669         * support/regression/tests/bitvars.c,
2670         * support/regression/tests/bitwise.c,
2671         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2672
2673 2005-02-10 Raphael Neider <rneider AT web.de>
2674
2675         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2676           different size for Alpha
2677         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2678
2679 2005-02-09 Raphael Neider <rneider AT web.de>
2680
2681         * src/SDCC.lex(doPragma) : save and restore warning options as well
2682           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2683         * have #pragma less_pedantic set the errorlevel to WARNING
2684           (fixes #1117001)
2685         * (cloneOptimize) : fixed wrong malloc's size
2686         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2687           facilitate correct handling of #pragma (save|restore)
2688
2689 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2690
2691         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2692
2693 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2694
2695         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2696
2697 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2698
2699         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2700
2701 2005-02-02 Raphael Neider <rneider AT web.de>
2702
2703         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2704         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2705         * (pic16_storeForReturn): fixed to allow returning function pointers
2706         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2707         * device/include/pic16/{stddef.h,stdbool.h}: added
2708
2709 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2710
2711         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2712
2713 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2714
2715         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2716         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2717          appeared to be required
2718
2719 2005-01-31 Borut Razem <borut.razem AT siol.net>
2720
2721         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2722           include/mcs51 and include/z80 directories to the package
2723
2724 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2725
2726         * src/hc08/gen.c (genFunction): fixed bug #1112752
2727
2728 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2729
2730         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2731
2732 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2733
2734         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2735
2736 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2737
2738         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2739
2740 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2741
2742         * device/include/c8051fxxx.h: removed these 6 files
2743         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2744
2745 2005-01-26 Raphael Neider <rneider AT web.de>
2746
2747         * src/pic16/gen.c (genAssign): fixed assignment from longs
2748           in codespace (were cut to three bytes)
2749         * (genDummyRead): implemented (except for CODESPACE...),
2750           fixed bug #1108575
2751         * src/pic16/glue.c (emitStatistics): beautified
2752         * device/lib/pic16/libm/Makefile: added include path
2753
2754 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2755
2756         * src/z80/gen.c (aopPut): fixed bug #1103902
2757
2758 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2759
2760         * device/lib/expf.c: fixed bug #1095792
2761
2762 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2763
2764         * device/lib/pic16/libm: added Math library sources
2765
2766 2005-01-24 Raphael Neider <rneider AT web.de>
2767
2768         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2769           to enable upcast to pCodeOpReg2 (there is no type tag to
2770           differenciate the two and pic16_popGet2p cast into PCOR2)
2771         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2772           (sizeof(sectNames) changed to sizeof(sectName))
2773           Both patches fix segfaults under MinGW.
2774
2775 2005-01-23 Raphael Neider <rneider AT web.de>
2776
2777         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2778           Safe_[mc]?alloc()'ed variables
2779         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2780           of (byte sized) temporaries (assign them to WREG for now)
2781         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2782           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2783           this might fix SIGSEGVs on MinGW...
2784         * src/SDCCopt.c (killDeadCode): restored original behaviour
2785           (volatile operands might get thrown away though)
2786
2787 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2788
2789         * src/pic16/gen.c: fixed bug #1106975,
2790         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2791         pointer update, INTCON is saved, global interrupts are disabled and
2792         restored after updateing TOS.
2793         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2794         * added function attribute 'shadowregs' to take advantage of shadow
2795         registers,
2796         * added function attribute 'wparam' as an alternative to the wparam
2797         pragma,
2798         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2799         user declares a non-ISR function as 'shadowregs',
2800         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2801
2802 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2803
2804         * .version: bumped version number to 2.4.8
2805         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2806         pic16 port,
2807         * device/lib/pic16/libio/i2c/: I2C module support library,
2808         * device/include/pic16/i2c.h: I2C support library header,
2809         * device/lib/pic16/libc/stdio/: standard IO support sources,
2810         * (printf_small.c): printf_small() source, supports float print,
2811         * (printf_tiny.c): printf_tiny() source, does not support floats,
2812         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2813         enable global optimizations for entire library source, other
2814         Makefiles in the source tree are also modified to reflect this,
2815         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2816         function,
2817         * doc/sdccman.lyx: updated to reflect new changes,
2818         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2819         sym->onStack if-case,
2820         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2821         sbit, idata, _idata, xdata, _xdata,
2822         * added pragma library, to link an external library, (see doc),
2823         * removed command line options, --pomit-config-words, --pomit-ivt,
2824         --pleave-reset-vector,
2825         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2826         when calling assembler to reflect memory model used, also define
2827         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2828         reflect stack model used,
2829         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2830         on stack return NULL,
2831
2832 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2833
2834         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2835           of the operands is volatile. Fixes #1020220
2836
2837 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2838
2839         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2840         * (OptimizeRegUsage): make sure that there is really no other flow where
2841           the first pCode is used
2842
2843 2005-01-22 Raphael Neider <rneider AT web.de>
2844
2845         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2846           to fix #1106967 (pCode->seq are not set up correctly)
2847
2848 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2849
2850         * src/SDCCglue.c (glue): make sure code area is declared before the
2851         static initialization area.
2852
2853 2005-01-21 Raphael Neider <rneider AT web.de>
2854
2855         * device/lib/Makefile.in: fixed test for pic16 install dir
2856         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2857           optimizations
2858         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2859           added --optimize-goto compiler switch and pragma wparam documentation
2860         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2861         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2862           and PRODH closing bug #1071770 (peephole optimizer)
2863
2864 2005-01-19 Raphael Neider <rneider AT web.de>
2865
2866         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2867           cmdLine buffers (used when calling sdcpp...) are large enough
2868           (MAX_PATH=256 truncates arguments leading to system halts when
2869           used in MinGW...)
2870         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2871         * (genUminus): rewritten to for efficiency
2872         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2873           used uninitialized in some cases)
2874         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2875           copy the third byte from the int -- now assumes 0x80 (data memory)
2876         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2877           operands (genAddLit expects the iCode's operands to swapped as
2878           well), fixed leftover bytes (crashed for short left operands)
2879         * (pic16_genMinusDec): performance improvements, removed false
2880           PIC14 emitSKPNCs
2881         * (pic16_genMinus): fixed to cope with differently sized operands
2882         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2883           for --obanksel > 1
2884         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2885         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2886           new banksel optimization
2887         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2888           analysis for temporary registers (segfaults...)
2889         * src/pic16/peeph.def: added rule
2890
2891 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2892
2893         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2894         which converts a float number to its ASCII representation
2895         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2896         functions to convert the fractional and integer part of a float to ASCII,
2897         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2898         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2899         ram
2900         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2901         _STATMEM macros,
2902         * device/include/pic16/adc.h: added GPL info,
2903         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2904         a pCodeOp as tested operand,
2905         * (genNearPointerGet): optimized bit testing, does not use
2906         intermediate register for bit value, test directly instead with
2907         BTFSS, BTFSC, works only for single bits,
2908         * (genpic16Code): dump the name of the iCode in the asm,
2909         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2910         renamed to pic16_decodeOp,
2911         * (serialRegAssign): do not allocate a temporary register for iCode
2912         sequences that test a single bit for 1/0
2913
2914 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2915
2916         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2917         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2918         access stack and frame pointers. They are initially assigned to
2919         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2920         accessing SFRs. Updated all occurences of modification of stack or
2921         frame pointer in gen.c and pcode.c,
2922         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2923         assigning of a literal value to pointers,
2924         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2925         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2926         selected
2927
2928 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2929
2930         * doc/sdccman.lyx: update documentation about stack pragma, added
2931         some info for stack memory models
2932
2933 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2934
2935         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2936
2937 2005-01-08 Raphael Neider <rneider AT web.de>
2938
2939         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2940           udata sections to fix bug #1097823
2941
2942 2005-01-05 Raphael Neider <rneider AT web.de>
2943
2944         * src/pic16/gen.c (genGenericShift): added handling of differently
2945           sized left operand and result
2946
2947 2005-01-04 Raphael Neider <rneider AT web.de>
2948
2949         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2950         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2951           to hold the condition bit)
2952         * added new version of genCmp (old code available via #define)
2953         * added new version of genShiftLeft/genShiftRight in a generic
2954           way, now supports shifting by negative values
2955         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2956           shiftCount (expected by genGenericShift)
2957         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2958         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2959           dump
2960         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2961           is an invalid literal too...)
2962
2963 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2964
2965         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2966         from Raphael Neider,
2967         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2968         for 8-bit literals. This fixes some literal operands which are sign
2969         extended to 16-bits ints when instruction needs only 8-bits.
2970
2971 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2972
2973         * device/lib/logf.c: added mcs51 assembly version
2974         * device/lib/expf.c: added mcs51 assembly version
2975         * device/lib/_logexpf.c: new shared asm code for expf and logf
2976         * device/include/math.h: add defines for assembly math library
2977         * device/lib/Makefile.in: build new _logexpf.c
2978         * device/lib/libfloat.lib: use new _logexpf.c
2979
2980 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2981
2982         * src/pic/device.c
2983         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2984           device types which have less than 0x7f registers.
2985
2986 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2987
2988         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2989
2990 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2991
2992         * device/lib/printf_fast.c: only build on supported arch.
2993         * device/lib/printf_tiny.c: only build on supported arch.
2994         * device/lib/printf_fast_f.c: only build if asm float lib
2995         * device/lib/_fsget1arg.c: only build if asm float lib
2996         * device/lib/_fsget2args.c: only build if asm float lib
2997         * device/lib/_fsnormalize.c: only build if asm float lib
2998         * device/lib/_fsreturnval.c: only build if asm float lib
2999         * device/lib/_fsrshift.c: only build if asm float lib
3000         * device/lib/_fsswapargs.c: only build if asm float lib
3001         * device/include/stdio.h: don't provide print_fast,
3002           print_fast_f, print_tiny prototypes if --xstack used
3003
3004 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3005
3006         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3007         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3008           to the SOURCES
3009
3010 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3011
3012         * device/lib/printf_fast_f.c: same as printf_fast, but
3013           with floating point enabled
3014         * device/lib/printf_fast.c: minor tweaks
3015         * device/include/stdio.h: add printf_fast_f
3016
3017 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3018
3019         * src/SDCCmain.c: make --float-reent default for mcs51
3020         * device/lib/_fsadd.c: added mcs51 assembly version
3021         * device/lib/_fssub.c: added mcs51 assembly version
3022         * device/lib/_fsmul.c: added mcs51 assembly version
3023         * device/lib/_fsdiv.c: added mcs51 assembly version
3024         * device/lib/_fseq.c: added mcs51 assembly version
3025         * device/lib/_fsneq.c: added mcs51 assembly version
3026         * device/lib/_fsgt.c: added mcs51 assembly version
3027         * device/lib/_fslt.c: added mcs51 assembly version
3028         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3029         * device/lib/Makefile.in: add _fscmp to build
3030         * device/lib/libfloat.lib: add _fscmp to build
3031
3032 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3033
3034         * device/lib/_fs2slong.c: added mcs51 assembly version
3035         * device/lib/_fs2sint.c: added mcs51 assembly version
3036         * device/lib/_fs2schar.c: added mcs51 assembly version
3037         * device/lib/_fs2ulong.c: added mcs51 assembly version
3038         * device/lib/_fs2uint.c: added mcs51 assembly version
3039         * device/lib/_fs2uchar.c: added mcs51 assembly version
3040         * device/lib/_slong2fs.c: added mcs51 assembly version
3041         * device/lib/_sint2fs.c: added mcs51 assembly version
3042         * device/lib/_schar2fs.c: added mcs51 assembly version
3043         * device/lib/_ulong2fs.c: added mcs51 assembly version
3044         * device/lib/_uint2fs.c: added mcs51 assembly version
3045         * device/lib/_uchar2fs.c: added mcs51 assembly version
3046         * device/include/float.h: added #define to select asm vs c
3047
3048 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3049
3050         * device/lib/printf_fast.c: improvements to float output
3051         * device/include/float.h: add defines for assembly float library
3052         * device/lib/_fsget1arg.c: receive 1 float arg
3053         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3054         * device/lib/_fsnormalize.c: normalize a float
3055         * device/lib/_fsreturnval.c: return float, various helper routines
3056         * device/lib/_fsrshift.c: right shift a float's mantissa
3057         * device/lib/_fsswapargs.c: swap 2 floats
3058         * device/lib/Makefile.in: build these 6 new files for mcs51
3059         * device/lib/libfloat.lib: add these 6 files to the library
3060
3061 2004-12-26 Borut Razem <borut.razem AT siol.net>
3062
3063         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3064           built by gcc 3.4.2
3065
3066 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3067
3068         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3069           and fully reentrant and register bank neutral.
3070         * device/lib/printf_fast.c: added float (not enabled by default),
3071           added compact/slower integer (also not enabled by default),
3072           improved size/speed of fast integer code, other minor changes
3073         * device/include/stdio.h, device/lib/Makefile.in,
3074           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3075
3076 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3077
3078         * src/pic16/pcode.c: declaring variables other than at the start of a
3079           block is not supported in C by VC6.
3080
3081 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3082
3083         * applied a previous patch from Raphael Neider that wasn't included
3084         in the previous commits, which fixes infinite loops within jumptable
3085         improvements,
3086         * made some fixes that previous patches introduced
3087
3088 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3089
3090         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3091         that fixes an issue with AOP_PCODE asmop's offset,
3092         * (pic16_popCopyReg): update instance field too,
3093         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3094         function of pic port,
3095         * (genCmp, genAnd, genAssign),
3096         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3097
3098 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3099
3100         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3101         variables initial values to idata section,
3102         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3103         variables in some functions. This utilizes parmBytes field of iCode
3104         structure to hold the offset of the variable in stack. (might be
3105         able to use the stack field too?)
3106         * applied patch from Raphael Neider # ### , # ###
3107         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3108         variable initial values in idata section,
3109         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3110         for static variables with initial value
3111         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3112         applied fix in while loop from Raphael Neider.
3113
3114 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3115
3116         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3117         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3118         * src/ds390/ralloc.c (serialRegAssign): spill bits
3119         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3120         * support/Util/SDCCerr.c,
3121         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3122         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3123         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3124
3125 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3126
3127         * device/include/sdcc-lib.h: inserted LGPL, added includes
3128           asm/ds390/features.h and asm/mcs51/features.h
3129         * device/include/asm/default/features.h,
3130         * device/include/asm/gbz80/features.h,
3131         * device/include/asm/z80/features.h: added empty _AUTOMEM
3132           and _STATMEM
3133         * device/include/asm/ds390/features.h,
3134         * device/include/asm/mcs51/features.h: added files with defines for
3135           _AUTOMEM and _STATMEM indicating automatic and static storage class
3136         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3137         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3138         * src/SDCCicode.c (geniCodeCast),
3139         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3140         * src/SDCCloop.c (loopInduction): removed unused variable lr
3141         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3142           to convertToFcall to include char modulo (RFE 1065037), added check
3143           if left operand is unsigned and use abs of literal value
3144         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3145           as it doesn't work after conversion from peephole.def to peephole.rul
3146         * src/mcs51/gen.c (toBoolean): added check for size,
3147           (genModOneByte): optimized code for signed char modulo a literal
3148           power of 2 (thanks to Hubert Sack),
3149           (genRRC): removed unnecessary "clr c",
3150           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3151         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3152           jump optimization,
3153           swapped rules 256.c and 256.d,
3154           extended 256.d by using new multiple checks (thanks Erik),
3155           added rules 256.e and 256.f,
3156           updated rule 261.a and 261.b to new generated code
3157         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3158
3159 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3160
3161         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3162           induction related bugs, including first part of bug #1074377
3163
3164 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3165
3166         * applied patch from bug-report #1076292,
3167         * applied patches for genAnd and Goto-optimizations for Raphael
3168         Neider,
3169         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3170         dump a less iCode information,
3171         * src/pic16/device.h (pic16_options_t): added field debgen,
3172         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3173         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3174         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3175         puclic,
3176         * (various functions): added macros FENTRY and FENTRY2 to functions,
3177         to emit function prologue,
3178         * (various functions): fixed indentation,
3179         * (genNearPointerGet): fixed loading of FSR0,
3180         * (genPackBits): applied patch from Raphael Neider to fix updating
3181         of FSR0 and touching only the modified bits,
3182         * src/pic16/genarith.c (various functions): added macros FENTRY to
3183         emit function prologue in comments,
3184         * src/pic16/pcode.h: added functions debugf2, debugf3,
3185         * src/pic16/ralloc.c: partial fix for packForPush caused
3186         segmentation fault,
3187
3188 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3189
3190         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3191           <stsp AT users.sourceforge.net> with reversed byte order
3192         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3193
3194 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3195
3196         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3197           bug #1074377
3198         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3199         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3200
3201 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3202
3203         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3204
3205 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3206
3207         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3208           conditions,
3209           (setFromConditionArgs): friendly operand parser for peephole rules,
3210           (operandBaseName, operandsNotRelated): new peephole condition
3211           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3212           architecture specific register naming into account, handles n-way
3213           comparisons, and supports quoted literals
3214         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3215
3216 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3217
3218         * src/mcs51/peeph.def: fixed bug #1076940
3219
3220 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3221
3222         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3223
3224 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3225
3226         Adding support for replacing ljmps with sjmps in jumptables
3227         generated for switch statements. For now you need to set the
3228         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3229         Now 4 algorithms for mcs51 jumptable generation are used:
3230         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3231         addresses loaded pc-relative for up to 112 cases and stack-pushing
3232         target addresses loaded with offset from dptr for up to 256 cases.
3233
3234         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3235         * src/mcs51/main.c: adapted constants for switch table generation
3236         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3237
3238 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3239
3240         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3241         * support/regression/tests/bug1057979.c: added test for bug 1073386
3242
3243 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3244
3245         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3246         compilers
3247
3248 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3249
3250         * src/pic16/device.h,
3251         * src/pic16/genarith.c,
3252         * src/pic16/glue.c,
3253         * src/pic16/main.c,
3254         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3255
3256 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3257
3258         Large cummulative patch for pic16 port.
3259         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3260         to call when a stack overflow occurs,
3261         * (malloc.h): added CVS Id tag,
3262         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3263         variable,
3264         * added libc directory. The current version of LibC contains string
3265         functions, ctype functions and macros and some functions of the
3266         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3267         be extensively tested in the future. Standard disclaimer here.
3268         Library is not automatically build yet. But one can build it by
3269         invoking 'make' inside the libc directory.
3270         * added ADC library under libio. Preliminary version yet.
3271
3272         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3273         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3274         aopForRemat() now and not by pic16_aopOp(),
3275         * (pic16_popGetTempReg): removed warning messgae when allocating
3276         temporary registers, its a buggy feature and will be removed,
3277         * (pic16_popGet): set register instance field in AOP_CRY,
3278         * (pic16_outBitC): fixed for results in size greater than 1,
3279         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3280         * (pic16_storeForReturn): optimized return of 0,
3281         * (genCmp): experimental code for new genCmp which uses PIC18's
3282         special compare&skip instructions. Initial tests fail some times
3283         with variables grater than 1 byte in size, so new code is disabled,
3284         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3285         a single bit,
3286         * (genCast): began a fix to optimize the casting of a bit to another
3287         bit, now assigning a bitfield to another bitfield will fail, sorry,
3288         * src/pic16/main.c: disabled the use of lr-support feature,
3289         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3290         * added some function prototypes, added function _debugf prototype,
3291         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3292         bits with offset (case PO_GPR_BIT),
3293         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3294         command line,
3295         * (isBankInstruction): modified to return 0 for no banking instruction,
3296         and 1 for banking instruction,
3297         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3298         caused stop processing pCodes after a inline assembly block,
3299         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3300         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3301         registers when it shouldn't,
3302         * src/pic16/ralloc.c (allocReg): add preliminary support for
3303         supporting a limited set of temporary registers,
3304
3305 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3306
3307         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3308           genDataPointerSet): ensure assignments always copy in MSB to LSB
3309           order,
3310           (loadRegFromAop): recognize CLRH optimization,
3311           (genFunction): optimize RECEIVE iCodes in reentrant functions
3312
3313 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3314
3315         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3316           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3317           selected.
3318         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3319         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3320           contiguous with data
3321
3322 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3323
3324         * device/lib/_gptrget.c (_gptrget),
3325         * device/lib/_gptrgetc.c (_gptrgetc),
3326         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3327           instead of sjmp to ret
3328         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3329           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3330
3331 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3332
3333         * .version: bumped version to 2.4.7
3334         * device/lib/_gptrget.c (_gptrget): is now _naked
3335         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3336         * device/lib/_gptrput.c (_gptrput): is now _naked
3337         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3338           (createFunction): fixed xstack
3339         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3340         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3341           or bit either,
3342           (geniCodeCritical): store original interrupt state in an iTemp bit
3343           var unless stack-auto
3344         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3345         * src/SDCCmain.c (setIncludePath): added include/target to search path
3346         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3347         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3348           prototype,
3349           (processFuncArgs): put bit vars in bit area
3350         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3351           unsaveRBank): fixed xstack,
3352           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3353           (genFunction, genEndFunction): fixed xstack,
3354           (genAssign): optimization don't walk backwards through mem
3355         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3356         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3357         * support/regression/Makefile: also make library (for stack-auto) when
3358           making "all" and added "test-mcs51-xstack-auto"
3359         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3360         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3361         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3362         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3363         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3364           make-library by MAKE_LIBRARY
3365         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3366           regression tests for xstack
3367         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3368         * support/regression/tests/critical.c: test for critical on mcs51
3369
3370 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3371
3372         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3373           built version of sdcc instead of installed version
3374
3375 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3376
3377         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3378         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3379           vprintf.c now
3380         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3381         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3382           WARNING: remove device/lib/build/z80/printf.o by hand when
3383           updating from previous build!
3384         * device/lib/z80/printf.c: updated comment
3385         * support/regression/tests/bug1057979.c: test all ports now
3386         * support/regression/tests/bug1065458.c: file added
3387
3388 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3389
3390         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3391           *_start and *_end symbols for static functions
3392
3393 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3394
3395         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3396           and search crt0.o in all library paths,
3397           (setIncludePath): proper handling of --nostdinc,
3398           (setLibPath): proper handling of --nostdlib
3399         * support/regression/Makefile,
3400         * support/regression/ports/ds390/spec.mk,
3401         * support/regression/ports/gbz80/spec.mk,
3402         * support/regression/ports/hc08/spec.mk,
3403         * support/regression/ports/mcs51/spec.mk,
3404         * support/regression/ports/mcs51-large/spec.mk,
3405         * support/regression/ports/mcs51-stack-auto/spec.mk,
3406         * support/regression/ports/z80/spec.mk: use include and lib files from
3407           built version of sdcc instead of installed version
3408         * doc/sdccman.lyx: fixed typo in --nostdinc
3409
3410 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3411
3412         * src/pic/pcode.c,
3413         * src/pic/device.c,
3414         * src/pic/ralloc.c,
3415         * src/pic/gen.c : added support to generate code for struct bit fields.
3416
3417 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3418
3419         * as/xa51/xa_version.h,
3420         * device/include/errno.h,
3421         * device/include/regc515c.h,
3422         * device/lib/_itoa.c,
3423         * device/lib/_ltoa.c,
3424         * device/lib/ser_ir_cts_rts.c,
3425         * sim/ucsim/xa.src/glob.cc,
3426         * sim/ucsim/xa.src/inst_gen.cc,
3427         * sim/ucsim/xa.src/xa_bit.cc,
3428         * sim/ucsim/xa.src/xa_sfr.cc,
3429         * sim/ucsim/z80.src/inst_dd.cc,
3430         * sim/ucsim/z80.src/inst_fdcb.cc,
3431         * support/scripts/keil2sdcc.pl,
3432         * src/pic16/pic16.dsp,
3433         * src/pic16/pic16a.dsp: corrected cvs line endings
3434         * device/lib/printf_large.c: fixed bug 1057979
3435         * src/pic16/gen.c: fixed non-C standard code
3436         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3437         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3438         * support/regression/ports/mcs51/support.c: reload T1 asap
3439         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3440           pdata use and clear idata startup behaviour
3441         * support/regression/tests/bug1057979.c: added
3442
3443 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3444
3445         * device/examples/ds390/ow390/ad26.h,
3446         * device/examples/ds390/ow390/cnt1d.h,
3447         * device/examples/ds390/ow390/crcutil.c,
3448         * device/examples/ds390/ow390/ownet.h,
3449         * device/examples/ds390/ow390/owsesu.c,
3450         * device/examples/ds390/ow390/swt12.h,
3451         * device/examples/ds390/ow390/swtoper.c,
3452         * device/examples/ds390/ow390/temp10.h,
3453         * device/examples/ds390/ow390/thermodl.c,
3454         * device/examples/ds390/tinitalk/tinitalk.dsp,
3455         * device/examples/ds390/tinitalk/tinitalk.dsw,
3456         * device/examples/mcs51/clock/hw.h,
3457         * device/examples/mcs51/simple2/go.bat,
3458         * device/examples/serialcomm/windows/serial.h,
3459         * device/examples/xa51/dummy.c,
3460         * device/examples/xa51/hello.c,
3461         * device/include/80c51xa.h,
3462         * device/include/at89x051.h: corrected cvs line endings
3463
3464 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3465
3466         * src/pic16/main.c (options): added command line --gstack, to trace
3467         stack over/under flows,
3468         * added pragma 'wparam' to allow passing first byte of function
3469         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3470         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3471         call to __gstack_test function and sets up the symbol as extern,
3472         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3473         * popaop): added call to pic16_testStackOverflow,
3474         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3475         wparamList list,
3476         * (genCall, genPcall): now all parameters are passed via stack
3477         except in functions that are pass to wparam pragma in which WREG is
3478         used too,
3479         * (genPcall): REENTRANT flag is checked to see if variable prototype
3480         contains reentrant keyword, don't call a non-reentrant function, via
3481         a reentrant function pointer or vice versa, functions are never
3482         passed via WREG,
3483         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3484         D.Winkler,
3485         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3486         SIGSEGV when accessing a NULL register stucture,
3487         * (pic16_printGPointerType): modified to handle UPPER modifier for
3488         function initializers, changed prototype of function to simpler one,
3489         * (pic16_printIvalFuncPtr): check to see if function is already
3490         added in externs list,
3491         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3492         optimized a move from W to SFR with a move to the same register
3493         later after a CALL,
3494         * device/lib/pic16/debug: NEW directory, contains debug features
3495         which are enabled when linking with libdebug.lib, currently command
3496         line option --gstack enables stack pointer tracing for over/under
3497         flow, corresponding sources are in debug/gstack
3498
3499 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3500
3501         * doc/sdccman.lyx: updated SDCC version,
3502         * (PIC16 port): update list of command line options,
3503         * src/pic16/device.h (structure pic16_options_t): added field gstack
3504         to enable stack overflow tracing on push/pops,
3505         * src/pic16/device.c (statistics structure): added statistics
3506         structure,
3507         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3508         pic16_dump_int_registers): increase statistics counters for each
3509         * variable which is encountered
3510         * (pic16_dump_usection): emit each .udata variable to its own udata
3511         section,
3512         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3513         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3514         parameters via stack, otherwise use old scheme,
3515         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3516         assembler output file,
3517         * src/pic16/main.c: added command line options --gstack to enable
3518         push/pop tracing for stack overflow,
3519         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3520         instructions): added size of each instruction,
3521         * (pic16_countInstruction): estimate size of instructions in
3522         the_pFile list, inline assembly blocks are not counted,
3523         * (pic16_FixRegisterBanking): trace previous register usage, when
3524         banksel optimizations is greater than 0, don't emit a redudant
3525         banksel directive,
3526
3527 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3528
3529         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3530         * src/pic16/ralloc.c : applied same fix for pic16.
3531         * src/pic/gen.c : tidied it up a little.
3532
3533 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3534
3535         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3536         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3537
3538 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3539
3540         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3541
3542 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3543
3544         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3545         non-reentrant function __modsint in the interrupt function (thus
3546         corrupting math operations during serial I/O)
3547         * device/lib/ser_ir.c: as above, changed buffersize
3548         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3549         256.c,d for zeroing
3550         * doc/Makefile: added option -t for rsync
3551
3552 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3553
3554         * src/SDCCast.h (struct ast),
3555         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3556
3557 2004-10-20 Borut Razem <borut.razem AT siol.net>
3558
3559         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3560         package
3561
3562 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3563
3564         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3565         makefile targets,
3566         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3567         support functions to replace long sequences of MOVFF's from access
3568         bank registers to stack and vice versa,
3569         * src/pic16/device.h: added new field opt_flags, where optimization
3570         flags can be set to enable certain features,
3571         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3572         * pBlock, (genFunction, genEndFunction): surroung loop for
3573         saving/loading used registers in stack with PC_INFO pCodes,
3574         INF_LREGS. Code in between can then be optimized by pCode optimizer
3575         to support function calls,
3576         * (genDataPointerSet): fixed bug which loaded float fields in
3577         structures with corrupt data,
3578         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3579         in a standard way debug info on stderr. Feature used for developing
3580         and debugging only,
3581         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3582         obsolete chunks of code,
3583         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3584         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3585         * pic16/src/pcode.c (pic16_newpCodeInfo,
3586         * (pic16_newpCodeOpLocalRegs),
3587         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3588         feature,
3589         * (pic16_pCodeConstString): printing of the initial value of a
3590         symbol as a comment is inhibited since parsing was already done by
3591         copyStr and output is corrupt,
3592         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3593
3594 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3595
3596         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3597
3598 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3599
3600         * as/mcs51/lkarea.c: removed old K&R style,
3601           (lnksect): changed check on boundary error,
3602           (lnksect2): changed check on boundary error,
3603           (lnksect2): extend XSTK to end of page if size = 1
3604         * as/mcs51/lkmain.c: removed old K&R style,
3605           (Areas51): create l_IRAM symbol
3606         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3607         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3608           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3609         * device/lib/_mullong.c: added version to be compiled with xstack
3610         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3611         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3612         * device/lib/mcs51/crtxstack.asm: fixed comment
3613         * src/SDCCglue.c: maxInterrupts defaults to 0,
3614           (emitMaps): added pdata,
3615           (createInterruptVect): (re)moved default,
3616           (glue): added pdata,
3617           (glue): moved __start__xstack to XSTK with default size 1
3618         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3619           and options.float_rent when options.stackAuto is set,
3620           (linkEdit): only write XDATA_NAME if provided on command line
3621         * src/SDCCmem.h,
3622         * src/SDCCmem.c: added pdata
3623         * src/port.h: added pdata_name to PORT
3624         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3625           (saveRegisters, unsaveRegisters): removed usage of B,
3626           (genMinus): fixed accumulator clash,
3627           (genJumpTab): added comment, this needs another look
3628         * src/mcs51/gen.c: added check for "B in use" paranoia,
3629           added pushB() and popB()
3630         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3631           chance
3632         * src/avr/main.c,
3633         * src/ds390/main.c,
3634         * src/hc08/main.c,
3635         * src/mcs51/main.c,
3636         * src/pic/main.c,
3637         * src/pic16/main.c,
3638         * src/xa51/main.c,
3639         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3640           added PSEG (PAG,XDATA) or NULL to port specifier
3641         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3642         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3643           (_mcs51_genInitStartup): removed __start__xstack equ,
3644           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3645         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3646         * src/z80/gen.c (_rleAppend): fixed warnings
3647         * support/regression/tests/zeropad.c: added pdata test
3648         * .version: bumped to 2.4.6
3649
3650 2004-10-17 Borut Razem <borut.razem AT siol.net>
3651
3652         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3653         as a part of nightly build
3654
3655 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3656
3657         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3658         WREG holds the first byte function parameters,
3659         * (aopForSym): take special case for symbols which are in FARSPACE
3660         but in CODESPACE too,
3661         * (assignResultValue): modified to take into account _G.useWreg,
3662         * (genCall): don't use wreg for parameter passing when function is
3663         declared as reentrant, too, added optimization INCF to stack
3664         pointer when stack parameter count is 1,
3665         * (genFunction, genEndFunction): refurnished and fixed to not using
3666         wreg for passing parameters when function has varargs or is
3667         reentrant, fixed bug with symbol name compare for generating
3668         functions in absolute address,
3669         * (pic16_storeForReturn): refurnished,
3670         * (genCmp): began writing a new version of the function, not ready
3671         yet, therefore it is disabled,
3672         * (genAssign): do not read code memory when assigning a function to
3673         a pointer function,
3674         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3675         array of characters, not pointer,
3676         * (pic16initialComments): in debug mode emit an .ident directive for
3677         the assembler,
3678         * (_process_pragma): emit a new warning type (internal to pic16)
3679         when setting stack to default length, emit a similar warning when
3680         placing a function at absolute address and address is not word aligned
3681         * (_pic16_parseOptions): added 'return TRUE' statement,
3682         * (_pic16_linkEdit): if compiling a source, then add the source's
3683         file object, first in the list of objects to link,
3684
3685 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3686
3687         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3688         * src/pic/main.c : removed VC warning.
3689         * src/pic/gen.c : changed comment.
3690
3691 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3692
3693         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3694         reference to a deprecated symbol _GPTRREG was causing failure to
3695         link. Thanks G. M. Gallant for the info.
3696
3697 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3698
3699         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3700         comments for Bugs item #954788.
3701
3702 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3703
3704         * src/pic16/device.c (pic16_dump_gsection,
3705         * pic16_groupRegistersInSection): handle symbols declared to be in
3706         access bank differently,
3707         * src/pic16/gen.c (struct _G): added field resDirect,
3708         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3709         send values read from stack directly to result and don't allocate
3710         temporary values,
3711         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3712         same registers,
3713         * (pic16_sameRegsOfs): NEW,
3714         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3715         free because they were not allocated from temporary pool,
3716         * pic16_popRegFromString): workaround to fix a problem with
3717         allocating variables twice or never,
3718         * (genGenPointerGet): using PRODL instead of FSR0H,
3719         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3720         instead of FSR0H,
3721         * (genAssign): take advantage of the _G.resDirect flag,
3722         * (genCast): around line 11844, use mov2f instead of directly
3723         MOVFF'ing between operands to account for literal values,
3724         * src/pic16/genutils.c: some new debug functions for gpsim have been
3725         added,
3726         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3727         float with integer part only,
3728         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3729         place variables in access bank
3730         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3731         updated sources to reflect recent changes in gen.c
3732
3733 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3734
3735         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3736         sources that searched for headers in installation path, now the
3737         device/include/pic16 is used,
3738         * src/pic16/glue.c (pic16glue),
3739         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3740         .line directives if not in debug mode, this suppresses assembler's
3741         warnings for ignored directives
3742
3743 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3744
3745         * src/port.h: made reset_regparms prototype void parameter explicit.
3746         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3747         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3748         * doc/sdccman.lyx: documented warning disabling and how to use
3749           printf_large to make it print floats.
3750         * device/include/stdbool.h: NEW
3751         * device/lib/_atof.c,
3752         * device/lib/_divuint.c,
3753         * device/lib/_divulong.c,
3754         * device/lib/expf.c,
3755         * device/lib/printf_large.c,
3756         * device/lib/sincosf.c,
3757         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3758         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3759           a completely reentrant lib.
3760
3761 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3762
3763         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3764         * device/include/pic16/stdio.h: fixed bug with colon
3765
3766 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3767
3768         * device/include/pic16/stdio.h,
3769         * device/include/pic16/stdlib.h,
3770         * device/include/pic16/math.h: NEW
3771         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3772         declared as _naked to reduce overhead
3773         * device/lib/Makefile.in (target port-specific-objects-pic16):
3774         changed * to *.* so to ignore the CVS directory,
3775         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3776         stacked variables back in stack,
3777         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3778         corruption
3779
3780 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3781
3782         * .version: bumped version number to 2.4.5
3783         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3784         * support/Util/SDCCerr.c (messages structure): added entry for
3785         W_POSSBUG2
3786
3787         Large cumulative patch for pic16 port and libraries.
3788         * device/include/pic16/sdcc-lib.h,
3789         * device/include/pic16/stdarg.h,
3790         * device/include/asm/pic16/features.h,
3791         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3792         * device/include/pic16/float.h: changes reentrant keyword with
3793         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3794         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3795         updated target build-libraries to include objects from gptr,
3796         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3797         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3798         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3799         all function headings,
3800         * src/SDCCmain.c: added global parameter userIncDirsSet,
3801         * (parseCmdLine): when option -I is encountered add directory to
3802         userIncDirsSet too,
3803         * src/version.awk: added space between control and long,
3804         * src/pic16/NOTES: added some notes for the port,
3805         * src/pic16/gen.c: added prototype for mov2fp function,
3806         * (fReturnpic16[]): properly named return value registers,
3807         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3808         * (aopForSym): added code to handle symbols with onStack flag set,
3809         symbols onStack are allocated PTRSIZE bytes,
3810         * (aopFreeAsmop): handles special case where asmops are stack objects,
3811         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3812         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3813         added argument lock to trace flaws in allocating temporary registers
3814         when developing port,
3815         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3816         * (pic16_popRegFromString): reenabled allocating a direct register
3817         from string,
3818         * (assignResultValue): various beautifications,
3819         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3820         referenced function argument,
3821         * (genIpush): reenabled to allow stacked arguments, handles only
3822         ic->parmPush iCodes,
3823         * (genCall, genPcall): major changes to allow for variable argument
3824         functions, fixed a bug with falsely restoring stack pointer after
3825         returning from call,
3826         * (genFunction): pending code for critical function,
3827         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3828         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3829         * (genNearPointerGet): fixed bug with indirect reading, was always
3830         reading from INDF0
3831         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3832         pointers,
3833         * (genAddrOf): rewrote code to take address of a stacked function parameter
3834         * (genCast): fixed casting to generic pointer type,
3835         * src/pic16/gen.h: added AOP_STA,
3836         * (struct asmop): added field stk,
3837         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3838         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3839         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3840         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3841         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3842         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3843         generic pointers,
3844         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3845         and library paths,
3846         * (pic16_port structure): generic pointer size is set to 3,
3847         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3848         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3849         compiler warning,
3850         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3851         operand is an iTemp,
3852
3853 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3854
3855         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3856         * debugger/mcs51/simi.c: addapt new syntax of s51
3857
3858 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3859
3860         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3861         * src/pic16/pcode.c: commented out some calls to free() in order to
3862         fix bug #989576,
3863
3864 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3865
3866         * src/SDCCicode.h,
3867         * src/SDCCicode.c (isiCodeInFunctionCall),
3868         * src/avr/ralloc.c (selectSpil),
3869         * src/pic/ralloc.c (selectSpil),
3870         * src/pic16/ralloc.c (selectSpil),
3871         * src/ds390/ralloc.c (selectSpil),
3872         * src/hc08/ralloc.c (selectSpil),
3873         * src/xa51/ralloc.c (selectSpil),
3874         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3875         stack in the middle of a function call sequence (fixes bug #1020268)
3876         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3877         costs associated with the minimum switch case.
3878
3879 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3880
3881         * src/SDCC.lex: fixed bug #1030549
3882
3883 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3884
3885         * src/SDCCcse.h (struct cseDef),
3886         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3887         over a function call if the CSE is derived from a symbol whose
3888         address has been taken (fixes bug #1029883)
3889         * support/regression/tests/bug-1029883: a new regression test for
3890         this bug
3891
3892 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3893
3894         * src/hc08/gen.c (emitinline): fixed bug #1029778
3895         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3896         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3897         and starts toward RFE #905167)
3898
3899 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3900
3901         * src/pic16/gen.c (mov2f): New function to move an operand to
3902         another without considering if it is a literal or a register,
3903         * (pic16_sameRegs): don't check if they are both AOP_REG,
3904         * (AccRsh): removed andmask=0 lines,
3905         * (genLeftShift): duplicated to be improved in future versions,
3906         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3907         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3908         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3909         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3910         * (insertBankSwitch): fixed inserting banksel directives algorithm
3911         for instructions that follow a skip instruction, this fixes a report
3912         for broken subtraction code generation,
3913         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3914         iCode is a left op, just in case result and right share the same
3915         registers
3916
3917 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3918
3919         * src/hc08/main.c,
3920         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3921         preservation of HX
3922         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3923         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3924         on 2004-09-12; it was buggy
3925
3926 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3927
3928         * src/SDCCsymt.h: removed RESULT_CHECK
3929         * src/SDCCast.c,
3930         * src/SDCCglue.c,
3931         * src/SDCCval.c,
3932         * src/pic/glue.c,
3933         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3934
3935 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3936
3937         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3938         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3939         configuration values no more rejected by compiler, they are assigned
3940         to configuration registers with a warning message instead,
3941         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3942         the for-loop so last conf register is emitted too,
3943         * (_pic16_initPaths): link library libsdcc.lib by default,
3944         * (_hasNativeMulFor): modified test for multiplication according to
3945         Raphael Neider's remarks. Integer multiplication is also done with
3946         support functions,
3947         * device/include/pic16/pic18fregs.h: corrected type error in while
3948         testing and including 18f6720 header file
3949
3950 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3951
3952         * src/pic16/device.h (pic16_options): removed field use_crt,
3953         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3954         until an optimization to handle single bits is added,
3955         * (pic16_loadFSR0): moved before genUnpackBits,
3956         * (genAnd): some white lines removed,
3957         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3958         leave_reset flags in pic16_options when using crt modules,
3959
3960 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3961
3962         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3963           for bugs 898889 & 979599. Also used some safer print instructions.
3964
3965 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3966
3967         * src/pic16/device.h (pic16_options_t): added field use_crt,
3968         crt_name, no_crt,
3969         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3970         catch a probable future bug,
3971         * src/pic16/gen.c: aopIdx function commented out,
3972         * (genAssign): commented out old code which used aopIdx,
3973         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3974         code, added if conditionals to take into account the --use-crt
3975         command line options,
3976         * src/pic16/main.c (pic16_optionsTable): added new command line
3977         options, --use-crt= and --no-crt,
3978         * (_pic16_linkEdit): now the proper crt object is added in the
3979         linker command line except than when --no-crt is specified,
3980         * src/pic16/pcode.c,
3981         * src/pic16/pcode.h: added some structures and functions for a new
3982         optimization scheme to compansate for instruction overhead between
3983         same iCodes, this scheme is currently under development and is not
3984         working in any way,
3985         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3986         to && operator,
3987         * device/lib/pic16/startup/crt0i.c,
3988         * device/lib/pic16/startup/crt0iz.c: added global char variable
3989         __uflags to force the generation of an idata section
3990
3991 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3992
3993         * doc/Makefile,
3994         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3995         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3996
3997 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3998
3999         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4000         Frieder) and clarified the default code optimization mode
4001
4002 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4003
4004         * src/SDCC.lex (doPragma, process_pragma),
4005         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4006         "opt_code_size", and "opt_code_balanced"
4007         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4008         regrouped options by category, added support for category headers
4009         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4010         and "--opt-code-size"
4011         * doc/sdccman.lyx: documented these new options and pragmas
4012         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4013         preference into account
4014
4015 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4016
4017         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4018           geniCodePreDec): Fixed bug 904237 by generating a warning
4019         * src/SDCCerr.h,
4020         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4021
4022 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4023
4024         * src/pic/device.c : When no max ram set validate full memory range.
4025         * src/pic/pcode.c,
4026         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4027
4028 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4029
4030         * device/lib/_gptrget.c,
4031         * device/lib/_gptrput.c: updated comment
4032         * device/lib/calloc.c,
4033         * device/lib/free.c,
4034         * device/lib/malloc.c,
4035         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4036         * src/SDCCcse.c (cseBBlock),
4037         * src/SDCCicode.c (printOperand, geniCodeArray),
4038         * src/SDCCicode.h (struct operand): fixed bug 868103
4039         * support/regression/tests/bug-868103.c: added
4040         * src/SDCCast.c (searchLitOp),
4041         * src/SDCCcse.h (struct cseDef),
4042         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4043         * src/SDCCicode.h (struct operand),
4044         * src/SDCCsymt.h (struct sym_link),
4045         * src/avr/gen.c (hasInc),
4046         * src/ds390/gen.c (hasInc),
4047         * src/hc08/gen.c (genPlusIncr, hasInc),
4048         * src/mcs51/gen.c (hasInc),
4049         * src/pic16/glue.c (pic16_printIvalChar),
4050         * src/pic16/ralloc.c (regWithIdx),
4051         * src/xa51/gen.c (hasInc) : removed warnings
4052         * src/SDCCast.c (createBlock): added comment ???
4053         * src/hc08/ralloc.c: updated comments
4054
4055 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4056
4057         * doc/sdccman.lyx: updated section on switch statements, added
4058         section about semaphore locking
4059         * doc/Makefile: added option -info for latex2html
4060         * device/lib/_gptrget.c,
4061         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4062
4063 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4064
4065         * src/pic/device.h,
4066         * src/pic/device.c,
4067         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4068          maxram is less than 0x100.
4069
4070 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4071
4072         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4073
4074 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4075
4076         * src/port.h,
4077         * src/mcs51/main.c,
4078         * src/ds390/main.c,
4079         * src/z80/main.c,
4080         * src/hc08/main.c,
4081         * src/pic/main.c,
4082         * src/pic16/main.c,
4083         * src/avr/main.c,
4084         * src/xa51/main.c
4085         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4086         a jump table is the best form for a switch statement, including
4087         automatic insertion of missing cases to make the case range
4088         continuous. Developed in collaboration with Frieder Ferlemann.
4089
4090 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4091
4092         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4093         accumulator result if it needs sign extension
4094
4095 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4096
4097         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4098
4099 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4100
4101         * device/lib/gbz80/printf.c,
4102         * device/lib/z80/printf.c: removed define for NULL
4103
4104 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4105
4106         * as/xa51/xa_link.c,
4107         * device/examples/ds390/ow390/ad26.c,
4108         * device/examples/ds390/ow390/cnt1d.c,
4109         * device/examples/ds390/ow390/counter.c,
4110         * device/examples/ds390/ow390/ds2480.h,
4111         * device/examples/ds390/ow390/ds2480ut.c,
4112         * device/examples/ds390/ow390/findtype.c,
4113         * device/examples/ds390/ow390/gethumd.c,
4114         * device/examples/ds390/ow390/owllu.c,
4115         * device/examples/ds390/ow390/ownetu.c,
4116         * device/examples/ds390/ow390/swt12.c,
4117         * device/examples/ds390/ow390/swtloop.c,
4118         * device/examples/ds390/ow390/temp.c,
4119         * device/examples/ds390/ow390/temp10.c,
4120         * device/examples/ds390/ow390/thermo21.c,
4121         * device/examples/ds390/ow390/tinilnk.c,
4122         * device/examples/ds390/ow390/tstfind.c,
4123         * device/examples/serialcomm/windows/serial.cpp,
4124         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4125         * device/include/reg51.h: fixed line endings for cvs
4126
4127 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4128
4129         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4130         packRegsForAccUse, packRegisters): new accumulator register
4131         packing algorithm
4132         * support/regression/ports/hc08/support.c (_putchar): suppress
4133         warning of unused variable
4134         * src/SDCCicode.c: added SWAP entry to codeTable
4135
4136 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4137
4138         * device/lib/sprintf.c: forgot to add this file before previous commit
4139
4140 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4141
4142         * src/pic16/gen.c (genPackBits): added operand right in function
4143         parameters, load result directly if p_type is POINTER (that is
4144         called by genNearPointerSet)
4145         * (genUnPackBits): added operand left in function parameters,
4146         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4147         FSR0 if accessing bitfields,
4148
4149 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4150
4151         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4152           _print_format; updated printf, sprintf, vsprintf
4153         * device/include/asm/default/features.h: corrected comment/define
4154         * device/lib/Makefile.in: added sprintf.c
4155         * device/lib/libsdcc.lib: added sprintf module
4156         * device/lib/printf_large.c,
4157         * device/lib/vprintf.c,
4158         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4159           into these 3 files
4160         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4161         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4162         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4163           hc08 test
4164         * support/regression/tests/zeropad.c: define idata as data for hc08
4165
4166 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4167
4168         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4169         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4170         labels are referenced at least once (even if a reference is not found)
4171         * src/hc08/gen.c (emitcode): set isComment flag for comments
4172         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4173         loads), rules 6a..6b (optimize jumps to return)
4174
4175 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4176
4177         * device/lib/acosf.c (acosf),
4178         * device/lib/asinf.c (asinf),
4179         * device/lib/atanf.c (atanf),
4180         * device/lib/ceilf.c (ceilf),
4181         * device/lib/cosf.c (cosf),
4182         * device/lib/coshf.c (coshf),
4183         * device/lib/cotf.c (cotf),
4184         * device/lib/fabsf.c (fabsf),
4185         * device/lib/floorf.c (floorf),
4186         * device/lib/log10f.c (log10f),
4187         * device/lib/logf.c (logf),
4188         * device/lib/sinf.c (sinf),
4189         * device/lib/sinhf.c (sinhf),
4190         * device/lib/sqrtf.c (sqrtf),
4191         * device/lib/tanf.c (tanf),
4192         * device/lib/tanhf.c (tanhf),
4193         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4194         replaced all instances of "reentrant" in the library functions
4195         defined in math.h with this macro.
4196         * support/regression/tests/float_trans.c: reenabled test for hc08
4197
4198 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4199
4200         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4201         erroneously deleted
4202
4203 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4204
4205         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4206         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4207         multi-byte volatile operands are used
4208         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4209         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4210         initialization to area GSINIT0 so that it would always precede
4211         any static initializers in GSINIT
4212         * support/regression/tests/zeropad.c: fixed idata define for hc08
4213         * support/regression/tests/bug-927659.c,
4214         * support/regression/tests/float_trans.c: disabled tests for hc08
4215         pending missing library routines
4216         * .version: increased version number to 2.4.4 - hc08 port now passes
4217         regression tests
4218
4219
4220 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4221
4222         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4223         * Makefile.common.in,
4224         * as/Makefile,
4225         * as/hc08/Makefile.in,
4226         * as/mcs51/Makefile.in,
4227         * as/z80/Makefile.in,
4228         * debugger/mcs51/Makefile.in,
4229         * device/include/Makefile.in,
4230         * device/lib/Makefile.in,
4231         * doc/Makefile,
4232         * link/Makefile,
4233         * link/z80/Makefile.in,
4234         * packihx/Makefile.in,
4235         * sim/ucsim/main_in.mk,
4236         * sim/ucsim/avr.src/Makefile.in,
4237         * sim/ucsim/doc/Makefile.in,
4238         * sim/ucsim/gui.src/serio.src/Makefile.in,
4239         * sim/ucsim/hc08.src/Makefile.in,
4240         * sim/ucsim/s51.src/Makefile.in,
4241         * sim/ucsim/xa.src/Makefile.in,
4242         * sim/ucsim/z80.src/Makefile.in,
4243         * src/Makefile.in,
4244         * support/cpp2/Makefile.in,
4245         * support/librarian/Makefile,
4246         * support/makebin/Makefile: added DESTDIR to the install path proposed
4247         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4248         * doc/sdccman.lyx: added DESTDIR documentation
4249
4250 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4251
4252         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4253         instruction for interrupt handlers, use fast returns when returning
4254         from high priority interrupts
4255
4256 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4257
4258         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4259         code generation
4260         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4261         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4262         bugs, ported much of Bernhard's code from mcs51
4263         * src/mcs51/gen.c (genSend),
4264         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4265         than one when calling a reentrant function
4266         * device/lib/_mullong.c: defined an alternate struct layout for big
4267         endian ports (hc08)
4268
4269 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4270
4271         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4272         test
4273
4274 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4275
4276         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4277         are sane and complete before asking the port its prefered parameter
4278         passing method (fixes bug #1017633)
4279         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4280         and _ret3
4281
4282 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4283
4284         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4285         problem in bitfields >= 8 bits.
4286
4287 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4288
4289         * src/SDCCsymt.c: undid changes that were not meant to be committed
4290
4291 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4292
4293         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4294
4295 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4296
4297         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4298           copied and wrong bit got inverted
4299
4300 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4301
4302         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4303         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4304         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4305         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4306         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4307         assignments to bitfields at known addresses
4308         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4309         reads from bitfields at known addresses
4310         * src/hc08/ralloc.c (packRegisters),
4311         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4312         genhc08Code): optimize pointer get values used as conditionals
4313         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4314         and branch
4315
4316 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4317
4318         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4319         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4320         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4321         as conditionals
4322
4323 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4324
4325         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4326
4327 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4328
4329         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4330         related problems
4331
4332 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4333
4334         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4335
4336 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4337
4338         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4339         mcs51 port
4340
4341 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4342
4343         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4344
4345 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4346
4347         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4348         cases use more compact code.
4349
4350 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4351
4352         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4353
4354 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4355
4356         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4357
4358 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4359
4360         * src/SDCCsymt.h,
4361         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4362         parameter of changePointer() from symbol* to sym_link*
4363         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4364         * src/SDCCsymt.c (compareType): void* type is castable to other
4365         pointers, but not necesarily an exact match.
4366         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4367         is no longer blindly treated as an exact match.
4368         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4369
4370 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4371
4372         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4373
4374 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4375
4376         * src/pic/gen.c,
4377         * src/pic/pcode.c,
4378         * src/pic/ralloc.h,
4379         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4380
4381 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4382
4383         * src/pic/device.c,
4384         * src/pic/device.h,
4385         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4386
4387 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4388
4389         * src/mcs51/gen.c (emitcode): fixed bug #992819
4390
4391 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4392
4393         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4394           there's no need to make it worse
4395
4396 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4397
4398         * src/mcs51/ralloc.c (deassignLR),
4399         * src/ds390/ralloc.c (deassignLR),
4400         * src/hc08/ralloc.c (deassignLR),
4401         * src/z80/ralloc.c (deassignLR),
4402         * src/pic/ralloc.c (deassignLR),
4403         * src/pic16/ralloc.c (deassignLR),
4404         * src/avr/ralloc.c (deassignLR),
4405         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4406         rlivePoint): fixed another part of bug #971834
4407
4408 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4409
4410         * src/z80/main.c: enabled "critical" keyword
4411         * src/z80/mappings.i,
4412         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4413         functions (fixes bug #979646)
4414         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4415
4416 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4417
4418         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4419           such as c:\mydir.
4420
4421 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4422
4423         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4424           doesn't disable too much optimizations
4425
4426 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4427
4428         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4429
4430 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4431
4432         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4433
4434 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4435
4436         * src/pic/gen.c tidied up tabs
4437         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4438         * src/pic/main.c tidied up tabs
4439         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4440         * src/pic/pcoderegs.c tidied up tabs
4441         * src/pic/ralloc.c tidied up tabs
4442
4443 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4444
4445         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4446         to S_FIXED for pic16 port and when symbol is not in level 0,
4447         allocate for S_REGISTER storage class and pic16 port, too,
4448         * src/pic16/device.h: prototype for checkSym,
4449         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4450         * (pic16_assignConfigWordValue): test the value and the mask to
4451         validate that the value is suitable for the configuration word,
4452         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4453         collect extern declared symbols, don't emit symbol twice, check
4454         first if symbol is in publics set first,
4455         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4456         * added command line '--fstack' which enables an experimental
4457         feature for stack access, too buggy to be used yet...
4458         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4459         * (pic16_allocDirReg): when register has storage class S_REGISTER
4460         allocate in pic16_dynAccessRegs,
4461         * device/include/pic16/pic18f????.h: modified configuration word
4462         naming convention, words started as CONFIG0H but should be CONFIG1H
4463
4464 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4465
4466         * device/include/mcs51reg.h: fixed bug 970993
4467
4468 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4469
4470         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4471         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4472         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4473         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4474         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4475         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4476           error/warning numbers,
4477           added function setWarningDisabled()
4478         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4479         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4480           _memcmp.c _memmove.c calloc.c realloc.c free.c
4481         * support/regression/tests/malloc.c: added tests for new functionality
4482         * support/regression/tests/zeropad.c: added tests for truncated initializers
4483           and initialized char arrays starting with '\x0'
4484         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4485
4486 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4487
4488         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4489
4490 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4491
4492         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4493         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4494         peephole 177.e. Thanks to anonymous
4495
4496 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4497
4498         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4499         function isn't used in the source but referenced as a
4500         variable initializer then declare it as extern in .asm file
4501
4502 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4503
4504         * .version: increased version number to 2.4.3
4505
4506         Adding version extension according to ChangeLog CVS revision
4507         * src/Makefile.in (target all): added dependency 'version.h'
4508         * (rule version.h): added rule to create version.h from ChangeLog,
4509         * (rule dep): added dependency version.h,
4510         * src/version.awk: AWK script to create version.h
4511         * src/SDCCdwarf2.c (dwWriteModule),
4512         * src/SDCCglue.c (initialComments),
4513         * src/SDCCmain.c (printVersionInfo): modified to write after
4514         version string the version extension number,
4515         * src/SDCCutil.c: included "version.h"
4516         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4517         number,
4518         * src/SDCCutil.h: added prototype for getBuildNumber
4519
4520         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4521         includeDirsSet, too,
4522         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4523         const char [] is found in function prototype...
4524
4525         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4526         moving to WREG with source is already in WREG,
4527         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4528         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4529         * (aopForSym): stack'ed symbols are partially supported, added
4530         if-clause to support symbols in FARSPACE,
4531         * (sameRegs): added test for AOP_ACC to see if registers are same,
4532         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4533         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4534         * (pic16_popRegFromString): will not allocate a new register if it
4535         doesn't find one by name, bug may have introduced...
4536         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4537         * (genIpush): revived to use pic16 port's stack,
4538         * (genAddrOf): added incomplete case for stack'ed operand,
4539         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4540         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4541         can handle multibyte operands,
4542         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4543         * (pic16initialComments): added message for MPLAB compatibility
4544         mode enabled,
4545         * src/pic16/main.h: prototype for pic16_mplab_comp,
4546         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4547         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4548         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4549         because of increased complexity of procedure,
4550         * (_process_pragma): stack pragma changed to format 'stack pos len',
4551         emit symbol '_stack_end' to conform with gplink,
4552         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4553         to search for register,
4554         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4555         PO_GPR_REGISTER,
4556         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4557         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4558         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4559         case for PO_GPR_REGISTER,
4560         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4561         dies, the new era is ahead !...
4562         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4563         pic16_dynInternalRegs,
4564         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4565         * (pic16_allocDirReg): minor optimizations and bug fixes,
4566         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4567
4568         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4569         load stack and frame pointer with address of 'stack_end' symbol
4570
4571 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4572
4573         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4574         without source code but only variable initializers
4575
4576 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4577
4578         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4579         external are not declared as extern to reduce overhead while linking
4580
4581 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4582
4583         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4584
4585 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4586
4587         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4588           Yee Keat for the patch
4589         * src/SDCCast.c (decorateType): fixed bug #979599
4590         * src/ds390/gen.h: removed local fReturnSizeDS390
4591         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4592         * src/ds390/gen.c (genAnd, genOr, genXor),
4593         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4594
4595 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4596
4597         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4598         add relFilesSet to $3, manipulate $2 to handle linking of object
4599         files without source files in command line,
4600         * device/include/pic16 (all headers): added ID location macros,
4601         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4602         entries for ID location bytes,
4603         * (pic16_assignIdByteValue): NEW,
4604         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4605         added field dumpcalltree to pic16_options_t,
4606         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4607         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4608         emitting rFalseIfx label after check_carry label,
4609         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4610         pic16_emitDIRegs), NEW
4611         * (pic16glue): dump .calltree file when option --calltree found,
4612         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4613         * (_pic16_genAssemblerPreamble): emit ID locations after
4614         configuration registers,
4615         * (pic16_linkCmd): modifications of the link command,
4616         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4617         * (pic16_pCodeInitRegisters): don't init stack registers,
4618         * (pic16_findPrevInstruction): fixed bug,
4619         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4620         bug with immediate registers,
4621         * (buildCallTree): traces stack push and pop,
4622         * (pct2): dump also stack usage for each function,
4623         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4624         * (pic16_allocDirReg): various modifications,
4625         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4626         fixed to 1,
4627
4628 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4629
4630         * src/pic16/pcode.c: removed buggy double colon
4631
4632 2004-07-01 Borut Razem <borut.razem AT siol.net>
4633
4634         * support/scripts/sdcc.nsi: added include/pic16 to setup
4635
4636 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4637
4638         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4639         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4640         target 'clean',
4641         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4642         specific command line arguments. Also added sample lkr script
4643         for placing a variable at a specific memory bank.
4644         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4645         at a specific memory bank,
4646         * (pic16_dump_isection): fixed bug which caused string literals to
4647         be omitted when dumping idata section,
4648         * (pic16_groupRegistersInSection): added code to handle registers
4649         in specific memory banks,
4650         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4651         public, all references are renamed too,
4652         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4653         AOP_DPTR2,
4654         * (pic16_storeForReturn): added case to handle when dest is WREG,
4655         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4656         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4657         pic16_rel_udata, check to see if that register is marked as being
4658         a member of a specific memory bank,
4659         * (pic16_printIvalCharPtr): added code to add string literals either
4660         to code or the idata sections,
4661         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4662         also accept the 'udata' pragma,
4663         * src/pic16/main.h: new structure types sectName and sectSym
4664         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4665         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4666         * (pic16_findPrevInstruction): fixed, it returned nothing,
4667         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4668         instruction combinations,
4669         * (pic16_FixRegisterBanking): heavily reorganised,
4670         * (pic16_AnalyzeBanking): if generating banksel directives is
4671         disabled, then don't call FixRegisterBanking at all,
4672         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4673         completely removed,
4674         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4675
4676 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4677
4678         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4679         Phuah Yee Keat <yk.phuah AT nestac.com>
4680
4681 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4682
4683         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4684         correctly the IVT even if it is relocated to some other location
4685
4686 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4687
4688         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4689         * device/include/pic16/pic18f2220.h: NEW,
4690         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4691         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4692         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4693         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4694         nodefaultlibs, ivt_loc is the location of the interrupt vector
4695         table, and nodefaultlibs signs that default libraries should not be
4696         linked in link stage,
4697         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4698         according to --ivt-loc argument,
4699         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4700         when pragma stack is found,
4701
4702 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4703
4704         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4705         256 (range check), 257 (do while), 258.a-f (bit banging
4706         f.e. on 3-wire SPI bus)
4707
4708 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4709
4710         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4711         variables used exclusively within a loop
4712
4713 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4714
4715         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4716
4717 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4718
4719         * src/SDCClrange.c (computeClash): fixed bug #971834
4720
4721 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4722
4723         * src/mcs51/gen.c (genCmp): fixed bug #975903
4724         * src/hc08/gen.c (operandsEqu),
4725         * src/ds390/gen.c (operandsEqu),
4726         * src/z80/gen.c (operandsEqu),
4727         * src/pic/gen.c (operandsEqu),
4728         * src/pic16/gen.c (operandsEqu),
4729         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4730         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4731
4732 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4733
4734         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4735
4736 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4737
4738         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4739         default case in switch statement,
4740         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4741         to eliminate problem with initialisation of pointers, but problem
4742         still exists,
4743         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4744         * (emitStaticSegment): removed various lines emitting debug info,
4745         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4746         added processor registers for utilizing EEPROM,
4747         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4748         configurable and set 8
4749
4750 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4751
4752         * .version: increased version number to 2.4.2,
4753
4754         Cumulative patch for pic16 port
4755         * src/pic16/device.c: changed scheme to dump initial values for
4756         variables in idata segment, all print_idata* functions were removed,
4757         now the pic16_printIval* will be called,
4758         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4759         * _pic16_printPointerType, pic16_printPointerType,
4760         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4761         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4762         NEW, similar to the respective functions in SDCCglue.c,
4763         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4764         way, emitting hex bytes,
4765         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4766
4767 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4768
4769         * src/avr/ralloc.c (serialRegAssign),
4770         * src/xa51/ralloc.c (serialRegAssign),
4771         * src/pic/ralloc.c (serialRegAssign),
4772         * src/pic16/ralloc.c (serialRegAssign),
4773         * src/hc08/ralloc.c (serialRegAssign),
4774         * src/z80/ralloc.c (serialRegAssign),
4775         * src/ds390/ralloc.c (serialRegAssign),
4776         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4777
4778 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4779
4780         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4781         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4782
4783 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4784
4785         Cumulative patch for pic16 port:
4786         * src/pic16/device.h (typedef PIC16_device) modified fields for
4787         defining microcontrollers,
4788         * src/pic16/device.c: added new info for all devices in Pics16 array,
4789         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4790         to be optimised out by the pCode optimiser,
4791         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4792         specially, bug reported by G.M. Gallant,
4793         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4794         as force'd so that cannot be optimised out by pCode optimiser,
4795         * src/pic16/pcode.c,
4796         * src/pic16/pcodepeeph.c,
4797         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4798         they are disabled by default, but can be enabled explicit with
4799         command argument --denable-peeps, for testing,
4800         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4801         --pomit-ivt in COMPILE_FLAGS
4802
4803 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4804
4805         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4806           compilation on MSVC
4807
4808 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4809
4810         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4811
4812 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4813
4814         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4815         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4816
4817 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4818
4819         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4820         would only assign 0x300001 register.
4821
4822 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4823
4824         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4825         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4826
4827 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4828
4829         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4830         for ds80c400
4831         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4832         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4833         added peephole 254 (left shift), 255 (jump table)
4834
4835 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4836
4837         * device/lib/Makefile.in: removed comment line with model-pic16,
4838         * (target port-specific-objects-pic16): the libraries and objects
4839         are copied to the build directory form the device/lib/pic16/bin
4840         directory
4841
4842         Cumulative patch concerning pic16 port:
4843         * library directory has been re-organized,
4844         * added support for PIC18F1220,
4845         * added headers and library sources for chips 18f1220,18f6520,
4846         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4847
4848         * configuration registers setting has changed, now each supported
4849         device has a complete description of the registers it uses,
4850         * all initialisations are moved to idata sections, these section
4851         can be absolute or relocatable,
4852         * fixed initialisation of codespace variables,
4853         * fixed warning about PCLATU and gpsim,
4854         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4855         * (genAssign): use table reads when assigning from variables in codespace,
4856         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4857         char/int variables placed in codespace,
4858         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4859         registers set in .asm file, no need for --pomit-config-words anymore,
4860         * (pic16glue): some 8051 legacy segments are commented out
4861         (to be removed completely),
4862         * added support for alternative assembler and linker with --asm=
4863         and --link= command line arguments,
4864         * peepholes are disabled automatically in the port, no need to
4865         specify on command line,
4866         * port supports natively char/int/long multiplication, but converts
4867         all divisions to support functions,
4868         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4869         to the file set in variable $2,
4870         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4871         strings in ASCII format and not in hex,
4872         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4873         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4874         allocate proper register if iCodes aren't temporary,
4875
4876 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4877
4878         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4879
4880 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4881
4882         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4883         is commented out
4884
4885 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4886
4887         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4888         computed address is reused
4889         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4890         multi-byte bitfields
4891
4892 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4893
4894         * src/z80/gen.c: (genArrayInit): must check for pointers too
4895
4896 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4897
4898         * support/regression/tests/zeropad.c: never meant to commit the
4899           nestedstruct test: removed, added check for GCC version
4900
4901 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4902
4903         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4904         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4905         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4906           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4907           bugs 928906 and 954082 half-empty initializers
4908         * src/SDCCsymt.h,
4909         * src/SDCCsymt.c (getAllocSize): added for above fix
4910         * src/z80/gen.c (genArrayInit): fixed bug 741044
4911         * support/regression/tests/zeropad.c: added tests
4912
4913 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4914
4915         * src/pic16/device.c (pic16_dump_section): corrected bug which
4916         caused some symbols of the libraries to be misplaced
4917
4918 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4919
4920         * src/pic16/glue.c,
4921         * src/pic16/ralloc.h,
4922         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4923         to fix conflict with pic port
4924
4925 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4926
4927         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4928         externs configuration variables,
4929         * src/pic16/ralloc.h,
4930         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4931         prototype in header, commented out some debug messages
4932
4933 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4934
4935         * src/pic16/glue.c,
4936         * src/pic16/main.c,
4937         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4938         for gpasm COFF object generation. Thanks to D. Hawkins for
4939         his patch info
4940
4941 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4942
4943         * src/ds390/main.c,
4944         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4945         Brock for spotting this)
4946         * src/ds390/gen.c (genEndFunction),
4947         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4948         interrupt handler and critical. Disable push/pop optimizations when
4949         peephole optimizations disabled.
4950
4951 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4952
4953         Updated pic16 library sources and headers.
4954         * device/lib/pic16/pic18f*/ ,
4955         * device/include/pic16/*.h: modified to handle structured SFR
4956         definitions
4957
4958 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4959
4960         * src/port.h (PORT structure): added hook initPaths, now each
4961         port can declare its own default search paths,
4962         which can been seen with the --print-search-dirs option,
4963         see pic16 port for example,
4964         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4965         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4966         * (doPrintSearchDirs): NEW, replaces in a central manner the
4967         printing of search dirs which was split in set*Paths functions,
4968         * (main): added call to port->initPaths and doPrintSearchDirs,
4969         * src/avr/main.c,
4970         * src/ds390/main.c,
4971         * src/hc08/main.c,
4972         * src/izt/i186.c,
4973         * src/izt/tlcs900h.c,
4974         * src/mcs51/main.c,
4975         * src/pic/main.c,
4976         * src/pic16/main.c: modified port structures to reflect addition of
4977         initPaths hook,
4978
4979         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4980         * (pic16_dump_section): for registers in same address reserve memory once,
4981         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4982         to no_banksel,
4983         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4984         result is greater in size than right or left,
4985         * (pic16_genUMult8X8_8): there are some cases where the result can
4986         be 16 bits size, so handle these,
4987         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4988         * (pic16_outBitC): modified to emit pcodes,
4989         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4990         or not,
4991         * (genDivOneByte): implemented algorithm to divide 8-bits,
4992         * (genCmp): uncommented goto, but issues still exist,
4993         * (genAnd): fixed a bug with variables >8bits,
4994         * (genPackBits): optimization added that uses BCF/BSF to change a
4995         single bit,
4996         * (genAssign): fixed bug when assigning floating point literals,
4997         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4998         __sdcc_gsinit_startup label,
4999         * src/pic16/main.c (_pic16_init): removed search directory
5000         initialisations,
5001         * (_pic16_initPaths): NEW, used to initialise search directories,
5002         * (_hasNativeMulFor): support functions for all except char/int
5003         multiplication, and char division,
5004         * (PIC16_port struct): modified entry for native mul support,
5005         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5006         no_banksel option,
5007         * (buildCallTree): call to register_usage is ifdef'ed out,
5008
5009 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5010
5011         * device/include/string.h: applied Stas Sergeev's patch to make this
5012         header file compatible with the preprocessor -Wundef option
5013         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5014         failure (fixes bug #941458)
5015
5016 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5017
5018         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5019         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5020         that the variable, not the function, should be static
5021         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5022         to be consistent with non-literal case
5023
5024 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5025
5026         * src/SDCCast.c (isConformingBody): fixed bug #949967
5027         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5028         convilong): fixed bug #952086
5029
5030 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5031
5032         * src/SDCCmem.c (allocVariables): fixed bug #955321
5033
5034 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5035
5036         * src/hc08/main.c (_hc08_genAssemblerEnd),
5037         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5038         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5039         completely eliminated the use of a temporary file
5040         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5041         when more than one file linked
5042         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5043
5044 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5045
5046         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5047         which fixes bug #543481
5048         * support/regression/tests/bug-751703.c: fixed comments left from a
5049         cut and paste error
5050         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5051         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5052         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5053         scopes
5054         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5055         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5056         are now changed to underscores in moduleName
5057
5058 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5059
5060         * as/mcs51/lkmem.c: better fix for bug #954173
5061
5062 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5063         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5064
5065         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5066         * device/include/c8051f000.h,
5067         * device/include/c8051f120.h,
5068         * device/include/c8051f300.h,
5069         * device/include/c8051f310.h,
5070         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5071         PWM16) and detab'ed
5072
5073 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5074
5075         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5076         and mailing lists, doc'ed --no-peep-comments, removed reference
5077         to knoppix (newest version has no LyX/LaTeX), other minor changes
5078         * src/SDCCglue.c (glue): save 2 bytes stack space with
5079         option --main-return. The ljmp could probably be avoided too
5080
5081 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5082
5083         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5084
5085 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5086
5087         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5088         * src/SDCCopt.c (isLocalWithoutDef),
5089         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5090         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5091         (credit to Maarten Brock for patch #949363, on which this is based)
5092         * support/regression/tests/bug-751703.c: some test cases of extern used
5093         within inner scopes.
5094
5095 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5096
5097         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5098         SPEC_STRUCT
5099         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5100         struct definitions
5101         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5102         dwWriteLabel): fix to create valid debugger symbols even when
5103         the module name has non-alphanumeric symbols in it
5104         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5105         when a variable's allocation has been optimized away
5106
5107
5108 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5109
5110         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5111         * src/hc08/main.c,
5112         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5113         * src/mcs51/main.c,
5114         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5115         * src/ds390/main.c,
5116         * src/z80/gen.c (z80_emitDebuggerSymbol),
5117         * src/z80/main.c,
5118         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5119         * src/pic/main.c,
5120         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5121         * src/pic16/main.c,
5122         * src/avr/gen.c (avr_emitDebuggerSymbol),
5123         * src/avr/main.c,
5124         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5125         * src/xa51/main.c,
5126         * src/SDCCdebug.c (emitDebuggerSymbol),
5127         * src/SDCCdebug.h,
5128         * src/port.h: added a debugger struct to the port struct. Added a
5129         callback for defining debugger symbols
5130
5131         * src/SDCCast.c (createLabel),
5132         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5133         with isitmp = 1
5134         * src/SDCCicode.h,
5135         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5136         iCode back to the ast for the function
5137
5138         * src/hc08/ralloc.c (hc08_assignRegisters),
5139         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5140         unneeded fields from the regs struct.
5141         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5142         pushReg() & pullReg() functions instead of emitcode()
5143
5144         * src/hc08/gen.c (genLabel, genhc08Code),
5145         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5146
5147         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5148         debugger hooks
5149
5150         * src/hc08/gen.c (genEndFunction, genhc08Code),
5151         * src/hc08/gen.h,
5152         * src/mcs51/gen.c (genEndFunction, gen51Code),
5153         * src/mcs51/gen.h,
5154         * src/ds390/gen.c (genEndFunction, gen390Code),
5155         * src/ds390/gen.h,
5156         * src/z80/gen.c (genEndFunction, genZ80Code),
5157         * src/z80/gen.h,
5158         * src/z80/z80.h,
5159         * src/pic/gen.c (genEndFunction, genpic14Code),
5160         * src/pic/gen.h,
5161         * src/pic16/gen.c (genEndFunction, genpic16Code),
5162         * src/pic16/gen.h,
5163         * src/avr/gen.c (genEndFunction, genAVRCode),
5164         * src/avr/gen.h,
5165         * src/xa51/gen.c (genEndFunction, genXA51Code),
5166         * src/xa51/gen.h,
5167         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5168         specific code to cdbFile.c and out of the backend code generators
5169
5170         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5171         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5172         starting address is now 0
5173
5174         * as/hc08/asm.h,
5175         * as/hc08/m08pst.c,
5176         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5177         assembler directive for DWARF support
5178         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5179
5180         * src/src.dsp,
5181         * src/Makefile.in,
5182         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5183
5184 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5185
5186         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5187         and inappropriate peephole optimization in jump tables
5188
5189 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5190
5191         * as/hc08/m08pst.c,
5192         * src/SDCCglue.c: sdccopt works for the hc08 port now
5193
5194 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5195
5196         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5197
5198 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5199
5200         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5201
5202 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5203
5204         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5205         rules
5206         * src/SDCCmain.c,
5207         * src/SDCCglobl.h,
5208         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5209         comments from the peephole optimizer replacement rules
5210         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5211         symbols
5212         * src/SDCCcse.c (updateSpillLocation),
5213         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5214         equivalents
5215         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5216         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5217         objects far pointers
5218
5219 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5220
5221         * src/SDCCsymt.h: a missing part of my last change
5222         * src/pic/ralloc.c (regTypeNum),
5223         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5224
5225 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5226
5227         * src/SDCCicode.h,
5228         * src/SDCCicode.c (aggrToPtrDclType),
5229         * src/SDCCptropt.h,
5230         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5231         ptrPseudoSymConvert),
5232         * src/pic/ralloc.c (regTypeNum),
5233         * src/pic16/ralloc.c (regTypeNum),
5234         * src/hc08/ralloc.c (regTypeNum),
5235         * src/ds390/ralloc.c (regTypeNum),
5236         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5237         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5238
5239 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5240
5241         * link/z80/lkmain.c (afile),
5242         * as/hc08/lkmain.c (afile),
5243         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5244         prevent a pointer problem when a filename has no directory and
5245         no extension specified.
5246
5247 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5248
5249         * link/z80/lkmain.c (afile): allow periods in directory names
5250         * link/z80/lkmain.c (afile),
5251         * as/mcs51/lkmain.c (afile),
5252         * as/hc08/lkmain.c (afile): allow linker script file to have an
5253         extension other than ".lnk"
5254         * link/z80/lklex.c (getfid),
5255         * link/z80/lkmain.c (parse),
5256         * as/mcs51/lklex.c (getfid),
5257         * as/mcs51/lkmain.c (parse),
5258         * as/hc08/lklex.c (getfid),
5259         * as/hc08/lkmain.c (parse): Support comments in the linker script
5260         file on lines by themselves and after filenames
5261
5262 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5263
5264         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5265
5266 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5267
5268         * src/z80/peeph-z80.def: removed some peephole rules that don't
5269         work with multibyte arithmetic (fixed bug #937126)
5270         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5271         to registers and not global variables
5272         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5273         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5274         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5275         checking for assignments not internally generated (fixed bug #931895)
5276         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5277         structure member (fixed bug #930072)
5278
5279 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5280
5281         * src/SDCCmain.c (linkEdit),
5282         * src/hc08/main.c (_hc08_parseOptions),
5283         * as/hc08/Makefile.in,
5284         * as/hc08/aslink.h,
5285         * as/hc08/asm.h,
5286         * as/hc08/m08pst.c,
5287         * as/hc08/lkrloc.c (relr, rele),
5288         * as/hc08/lkarea.c (lnkarea)
5289         * as/hc08/lkmain.c (afile, parse),
5290         * as/hc08/lkelf.c: support for ELF output
5291         * as/hc08/lks19.c (s19),
5292         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5293
5294 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5295
5296         * as/mcs51/lkihx.c: Fixed bug #899105.
5297
5298 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5299
5300         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5301         .dsp files from Unix to DOS.
5302
5303 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5304
5305         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5306         function pointers; we have been compliant for several months now.
5307         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5308         change that was accidently commented out
5309         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5310         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5311         bug #922319
5312
5313 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5314
5315         * src/hc08/gen.c: output of all of the internal debugging information
5316         is now controlled by the D() macro; it is disabled by default
5317
5318 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5319
5320         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5321         harder to keep the same registers during a CAST iCode
5322         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5323         long via int can be done in a single cast, if the signedness is
5324         correct.
5325         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5326         putchar() in tinibios.c in ds390's library
5327
5328 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5329
5330         * src/SDCCast.c (decorateType): fixed bug #898889,
5331         cast result of a literal complement too
5332         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5333         fixed check for bitfields
5334
5335 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5336
5337         * src/SDCCicode.c (geniCodeLogic): made it static,
5338         (geniCodeLogicAndOr): added in order to fix bug #905492,
5339         (ast2iCode): fixed bug #905492
5340         * support/regression/tests/bug-905492.c: added
5341         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5342         (processParms): fixed bug #927659: don't copy parms, this will clear
5343         decorated flag
5344         * support/regression/tests/bug-927659.c: added
5345
5346 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5347
5348         * src/SDCCast.c (addCast): don't cast float to char
5349         * device/lib/libsdcc.lib: added _memmove
5350
5351 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5352
5353         * device/lib/large/Makefile: fixed parallel execution by
5354         replacing `make` by `$(MAKE)`
5355
5356 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5357
5358         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5359         offsets (fixes bug #923936)
5360
5361 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5362
5363         * device/lib/small/Makefile: fixed parallel execution by
5364         replacing `make` by `$(MAKE)`
5365
5366 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5367
5368         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5369
5370 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5371
5372         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5373         * src/regression/Makefile: Regression test was not running.
5374
5375 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5376
5377         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5378         complement if possible
5379         * src/SDCCval.c (valComplement),
5380         * src/SDCCicode.c (operandOperation): fixed complement of literal
5381         * support/regression/tests/onebyte.c (testComplement): added
5382
5383 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5384
5385         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5386         return an optimized tree; actually replace actParm with the new tree
5387         * src/SDCCast.h: added some parantheses to remove side effects
5388         * support/regression/tests/bug-920866.c
5389
5390 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5391         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5392         Bit operands were not being handled properly in the pic14 port.
5393         (now src/regression/add.c passes again).
5394
5395 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5396
5397         * src/SDCC.y (labeled_statement): case and default no longer require
5398         a following statement (RFE #893037)
5399
5400 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5401
5402         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5403         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5404         disabled (fixes bug #916294)
5405         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5406         "mov a,acc"; patch provided by Lenny Story
5407         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5408
5409 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5410
5411         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5412         functions
5413         * src/ds390/gen.c (genFunction, genEndFunction),
5414         * src/ds390/ralloc.c (ds390_assignRegisters),
5415         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5416         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5417         pushed if there are parameters passed on the stack. Also, a cleaner
5418         way to decide if r0/r1 should be pushed/popped. (Together they fix
5419         bug #918693)
5420
5421 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5422
5423         * doc/sdccman.lyx,
5424         * device/lib/mcs51/crtpagesfr.asm,
5425         * device/lib/mcs51/crtxinit.asm,
5426         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5427         to avoid confusion with Si Lab's SFRPAGE register.
5428
5429 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5430
5431         * src/SDCCglue.c (emitMaps): allow public sfr variables
5432         * src/SDCCglue.c (initialComments): include compiler build date
5433         with compiler version and put the timestamp of the generated
5434         assembly file on a serperate line to be less confusing.
5435         * src/port.h: added genInitStartup hook
5436         * src/avr/main.c,
5437         * src/ds390/main.c,
5438         * src/hc08/main.c,
5439         * src/pic/main.c,
5440         * src/pic16/main.c,
5441         * src/xa51/main.c,
5442         * src/z80/main.c: genInitStartup initialize as NULL (default to
5443         historical behaviour)
5444         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5445         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5446         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5447         library instead of hard coding it into the compiler.
5448         * support/regression/ports/mcs51-stack-auto/spec.mk,
5449         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5450         * device/lib/mcs51/Makefile,
5451         * device/lib/small/Makefile,
5452         * device/lib/large/Makefile,
5453         * device/lib/mcs51/crtpagesfr.asm,
5454         * device/lib/mcs51/crtstart.asm,
5455         * device/lib/mcs51/crtxclear.asm,
5456         * device/lib/mcs51/crtxinit.asm,
5457         * device/lib/mcs51/crtclear.asm,
5458         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5459         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5460         and into user configurable files.
5461         * device/lib/clean.mk: clean mcs51 directory too
5462         * support/regression/tests/longlit.c: added static to T1 declaration
5463         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5464         accesses in the initialization code
5465
5466 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5467
5468         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5469         OSCTRIMVAL as noted in bug #916008
5470
5471 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5472
5473         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5474         in loops with multiple exits (reported as incorrect registers
5475         used by Martin Helmling in Sdcc-user list)
5476
5477 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5478
5479         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5480         made ds390 register extensions look less like error messages
5481
5482 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5483
5484         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5485         reported by Adam Wozniak in Sdcc-user list
5486
5487 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5488
5489         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5490         arithmetic optimizations, added debug output
5491
5492 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5493
5494         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5495         * sdcc.spec: updated and split sdcc into 3 rpms
5496         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5497         needed for literals of LEFT_OP and '+'
5498         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5499         introduced RESULT_TYPE_NOPROM
5500         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5501         left shift
5502         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5503         limited promotion to int only for '*'
5504         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5505
5506 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5507
5508         * src/pic16/gen.c (genSkip),
5509         (genc16bit2lit), (gencjneshort): commented out
5510         (is_LitOp): new helper function, checks operand type
5511         (genCmpEq): rewritten
5512
5513 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5514
5515         * support/regression/tests/bug-908454.c: added
5516
5517 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5518
5519         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5520         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5521         (geniCodeCast): cosmetic, don't preserve bit storage class
5522         (geniCodeLeftShift): added promotion
5523         (geniCodeLogic): fixed regression
5524         * src/SDCCsymt.c (computeTypeOr): accept bits too
5525         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5526
5527 2004-03-07  Borut Razem <borut.razem AT siol.net>
5528
5529         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5530
5531 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5532
5533         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5534         version of pic16_genPackRegisters which does not check if ic is a
5535         CAST operator,
5536         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5537         function cause string1.c regression test fails
5538
5539 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5540
5541         * sim/ucsim/configure.in,
5542         * sim/ucsim/configure,
5543         * sim/ucsim/doc/Makefile.in: use docdir
5544         * src/SDCC.y: fixed sbit atrributes
5545         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5546         * src/SDCCast.c (decorateType): |^& need special promotion handling
5547         * src/SDCCast.h,
5548         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5549         * src/SDCCsymt.h (computeType),
5550         * src/SDCCicode.c: computeType() needs op
5551         * src/SDCCsymt.c (checkTypeSanity),
5552         * doc/sddman.lyx: "plain" bitfields are unsigned
5553         * src/SDCCsymt.c (computeTypeOr): added
5554         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5555         |^& ops
5556         * src/SDCCval.c (val*): computeType() needs op
5557         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5558         * support/regression/tests/onebyte.c: added tests for |^&
5559
5560 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5561
5562         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5563         for writing icode into asm output.
5564
5565 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5566
5567         * src/pic16/device.c: added some debug lines enabled
5568         with macro DEBUG_CHECK,
5569         * src/pic16/genarith.c: more debug in genPlus,
5570         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5571         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5572         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5573         * (aopForSym): onStack symbols are re-placed in data memspace,
5574         and onStack flag is cleared,
5575         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5576         copy temporary pcodeop,
5577         * (genPcall): added warning for not updating PCLATU,
5578         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5579         always true for pic16 port,
5580         * (genMultOneWord): NEW, supports integer multiplication,
5581         * (genMult): modified to call genMultOneWord,
5582         * (ifxForOp): added warning when return NULL,
5583         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5584         flag is set before call to operandFromSymbol for implicit
5585         added structures,
5586         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5587         options.intlong_rent are set by default,
5588         * (_hasNativeMulFor): modified to allow port generation of integer
5589         multiplication,
5590         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5591         set regtype to REG_SFR for all registers, restricting seting the
5592         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5593
5594 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5595
5596         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5597         more than 500 times in the regression tests
5598
5599 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5600
5601         * support/Util/SDCCerr.h,
5602         * support/Util/SDCCerr.c,
5603         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5604         enumerator_list),
5605         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5606         for symbol conflicts.
5607         * support/valdiags/tests/enum.c,
5608         * support/valdiags/tests/tentdecl.c,
5609         * support/valdiags/tests/struct.c: expect possible error messages
5610         referring to original symbol definitions.
5611         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5612         * src/SDCCsymt.h,
5613         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5614
5615 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5616
5617         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5618
5619 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5620
5621         * src/pic16/ralloc.c (newReg): fixed bug #908929
5622
5623 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5624
5625         * src/ds390/gen.c: added missing #include "main.h"
5626
5627 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5628
5629         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5630         checking if symbol is already in set,
5631         * src/pic16/device.h: prototype for checkAddSym,
5632         * src/pic16/gen.c: (_G): added entry interruptvector,
5633         * (assignResultValue): removed some commented out lines,
5634         * (genFunction): check for ISR via sym->type, absolute section for
5635         interrupt code is created via a new pBlock, the goto instruction is
5636         placed now correctly at the interrupt vector position, changed all
5637         references from ivec to _G.interruptvector,
5638         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5639         is the interrupt is a high priority one, same for return from ISR,
5640         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5641         externs to calls of checkAddSym,
5642         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5643         pic16_pcode_verbose flag is set,
5644         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5645         * src/pic16/pcoderegs.c: message about how many registers are saved
5646         will only be emitted if pic16_pcode_verbose flag is set,
5647
5648 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5649
5650         * src/ds390/ralloc.h,
5651         * src/ds390/ralloc.c (ds390_regWithIdx),
5652         * src/ds390/gen.c (emitcode),
5653         * src/ds390/main.h,
5654         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5655         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5656         ds390operandCompare, getRegsRead, getRegsWritten,
5657         initializeAsmLineNode): customized instruction size calculation for
5658         ds390, started basis for some register optimizations
5659         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5660         corresponding assembly output
5661         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5662         missing push/pop of r0/r1. Optimized push/pops
5663
5664 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5665
5666         * src/mcs51/main.c (instructionSize): fixed ACALL size
5667         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5668
5669 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5670
5671         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5672         the sorting of rlist with NULL elements
5673         * (print_idataType, print_idata): NEW to create idata sections
5674         * src/pic16/device.h: idataSymSet new variable
5675         * src/pic16/gen.c (genFunction): fixed some bugs in string
5676         comparing, improved the absolute section creation for ISRs,
5677         added FSR0L/FSR0H in registers that are saved in an ISR,
5678         * (genInline): fixed the processing of inline snippets,
5679         now they undergo no process by the peephole optimizer
5680         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5681         are placed in idataSymSet,
5682         * (pic16emitStaticSeg): extern symbols are added in externs,
5683         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5684         switching when aboslute variables are placed in access bank memory
5685         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5686         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5687         commented out with #if,
5688         * (pic16_packRegisters): reintroduce the check for CAST because some
5689         symbols are not correctly handled,
5690         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5691         pCodeInstruction instead of pCode,
5692         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5693         pCodeAsmDir definition,
5694         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5695         directive, then the argument directive is emitted without the leading
5696         tab, hack for inline labels which must be in the first column,
5697         * (compareLabel,pic16_findNextInstruction),
5698         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5699         * (insertBankSwitch): modified for the new pCodeAsmDir,
5700
5701 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5702         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5703
5704         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5705         instance,
5706         * (pushSide): commented out with #if,
5707         * (assignResultValue): fixed some typos in saving
5708         registers,
5709         * (genPcall): FIXED and sync'ed with genCall,
5710         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5711         * (genNearPointerGet): fixed to handle some more cases,
5712         implementation scheme via table reads,
5713         * (genConstPointerGet): modified to access code memory correct,
5714         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5715         and improved to handle some cases
5716         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5717         instead of "RETLW" for init data
5718         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5719         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5720         variables are placed in access bank memory (<0x80 and >=0xf80),
5721         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5722         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5723         TBLWT_POSTDEC,TBLWT_PREINC
5724         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5725         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5726         directives
5727         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5728         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5729         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5730         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5731
5732 2004-02-29  Borut Razem <borut.razem AT siol.net>
5733
5734         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5735         support/Util/findme.h, support/Util/system.h: enhance binary relative
5736         search for lib and include by using findProgramPath()
5737
5738 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5739
5740         * src/SDCCpeeph.h,
5741         * src/SDCCpeeph.c (pcDistance),
5742         * src/port.h,
5743         * src/mcs51/ralloc.h,
5744         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5745         * src/mcs51/main.h,
5746         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5747         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5748         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5749         size calculation port specific, started basis for some register
5750         optimizations
5751         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5752         missing push/pop of r0/r1. Optimized push/pops
5753         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5754         * device/lib/_modsint.c (_modsint),
5755         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5756         and stack version so regression tests pass
5757
5758 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5759
5760         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5761         * src/SDCCast.c (decorateType): catch another small optimization
5762         with '?' operator
5763         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5764         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5765         modified to finally use computeType() all over SDCC,
5766         see Feature Request #877103
5767         * src/SDCCval.h: cosmetic
5768         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5769         valCompare(); regression tested in muldiv.c
5770         * support/regression/tests/muldiv.c (testMod): mod sign follows
5771         dividend only
5772
5773 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5774
5775         * src/SDCCast.c (decorateType): fixed bug #902362
5776         * doc/INSTALL.txt: fixed install instructions for win32
5777
5778 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5779
5780         * device/include/Makefile.in (install): fixed by replacing spaces
5781         by tabs
5782         * doc/README.txt,
5783         * doc/INSTALL.txt: updated for release
5784         * doc/sdccman.lyx: added warning for --xstack being buggy
5785
5786 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5787
5788         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5789         to eliminate build warnings.
5790         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5791
5792 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5793            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5794
5795         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5796         removed -penable-stack, added comment for stack pragma, added
5797         warning for not initializing the stack/frame registers, removed
5798         comment at interrupts section
5799
5800         Stack is made permanent, there is no ability to disable stack usage.
5801         * src/pic16/device.h,
5802         * src/pic16/device.c: removed all references to USE_STACK macro,
5803         * src/pic16/device.c (pic16_dump_section): when no elements in
5804         rlist, free rlist before return,
5805         * (pic16_dump_int_registers): NEW, internal registers are a new set
5806         of general purpose registers reused by each function,
5807         * (checkAddReg): returns 1 if registers is added to set,
5808         * (pic16_groupRegistersInSection): when a registers is of type
5809         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5810         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5811         SRCASECMP macro is moved here from device.c
5812         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5813         PO_PCLATU, PO_PRODL, PO_PRODH,
5814         * (pic16_pCodeOpType, genMinus,
5815         changed compares to "a" register, with AOP_ACC,
5816         * (pic16_genPlus): fixed some bugs and indented properly,
5817         * (pic16_addSign): changed size to size+offset in the MOVWF
5818         instruction,
5819         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5820         multiply 8-bit operand by literal, result is 8-bit,
5821         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5822         multiply 2 8-bit operand, result is 8-bit,
5823         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5824         genUMult8X*_16,
5825         * src/pic16/gen.c: changed accUse to contain WREG only,
5826         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5827         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5828         true, do not use immediate addressing any more unless sym is a
5829         pointer in codespace,
5830         * (aopForRemat): do not use immediate addressing when symbol not in
5831         codespace and when symbol's address is requested,
5832         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5833         accUse size (= 1),
5834         * (aopGet): added case for AOP_ACC and don't return "accumulator
5835         bug" but WREG instead,
5836         * (popGetTempReg): pushes contents of temporary register in stack,
5837         * (popReleaseTempReg): pops contents of temporary register from
5838         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5839         * (pic16_popGet): separated case AOP_ACC to return register WREG
5840         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5841         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5842         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5843         the use of immediate pointers to certain cases only.
5844
5845         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5846         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5847         * (assignResultValue, genCall, genRet): modified to use the new
5848         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5849         genPcall is still broken,
5850         * (genFunction): added code to create 'A' type pBlocks when
5851         interrupt functions are generated, code not extensively tested yet,
5852         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5853         * (genEndFunction): modified so ISRs pop stored registers from stack,
5854         * (genMultOneByte): cleanup,
5855         * (AccRsh): added flag andmask, to and result with appropriate mask,
5856         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5857         * (genDataPointerGet): fixed and reenabled its use,
5858         * (genNearDataPointerGet): bugs fixed,
5859         * (genDataPointerSet): bugs fixed,
5860         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5861         pic16_DumpSymbol, pic16_DumpOp,
5862         * src/pic16/genutils.h: function prototypes for the above functions,
5863         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5864         pointers,
5865         * (pic16emitRegularMap): many many many improvements, but needs a
5866         major cleanup,
5867         * src/pic16/main.c: enable_stack in pic16_options is removed,
5868         * (_pic16_parseOptions): removed command line options -penable-stack,
5869         * (_process_pragma): emit stack symbol only when stack pragma is
5870         processed,
5871         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5872         redirected to FSR0L/FSR0H pair,
5873         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5874         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5875         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5876         for immediates,
5877         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5878         * (dumpPicOptype): NEW,
5879         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5880         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5881         with movff instruction,
5882         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5883         added pic16_int_regs, some packRegsFor* functions are commented out,
5884         because produce errors,
5885         * src/pic16/NOTES: minor modifications
5886
5887 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5888
5889         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5890         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5891         --pack-iram.
5892         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5893         * as/mcs51/lkaomf51.c: fixed bug #895763
5894
5895 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5896
5897         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5898
5899 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5900
5901         * doc/sdccman.lyx: added details about the HC08 storage classes and
5902         interrupts, fixed the register usage info for z80 & gbz80
5903
5904 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5905
5906         * doc/sdccman.lyx: added more pic16 port documentation
5907         * device/include/pic16/: added header pic18fregs.h
5908
5909 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5910
5911         * doc/sdccman.lyx: added Vangelis' contribution
5912
5913 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5914
5915         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5916         extend to the next CALL or PCALL, not just to the next CALL.
5917
5918 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5919
5920         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5921
5922 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5923
5924         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5925         bug #895752 and a better fix for bug #716790
5926
5927 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5928
5929         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5930
5931 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5932
5933         * doc/sdccman.lyx: minor changes, minor changed
5934
5935 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5936
5937         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5938         which can't handle SDCC_NEWONEBYTEOPS,
5939         (geniCodeMultiply): removed conversion from mult to shift for pic14
5940         and pic16
5941
5942 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5943
5944         * src/hc08/gen.h,
5945         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5946         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5947         thus fixing bug #895406
5948
5949 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5950
5951         * device/lib/_modsint.c,
5952         * device/lib/_modslong.c: sign follows divisor only
5953         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5954         signs or signedness can be ignored
5955         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5956         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5957         added optimization for IFX,
5958         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5959         arguments;
5960         reenabled optimization for IFX, which was removed on 2004-01-11
5961         * src/SDCCast.h: added return type IFX
5962         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5963         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5964         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5965         SDCC_OLDONEBYTEOPS selects the old behaviour
5966         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5967         changed again and commented promotion rule
5968         * src/SDCCval.c (valDiv): promotion no longer necessary
5969         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5970         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5971         rewritten
5972         * support/regression/tests/onebyte.c: added
5973
5974 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5975
5976         * gen.c (genInline): reverted to old code for assemnling inline
5977         code because of bug reported James Chadd
5978
5979 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5980
5981         * ralloc.h: missing declarations from previous patch,
5982         seems that patch for ralloc.h was never applied, fixed
5983
5984 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5985            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5986
5987         * pcode.c,
5988         * pcode.h,
5989         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5990         indirect addressing. Marked FSR0 as deprecated
5991         * gen.c (pointerCode): commented out, not needed now
5992         (pic16_popGet2p): new MOVFF helper function
5993         (genGenPointerGet),
5994         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5995         (shiftRLong): removed duplicate debugging info
5996
5997 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5998
5999         * src/ds390/gen.c (genNearPointerGet),
6000         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6001         optimization with bits, but not bitfields.
6002         * src/ds390/ralloc.c (packRegisters),
6003         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6004
6005 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6006
6007         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6008
6009 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/SDCCsymt.h,
6012         * src/SDCCicode.c (operandFromSymbol),
6013         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6014         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6015         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6016         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6017         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6018         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6019         bug #892038
6020         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6021         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6022         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6023         * src/SDCCsymt.c (newSymbol),
6024         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6025         enumerator_list),
6026         * src/SDCCval.h,
6027         * src/SDCCval.c (newiList): fixed bug #885705
6028
6029 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6030
6031         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6032         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6033
6034 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6035
6036         * device/include/c8051f120.h,
6037         * device/include/c8051f300.h,
6038         * device/include/c8051f310.h: added/updated header files for Silicon
6039         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6040         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6041         in new section Submitting patches
6042
6043 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6044
6045         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6046         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6047         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6048         genGenPointerSet),
6049         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6050         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6051         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6052         genGenPointerSet),
6053         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6054         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6055         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6056         genGenPointerSet),
6057         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6058         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6059         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6060         genGenPointerSet): fixed bug #892400
6061         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6062         to eliminate build warnings.
6063         * src/SDCCast.c (processParms),
6064         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6065         fixed bug 751859
6066         * support/valdiag/valdiag.py: added GCC to the list of defines active
6067         when compiling with gcc
6068
6069 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6070
6071         * support/Util/SDCCerr.h,
6072         * support/Util/SDCCerr.c,
6073         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6074         with an incomplete type (fixed bug #883734)
6075         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6076
6077 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6078
6079         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6080
6081 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6082
6083         * src/SDCCast.c (decorateType),
6084         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6085         function pointer implementation
6086         * support/regression/tests/funptrs.c: added tests to verify both forms
6087         of function pointers work correctly. Added tests to verify parameters
6088         are passed in the correct order.
6089
6090 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6091
6092         * device.c (regCompare): registers are sorted by ascending
6093         address and increasing size,
6094         * main.c (_pic16_finaliseOptions): removed the declaration
6095         of compiler macro MCU. Now a macro of the format pic18fxxxx
6096         will be defined from the command line
6097
6098 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6099             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6100
6101         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6102         PCOP_RLCF was overwritten!
6103         * gen.c (genSkip): commented out calls to pic16_emitcode,
6104         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6105         * (genlshTwo),
6106         * (genRRC): added debugging info,
6107         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6108         overwritten while shifting,
6109         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6110         overwritten while shifting,
6111         * (AccLsh),
6112         * (AccRsh),
6113         * (shiftLLeftOrResult),
6114         * (shiftRLeftOrResult),
6115         * (shiftRLong),
6116         * (shiftLLong): Implemented with pic16_emitpcode
6117         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6118         * (genLeftShift): Fixed bug, operand for shift by variable always
6119         was "and"ed with 0x0f,
6120         * (genLeftShiftLiteral),
6121         * (genrshTwo),
6122         * (genRightShiftLiteral): added debugging info,
6123         * (genrshFour): added comment,
6124         * (genRightShift): determined signedness from operand "left"
6125         instead of "result"
6126
6127 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6128
6129         * src/SDCCicode.c (geniCodeParms),
6130         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6131         function pointers, fixed function pointer bugs #861242 and #861896
6132
6133 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6134
6135         * device/include/c8051f000.h,
6136         * device/include/c8051f120.h,
6137         * device/include/c8051f300.h: added header files for Silicon
6138         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6139
6140 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6141
6142         * src/SDCCast.c (processParams): added new type flow and restructured
6143         (gatherAutoInit): added new type flow
6144         (addCast): cosmetic changes
6145         (getLeftResultType): added new type flow for array indices, patch
6146         provided by Stas, see FR #877103
6147         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6148         array index patch by Stas
6149         * src/SDCCast.h: added prototype getResultTypeFromType()
6150         * src/SDCCval.h,
6151         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6152         * src/pic/glue.c (pic14emitStaticSeg),
6153         * src/pic16/glue.c (pic16emitStaticSeg),
6154         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6155         for initialization of symbols
6156         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6157         * support/Util/SDCCerr.h:
6158         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6159         * .version: bumped version number to 2.3.8
6160         * device/include/Makefile.in (install),
6161         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6162         avoid warnings
6163
6164 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6165
6166         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6167         Slade Rich fixed an optimization bug
6168         * src/pic/pcodepeep.c,
6169         * src/pic/pcoderegs.c
6170         * doc/Makefile (install): added test for directory
6171
6172 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6173
6174         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6175         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6176         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6177         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6178         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6179         * as/mcs51/asexpr.c (term),
6180         * as/hc08/asexpr.c (term): fixed bug #887146
6181
6182 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6183
6184         * src/z80/gen.c (genMult): handle single byte result product
6185         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6186         DUMMY_READ_VOLATILE (fixed bug #886367)
6187
6188 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6189
6190         * support/regression/tests/libmullong.c: fixed logic, on little endian
6191         hosts we ended without a mullong_wrapper()
6192
6193 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6194
6195         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6196         virus/worm forged address usage.
6197
6198 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6199
6200         Fixed promotion, it should be done on AST level:
6201         * src/SDCCast.c (addCast): added promotion to int
6202         (decorateType): updated call to upCast()
6203         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6204         usualUnaryConversions()
6205
6206 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6207
6208         * support/regression/tests/literalop.c (mulWrapper): Added a
6209         wrapper to remove integer overflow warnings.
6210
6211         * support/regression/tests/float_trans.c: Made work on host.
6212
6213         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6214         location of sz80.
6215
6216         * support/regression/generate-cases.py (main): Changed from inline
6217         to a main method.
6218
6219         * doc/Makefile (install): Changed to depth first to get rid of
6220         missing directory install warning.
6221
6222         * as/Makefile (install-doc): Made work on Mac.
6223
6224 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6225
6226         * src/SDCCast.c: added an additional type flow in decorateType() of
6227         opposite direction, see feature request #860006; it's enabled at runtime
6228         by setting the environment variable SDCC_NEWTYPEFLOW
6229         * src/SDCCast.h: changed prototype of decorateType()
6230         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6231         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6232         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6233         see feature request #877103
6234         * src/SDCCval.c: updated call of decorateType()
6235         (valBitwise): fixed bug #882876
6236         (valMinus): added promotion
6237         (valLogicAndOr): result is unsigned
6238         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6239         * src/SDCCsymt.c (computeType),
6240         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6241         must not cause an unsigned operation
6242         * src/pic/glue (pic14emitRegularMap),
6243         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6244
6245 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6246
6247         * src/pic/pcode.c (PCodeID): commented out left over debug code
6248
6249 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6250
6251         * support/valdiag/tests/overflow.c: added shift tests
6252         * src/pic/device.c,
6253         * src/pic/gen.c,
6254         * src/pic/gen.h,
6255         * src/pic/glue.c,
6256         * src/pic/main.c,
6257         * src/pic/pcode.c,
6258         * src/pic/pcode.h,
6259         * src/pic/pcodepeep.c,
6260         * src/pic/pcoderegs.c,
6261         * src/pic/ralloc.c,
6262         * src/pic/ralloc.h: applied patch from Slade Rich;
6263         added support for multiple code pages and multiple RAM banks on the
6264         PIC 14 port. The ASM files now no longer simply assume all the
6265         code / RAM are in the same page / bank. This means the linker can
6266         safely allocate code/RAM of separate ASM files to different pages/banks.
6267         * doc/sdccman.lyx: added Slade's tips
6268         * src/mcs51/peeph.def: fixed bug #880768
6269
6270 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6271
6272         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6273         * src/SDCCast.c (decorateType): fixed bug #880197
6274
6275 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6276
6277         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6278         getopt.h.
6279
6280         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6281         strtof is not part of C89 and isn't included with Mac OS X.
6282
6283 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6284
6285         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6286         shiftL2Left2Result): fixed bug #879326
6287         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6288         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6289         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6290         address fetch for clr instruction
6291         * device/lib/hc08/_mulint.c: created optimized assembly version
6292         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6293
6294 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6295
6296         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6297         proposed in FR #877103
6298
6299 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6300
6301         * src/SDCCval.c (cheapestVal): added missing checks
6302         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6303         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6304
6305 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6306
6307         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6308         equal operands
6309
6310 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6311
6312         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6313         loaded with the linker search paths (-L arguments) and the libraries
6314         to be linked with the current source (-l arguments). Changes
6315         currently will affect only the pic16 port.
6316         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6317         include path the port specific paths and port specific libraries,
6318         * gplink command now contains the $3 argument,
6319         * src/pic16/device.h,
6320         * src/pic16/device.c,: structure PIC_device is made public and
6321         renamed to PIC16_device, the same for variable Pics which is renamed
6322         to Pics16. Updated all references to them.
6323         * src/pic16/glue.c (pic16glue): corrected bug with code
6324         initialization which bypassed the variable initializations block.
6325
6326         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6327         COMPILE_FLAGS and added the --nostdinc option
6328
6329 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6330
6331         * device/include/mc68hc908jb8.h: Register defs for another member
6332         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6333
6334 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6335
6336         Documenting changes from previous commits.
6337         * configure.in (version 1.56),
6338         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6339         when generating output files to configure the pic16 library,
6340         but now I've commented it out, since gputils aren't installed in the
6341         SF compile farm, so library won't compile
6342
6343         * device/lib/Makefile.in (version 1.56): initially I've added in
6344         target 'all' the prerequestive 'model-pic16' so it compiled the
6345         pic16 library, but now I've commented it out for the same reasons
6346         above,
6347         * added targets 'model-pic16' and 'objects-pic16' to compile the
6348         library
6349         * added target 'port-specific-objects-pic16' to handle the
6350         generated libraries and copy them into the build/ directory
6351         * added target 'clean-intermediate-pic16' to clean intermediate
6352         files into pic16 directory
6353         * in target 'installdirs' added line to create directory pic16 in
6354         the installation path
6355
6356         * device/include/Makefile.in (version 1.11): in target 'install'
6357         added lines to copy all header files to installation path,
6358         * in target 'installdirs' added line create directory for pic16
6359         headers in the installation path
6360
6361 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6362
6363         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6364          a function call
6365
6366 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6367
6368         * configure,
6369         * device/lib/configure.in,
6370         * device/lib/configure: fixed for autoconf 2.57
6371
6372 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6373
6374         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6375         option so that it actually works. Made it specific to the z80, since
6376         the gbz80 doesn't have these kinds of I/O ports.
6377
6378 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6379
6380         * device/include/z180.h,
6381         * device/lib/_memcpy.c,
6382         * device/lib/_memmove.c,
6383         * device/lib/_mulint.c,
6384         * device/lib/ser_ir.c,
6385         * device/lib/ser_ir_cts_rts.c,
6386         * device/lib/_strcmp.c,
6387         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6388         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6389         portmode; added deprecation warning for bank= and protmode= forms.
6390         Also, guard against buffer overflow.
6391         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6392
6393 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6394
6395         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6396         changed interrupt vector table generation to only emit declared vectors.
6397         * device/include/Makefile.in: added missing backslash
6398         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6399
6400 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6401
6402         Mainly changes to support compilation of the device libraries
6403         * src/pic16/device.c: stack is allocated via symbol and not
6404         via literal number. The symbol is placed in the corresponding
6405         position of the data ram
6406         * (pic16_dump_section): relocatable and absolute uninitialized
6407         data are now emitted in sorted order to reduce section naming,
6408         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6409         weren't marked as being in the access bank,
6410
6411 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6412
6413         Added portion of GNU PIC Library under the directory
6414         device/include/pic16 and device/lib/pic16. These files
6415         contain the declarations of SFRs for the PIC18Fxx2 devices.
6416         The directory is initialized via configure from toplevel.
6417
6418 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6419
6420         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6421         the spilllocations to be compared correctly
6422
6423 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6424
6425         * src/SDCCast.c (decorateType): fixed bug introduced today
6426
6427 2004-01-12  Borut Razem <borut.razem AT siol.net>
6428
6429         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6430         doc/sdccman.lyx: upper case pragmas are deprecated
6431
6432 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6433
6434         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6435         in simpler and even better code
6436
6437 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6438
6439         * src/SDCCicode.c (operandOperation): fixed bug #874819
6440         * src/SDCCast.c (decorateType): fixed
6441         char foo (unsigned long ul) { return ul > 0; }
6442
6443 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6444
6445         * doc/sdccman.lyx: Moved and added some sections, small changes
6446         all over. Telling LaTeX to be less strict with word spacing
6447         to better keep the right margin. Changed some notes about
6448         maintainance of the ports in section 3.2.1 - is it OK like this?
6449
6450 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6451
6452         SDCC source changes:
6453         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6454         convilong): modified to inform the pic16 port that builtin functions
6455         are external
6456
6457         PIC16 PORT specific changes:
6458         * src/pic16/device.c pic16_dump_equates() added,
6459         processor registers declared internally by the port are emitted in
6460         the translation as equates,
6461         * src/pic16/gen.c: inline code is passed unprocessed to the
6462         translation,
6463         * (pic16_popGetLit2): fnuction modified to take second operand as
6464         pCodeOp pointer and not as literal,
6465         * (popRegFromIdx): prefixed with pic16_,
6466         * (pic16_popCombine2): modified to receive already allocated pCode
6467         operands,
6468         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6469         * (genFunction): initializes local stack frame and pushes on stack
6470         all the registers used by this function,
6471         * (genEndFunction): restores all registers from stack and restores
6472         stack frame,
6473         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6474         improvements,
6475         * (pic16glue): changed the program startup sequence,
6476         * added new dbName code 'A' for functions placed in absolute section
6477         * src/pic16/main.c: added function attribute _naked,
6478         * added pragma 'code' to place a fnuction at an absolute address,
6479         * added command line arguments --debug-ralloc and --pcode-verbose,
6480         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6481         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6482         * (pic16_newpCodeOpLit2): modified to take the second operand as
6483         pCodeOp pointer,
6484         * (pic16_printpBlock): modified to emit each function in a separate
6485         section,
6486         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6487         UPPER for immediate operands,
6488         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6489         instruction,
6490         * src/pic16/peeph.def: all peepholes with movff are commented out,
6491         because there is a problem in the pcode peep optimizer,
6492         * src/pic16/ralloc.c: the register allocator can now reuse local
6493         function symbols for another function. This saves register usage.
6494         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6495
6496         Added file src/pic16/NOTES with information about program writing on
6497         the current port version.
6498
6499 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6500
6501         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6502         and peephole 252 (array access)
6503
6504 2004-01-09  Borut Razem <borut.razem AT siol.net>
6505
6506         * src/SDCCmain.c : fixed #872250: -l command line defined library
6507           files are scanned before standard library files
6508
6509 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6510
6511         * src/SDCCast.c (decorateType): fixed bug #874046
6512
6513 2004-01-09  Borut Razem <borut.razem AT siol.net>
6514
6515         * support/scripts/sdcc.nsi: remove previous installation
6516
6517 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6518
6519         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6520         bytes for last interrupt vector (mcs51)
6521         * sdcc.spec: fixed typo
6522
6523 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6524
6525         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6526         gen51Code): more efficient parameter receive for --model-large
6527         ("bug" #845294)
6528
6529 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6530
6531         * src/ds390/main.c,
6532         * src/z80/main.c: added missed needLinkerScript flags (more than
6533         one port structure defined in these file)
6534         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6535         bug #795325
6536
6537 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6538
6539         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6540         * src/port.h: added flag needLinkerScript in port->linker
6541         structure to inform whether to create a .lnk file or not,
6542         * src/avr/main.c,
6543         * src/ds390/main.c,
6544         * src/hc08/main.c,
6545         * src/mcs51/main.c,
6546         * src/pic/main.c,
6547         * src/pic16/main.c,
6548         * src/xa51/main.c,
6549         * src/z80/main.c: changed appropriately to configure
6550         needLinkerScript flag
6551         * src/pic/gen.c,
6552         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6553         * src/pic/glue.c: added variable udata_section_name to
6554         override default uninitialized data segment definition for
6555         devices only with SHAREBANK memory (reported from Erik Epetrich)
6556         * (pic14emitOverlay): modified to emit a commented overlay segment
6557         directive when no overlay data exist
6558         * (picglue): modified to emit uninitialized data segment
6559         according to udata_section_name
6560         * src/pic/main.c (_pic14_parseOptions): added command line
6561         options --udata-section-name=[name] to override default
6562         udata definition name
6563         * modified _linkCmd and _asmCmd to include compiler passed
6564         arguments via -W option
6565         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6566         object file from '.rel' to '.o' in port->linker structure,
6567         changed size of fptr from 2 to 3 in port structure
6568
6569 2004-01-07  Borut Razem <borut.razem AT siol.net>
6570
6571         * support/scripts/sdcc.nsi: update PATH
6572         * support/scripts/sdcc.ico: craeted
6573
6574 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6575
6576         * device/include/Makefile.in: fix install
6577         * doc/Makefile: fix install
6578
6579 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6580
6581         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6582         in bug #860505
6583         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6584         how the function variable allocation summary is displayed; also
6585         include information about variables allocated to the overlay
6586         segment
6587
6588 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6589
6590         * as/mcs51/lkmain.c: Help about -Y option
6591         * as/mcs51/lkarea.c: Fixed gcc warnings
6592
6593 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6594
6595         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6596         fixed warning
6597         * support/valdiag/tests/overflow.c: added
6598         * src/SDCCast.c (decorateType),
6599         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6600         LEFT_OP (left shift)
6601
6602 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6603
6604         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6605         (default behaviour).
6606
6607 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6608
6609         A python script to validate compiler diagnostic messages. It can be
6610         used to verify that sdcc complains about bad c source code and
6611         gives a good location of the error.
6612         * support/valdiag/Makefile,
6613         * support/valdiag/valdiag.py,
6614         * support/valdiag/tests/*
6615
6616 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6617
6618         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6619         * src/SDCCsymt.c (newEnumType),
6620         * src/SDCCsymt.h
6621         * support/Util/SDCCerr.c,
6622         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6623         enum related bugs.
6624         * support/regression/tests/enum.c: added test for enum values that
6625         require at least 2 bytes of storage.
6626
6627 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6628
6629         * src/common.h: added ifndef/define/endif macros
6630         around the header file.
6631         Bug reported from Jesus Calvino-Fraga
6632
6633 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6634
6635         * sdcc.spec: updated
6636         * device/include/Makefile.in: don't install CVS directories
6637         * device/lib/Makefile.in: added removal of CVS directories after install
6638         * doc/Makefile: fixed install, added local_icons
6639         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6640         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6641         * src/ds390/gen.c (genRightShift): fixed bug #870788
6642         * src/SDCCast.c (decorateType): fixed bug #870781
6643
6644 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6645
6646         PIC16 port related changes:
6647         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6648         added variable stackPos,
6649
6650         * gen.c: genCall, assignResultValue: added support for
6651         pushing/retrieving function parameters to/from stack,
6652         genFunction,genEndFunction: setup stack frame for the
6653         generated function,
6654         genAddrOf: will be changed according to bug 863624
6655
6656         * added files genutils.c and genutils.h which contain gen*
6657         debugged and optimised functions extracted from gen.c
6658
6659         * glue.c: added variable 'externs' which holds extern symbols,
6660         pic16emitRegularMap: is modified to properly handle relocatable
6661          symbols under the new scheme,
6662         pic16createInterruptVect: is modified
6663         pic16printPublics: is modified to emit 'global' assembler directives,
6664         added pic16_printExterns to print extern symbols,
6665         pic16glue: initializes stack/frame pointer in the beginning of
6666         the assembly output. Temporary hack, will be corrected later,
6667         because gplink yet does not support stack and SDCC does not
6668         yet support a type of crt0.o object to create the final binary.
6669
6670         * Removed many lines that contain 8051 legacy code.
6671         * The code is finally placed under a 'code' directive.
6672         * Added port specific options.
6673
6674         * _process_pragma: simplified since now we do not need *special*
6675         include file to define SFR registers. But a separate header
6676         will be needed. This will be developed later.
6677         * _pic16_parseOptions: added, parses port specific options:
6678         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6679         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6680         --preplace-udata-with=
6681
6682         * _pic16_setDefaultOptions: modified to initialize section names,
6683         but hack is temporarly out of order since it needs improvement.
6684         * _pic16_genAssemblerPreamble: configuration words are emitted by
6685         their address instead of their name. This part is incomplete and
6686         supports only the 18Fxx2 devices. Other devices will emit an error
6687         during assembly since they do not contain the same set of config
6688         registers
6689         * _pic16_genIVT: is modified,
6690
6691         * pcode.c: added definitions for some hardware registers that are needed
6692         for stack support
6693         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6694         All PCI entries are updated. Now LFSR is supported.
6695         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6696         * added pic16_newpCodeOpLit2 to support instructions with
6697         two literal arguments
6698         * pic16_pCode2str: corrected code that emits assembler instructions
6699         with two literal operands and those that have an access bit modifier
6700         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6701         this fixes a bug which caused some labels to be lost, when an
6702         assembler directive was added, i.e. banksel,
6703         * pic16_FixRegisterBanking: improved logic that causes the insertion
6704         of bank switching,
6705         * InlineFunction: functions that are called once, are not any more
6706         inlined. This can be a port option in the future,
6707
6708         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6709
6710         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6711         hold the corresponding uninitialized symbols,
6712         * pic16_allocProcessorRegister: registers have explicit marked the
6713         accessBank field,
6714         * pic16_allocInternalRegister: registers are explicit marked as
6715         not used,
6716         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6717         processing list, so bit registers were lost,
6718         *
6719
6720         * ralloc.h: added field 'accessBank' and original symbol operand
6721         in register definition,
6722         * removed the field isMapped from register definition,
6723
6724         ** Several functions have been removed from various sources:
6725         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6726         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6727         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6728         pic16_assignRelocatableRegisters
6729
6730         ** others have been introduced:
6731         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6732         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6733
6734 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6735
6736         * support/scripts/inc2h.pl: changed definition of BIT_AT
6737         to emit 'sbit at' instead of 'bit at'. This was a request.
6738
6739         PIC16 port related preliminary changes:
6740         * gen.c: prefixed function popRegFromString with
6741         pic16_ and all references to it corrected
6742         * pcode.c: all pic16_pc_* hardware registers prefixed
6743         with underscore (_),
6744         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6745         * ralloc.c: newReg(): when register is REG_SFR then
6746         set address to rIdx,
6747         pic16_allocProcessorRegister(): marks register wasUsed=0
6748         pic16_writeUsedRegs(): added a call to assign processor
6749         registers via pic16_assignFixedRegisters
6750
6751 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6752
6753         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6754         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6755         variables in unused register banks.  Also the SSEG is placed
6756         wherever there is enough space for it, and IDATA can be anywhere
6757         in internal RAM.  For now compile using -Wl-Y[stack_size].
6758         The mem file is different for this option as well, since it
6759         makes no sense of talking about DSEG lenght.
6760
6761 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6762
6763         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6764         in certain cases, e.g. when ROM assignment, patch provided
6765         from Albert den Haan.
6766
6767 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6768
6769         Many signedness and type propagation fixes:
6770         * src/SDCCicode.c: made geniCodeCast() static
6771         replaced SPEC_ by IS_ (cosmetic)
6772         (operandOperation): fixed div and mod operation
6773         (usualBinaryConversions): added support for promotion of char
6774         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6775         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6776         (geniCodeAdd): an array index will stay unsigned, even if promoted
6777         from char to int
6778         (geniCodeArray): ditto
6779         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6780         * src/SDCCsymt.c (computeType): added more support for char;
6781         promotion of char is selectable by promoteCharToInt, fixed signedness
6782         for all cases
6783         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6784         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6785         * src/SDCCval (val*): replaced signedness calculation by
6786         computeType()
6787         rearranged if-branches (cosmetic)
6788         (valShift): added warning W_SHIFT_CHANGED
6789         (valCompare): fixed problem with different types
6790         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6791         * support/regression/tests/literalop.c: added many cases
6792         * support/regression/tests/ast_constant_folding.c: changed finally to
6793         'unsigned int'
6794         * .version: new year, new version: 2.3.7
6795         * src/SDCCmain.c (main): applied patch #866468
6796         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6797         provided by Scott Bronson
6798         * doc/sdccman.lyx: updated documentation for sdcdb
6799         updated and added chapter tips
6800
6801 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6802
6803         * src/SDCCsymt.h: missing from yesterday's commits
6804
6805 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6806
6807         * src/SDCC.y (struct_or_union_specifier),
6808         * support/Util/SDCCerr.c,
6809         * support/Util/SDCCerr.h: verify that struct & union tags are used
6810         as declared.
6811
6812 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6813
6814         * src/SDCCglobl.h: missing from yesterday's commits
6815
6816 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6817
6818         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6819         sft_attributes, struct_declaration, parameter_declaration,
6820         type_name, start_block, declaration_list),
6821         * src/SDCC.lex (check_type): support redefinition of typedef names
6822
6823 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6824
6825         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6826         aligned xdata arrays. Erik helped me with the if clause.
6827
6828 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6829
6830         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6831         warning
6832
6833 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6834
6835         * src/SDCCast.h,
6836         * src/SDCCast.c (newAst_),
6837         * src/SDCCicode.h,
6838         * src/SDCCicode.c (ast2iCode, newiCode),
6839         * src/SDCCglobl.h,
6840         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6841         expr, statement, expression_statement, selection_statement,
6842         iteration_statement, expr_opt, jump_statement): foundation for tracking
6843         sequence points
6844         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6845         point code too)
6846
6847 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6848
6849         * support/Util/SDCCerr.c,
6850         * src/SDCCast.h,
6851         * src/SDCCast.c (createCase, createDefault, decorateType),
6852         * src/SDCClabel.c (labelUnreach),
6853         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6854         to error messages.
6855         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6856         (with thanks to Stas Sergeev)
6857         * device/include/time.h,
6858         * device/lib/time.c (CheckTime): suppress unreachable code warning
6859
6860 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6861
6862         * src/SDCCast.c (createIvalCharPtr),
6863         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6864         bug #753752)
6865         * support/regression/tests/nullstring.c: tests for these two bugs
6866
6867 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6868
6869         * support/Util/SDCCerr.h,
6870         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6871         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6872         about storage class and 'at' used inside struct or union
6873         * src/SDCCBBlock.c (iCodeFromeBBlock),
6874         * src/SDCCcse.c (ifxOptimize),
6875         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6876         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6877         printIval, emitStaticSeg, emitOverlay),
6878         * src/SDCClabel.c (deleteIfx),
6879         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6880         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6881         gatherAutoInit, processParms),
6882         * support/Util/SDCCerr.h,
6883         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6884         reporting for post-parse errors.
6885
6886 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6887
6888         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6889         implicit casts via union; they don't work on big endian systems
6890         (possible fix for bug #861138)
6891
6892 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6893
6894         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6895         * src/mcs51/main.c: fixed the fix for bug #737001
6896
6897 2003-12-15  Borut Razem <borut.razem AT siol.net>
6898
6899         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6900
6901 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6902
6903         * support/makebin/makebin.c: put output in binary mode
6904
6905 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6906
6907         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6908         xdata and data memory on startup. Set the environment variable
6909         SDCC_NOGENRAMCLEAR to disable this.
6910         * src/mcs51/peephole.def,
6911         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6912         (allows non-interrupt and interrupt code to safely compete for a resource
6913         without the non-interrupt code having to disable interrupts)
6914
6915 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6916
6917         * src/SDCCicode.c (geniCodeAdd),
6918         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6919         with valFromType if type might be a pointer and host is big endian).
6920         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6921         types, not just integer types.
6922         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6923         multiply defined with mismatching "at" address.
6924
6925 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6926
6927         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6928         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6929         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6930         with embedded nulls (fixed bug #753752)
6931
6932 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6933
6934         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6935         Apparently this did not see much testing (endless loop)
6936
6937 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6938
6939         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6940
6941 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6942
6943         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6944         gracefully handle NULL memmap pointers
6945
6946 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6947
6948         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6949         instead of deleting the iCode when an operand is volatile
6950         * src/z80/gen.c (genDummyRead),
6951         * src/mcs51/gen.c (genDummyRead),
6952         * src/ds390/gen.c (genDummyRead),
6953         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6954         not just IC_RIGHT
6955         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6956         * src/SDCC.y: fixed bug #850420
6957
6958 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6959
6960         Applied z80 i/o port patch from Peter Townson and fixed some operators
6961         to better handle operands in A register.
6962         * device/include/z180.h
6963         * src/SDCC.y
6964         * src/SDCCglue.c
6965         * src/z80/gen.c
6966         * src/z80/gen.h
6967         * src/z80/main.c
6968         * src/z80/peeph-z80.def
6969         * src/z80/peeph.def
6970         * src/z80/z80.h
6971
6972 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6973
6974         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6975
6976 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6977
6978         * device/lib/hc08/_mullong.c: Removed extra #endif
6979
6980 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6981
6982         * sim/ucsim/hc08.src/inst.cc,
6983         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6984         carries from x to h
6985         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6986         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6987         * device/include/stdarg.h: fixed varargs for hc08
6988         * device/lib/Makefile.in,
6989         * device/lib/hc08/Makefile,
6990         * device/lib/hc08/_mulint.c,
6991         * device/lib/hc08/_mullong.c: fixed some endian problems
6992
6993 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6994
6995         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6996         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6997         * device/lib/_gptrget.c,
6998         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6999
7000 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7001
7002         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7003         * src/SDCCast.c (astErrors): fixed bug #846007
7004         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7005
7006 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7007
7008         * src/SDCCast.c (decorateType): disabled a transformation I added in
7009         revision 1.188 (access to fields of a structure at an absolute address);
7010         it breaks with bitfields, extern declarations, and gcse analysis.
7011         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7012         could be assigned through a pointer, so don't complain.
7013         * src/SDCCast.c (astErrors),
7014         * src/SDCCast.h,
7015         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7016
7017 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7018
7019         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7020         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7021         output of __config directives, since gpasm now supports them
7022         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7023         pre-processor macro, i.e. -DMCU=p18f452
7024         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7025         and modified to handle 'cast' icode similarly to '=' icode
7026         * src/pic16/device.h (typedef struct PIC_device): added field
7027         'extMIface' to indicate that chip has external memory interface
7028         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7029         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7030         18F8720
7031
7032 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7033
7034         * src/SDCC.y (pointer): fixed bug #846006
7035         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7036         * src/SDCCast.c (decorateType): fixed bug #846009
7037         * src/ds390/peeph.def,
7038         * src/ds390/gen.c (genAnd, genOr),
7039         * src/mcs51/peeph.def,
7040         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7041
7042 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7043
7044         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7045         * src/SDCCdflow.c
7046         * src/SDCCcse.c
7047         * src/SDCCcse.h
7048         * src/SDCCBBlock.h
7049         * src/SDCCBBlock.c
7050
7051 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7052
7053         fixed bug #845089
7054         * src/SDCCbitv.h,
7055         * src/SDCCbitv.c: added function to free a bitvector
7056         * src/SDCClrange.h,
7057         * src/SDCClrange.c: added function to recompute the liveranges
7058         * src/avr/ralloc.c,
7059         * src/ds390/ralloc.c,
7060         * src/hc08/ralloc.c,
7061         * src/mcs51/ralloc.c,
7062         * src/pic/ralloc.c,
7063         * src/pic16/ralloc.c,
7064         * src/xa51/ralloc.c,
7065         * src/z80/ralloc.c: recompute the liveranges after register packing
7066
7067 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7068
7069         * src/SDCCloop.c (newInduction): fixed bug #845630
7070
7071 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7072
7073         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7074         inadvertantly left behind from my 2003-11-12 change
7075
7076 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7077
7078         Updated headers I neglected to commit yesterday.
7079         * src/SDCClrange.h,
7080         * src/SDCCicode.h
7081
7082 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7083
7084         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7085         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7086         * src/SDCCopt.c (eBBlockFromiCode),
7087         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7088         the creation of the key hash table from the sequencing so it can be used
7089         earlier (for some GCSE bug fixes still pending)
7090
7091 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7092
7093         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7094         * support/regression/tests/addsub.c: testing genPlus shortcut
7095
7096 2003-11-15  Borut Razem <borut.razem AT siol.net>
7097
7098         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7099
7100 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7101
7102         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7103         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7104         ordering is immaterial.
7105         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7106
7107 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7108
7109         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7110         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7111         (SIGSEV) of bug #840381
7112         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7113         unlink new file before rename if new and old filenames are the same)
7114
7115 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7116
7117         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7118         uninitialized variables) for the mcs51. Set environment variable
7119         SDCC_GENRAMCLEAR to test.
7120         xdata initialization slightly shorter
7121
7122 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7123
7124         * src/SDCCsymt.h,
7125         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7126         #838241 & 780691 (basicly the same bug)
7127         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7128         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7129
7130 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7131
7132         * src/SDCCmain.c (linkEdit): "fix" #834252
7133
7134 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7135
7136         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7137         * src/SDCCast.h,
7138         * src/SDCC.y: fixed bug #819403
7139
7140 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7141
7142         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7143         the reentrant attribute.
7144         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7145         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7146         simulation
7147         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7148         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7149         erroneously reduced to a literal.
7150         * src/hc08/ralloc.c (packRegisters, rematStr),
7151         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7152         some cases
7153
7154 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7155
7156         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7157         * doc/sdccman.lyx: changed from 'article' to 'book'
7158         * doc/Makefile: readded test_suite_spec and cdbfileformat
7159
7160 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7161
7162         * device/include/stdlib.h: include malloc.h to comply with ANSI
7163         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7164
7165 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7166
7167         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7168         * doc/clean.mk: also remove *.out files
7169         * doc/sdccman.lyx: some additions, larger top/bottom margins
7170
7171 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7172
7173         * src/SDCC.y: fixed bug #837365
7174         * support/regression/tests/bitopcse.c
7175         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7176         a symbol (might be valop instead)
7177         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7178         * device/lib/clean.mk: added hc08 to the cleaning list
7179
7180 2003-11-04  Borut Razem <borut.razem AT siol.net>
7181
7182         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7183           made 2003-11-04
7184         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7185           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7186           malloc is declared in standard stdlib.h
7187
7188 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7189
7190         * device/lib/hc08/Makefile: need to clean .rel not .o files
7191         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7192
7193 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7194
7195         * src/port.h,
7196         * src/hc08/main.c,
7197         * src/mcs51/main.c,
7198         * src/ds390/main.c,
7199         * src/z80/main.c,
7200         * src/avr/main.c,
7201         * src/pic/main.c,
7202         * src/pic16/main.c,
7203         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7204         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7205         tests (which uses the port's oclsExpense function)
7206         * src/SDCC.y,
7207         * src/SDCCast.c,
7208         * src/SDCCicode.c,
7209         * src/hc08/gen.c,
7210         * src/ds390/gen.c,
7211         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7212
7213 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7214
7215         * src/SDCCcse.c (ifxOptimize),
7216         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7217         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7218         deleting the IFX iCode.
7219         * src/hc08/ralloc.c: reduced unneeded slocs
7220         * src/hc08/gen.c: fixed bug in asmopToBoolean
7221
7222 2003-11-04  Borut Razem <borut.razem AT siol.net>
7223
7224         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7225           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7226           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7227           transferred to configure
7228
7229 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7230
7231         Use headers defined in the C[++] standards:
7232         * sim/ucsim/gui.src/serio.src/fileio.cc
7233         * sim/ucsim/gui.src/serio.src/frontend.cc
7234         * sim/ucsim/gui.src/serio.src/main.cc
7235         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7236         * support/Util/NewAlloc.c
7237         * as/hc08/lklibr.c
7238         * as/mcs51/lklibr.c
7239         * as/z80/aslist.c
7240         * as/z80/assym.c
7241
7242 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7243
7244         * Added MSVC projects for hc08 assembler and linker:
7245         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7246         /as/hc08/link_hc08.dsp
7247
7248 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7249
7250         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7251
7252 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7253
7254         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7255
7256 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7257
7258         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7259
7260 2003-10-31  Borut Razem <borut.razem AT siol.net>
7261
7262         * support/cpp2/cpplib.h,
7263           support/cpp2/cpplib.c,
7264           support/cpp2/cpplex.c,
7265           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7266           to switch _asm block preprocessing on / off. Default is
7267           #pragma preproc_asm +
7268
7269 2003-10-31  Borut Razem <borut.razem AT siol.net>
7270
7271         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7272           when outputting comment blocks (when executed with -C option) and
7273           _asm (SDCPP specific) blocks
7274
7275 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7276
7277         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7278
7279 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7280
7281         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7282
7283 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7284
7285         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7286         * src/SDCCast.c (decorateType): fixed bug #832664
7287
7288 2003-10-31  Borut Razem <borut.razem AT siol.net>
7289
7290         * support\cpp2\cpplex.c: fixed for SDCPP:
7291           comments(when executed with -C option) and _asm blocks
7292           were included even if they where in skipped #if block.
7293           Applied solution from GCC cpp 3.3.2
7294
7295 2003-10-31  Borut Razem <borut.razem AT siol.net>
7296
7297         * src/SDCC.lex: sdcc now understands both formats:
7298           '# <line_number> <file_name>' and
7299           '#line <line_number> <file_name>'
7300         * support/cpp2/cppmain.c: sdcpp now generates the standard
7301           '# <line_number> <file_name>' instead of former
7302           '#line <line_number> <file_name>'
7303
7304 2003-10-30  Borut Razem <borut.razem AT siol.net>
7305
7306         * support/cpp2/cpphash.h,
7307         * support/cpp2/cpplib.h
7308         * support/cpp2/cpplex.c,
7309         * support/cpp2/cppmain.c,
7310         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7311
7312 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7313
7314         Fixed a number of problems revealed by bug #827883.
7315         * src/SDCCloop.c (loopInvariants): Spill location of the
7316         result operand should be recomputed if extracted from
7317         a loop. Also, don't extract assignments of an iTemp
7318         from a literal.
7319         * src/SDCCast.c (isConformingBody): loop reversal should
7320         not occur if the control variable is involved with a
7321         relational operator.
7322
7323 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7324
7325         * .version: bumped to 2.3.6 to reflect the big improvements
7326         made by Erik and Klaus. Thanks!
7327
7328 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7329
7330         Replaced the livrange code.
7331         * src/SDCClrange.c: added new LR code
7332         * src/SDCCloop.c,
7333         * src/SDCCBBlock.h: removed remainig parts from old LR code
7334         * src/ds390/ralloc.c,
7335         * src/ds390/gen.c: minor fixes to make it work with new code
7336
7337 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7338
7339         * as/hc08/asm.h,
7340         * as/hc08/lkrloc.c,
7341         * src/hc08/gen.c,
7342         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7343         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7344         (tweaked fix for bug #818696)
7345
7346 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7347
7348         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7349
7350 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7351
7352         * src/SDCCmain.c,
7353         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7354         * src/mcs51/gen.c (gencjneshort),
7355         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7356         more efficient (per Scott Bronson's suggestion)
7357
7358 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7359
7360         Extended the semantics of the critical keyword to include
7361         individual statements. See RFE #827755 and #799831
7362         * src/SDCC.y
7363         * src/SDCCicode.c
7364         * src/SDCCopt.c
7365         * src/SDCCast.c
7366         * support/Util/SDCCerr.c
7367         * support/Util/SDCCerr.h
7368         * src/mcs51/gen.c
7369         * src/ds390/gen.c
7370         * src/hc08/gen.c
7371
7372 2003-10-19  Borut Razem <borut.razem AT siol.net>
7373
7374         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7375
7376 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7377
7378         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7379         Fixed bug #818696
7380         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7381         and predecrement operand is displayed
7382
7383 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7384
7385         * src/SDCCval.c (valMinus): fixed bug #826041
7386
7387 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7388
7389         Some hc08 related updates that I missed earlier
7390         * sim/ucsim/stypes.h
7391         * support/regression/ports/hc08/spec.mk
7392
7393 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7394
7395         New target "hc08" for the Motorola 68hc08 family of micros
7396
7397         * configure
7398         * configure.in
7399         * Makefile
7400         * src/hc08/*
7401         * src/SDCCmain.c
7402         * src/port.h
7403         * sim/ucsim/hc08.src/*
7404         * sim/ucsim/configure.in
7405         * src/ucsim/configure
7406         * sim/ucsim/packages_in.mk
7407         * as/hc08/*
7408         * as/Makefile
7409         * device/include/mc68hc908qy.h
7410         * device/lib/hc08/*
7411         * device/lib/Makefile.in
7412         * support/regression/ports/hc08/*
7413         * support/regression/Makefile
7414
7415 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7416
7417         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7418         regression test
7419         * src/ds390/gen.c (genCast): fixed bug #821957
7420
7421 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7422
7423         * device/lib/logf.c: "fixed" overlay bug
7424         * support/regression/ports/host/spec.mk: added m library
7425         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7426         * support/regression/tests/float_trans: added (for Eric)
7427
7428 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7429
7430         * src/mcs51/gen.c (genCpl): fixed bug
7431         http://sf.net/mailarchive/message.php?msg_id=6263915
7432
7433 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7434
7435         * src/SDCCast.c (decorateType): added extended constant folding
7436         * src/SDCCsymt.c (computeType): cleanup
7437         * src/SDCCval.c (valShift): minor optimization
7438         * support/regression/tests/ast_constant_folding.c: added
7439
7440 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7441
7442         * src/SDCCmain.c: removed some unintended changes
7443
7444 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7445
7446         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7447         * src/z80/gen.c: fixed part of bug #817589
7448         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7449
7450 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7451
7452         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7453         * src/SDCCcflow.c
7454         * src/SDCCcse.c
7455         * src/SDCCdflow.c
7456         * src/SDCClabel.c
7457         * src/SDCClrange.c
7458         * src/SDCCmem.c
7459         * src/SDCCopt.c
7460         * src/SDCCpeeph.c
7461         * src/SDCCset.c
7462         * src/avr/ralloc.c
7463         * src/ds390/ralloc.c
7464         * src/izt/ralloc.c
7465         * src/mcs51/ralloc.c
7466         * src/pic/ralloc.c
7467         * src/pic16/ralloc.c
7468         * src/xa51/ralloc.c
7469         * src/z80/ralloc.c
7470         * src/z80/gen.c: removed unused label "release:"
7471
7472 2003-10-06  Borut Razem <borut.razem AT siol.net>
7473
7474         * src/SDCC.lex: removed definition of unused variables
7475           save_optimize and save_options
7476
7477 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7478
7479         * clean.mk: removed '=' in "-maxdepth=1"
7480         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7481         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7482
7483 2003-10-06  Borut Razem <borut.razem AT siol.net>
7484
7485         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7486           my_unput() replaced by unput()
7487
7488 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7489
7490         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7491         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7492         type-punned pointer will break strict-aliasing rules"
7493         Old LR behaviour is again default; Klaus' LR can be choosen by
7494         defining the environment variable LRKLAUS
7495         * src/SDCCBBlock.h
7496         * src/SDCCloop.c
7497         * src/SDCClrange.c
7498         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7499         * clean.mk: fixed removal of files in bin/CVS/
7500         * device/lib/clean.mk: fixed removal of directories small and large
7501         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7502         * src/SDCCicode.c,
7503         * src/SDCCval.c: removed superflous test for pedantic
7504
7505 2003-10-05  Borut Razem <borut.razem AT siol.net>
7506
7507         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7508           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7509           message "unmatched #pragma SAVE and #pragma RESTORE"
7510
7511 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7512
7513         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7514           assembly, critical functions, atomic, nojtbound)
7515
7516 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7517
7518         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7519         * src/SDCCBBlock.h
7520         * src/SDCCloop.c
7521         * src/SDCCloop.h
7522         * src/SDCClrange.c
7523
7524 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7525
7526         * src/z80/gen.h,
7527         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7528         * src/mcs51/gen.h
7529         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7530         * src/ds390/gen.h
7531         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7532         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7533         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7534
7535 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7536
7537         * src/z80/gen.c (genRet): fixed bug #524753
7538         * src/z80/gen.c (genCast): fixed internal error on cast from
7539         pointer to long
7540         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7541         fix for bug #477835 to the z80
7542         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7543         for tracking iCodes in the peephole optimizer for z80
7544
7545 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7546
7547         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7548         the other part of bug #814548
7549         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7550
7551 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7552
7553         * src/SDCCcse.c: fixed part of bug #814548
7554
7555 2003-09-28  Borut Razem <borut.razem AT siol.net>
7556
7557         * src/asm.c: rewrite of printILine() to use temporary file instead
7558           a pipe
7559         * src/xa51/main.c: commented out declaration of int rewinds
7560
7561 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7562
7563         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7564
7565 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7566
7567         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7568         * src/asm.c (printILine): Fixed bug #811015
7569
7570 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7571
7572         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7573         freeing.
7574
7575 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7576
7577         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7578         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7579         to correctly handle general case of AOP_PAIRPTR
7580         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7581
7582 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7583
7584         * src/mcs51/ralloc.c (fillGaps),
7585         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7586         register positioning bug)
7587
7588 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7589
7590         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7591
7592 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7593
7594         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7595         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7596         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7597         (ralloc doesn't intentionally do this now, but perhaps later)
7598         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7599         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7600         register positioning bugs (Fixed bug #762602 and #795325)
7601         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7602         (Fixed bug #808779)
7603         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7604         lines that --i-code-in-asm generates
7605
7606 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7607
7608         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7609         trying to fclose a FILE* that was already closed.
7610
7611 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7612
7613         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7614         of const struct should be treated as if const themselves)
7615
7616 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7617
7618         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7619
7620 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7621
7622         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7623         Unix (/n) and DOS (/r/n) line terminations.
7624
7625 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7626
7627         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7628         bug #613775
7629
7630 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7631
7632         * src/mcs51/gen.c (genFunction, genEndFunction),
7633         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7634         and restore of EA so that stack offsets to parameters are
7635         correct when using both critical and reentrant/stack-auto.
7636         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7637         size (can be triggered in error if sloc is shared between
7638         different sized objects)
7639         * device/include/float.h: fixed macros to explicitly use
7640         unsigned long where needed
7641
7642 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7643
7644         Feature req. 799831: added code to allow nesting of critical functions
7645         * src/mcs51/gen.c (genFunction, genEndFunction)
7646         * src/ds390/gen.c (genFunction, genEndFunction)
7647
7648 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7649
7650         * src/SDCCsymt.c (sclsFromPtr),
7651         * src/SDCCsymt.h,
7652         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7653         support for standard C idiom of memory mapped variables; for
7654         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7655         to xdata int at 0x1234 tempvar = 1.
7656         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7657         provided by Akiya ISHIDA
7658
7659 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7660
7661         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7662         * src/SDCCval.c (constVal): added reduction from int to char
7663         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7664         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7665         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7666         to ignore the sign
7667         * support/regression/tests/shifts.c: fixed
7668
7669 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7670
7671         * src/z80/gen.c (genXor): Fixed bug #805445
7672
7673 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7674
7675         Fixed bug #621531 (const & volatile confusion in the type chain).
7676         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7677         refer to the const or volatile state of the pointer itself.
7678
7679         * src/SDCCast.c
7680         * src/SDCCglue.c
7681         * src/SDCCicode.c
7682         * src/SDCCsymt.c
7683         * src/SDCCval.c
7684         * src/SDCC.y
7685         * src/SDCCsymt.h
7686         * src/pic/gen.c
7687         * src/pic/ralloc.c
7688         * src/pic16/gen.c
7689         * src/pic16/ralloc.c
7690         * support/regression/tests/const.c
7691
7692 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7693
7694         When checking for duplicated modules, use absolute paths
7695         instead of relative paths.  Files changed:
7696
7697         * as/mcs51/lklib.c
7698         * link/z80/lklib.c
7699
7700 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7701
7702         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7703
7704 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7705
7706         * device/include/string.h: added size_t typedef, changed
7707         prototypes to use size_t, eliminated separate reentrant and
7708         non-reentrant declarations, added _memmove declaration
7709         * device/lib/_memcpy.c: changed to use size_t instead of int,
7710         changed /4 to >>2 to avoid division library call
7711         * device/lib/_memcmp.c,
7712         * device/lib/_memset.c,
7713         * device/lib/_strncat.c,
7714         * device/lib/_strncpy.c,
7715         * device/lib/_strncmp.c: changed to use size_t instead of int
7716         * device/lib/_memmove.c: new file (fixed bug #772294)
7717         * device/lib/Makefile.in: added _memmove.c
7718         * device/lib/z80/asm_strings.s: fixed bug #772290
7719         * support/regression/tests/bitfields.c: attempt to fix host assertion
7720         failure on amd64-unknown-linux2.2
7721
7722 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7723
7724         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7725         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7726         * as/z80/asmain.c (main): fixed bug #801766
7727
7728 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7729
7730         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7731         compilers
7732
7733 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7734
7735         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7736         reported in bug #800609
7737
7738 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7739
7740         * Top header beautifications in src/pic16 directory:
7741           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7742           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7743           pcoderegs.h, ralloc.c, ralloc.h
7744         * main.c: added top header and GPL license notice
7745         * pcode.c: fixed the if-conditional warning
7746
7747 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7748
7749         * device/lib/_mullong.c: replaced int by short for gcc
7750
7751 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7752
7753         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7754         and JUMPTABLE iCodes properly now (worked by accident before)
7755         * src/mcs51/gen.c (leftRightUseAcc),
7756         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7757         iCode properly now. Use getSize instead of nRegs since a & b
7758         aren't part of the nRegs tally.
7759
7760 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7761
7762         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7763         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7764           before instructions that use the _STATUS register
7765
7766 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7767
7768         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7769         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7770         fetching of the pointer
7771         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7772         copied from genNearPointerSet()
7773         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7774         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7775         If they pop r0/r1 they must be called in the opposite order than aopOp().
7776         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7777         (resp. --stack-auto), prepared for --xstack
7778
7779 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7780
7781         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7782
7783 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7784
7785         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7786         these ports have their own __sdcc_external_start()
7787
7788 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7789
7790         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7791         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7792         type for bits was changed. It resulted in bit variables becoming
7793         global, which is not permitted in PIC 14 assembly output.
7794
7795 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7796
7797         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7798
7799 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7800
7801         Z80 and MCS51 linkers complaint if a public symbol is defined
7802         in more than one library module:
7803
7804         * as/mcs51/lklib.c
7805         * link/z80/lklib.c
7806         * as/mcs51/Makefile.in
7807
7808 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7809
7810         A few small changes that speed up the peephole optimizer.
7811
7812         * src/SDCCpeeph.c
7813
7814 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7815
7816         Try to make the peephole optimizer smarter by maintaining
7817         an association between the assembly source code and the
7818         iCodes that originated them. Put this information to use
7819         with a new peephole rule condition "notVolatile" so that
7820         the rules can be aggressive yet still safe.
7821
7822         * src/SDCCpeeph.c
7823         * src/SDCCpeeph.h
7824         * src/mcs51/gen.c
7825         * src/mcs51/peeph.def
7826
7827 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7828
7829         Fixed bug #741761
7830
7831         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7832         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7833         if the left or right operand symbols have the accuse flag set.
7834
7835 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7836
7837         Changed the type of the result of the ! (NOT) operator to char;
7838         previously it returned the same type as the source. This allows
7839         us to eliminate all the genFloatNot functions (all of its target
7840         implementations were very buggy) since !float can use the same
7841         code as !long now.
7842
7843         * src/SDCCicode.c (ast2iCode): ! returns char
7844         * src/mcs51/gen.c (genNot, genNotFloat),
7845         * src/ds390/gen.c (genNot, genNotFloat),
7846         * src/z80/gen.c (genNot, genNotFloat),
7847         * src/pic/gen.c (genNot, genNotFloat),
7848         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7849
7850 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7851
7852         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7853         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7854            during interrupts. Ensure WSAVE is located at a shared bank address.
7855         2. Fixed page selection in some places
7856         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7857            the registers name strings.
7858         4. Fixed "signed / unsigned compare" compiler warnings.
7859         5. The PIC port manages its own allocation of the general purpose
7860            registers, but makes no attempt to reuse them. As a result when
7861            compiling it soon runs out of general purpose registers. Some
7862            additional code was added to the files pcode.c and device.c to walk
7863            through the function call tree and rename the registers so that they
7864            get reused.
7865
7866         * src/pic/device.c
7867         * src/pic/gen.c
7868         * src/pic/glue.c
7869         * src/pic/pcode.c
7870         * src/pic/pcode.h
7871         * src/pic/ralloc.c
7872         * src/pic/ralloc.h
7873         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7874         genPlus() & genMinus() when the result is the same as left or right
7875
7876 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7877
7878         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7879
7880 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7881
7882         Made bitfield a distinct type from bit so that bitfields
7883         convert as per ANSI C and bits retain their traditional
7884         boolean style behaviour. Implemented bitfield support in
7885         the z80 port.
7886
7887         * src/SDCCsymt.h,
7888         * src/SDCCsymt.c,
7889         * src/SDCCast.c,
7890         * src/cdbFile.c,
7891         * src/mcs51/gen.c,
7892         * src/ds390/gen.c: bit v bitfield split
7893         * src/z80/gen.c: New support for bitfields
7894         * support/regression/tests/bitfields.c: reenabled z80,
7895         added more tests
7896
7897 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7898
7899         Rules 246.x, 247.x relate to bitfields, the others speed up
7900         access to xdata mapped I/O devices.
7901
7902         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7903
7904 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7905
7906         Cleaned up genPackBits and genUnpackBits and added two helper
7907         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7908         for literal assignments in genPackBits (thanks to Frieder for
7909         reminding me).
7910
7911         * src/mcs51/gen.c
7912         * src/ds390/gen.c
7913
7914 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7915
7916         Fixed bug #748310 (pointer to function type mishandled when the
7917         function name is omitted). Also fixed a SIGSEGV when a function
7918         attribute (reentrant, etc) is used on a non-function or on a
7919         function but misplaced before the parameter list.
7920
7921         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7922         bug #748310
7923         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7924         * support/Util/SDCCerr.h,
7925         * support/Util/SDCCerr.c: Added func attr misuse error msg
7926
7927 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7928
7929         Fixed bug #787649 by anonymous
7930         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7931         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7932
7933 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7934
7935         Fixed numerous bitfield problems.
7936
7937         * src/SDCC.y: More bitfield related error checking
7938         * src/SDCCsymt.h,
7939         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7940         * support/Util/SDCCerr.h,
7941         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7942         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7943         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7944         * support/regression/tests/bitfields.c: tests added
7945
7946 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7947
7948         Made the constant following the "interrupt" keyword optional. If
7949         omitted, the function will not automatically be given an entry
7950         in the interrupt vector table (similar to #pragma NOIV, but
7951         less syntacticly kludgy). The interrupt number is also now
7952         range checked. Also fixed a bug in the high order bit example
7953         in the manual.
7954
7955         * src/SDCC.y
7956         * src/SDCCmem.c
7957         * src/SDCCglue.c
7958         * src/SDCCsymt.h
7959         * support/Util/SDCCerr.c
7960         * support/Util/SDCCerr.h
7961         * doc/sdccman.lyx
7962
7963 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7964
7965         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7966         * src/SDCCicode.c (operandOperation): rewritten some ops
7967         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7968         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7969         other type
7970         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7971         be re-activated by defining REDUCE_LITERALS)
7972         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7973         unsigned, but are signed by default
7974         * src/SDCCval.c (constVal): rearranged
7975         * src/SDCCval.c (valMod): preliminary fix
7976         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7977         * support/regression/literalop.c: added, work in progress
7978
7979 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7980
7981         Generate warnings for useless declarations like "char data;"
7982         that don't do what new users expect.
7983
7984         * src/SDCC.y
7985         * support/Util/SDCCerr.h
7986         * support/Util/SDCCerr.c
7987
7988 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7989
7990         * src/SDCCval.c (valMult): fix overflow detection of negative int
7991
7992 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7993
7994         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7995
7996         Changes to support big endian targets:
7997
7998         * src/ports.h
7999         * src/SDCCglue.c
8000         * src/avr/main.c
8001         * src/ds390/main.c
8002         * src/izt/i186.c
8003         * src/mcs51/main.c
8004         * src/pic/main.c
8005         * src/pic16/main.c
8006         * src/xa51/main.c
8007         * src/z80/main.c
8008
8009 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8010
8011         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8012         * device/lib/time.c: fixed warning "integer overflow in expression"
8013
8014 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8015
8016         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8017         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8018         constants are unsigned; added recognition of "u" flag for unsigned
8019         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8020         * src/SDCCval.c (valDiv, valMod): fixed signdness
8021         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8022         signedness of modulo, left and right shift
8023         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8024         * support/Util/SDCCerr.h: added warning W_INT_OVL
8025         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8026         * src/SDCCast.c (ast_print): improved output of constants
8027
8028 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8029
8030         Fixed some warnings when building with MSVC:
8031
8032         * as\mcs51\asdata.c
8033         * as\z80\asdata.c
8034         * as\mcs51\asm.h
8035         * as\z80\asm.h
8036         * link\z80\aslink.h
8037         * link\z80\lkdata.c
8038         * link\z80\lkeval.c
8039         * link\z80\lkgb.c
8040         * link\z80\lkihx.c
8041         * link\z80\lks19.c
8042         * link\z80\lksym.c
8043         * support\cpp2\cpplib.c
8044         * src\ds390\gen.c
8045         * src\mcs51\gen.c
8046
8047 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8048
8049         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8050
8051 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8052
8053         * support\librarian\clean.mk: Do not remove Makefile.
8054         * support\librarian\Makefile: added.
8055
8056 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8057
8058         Added librarian to MSVC build:
8059         * all.dsp
8060         * sdcc.dsw
8061         * support\librarian\librarian.dsp
8062
8063         'configure' not needed for librarian, removed:
8064         * support\librarian\configure
8065         * support\librarian\configure.in
8066         * support\librarian\config_in.h
8067         * support\librarian\Makefile.in
8068
8069         Hopefully these ones built the librarian and the rest of sdcc properly:
8070         * Makefile
8071         * Makefile.common.in
8072
8073         Messed up 'configure', so revert to previous version:
8074         * configure
8075         * configure.in
8076
8077 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8078
8079         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8080         there, while the mantissa of a double is "only" 53 bits wide.
8081
8082 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8083
8084         Adding sdcclib to the build.  MSVC project coming soon.
8085         Files added/changed:
8086
8087         * support\librarian\clean.mk
8088         * support\librarian\configure
8089         * support\librarian\configure.in
8090         * support\librarian\config_in.h
8091         * support\librarian\Makefile.bcc
8092         * support\librarian\Makefile.in
8093         * support\librarian\sdcclib.c
8094         * Makefile.bcc
8095         * Makefile
8096         * Makefile.common.in
8097         * configure
8098         * configure.in
8099
8100 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8101
8102         Linker now complaints if linked modules have conflicting options, for
8103         example, one compiled using --model-large and another one compiled with
8104         --model-small.  The following files were modified:
8105
8106         * as\mcs51\asdata.c
8107         * as\mcs51\aslink.h
8108         * as\mcs51\asm.h
8109         * as\mcs51\asmain.c
8110         * as\mcs51\asout.c
8111         * as\mcs51\i51pst.c
8112         * as\mcs51\lkdata.c
8113         * as\mcs51\lklibr.c
8114         * as\mcs51\lkmain.c
8115         * as\z80\asdata.c
8116         * as\z80\asm.h
8117         * as\z80\asmain.c
8118         * as\z80\asout.c
8119         * as\z80\z80pst.c
8120         * link\z80\aslink.h
8121         * link\z80\lkdata.c
8122         * link\z80\lklibr.c
8123         * link\z80\lkmain.c
8124         * src\SDCCglue.c
8125
8126 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8127
8128         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8129         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8130
8131 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8132
8133         * src/z80/mappings.i: fix _mul[us][int,long] entries
8134
8135 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8136
8137         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8138
8139 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8140
8141         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8142         * support/regression/tests/bitopcse.c: added
8143         fixed warning:
8144         * src/avr/gen.c:
8145         * src/pic/gen.c:
8146         * src/pic16/gen.c:
8147         * src/z80/gen.c:
8148         * src/xa51/gen.c:
8149
8150 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8151
8152         added support for new library format to z80, gbz80 linkers:
8153         *link/z80/aslink.h
8154         *link/z80/lklex.c
8155         *link/z80/lklib.c
8156         *link/z80/lklist.c
8157
8158 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8159
8160         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8161         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8162
8163 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8164
8165         added DUMMY_READ_VOLATILE:
8166         * src/SDCC.y:
8167         * src/avr/gen.c:
8168         * src/xa51/gen.c:
8169         * src/z80/gen.c:
8170         * src/pic/gen.c:
8171         * src/pic16/gen.c:
8172         * src/mcs51/gen.c:
8173         * src/ds390/gen.c:
8174         * src/SDCCcse.c (algebraicOpts): many improvements
8175         * src/SDCCcse.h: removed algebraicOpts()
8176         * src/SDCCicode.c (picDummyRead): added
8177
8178 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8179
8180         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8181         "Insufficient space in data memory".
8182
8183 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8184
8185         * src/mcs51/gen.c: fixed bug #771358
8186         * src/z80/gen.c: fixed bug #759087
8187
8188 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8189
8190         * src/pic16/glue.c: minor cleanup by Vangelis
8191
8192 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8193
8194         * device/include/regc515c.h: fixed #758477
8195         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8196         * device/lib/_gptrput.c: saved a few bytes
8197         * my tab spacing is 8, yours too?)
8198         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8199         * device/lib/serial.c: process RX bytes earlier than TX bytes
8200         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8201
8202 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8203
8204         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8205
8206 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8207
8208     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8209
8210 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8211
8212         * device/lib/Makefile.in: bad fix, reverted to 1.43
8213
8214 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8215
8216         * device/lib/Makefile.in: added missing z80 object files
8217
8218 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8219
8220         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8221         pic16 progress by Vangelis:
8222         * src/SDCCglobl.h:
8223         * src/SDCCmain.c:
8224         * src/pic/Makefile:
8225         * src/pic:
8226         * pic/Makefile:
8227         * pic16/device.c:
8228         * pic16/device.h:
8229         * pic16/gen.c:
8230         * pic16/gen.h:
8231         * pic16/genarith.c:
8232         * pic16/glue.c:
8233         * pic16/main.c:
8234         * pic16/pcode.c:
8235         * pic16/pcode.h:
8236         * pic16/pcodepeep.c:
8237         * pic16/peeph.def:
8238
8239 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8240
8241     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8242
8243 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8244
8245     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8246     added gbz80 build to MSVC project.
8247     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8248     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8249     from 8051 stuff and setup so it links using a .lnk file.
8250
8251 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8252
8253     * support/librarian/sdcclib.c: sdcc librarian.
8254     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8255     with sdcclib.
8256
8257 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8258
8259     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8260
8261 2003-07-02  Borut Razem <borut.razem AT siol.net>
8262
8263         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8264         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8265         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8266         src/xa51/main.c, src/z80/main.c:
8267         virtualization of glue() function: each port has it's own glue function,
8268         which is accessed by do_glue function pointer in PORT.general structure
8269
8270 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8271
8272         * DS800C400 fun, improved ROM interface and tinibios.
8273
8274 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8275
8276         * More support for DS80C400. Now includes beginning of interface to ROM.
8277
8278 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8279
8280         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8281
8282 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8283
8284         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8285
8286 2003-06-19  Borut Razem <borut.razem AT siol.net>
8287
8288         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8289
8290 2003-06-19  Borut Razem <borut.razem AT siol.net>
8291
8292         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8293         fixed Z80 port - crt0.o: cannot open.
8294
8295 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8296
8297         * support/Util/MySystem.c (merge_command): revert bad fix
8298
8299 2003-06-18  Borut Razem <borut.razem AT siol.net>
8300
8301         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8302
8303 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8304
8305         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8306         option --use-stdout sends errors to stdout instead of stderr.
8307
8308 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8309
8310         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8311
8312 2003-06-15  Borut Razem <borut.razem AT siol.net>
8313
8314         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8315         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8316         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8317         fixed width array of pointers replaced with sets;
8318         multiple include and lib paths ared transferred to preprocessor and linker
8319         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8320         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8321         fixed width array of pointers
8322         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8323         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8324         fixupPath(), getPathDifference()
8325         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8326         fixed width array of pointers
8327
8328 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8329
8330         * src/pic16/ralloc.c: fix warnings
8331         * src/pic16/pcode.c: fix warning
8332
8333 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8334
8335          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8336         know all the details, but essentially this set of changes enable
8337         the pic16 port to generate movff instructions and generate assembler
8338         directives,
8339         * src/SDCCmain.c:
8340         * src/pic16/gen.c:
8341         * src/pic16/glue.c:
8342         * src/pic16/pcode.c:
8343         * src/pic16/device.c:
8344         * src/pic16/main.c:
8345         * src/pic16/pcode.h:
8346         * src/pic16/pcoderegs.c:
8347         * src/pic16/ralloc.c:
8348         * src/pic16/ralloc.h:
8349
8350 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8351
8352         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8353         added option --vc, so sdcc errors and warnings are compatible with
8354         Microsoft Visual Studio.
8355
8356 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8357
8358         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8359           device/lib/libfloat.lib: added atof function.
8360
8361 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8362
8363         * doc/sdccman.lyx: updated to Lyx 1.3
8364         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8365         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8366         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8367
8368 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8369
8370         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8371
8372 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8373
8374         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8375           additions to the "related tools/documentation" section
8376
8377 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8378
8379         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8380
8381 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8382
8383         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8384         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8385
8386 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8387
8388         * doc/sdccman.lyx: fix double dash and other minor things
8389         * doc/Makefile: fix double dash
8390
8391 2003-05-28  Karl Bongers(patches from Martin Helmling)
8392         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8393           condition and ignore commands.
8394
8395 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8396
8397         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8398           is in parts still quite out of date, I did changes as far as I felt makes sense
8399           for a non-native english speaker.
8400           Please feel free to add to the manual or to correct my changes.
8401         * doc/Makefile: undid touching the date of intermediate tex files.
8402
8403 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8404
8405         * doc/sdccman.lyx: Manual has an index now
8406
8407 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8408
8409         Finalize muluint/mulsint and mululong/mulslong merging:
8410         * device/lib/_mulint.c
8411         * device/lib/_mullong.c
8412         * device/lib/gbz80/mul.s
8413         * device/lib/gbz80/stubs.s
8414         * device/lib/z80/mul.s
8415         * device/lib/z80/stubs.s
8416         * src/SDCCsymt.c (initCSupport)
8417
8418 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8419
8420         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8421         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8422           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8423           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8424           instead of /Zm500.
8425
8426 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8427
8428         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8429           the regression tests I'm not brave enough to enable 245.b, 245.c
8430         * doc/sdccman.lyx: added latex preamble for hyperref package.
8431           Using pdflatex this will give you a hyperlinked pdf file with
8432           bookmarks. (prepend '%' before /usepackage if this breaks something)
8433
8434 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8435
8436          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8437
8438 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8439
8440         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8441
8442 2003-05-21    <johan AT balder>
8443
8444         * src/SDCCglue.c (printIval): fixed bug #739934
8445
8446 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8447
8448         Applied patch from bug 737905 (renamed yylineo to mylineno):
8449         * src/altlex.c
8450         * src/SDCCast.c
8451         * src/SDCglobl.h
8452         * src/SDCC.lex
8453         * src/SDCCsymt.c
8454         * src/SDCCval.c
8455         * src/pic16/pcode.c: Cleaned warnings
8456         * src/pic16/pcodeflow.c: Cleaned warnings
8457         * src/pic16/pcoderegs.c: Cleaned warnings
8458
8459 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8460
8461         * src/pic16/pcode.c: Cleaned warnings
8462         * src/pic16/pcodepeep.c: Cleaned warnings
8463         * src/pic16/ralloc.c: Cleaned warnings
8464
8465 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8466
8467         * doc/sdccman.lyx: fixed bug 739745
8468         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8469
8470 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8471
8472         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8473         it can be defined with CFLAGS when running configure
8474         * src/SDCCmain.c: fixed compiling + linking with object files
8475
8476 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8477
8478         * configure.in: configure for pic16 port,
8479             added --disable-pic16-port
8480         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8481         * src/SDCCmain.c: linkOptions is changed to set *,
8482             added if/endif conditional macros to remove options help
8483             messages from optionsTable when a port is not configured, added
8484             support for the PIc16 port in the ports table, when executing
8485             the compiler with no port specified on command line, a default
8486             port is selected with the new macro DEFAULT_PORT which is
8487             defined in port.h, in setDefaultOptions() linkOptions is removed
8488             from initialization assignment, since now it is a set,
8489             parseCmdLine uses setParseWithComma for linkOptions, in
8490             linkEdit() linkOptions are accessed with new function indexSet()
8491             which returns the i'th item of a set variable. See SDCCset.c, in
8492             linkEdit() when calling buildCmdLine(), added linkOptions as
8493             last argument. Now users can pass arguments to gplink via the
8494             -Wl option, main() uses pic16glue() to glue up pic16 programs
8495         * src/SDCCpeeph.c: various changes to support pic16
8496         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8497             return the i'th item of the set
8498         * src/SDCCset.h: added function prototype for indexSet()
8499         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8500         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8501         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8502             added macro DEFAULT_PORT
8503         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8504         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8505             generated
8506         * src/pic16/glue.c: commented out some error producing lines
8507         * src/pic16/main.c: __config directives are commented out to stop
8508             gpasm complaining and test the linkage with gplink, _linkCmd and
8509             _asmCmd changed to be more gplink and gpasm friendly
8510         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8511             produced an error when parsed, peep rule 12 is added to utilize
8512             movff, but it is commented out since the pCode does not support
8513             yet a command with 2 address arguments
8514
8515 2003-05-18    <johan AT balder>
8516
8517         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8518         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8519 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8520
8521         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8522   Added feature to script commands from file.
8523
8524 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8525
8526         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8527         * src/SDCCutil.c: include ctype.h for win32
8528
8529 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8530
8531         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8532
8533 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8534
8535         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8536   Fixed so you can set breakpoints prior to run, run does not stop
8537   on entry now.  Add tbreak.  Other enhancements and fixes for use
8538   with ddd.
8539
8540 2003-05-12  Borut Razem <borut.razem AT siol.net>
8541
8542         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8543
8544 2003-05-11  Borut Razem <borut.razem AT siol.net>
8545
8546         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8547         the path of bin directory, so that PATH is the only env. variable, which has to be set
8548         in case of standard installation.
8549         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8550         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8551         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8552
8553 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8554
8555         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8556         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8557         temp files are in the port dir; clean the gen/test directory when
8558         generating new test.c
8559         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8560         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8561         * support/regression/tests/zeropad.c: added
8562
8563 2003-05-09    <johan AT balder>
8564
8565         * src/SDCCglue.c: fixed bug #597940
8566
8567 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8568
8569         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8570   cache sfr, optimize next,step, fix off by one sourceline,
8571   support ddd list function.
8572         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8573
8574 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8575
8576         * support/regression/HTMLgen.py: added compare_s2f()
8577         * support/regression/Makefile: redo 1.27
8578         * support/regression/generate-cases.py: redo 1.5
8579
8580 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8581
8582         * support/regression/tests/float.c: workaround 33 bit hex constant
8583         * support/regression/tests/simplefloat.c: fix division for host
8584
8585 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8586
8587         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8588         that tame's the PIC's over-aggressive optimizer.
8589
8590 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8591
8592          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8593          support for MSVC.
8594
8595 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8596
8597         Initial support for DS80C400. "Hello world" runs on TINIm400
8598         (with polled I/O).
8599
8600 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8601
8602          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8603          * Some notes on ddd usage added in debugger/README
8604          Martin Helmling adding more features and fixes for ddd GUI debugger.
8605          Code added for nexti, stepi, up, down, and other adjustments.
8606
8607 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8608
8609         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8610         * src/pic/peeph.def Added two rules to optimize carry manipulation
8611         * src/pic/* removed debug printfs
8612
8613 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8614
8615         * debugger/mcs51/cmd.c: added header newalloc.h
8616
8617 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8618
8619         * as/Makefile: new EXEEXT
8620         * as/z80/Makefile: remove trailing slash of BUILDIR
8621         * as/z80/clean.mk: new EXEEXT
8622         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8623         * support/cpp2/Makefile.in: new EXEEXT
8624         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8625
8626 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8627
8628         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8629         EXEEXT was introduced to fix all related problems with targets
8630         "clean", "install" and "uninstall"; a couple of further flaws
8631         especially with "clean" have been fixed too
8632         * as/mcs51/Makefile.in
8633         * as/mcs51/clean.mk
8634         * as/z80/Makefile
8635         * Makefile
8636         * clean.mk
8637         * debugger/mcs51/Makefile.in
8638         * debugger/mcs51/clean.mk
8639         * link/z80/Makefile
8640         * link/z80/Makefile.in
8641         * link/z80/clean.mk
8642         * link/Makefile
8643         * packihx/Makefile.in
8644         * packihx/clean.mk
8645         * sim/ucsim/Makefile
8646         * sim/ucsim/clean.mk
8647         * sim/ucsim/avr.src/Makefile.in
8648         * sim/ucsim/avr.src/clean.mk
8649         * sim/ucsim/s51.src/Makefile.in
8650         * sim/ucsim/s51.src/clean.mk
8651         * sim/ucsim/xa.src/Makefile.in
8652         * sim/ucsim/xa.src/clean.mk
8653         * sim/ucsim/z80.src/Makefile.in
8654         * sim/ucsim/z80.src/clean.mk
8655         * sim/ucsim/main_in.mk
8656         * sim/ucsim/packages_in.mk
8657         * sim/ucsim/gui.src/Makefile.in
8658         * sim/ucsim/gui.src/serio.src/Makefile.in
8659         * sim/ucsim/gui.src/serio.src/clean.mk
8660         * src/Makefile.in
8661         * src/clean.mk
8662         * support/cpp2/Makefile.in
8663         * support/cpp2/clean.mk
8664         * support/makebin/Makefile
8665         * support/makebin/clean.mk
8666         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8667         * doc/sdccman.lyx: --program-suffix no longer needed
8668
8669 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8670
8671          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8672          Martin Helmling added support for ddd GUI debugger.
8673          Code added to display assembly, set variables, and other commands
8674          to interface to ddd.
8675
8676 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8677
8678         * as/Makefile: fix target clean
8679         * as/clean.mk: fix target clean
8680         * as/z80/clean.mk: fix target clean
8681
8682 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8683
8684         * Makefile.common.in: added  AT EXEEXT AT
8685         * configure.in: removed all mingw32 stuff
8686         * configure: rebuilt from configure.in
8687         * doc/sdccman.lyx: updated section "installation"
8688         * support/scripts/sdcc_mingw32: adapted to configure
8689         * support/scripts/sdcc_cygwin_mingw32: added
8690
8691 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8692
8693         * src/pic Added object file support for the PIC port
8694         * src/pic Applied patch from Craig Franklin (this started the object file support)
8695         * src/regression Updated the PIC regression tests for object files
8696
8697 2003-04-20  Borut Razem <borut.razem AT siol.net>
8698
8699         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8700           lklex.c: In function `getfid':
8701           lklex.c:203: warning: array subscript has type `char'
8702         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8703           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8704         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8705           stack handling macros
8706
8707 2003-04-19  Borut Razem <borut.razem AT siol.net>
8708
8709         * "handling space characters in file path" task:
8710         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8711         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8712         * support/Util/MySystem.h: make it self-sufficient
8713         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8714           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8715           handling space characters in file path
8716         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8717           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8718         * support/Util/MySystem.c: handling space characters in executable's path
8719
8720 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8721
8722         * as/z80/Makefile: fix permanent rebuild of z80
8723         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8724         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8725
8726 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8727
8728         * src/SDCCopt.c: add special case optimization to replace modulo by
8729           a power of two with a bitwise AND.
8730
8731 2003-04-18    <johan AT balder>
8732
8733         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8734
8735 2003-04-17    <johan AT balder>
8736
8737         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8738         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8739
8740 2003-04-13  Borut Razem <borut.razem AT siol.net>
8741
8742         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8743         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8744           fixed mingw problem in adl_NORMALIZE_PATH
8745
8746 2003-04-12  Borut Razem <borut.razem AT siol.net>
8747
8748         * fixed "#pragma SAVE/RESTORE can not be nested":
8749         * src/SDCC.lex: reworked pragma handling functions
8750         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8751         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8752
8753 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8754
8755         * src/SDCCutil.c (pathEquivalent): defined but not used
8756         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8757         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8758         * configure: rebuilt from configure.in
8759         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8760         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8761         * device/include/Makefile.in: replace sdcc_datadir
8762         * device/lib/Makefile.in: replace sdcc_datadir
8763         * Makefile.common.in: add LDFLAGS from configure
8764         * packihx/Makefile.in: use LDFLAGS
8765         * src/Makefile.in: use LDFLAGS
8766         * support/cpp2/Makefile.in: add LDFLAGS from configure
8767         * support/makebin/Makefile: use LDFLAGS
8768         * .version: bumped version number to 2.3.5
8769
8770 2003-04-12  Borut Razem <borut.razem AT siol.net>
8771
8772         * completed "different paths" task:
8773         * src/SDCCmacro.c: fixed bug in handling quotes
8774         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8775         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8776
8777 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8778
8779         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8780
8781 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8782
8783         * ds390/gen.c ds390/peeph.def: fix bug 706781
8784
8785 2003-04-11  Borut Razem <borut.razem AT siol.net>
8786
8787         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8788
8789 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8790
8791         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8792         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8793          set - this bit used to not be set...).
8794         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8795           bad code in PIC Port
8796         * src/regression/and2.c added to test bug 609268
8797         * src/regression/Makefile added and2.c to regression test
8798
8799
8800 2003-04-08    <johan AT CP255758-A>
8801
8802         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8803         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8804         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8805
8806 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8807
8808         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8809         fix bug #487815
8810         * support/cpp2/Makefile.in: fix bug #487815
8811         * configure: rebuilt from configure.in
8812         * Makefile.common.in: docdir changed, new path suffixes
8813         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8814         * sdcc_vc_in.h: reflect changes from sdccconf.h
8815         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8816         * src/SDCCutil.h: remove BINDIR hack
8817         * doc/sdccman.lyx: update new path hierarchy
8818
8819 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8820
8821         * src/SDCCpeeph.c: added okToRemoveSLOC test
8822
8823 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8824
8825         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8826
8827 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8828
8829         * src/SDCCpeeph.c: added labelIsReturnOnly test
8830         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8831
8832 2003-04-05    <johan AT balder>
8833
8834         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8835         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8836         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8837         * src/SDCCast.c: fixed a warning
8838         * src/SDCCast.h: fixed a warning
8839         * src/SDCCicode.c (operandFromAst): fixed a warning
8840
8841 2003-04-04    <johan AT balder>
8842
8843         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8844         * src/SDCCast.c (decorateType): fixed bug #715076
8845         * src/SDCC.y: fixed bug #702907
8846
8847 2003-04-03    <johan AT balder>
8848
8849         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8850         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8851         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8852         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8853         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8854
8855 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8856
8857         * _decdptr.c: fix return values
8858         * _gptrget.c: fix return values
8859         * _gptrgetc.c: fix return values
8860         * _gptrput.c: fix return values
8861         * _mulint.c: fix return values
8862         * as/z80/Makefile: fix 'make -j' problem
8863
8864 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8865
8866         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8867         * configure.in: big cleanup, updated to autoconf 2.5x
8868         * configure: rebuilt from configure.in
8869         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8870         * sdcc_vc_in.h: reflect changes from sdccconf.h
8871         * doc/Makefile: fixed a flaw in "make install"
8872
8873 2003-04-02    <johan AT balder>
8874
8875         * src/ds390/gen.c (genCmp): no comments
8876         * src/mcs51/gen.c (genCmp): no comments
8877         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8878         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8879
8880 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8881
8882         * support/regression/generate-cases.py: place generated file in given sub directory
8883         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8884         * support/regression/Makefile: improvements for 'make -j';
8885         side effect: it's simpler and faster now
8886
8887 2003-03-31  Borut Razem <borut.razem AT siol.net>
8888
8889         * src/z80/main.c: link-{port} and as-{port} defined without path
8890         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8891
8892 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8893
8894         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8895
8896 2003-03-30  Borut Razem <borut.razem AT siol.net>
8897
8898         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8899           changed type of list parameter to set
8900         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8901         * src/port.h: changed type of do_assemble() parameter to set
8902         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8903           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8904           definition of "cppoutfilename" macro with NULL value in preProcess()
8905         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8906         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8907         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8908           replaced with set *binPathSet
8909         * shash_add() deallocates the item, if allready exsists, before adding the new one
8910         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8911
8912 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8913
8914         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8915           a nested for loop bug in the PIC port
8916         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8917           for loops
8918
8919 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8920
8921         * support/Util/dbuf.h: remove C++ stuff to make it portable
8922
8923 2003-03-28  Borut Razem <borut.razem AT siol.net>
8924
8925         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8926           literal strings in stringLiteral()
8927         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8928         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8929           to the project
8930
8931 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8932
8933         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8934
8935 2003-03-26    <johan AT balder>
8936
8937         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8938         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8939         * src/SDCCast.c (decorateType): fixed " -v < 3"
8940
8941 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8942
8943         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8944         Added Lenny Story's debug infrastructure changes:
8945         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8946         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8947         * src/cdbFile.c: added
8948         * src/SDCCdebug.c: added
8949         * src/SDCCdebug.h: added
8950         * src/SDCCast.c (createFunction)
8951         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8952         * src/SDCCmain.c (parseCmdLine, main)
8953         * src/SDCCmem.c (redoStackOffsets)
8954         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8955         * src/SDCCsymt.h
8956         * src/common.h
8957         * src/avr/gen.c (genAVRCode)
8958         * src/ds390/gen.c (gen390Code)
8959         * src/mcs51/gen.c (gen51Code)
8960         * src/pic/gen.c (genpic14Code)
8961         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8962         * src/xa51/gen.c (genXA51Code)
8963         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8964
8965 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8966
8967         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8968         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8969
8970 2003-03-22    <johan AT balder>
8971
8972         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8973
8974 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8975
8976         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8977         * doc/cdbfileformat.lyx: added, written by Lenny Story
8978         * doc/Makefile: added cdbfileformat.lyx
8979         * doc/clean.mk: added cdbfileformat.lyx
8980
8981 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8982
8983         * src/mcs51/peeph.def: fix bug #705773
8984
8985 2003-03-20    <johan AT balder>
8986
8987         An sfr/sbit can have an "at #" AND an initializer
8988         * src/SDCCsymt.c (checkSClass):
8989         * src/SDCCmem.c (allocGlobal):
8990         * src/SDCCmem.c (allocLocal):
8991         * src/SDCCast.c (createBlock):
8992
8993 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8994
8995         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8996
8997 2003-03-16    <johan AT balder>
8998
8999         Undid the hackup of const and volatile, the problem is much bigger
9000         * src/SDCC.y:1.65
9001         * src/SDCCast.c:1.171
9002         * src/SDCCglue.c:1.138
9003         * src/SDCCicode.c:1.146
9004         * src/SDCCsymt.c:1.150
9005         * src/SDCCval.c:1.65
9006
9007 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9008
9009         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9010         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9011
9012 2003-03-13    <johan AT balder>
9013
9014         Hackup const and volatile modifiers in type chains a bit:
9015         * src/SDCC.y:1.63
9016         * src/SDCCast.c:1.169
9017         * src/SDCCglue.c:1.136
9018         * src/SDCCicode.c:1.143
9019         * src/SDCCsymt.c1.146
9020         * src/SDCCsymt.h1.59
9021         * src/SDCCval.c:1.63
9022
9023 2003-03-12    <johan AT balder>
9024
9025         * src/SDCCBBlock.h: more LRH debugging junk
9026         * src/SDCCcflow.h: more LRH debugging junk
9027         * src/SDCCloop.c: more LRH debugging junk
9028         * src/SDCC.y (struct_declaration): fixed bug #697590
9029         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9030         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9031         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9032
9033 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9034         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9035         test function names must now match exactly).
9036         * src/SDCCcse.c: added special case in findCheaperOp to allow
9037         extending a short integer. Makes less awful code for bug 700121 test case.
9038
9039 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9040
9041         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9042         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9043
9044 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9045
9046         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9047         actually called (operandsNotEqual() was called for all
9048         operandsNotEqualX tests).
9049
9050 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9051
9052         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9053         with shorter literals. Fixes bug 700121.
9054
9055 2003-03-11    <johan AT balder>
9056
9057         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9058
9059 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9060
9061         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9062         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9063
9064 2003-03-10  Borut Razem <borut.razem AT siol.net>
9065
9066         * src/SDCCmain.c: pipe preprocessor's output
9067         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9068         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9069         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9070         which closes all pipes in pipeSet set
9071         * src/SDCCset.c: free deleted item in function deleteSetItem()
9072         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9073         moved from z80 to src subproject
9074         * .version: increased version number to 2.3.4
9075
9076 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9077
9078         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9079         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9080         * support/regression/ports/xa51/spec.mk: fix typo
9081
9082 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9083
9084         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9085
9086 2003-03-09  Borut Razem <borut.razem AT siol.net>
9087
9088         * src/SDCCmain.c: pipe preprocessor's output
9089         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9090         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9091         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9092         which closes all pipes in pipeSet set
9093         * src/SDCCset.c: free deleted item in function deleteSetItem()
9094         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9095         moved from z80 to src subproject
9096
9097 2003-03-09  Borut Razem <borut.razem AT siol.net>
9098
9099         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9100         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9101         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9102         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9103         * src/SDCCglobl.h: unification of WIN32 native definitions
9104
9105 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9106
9107         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9108
9109 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9110
9111         * src/configure.in:   check for endianess (even while cross-compiling)
9112         * src/configure:      check for endianess (even while cross-compiling)
9113         * src/configure_in.h: check for endianess (even while cross-compiling)
9114         * src/avr/gen.c:        remove old endianess stuff
9115         * src/mcs51/gen.c:      remove old endianess stuff
9116         * src/ds390/gen.c:      remove old endianess stuff
9117         * src/pic/gen.c:        remove old endianess stuff
9118         * src/pic/genarith.c:   remove old endianess stuff
9119         * src/pic/glue.c:       fix endianess check
9120         * src/pic16/gen.c:      remove old endianess stuff
9121         * src/pic16/genarith.c: remove old endianess stuff
9122         * src/pic16/glue.c:     fix endianess check
9123         * src/xa51/gen.c:       remove old endianess stuff
9124         * src/z80/gen.c:        fix endianess check
9125         * src/SDCCglue.c:       fix endianess check
9126         * src/ds390/peeph.def: fix bug 700036
9127
9128 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9129
9130         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9131         * src/configure: find appropriate data-types on host for SDCC's int and long
9132         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9133         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9134         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9135
9136 2003-03-07    <johan AT balder>
9137
9138         Just a big NOOP:
9139                 some minor cleanups before the big shot
9140                 OP_DEFS and OP_USES now use Kevin's protection
9141                 new option --nolabelopt
9142
9143         * src/SDCCBBlock.c:
9144         * src/SDCCast.c,:
9145         * src/SDCCcflow.c:
9146         * src/SDCCcse.c:
9147         * src/SDCCicode.c:
9148         * src/SDCCicode.h:
9149         * src/SDCClabel.c:
9150         * src/SDCCloop.c:
9151         * src/SDCCmain.c:
9152         * src/ds390/ralloc.c:
9153         * src/mcs51/ralloc.c:
9154         * src/pic/ralloc.c:
9155         * src/xa51/ralloc.c:
9156         * src/z80/ralloc.c:
9157
9158 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9159
9160         * src/pic/pcode.c (get_op): fix 64 bit warnings
9161         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9162         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9163         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9164         * support/regression/tests/malloc.c: fix 64 bit warnings
9165
9166 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9167
9168         * src/mcs51/gen.c (genMinus): fixed bug 696436
9169
9170 2003-03-02  Borut Razem <borut.razem AT siol.net>
9171
9172         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9173
9174 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9175
9176         * configure.in: test for mkstemp
9177         * sdccconf_in.h: add HAVE_MKSTEMP
9178
9179 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9180
9181         * device/include/ctype.h: removed warning while using --stack-auto
9182         * device/include/malloc.h: removed warning while using --stack-auto
9183         * device/include/string.h: removed warning while using --stack-auto
9184
9185 2003-02-23  Borut Razem <borut.razem AT siol.net>
9186
9187         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9188         because NDEBUG is defined (see man assert)
9189         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9190
9191 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9192
9193         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9194         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9195
9196 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9197
9198         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9199         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9200
9201 2003-02-18    <johan AT balder>
9202
9203         * as/mcs51/asmain.c (asmbl): module can start with a digit
9204         * as/z80/asmain.c (asmbl): module can start with a digit
9205
9206 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9207
9208         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9209         * src/asm.c: fix pipe() for Mingw32
9210
9211 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9212
9213         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9214         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9215         make -V work again; --c1mode reads now from stdin
9216         * doc/sdccman.lyx: added --c1mode
9217         * support/Util/SDCCerr.c: new messages for c1 mode
9218         * support/Util/SDCCerr.h: new messages for c1 mode
9219         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9220
9221 2003-02-15    <johan AT balder>
9222
9223         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9224
9225 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9226
9227         * doc/sdccman.lyx: Environment variables, -o and other minor things
9228
9229 2003-02-14    <johan AT balder>
9230
9231         * src/xa51/main.c: before anyone really tries to use it :)
9232
9233         * Install doc's in share/sdcc/doc
9234         * removed some obsolete files
9235         * Do a proper make distclean and uninstall
9236         M Makefile.common.in
9237         R sdccbuild.sh
9238         M as/Makefile
9239         M device/include/Makefile.in
9240         M device/lib/Makefile.in
9241         M doc/sdccman.lyx
9242         M link/Makefile
9243         M sim/ucsim/doc/Makefile.in
9244         M src/clean.mk
9245         R src/avr/peeph.rul
9246         R src/xa51/peeph.rul
9247         M support/cpp2/Makefile.in
9248         M support/makebin/Makefile
9249
9250
9251 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9252
9253         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9254
9255 2003-02-10  Borut Razem <borut.razem AT siol.net>
9256
9257         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9258         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9259         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9260         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9261         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9262         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9263         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9264         src/z80/Makefile.bcc: Borland Makefile cleanup
9265         * as/z80/Makefile.bcc: Added Borland Makefile
9266         * support/cpp2/borland.h: Removed
9267
9268 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9269
9270         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9271         * src/SDCC.lex: new pragma NOIV
9272         * src/SDCCglobl.h: new pragma NOIV
9273         * src/SDCCmem.c: new pragma NOIV
9274
9275 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9276
9277         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9278
9279 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9280
9281         * src/SDCCmain.c: signal handling is switched off by --debug
9282         * doc/Makefile: small fix for install; use clean.mk again
9283         * doc/clean.mk: clean *.pdf and *.html too
9284
9285 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9286
9287         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9288         * device/lib/printfl.c: fix a ds390 bug by making it portable
9289         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9290         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9291         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9292         * debugger/mcs51/cmd.c: converted multi-line string literals
9293         * sim/ucsim/globals.cc: converted multi-line string literals
9294         * src/SDCCmain.c: introduced signal handler to remove temp files
9295         * doc/Makefile: small tweaks, implement clean
9296         * doc: removed generated files
9297
9298 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9299
9300         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9301         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9302         Address Record is not correctly generated for DS390."
9303
9304 2003-02-02  Borut Razem <borut.razem AT siol.net>
9305
9306         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9307         * as/mcs51/asm.h: fixed compilation with Borland C
9308         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9309         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9310         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9311         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9312         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9313         src/z80/Makefile.bcc: delete $(LIB) only if exist
9314         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9315
9316 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9317
9318         * device/include/malloc.h: introduced NULL
9319         * device/include/string.h: introduced NULL
9320         * device/include/stdlib.h: introduced NULL
9321         * device/lib/_memcpy.c: removed NULL
9322         * device/lib/_strcat.c: removed NULL
9323         * device/lib/_strchr.c: removed NULL
9324         * device/lib/_strcmp.c: removed NULL
9325         * device/lib/_strcpy.c: removed NULL
9326         * device/lib/_strcspn.c: removed NULL
9327         * device/lib/_strlen.c: removed NULL
9328         * device/lib/_strncat.c: removed NULL
9329         * device/lib/_strncmp.c: removed NULL
9330         * device/lib/_strncpy.c: removed NULL
9331         * device/lib/_strpbrk.c: removed NULL
9332         * device/lib/_strrchr.c: removed NULL
9333         * device/lib/_strspn.c: removed NULL
9334         * device/lib/_strstr.c: removed NULL
9335         * device/lib/_strtok.c: removed NULL
9336         * device/lib/malloc.c: removed NULL, include own header
9337
9338 2003-02-02    <johan AT balder>
9339
9340         * 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
9341         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9342         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9343         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9344         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9345         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9346
9347 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9348
9349         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9350         area 'DATA'"
9351
9352 2003-02-01    <johan AT balder>
9353
9354         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9355
9356 2003-01-31    <johan AT CP255758-A>
9357
9358         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9359
9360 2003-01-30    <johan AT balder>
9361
9362         * src/SDCCBBlock.c: automatic bug detection
9363         * src/SDCCicode.c: automatic bug detection
9364
9365 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9366
9367         * src/SDCCglobl.h:   now --xram-size 0 works
9368         * src/SDCCmain.c:    now --xram-size 0 works
9369
9370 2003-01-29    <johan AT balder>
9371
9372         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9373
9374 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9375
9376         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9377         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9378         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9379         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9380         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9381         * src/SDCCmain.c:    Added options --xram-size and --code-size
9382
9383 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9384
9385         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9386         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9387
9388 2003-01-27    <johan AT balder>
9389
9390         * src/SDCC.y: fixed bug #613764
9391
9392 2003-01-26    <johan AT balder>
9393
9394         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9395         * src/SDCCsymt.h: fixed bug #673374
9396         * src/SDCCglue.c: fixed bug #661910
9397         * src/SDCCast.c: fixed bug #458099 and 673374
9398
9399 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9400
9401         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9402         * as/mcs51/strcmpi.h: added
9403         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9404         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9405         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9406         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9407         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9408         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9409         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9410         * as/mcs51/Makefile.aslink: new module strcmpi
9411         * as/mcs51/Makefile.asx8051: new module strcmpi
9412         * as/mcs51/Makefil.bcc: new module strcmpi
9413         * as/mcs51/Makefile.in: new module strcmpi
9414         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9415
9416 2003-01-26    <johan AT balder>
9417
9418         * src/SDCCglue.c: reverted back to 1.124
9419         * src/SDCCast.c: reverted back to 1.156
9420         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9421
9422 2003-01-25    <johan AT balder>
9423
9424         * src/SDCCglue.c: A better fix for bug #661910
9425         * src/SDCCast.c: A better fix for bug #661910
9426         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9427
9428 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9429
9430         * src/Makefile.in: remove spawn.o
9431         * src/SDCCmain.c: remove spawn.h
9432         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9433         * src/spawn.c: removed
9434         * src/spawn.h: removed
9435         * support/regression/ports/ds390/spec.mk: link with -r
9436
9437 2003-01-24    <johan AT CP255758-A>
9438
9439         * src/ds390/gen.c (aopOp): fixed bug #667458
9440         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9441         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9442         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9443
9444 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9445
9446         * src/mcs51/peeph.def: better assembler identation by Frieder
9447         * src/mcs51/gen.c: better assembler identation by Frieder
9448
9449 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9450
9451         * as/z80/string.h: removed for gcc 3.2
9452         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9453         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9454
9455 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9456
9457         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9458         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9459         * support/regression/Makefile: separate temp files for ports
9460         * support/regression/generate-cases.py: separate temp files for ports
9461         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9462         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9463
9464 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9465
9466         * moved tinitalk to device/examples/ds390
9467
9468 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9469
9470         * as/mcs51/lkmem.c: rflag is for DS390
9471         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9472         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9473                          (linkEdit): move mem- and map-files the same way as ihx-files
9474         * src/z80/main.c (_setDefaultOptions): removed --generic
9475         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9476         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9477         * src/pic/glue.c (picglue): --c1mode works again
9478         * src/pic16/glue.c (pic16glue): --c1mode works again
9479         * src/asm.c (printCLine): fix #660034
9480
9481 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9482
9483         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9484         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9485         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9486         * as/mcs51/lkmem (summary): better fix for sp problem
9487         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9488         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9489         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9490                                               remove --stack-after-data
9491
9492 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9493
9494         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9495         * src/SDCCutil.c (join): ugly bug: missing '\0'
9496         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9497
9498 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9499
9500         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9501         * src/port.h: typo
9502         * src/pic/main.c (_asmCmd): gpasm supports -o
9503         * src/z80/main.c: more general macros
9504         * device/lib/Makefile.in: remove intermediate files
9505
9506 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9507
9508         * .version: Bumped version number to 2.3.3
9509         * src/SDCCBBlock.c: new option -o
9510         * src/SDCCglobl.h: new option -o
9511         * src/SDCCglue.c: new option -o
9512         * src/SDCCmain.c: new option -o
9513         * src/asm.c: new option -o
9514         * src/ds390/main.c: new option -o
9515         * src/pic/glue.c: new option -o
9516         * src/pic/pcode.c: new option -o
9517         * src/pic/ralloc.c: new option -o
9518         * src/pic16/glue.c: new option -o
9519         * src/pic16/pcode.c: new option -o
9520         * src/pic16/ralloc.c: new option -o
9521         * src/z80/main.c: new option -o
9522         * device/lib/Makefile.in: use -o
9523         * support/regression/ports/ds390/spec.mk: use -o
9524         * support/regression/ports/gbz80/spec.mk: use -o
9525         * support/regression/ports/mcs51/spec.mk: use -o
9526         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9527         * support/regression/ports/z80/spec.mk: use -o
9528         * support/regression/ports/ucz80/spec.mk: use -o
9529         * support/regression/ports/xa51/spec.mk: use -o
9530         * support/regression/fwk/lib/timeout.c: fix usage string
9531
9532 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9533         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9534
9535 2003-01-07    <johan AT balder>
9536
9537         * src/SDCCast.c (decorateType): fixed bug #600035
9538
9539 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9540         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9541         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9542         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9543         * src/pic/pcode.c: outcommented unused variable to remove warnings
9544         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9545
9546 2003-01-06    <karl AT turbobit.com>
9547         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9548    regression tests.
9549
9550 2003-01-06    <johan AT balder>
9551
9552         * src/SDCCicode.c: fixed array add
9553
9554 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9555         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9556         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9557
9558 2003-01-04    <johan AT balder>
9559
9560         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9561
9562 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9563         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9564
9565 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9566         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9567         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9568
9569 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9570         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9571
9572 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9573         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9574
9575 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9576         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9577
9578 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9579
9580     * in \sdcc\as\mcs51\ changed these files in order to create an
9581     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9582     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9583     following files to include the previous two files: aslink.dsp,
9584     Makefile.aslink, Makefile.bcc, and Makefile.in.
9585
9586     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9587     .adb instead of .cdb
9588
9589 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9590
9591         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9592         value from option --iram-size.
9593
9594 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9595
9596         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9597         dram[] array.
9598
9599 2002-09-18    <wiml AT hhhh.org>
9600
9601         * SDCClrange.h: exposed setFromRange() and setToRange()
9602         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9603           packRegsForAccUse() (bug 542397)
9604         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9605           multiple times and emitting the fetch operations more than once
9606           added aopGetUsesAcc() function to allow binary operators to
9607           fetch their operands in the correct order; made genMinus() emit
9608           compact code for X = LITERAL - Y
9609
9610 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9611         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9612         sprintf() in line 1267.
9613
9614 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9615         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9616         like ports.
9617
9618 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9619         Changes to aslink (All the changes are marked with 'JCF'):
9620
9621         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9622         summary().
9623
9624         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9625         area BSEG.  Also moves, if possible, the DATA area down into the internal
9626         ram so more space is available.
9627
9628         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9629         sflag.
9630
9631         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9632         not bytes.  Function summary() which creates a memory usage summary
9633         file with extension .mem.  Reports of overlaping stack and small stack
9634         size.  If the space for the stack is less than 16 bytes aslink trows a
9635         warning.
9636
9637         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9638         the 8051.  Option 'y' for memory summary output file.
9639
9640         Changes to sdcc (All the changes are marked with 'JCF'):
9641
9642         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9643
9644         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9645         overlaying area for it (uses RegBankUsed[4]).
9646
9647         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9648         bank zero as used by default.  By default aslink locates the stack
9649         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9650         the creation of the .mem file.  Delegates the allocation of data area
9651         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9652         the begining of the stack area to aslink.
9653
9654         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9655         glue() in SDCCglue.c creates an area for it.
9656
9657 2002-09-03  Borut Razem <borut.razem AT siol.net>
9658         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9659         sdcc/src/pic/glue.c:
9660         introduced atexit() handler for teporay files removal in case of
9661         errors, assertions, ...
9662
9663 2002-08-29  Borut Razem <borut.razem AT siol.net>
9664         * sdcc/support/cpp2/auto-host_vc_in.h:
9665         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9666         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9667         Maybe there is a similar problem with BORLANDC? It should be checked!
9668
9669         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9670         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9671         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9672         was not executed, and the compiler (cl) launched a warning:
9673         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9674
9675 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9676         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9677
9678 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9679         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9680
9681         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9682           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9683           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9684           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9685           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9686           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9687           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9688         - added Release configuration in VS projects
9689         - review of compiler an linker options
9690         - VC .exe files are generated in bin_vc directory, not to interfere
9691           with binaries generated from other projects (cygwin, mingw, bcc ...)
9692
9693         * sdcc/src/yacc.dsp: added
9694
9695         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9696         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9697         and insert the version number definitions from .version
9698
9699         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9700
9701         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9702         added - genarate auto-host.h using auto-host_vc_in.h as template
9703
9704         * sdcc/sdcc_vc.h,
9705         removed from CVS, generated automatically
9706
9707 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9708         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9709
9710 2002-08-11  Borut Razem <borut.razem AT siol.net>
9711         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9712
9713 2002-08-10  Borut Razem <borut.razem AT siol.net>
9714         * src/SDCCmain.c (main):
9715         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9716         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9717         The consequence was that some temporary files were not removed.
9718
9719         * src/SDCCglue.c:
9720         unification of code in functions tempfilename() and tempfile():
9721         function tempnam() is defined in Visual Studio 6.0 and .NET
9722
9723         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9724
9725         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9726           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9727         - removed compiler command line option /WX: Treats all warnings as errors
9728         - update a list of source files, included into the project
9729
9730         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9731           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9732         changed project type to Generic Project so that can be correcly converted to VS.NET project
9733
9734         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9735
9736         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9737
9738         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9739
9740         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9741         added return 0 statements after assert() to make compiler happy
9742
9743         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9744         added newline in the def file to keep MSC compiler satisfied
9745
9746         * sdcc/src/z80/gen.c:
9747         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9748           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9749         - solved MSC error in function aopDump()
9750
9751         * sdcc_vc.h: define PREFIX as "\\sdcc"
9752
9753 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9754         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9755
9756 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9757         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9758         - Rewrote the register banking algorithm.
9759         - Added pCode live-range analysis to registers (for now, only non-used and
9760         singly-used registers optimized away)
9761
9762         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9763
9764         * 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.
9765
9766 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9767         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9768
9769 2002-04-22  Michael Hope  <michaelh AT vroom>
9770
9771         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9772
9773         * configure.in (DD_COPT): Added include support required for gbdk.
9774
9775         * .version: Bumped version number just to increase it.
9776
9777         * src/SDCCmain.c: Added -nostdinc to the default options.
9778
9779 2002-04-15  Michael Hope  <michaelh AT vroom>
9780
9781         * device/lib/z80/printf.c (sprintf): Added.
9782
9783         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9784
9785         * src/z80/peeph.def: Added transpose redundent load rule.
9786
9787         * src/z80/main.c: Added force callee saves for jaune.
9788
9789         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9790
9791         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9792
9793 2002-03-28  Johan Knol  <johan AT balder>
9794
9795         * src/SDCCval.c: fixed bug #532436
9796
9797 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9798         * /src/port.h:
9799         Added "char *Processor" field to the port structure.
9800
9801         * /src/SDCCmain.c:
9802         Added -p option. Allows port dependent processor to be specified.
9803
9804         * all ports:
9805         Initialized the new field char *Processor field to NULL in all ports
9806
9807         * /src/pic/*:
9808         Compiler generated registers for interrupt context saving
9809         were not getting allocated.
9810
9811 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9812
9813         * /src/SDCCast.c:
9814         Fixed left shift. Will promote the left side of a left shift
9815         if a) left shifting more than size of operand or b) when assigned
9816         to something size > size of left side
9817
9818 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9819         * src/pic/*
9820         tons of changes. Register allocation has been
9821         rewritten. Added customization for the various PICs. Flow
9822         analysis is restructured. ...
9823
9824         * src/pic/device.h:
9825         Added
9826
9827         * src/pic/device.c:
9828         Added. device.c is a PIC port hack to accomodate variations
9829         in PIC devices.
9830
9831 2002-03-13  Michael Hope  <michaelh AT vroom>
9832
9833         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9834
9835 2002-03-04  johanknol  <johanknol AT manik>
9836
9837         * /src/SDCCval.c: fixed
9838
9839         const unsigned char arr[][2] = { { 0, 1 } };
9840         t18.c:1: error: Initializer element is not constant
9841
9842 2002-03-04  bela  <bela AT manik>
9843
9844         * /device/include/mcs51reg.h:
9845         ds89c420 register definition update
9846
9847 2002-03-03    <johan AT FRIJA>
9848
9849         * support/Util/SDCCerr.c: did something, but don't no why anymore
9850
9851         * support/regression/tests/bug-524691.c: made it a little less shy
9852
9853         * src/SDCCast.c (decorateType): fixed bug #524697
9854
9855         * src/SDCCast.c: made some lineno improvements
9856
9857         * src/SDCCval.c (getNelements): changed warning to error
9858
9859         * src/SDCCglue.c (printIvalArray): changed warning to error
9860
9861         * src/SDCCicode.c: fixed a warning for mingw
9862
9863         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9864
9865         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9866
9867 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9868
9869         * src/ds390/peeph.def:
9870         Added some more peephole rules
9871
9872         * src/ds390/gen.c: Various fixes & enhancements
9873
9874         * src/SDCClrange.c, src/SDCClrange.h:
9875         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9876
9877         * src/ds390/ralloc.c:
9878         various fixes & enhancements (ds390) specific
9879
9880         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9881         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9882         from rallocs.
9883
9884         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9885
9886 2002-03-02    <johan AT FRIJA>
9887
9888         * src/SDCCast.c (decorateType): fixed bug #524708
9889
9890         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9891
9892         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9893
9894 2002-03-01  Michael Hope  <michaelh AT vroom>
9895
9896         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9897
9898         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9899
9900 2002-03-01    <johan AT FRIJA>
9901
9902         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9903
9904         * src/SDCCast.c (decorateType): fixed bug #524209
9905
9906         * src/SDCCval.c (valNot): fixed bug #524195
9907
9908 2002-02-26    <johan AT balder>
9909
9910         * src/xa51/gen.c: fixed a warning
9911
9912         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9913
9914         * src/SDCCast.c (decorateType): fixed bug #522534
9915
9916 2002-02-23    <johan AT balder>
9917
9918         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9919
9920 2002-02-22    <johan AT balder>
9921
9922         * src/SDCCast.c: fixed bug #514865
9923
9924         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9925
9926 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9927
9928         * sdcc/src/SDCCloop.c:
9929         Previous fix was not good. basic blocks that have "break" or "return" are
9930         not really partof a loop , but live ranges used in these blocks should
9931         be live thru the entire loop, so set partOfLoop but don't add them to
9932         loop region
9933
9934 2002-02-21    <johan AT FRIJA>
9935
9936         * src/SDCCcse.c: fixed bug #514308
9937
9938 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9939
9940         * src/SDCCloop.c:
9941         Fixed BUG #519583. If a conditional block ended in a return/break
9942         statement inside a loop, it was not being considered part of the loop.
9943
9944         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9945
9946 2002-02-10  Karl Bongers <karl AT turbobit.com>
9947
9948         * debugger/*:
9949         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9950         with lots of comments and notes.
9951
9952         * device/examples/test2.c:
9953         Fix bug, "red" variable not being initialized(compiler complained).
9954
9955         * device/examples/Makefile, examples/test3.c:
9956         Add Makefile in device/examples folder, compiles test3.c
9957         for use as a multiple module SDCDB test case.
9958
9959         * sim/ucsim/cmd.src/cmdset.cc:
9960         Took out debug printfs in ucsim "next" command.
9961
9962         * sim/ucsim/xa.src:
9963         Karl and Johan start ucsim XA support.  Most dissassembly working,
9964         about 75% emulation done(plenty of work remaining).
9965
9966         * sim/ucsim/z80.src:
9967         Add Z80 support to ucsim, add test-ucz80 regression test,
9968         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9969         Notice z80 compiler fails on examples/test3.c/crc code.
9970
9971 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9972
9973         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9974         Added support for --parms-in-bank1
9975
9976         * src/ds390/peeph.def:
9977         added a few more peephole optimzations
9978
9979         * src/ds390/main.c:
9980         1) added __builtin_inp & __builtin_outp used to read in data of given length
9981            from a memory mapped port
9982         2) added __builtin_memcmp
9983         3) added __builtin_swapw swap bytes of a short
9984
9985         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9986         1) handle multiple send & receives from register bank1
9987         2) ralloc can now allocate DPTR1 to some liveRanges
9988
9989         * src/SDCCsymt.c, src/SDCCsymt.h:
9990         changes to handle multiple sends & receives
9991
9992         * src/SDCCptropt.h:
9993         added some pointer arithmetic optimization
9994
9995         * src/SDCCptropt.c:
9996         added some pointer arithmetic optimizations but not stable yet so not
9997         called from anywhere (will get this working shortly)
9998
9999         * src/SDCCopt.c: fixed for multiple sends & receives
10000
10001         * src/SDCCmain.c:
10002         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10003         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10004            set preprocessor defines (depending on options)
10005
10006         * src/SDCCicode.c, src/SDCCicode.h:
10007         changes made to handle multiple sends & receives
10008
10009         * src/SDCCglobl.h:
10010         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10011
10012         * src/SDCCcse.c, src/SDCCcse.h:
10013         added function findbackward def (to be used in upcoming optimization)
10014
10015         * src/SDCCcflow.c, src/SDCCcflow.h:
10016         added function returnAtEnd - to determine if a basic block terminates with
10017         a RETURN iCode
10018
10019         * src/SDCCast.c, src/SDCCast.h:
10020         added option parms-in-bank1
10021
10022         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10023         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10024         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10025         adjusted for --parms-in-bank1 option
10026
10027         * device/include/string.h:
10028         donot redefine "reentrant" keyword
10029
10030         * device/include/ds80c390.h: Added some more SFRs
10031
10032 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10033
10034         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10035
10036 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10037
10038         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10039
10040 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10041
10042         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10043
10044 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10045
10046         * Added --xram-movc option
10047
10048 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10049
10050         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10051
10052 2002-01-11  Johan Knol
10053
10054         * Added math lib of Jesus Calvino-Fraga
10055
10056 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10057
10058         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10059         * support/regression/Makefile: new target test-mcs51-stack-auto
10060         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10061
10062 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10063
10064         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10065
10066 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10067
10068         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10069
10070 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10071
10072         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10073
10074         * src/SDCCglue.h: add definition for printIvalChar()
10075
10076 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10077
10078         * src/SDCCast.c: fix #498138 by Johan
10079
10080         * src/SDCCglue.c: fix #498138 by Johan
10081
10082 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10083
10084         * support/regression/Makefile: fix clean
10085
10086         * support/regression/ports/ds390/support.c: fix transmission of last character
10087
10088 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10089
10090         * /sdcc/src/ds390/gen.c:
10091         a) improved computing address of stack variable
10092         b) took out some #if 0 code
10093         c) improved parmBytes adjustment
10094         d) improved genPlusIncr & genMinusIncr
10095         e) genCmp could generate bad code (when left assigned to DPTR)
10096         f) Fixed bug in hasInc
10097
10098         * /sdcc/src/ds390/ralloc.c:
10099         a) packRegsForSupport could mess up live information (Fixed)
10100         b) packRegsDPTRuse could be incorrect for left & right shift
10101
10102         * /sdcc/src/mcs51/ralloc.c:
10103         packRegsForSupport could mess up the live information (Fixed)
10104
10105         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10106
10107         * /sdcc/src/SDCCast.c:
10108         can reverse a loop even if function call is present as long
10109         as the loop control variable is local & is not passed as parameter
10110
10111 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10112
10113         * /sdcc/ChangeLog: *** empty log message ***
10114
10115         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10116         More builtin function additions for TININative
10117
10118         * /sdcc/src/ds390/ralloc.c:
10119         Had broken the regression testsuite
10120
10121         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10122
10123         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10124         Added funcattr hasStackParms will be set for reentrant functions when there
10125         are paramteres on the stack, this helps in minimizing frame pointer generation
10126         typeFromStr can handle function pointers now
10127
10128         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10129         *** empty log message ***
10130
10131 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10132
10133         * /src/ds390/gen.c, /src/ds390/main.c:
10134         More builtin function additions for TININative
10135
10136         * /src/ds390/ralloc.c:
10137         Had broken the regression testsuite
10138
10139         * /src/SDCCast.c: Fixed a bug in dumptree
10140
10141         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10142         Added funcattr hasStackParms will be set for reentrant functions when there
10143         are paramteres on the stack, this helps in minimizing frame pointer generation
10144         typeFromStr can handle function pointers now
10145
10146         * /doc/builtins.txt, /doc/TININative.txt:
10147         *** empty log message ***
10148
10149
10150 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10151
10152         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10153         ALPHA version for -mTININative
10154
10155         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10156         updated to reflect changes in the port structure
10157
10158         * /src/port.h:
10159         added function do_assemble (similar to do_link) if non-null this function
10160         will be called to do assembly (-mTININative) requires a multi command
10161         assembly
10162         added function genAssemblerEnd will be called to generate assembler Epilogue
10163
10164         * /src/SDCCsymt.c:
10165         added _JavaNative to debug info printing
10166
10167         * /src/SDCCmain.c: added option --tini-libid
10168         added port->do_assemble function (-mTININative) has a multi command assemble
10169
10170         * /src/SDCCglue.c: Disabled "constExpr" check
10171         added port->genAssemblerEnd function
10172
10173         * /src/SDCCglobl.h: Added option --tini-libid value
10174
10175         * /src/SDCCast.h:
10176         tookout optimizeCompare from the header (has no external references)
10177
10178         * /src/SDCCast.c: made one more function "static"
10179
10180 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10181
10182         * src/z80/mappings.i: Added z80asm support.
10183
10184         * src/z80/main.c: Added z80asm support on --asm=z80asm
10185
10186         * src/z80/gen.c: Fixed asm portability issues.
10187
10188         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10189
10190         * src/SDCCglue.c (printExterns): Added global/extern split.
10191
10192 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10193
10194         * support/regression/Makefile: added test for mcs51 model large
10195
10196         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10197
10198         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10199
10200 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10201
10202         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10203
10204 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10205
10206         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10207
10208         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10209
10210 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10211
10212         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10213
10214         * support/regression/tests/simplefloat.c: Port to mcs51.
10215
10216 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10217         * support/regression/tests/bug-485362.c: Added.
10218
10219         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10220
10221         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10222
10223         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10224
10225         * src/z80/gen.c (aopDump): Added a dump function.
10226
10227 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10228         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10229
10230         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10231
10232         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10233
10234         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10235
10236         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10237
10238         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10239
10240         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10241
10242         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10243
10244         * support/regression/ports/ds390/support.c: Use tinibios.
10245
10246         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10247
10248 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10249
10250         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10251         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10252
10253         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10254
10255         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10256
10257 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10258
10259         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10260
10261         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10262         (packRegsForIYUse): Created and optimised.
10263
10264 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10265
10266         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10267 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10268
10269         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10270
10271         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10272
10273         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10274
10275 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10276
10277         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10278
10279         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10280
10281 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10282
10283         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10284
10285         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10286
10287         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10288
10289 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10290
10291         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10292         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10293         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10294
10295         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10296
10297         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10298         (genNotFloat): Added.
10299         (genUminusFloat): Added.
10300
10301         * device/lib/z80/Makefile: Added floating pt stubs.
10302
10303         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10304
10305         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10306
10307         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10308
10309 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10310
10311         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10312
10313         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10314
10315         * sdcc/support/regression/Makefile: Add port ds390.
10316
10317         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10318
10319         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10320
10321         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10322
10323         * sdcc/support/regression/ports/ds390/support.c: Added.
10324
10325         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10326
10327         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10328
10329         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10330
10331 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10332
10333         * device/include/malloc.h: Added z80 and gbz80 support.
10334
10335         * device/lib/gbz80/heap.s: Added.
10336
10337         * device/lib/z80/heap.s: Added.
10338
10339         * device/lib/malloc.c: Added z80 and gbz80 support.
10340
10341         * support/regression/tests/malloc.c (testMalloc): Added.
10342
10343         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10344
10345         * support/regression/tests/bug-478094.c: Added.
10346
10347         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10348
10349 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10350
10351         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10352
10353         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10354
10355         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10356
10357         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10358
10359         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10360
10361 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10362
10363         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10364
10365 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10366
10367         * support/regression/tests/bug-477927.c: Added.
10368
10369         * src/z80/peeph.def: Added minor rules.
10370
10371         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10372
10373         * src/z80/peeph.def: Added jump optimisation modification.
10374
10375 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10376
10377         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10378
10379 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10380
10381         * support/regression/tests/funptrs.c: Added.
10382
10383 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10384
10385         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10386
10387 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10388
10389         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10390
10391         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10392
10393         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10394         (movLeft2ResultLong): Created.
10395
10396         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10397         (joinPushes): Added.  Joins two char pushes into a word push.
10398
10399 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10400
10401         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10402
10403         * support/makebin/Makefile (install): Added creation of dest dir.
10404
10405 2001-10-24 Karl Bongers <karl AT turbobit.com>
10406
10407         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10408
10409 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10410
10411         * src/z80/ralloc.c: Turned off faulty pack for one use.
10412
10413         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10414
10415         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10416
10417 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10418
10419         * support/regression/Makefile: Improved clean
10420
10421         * support/regression/ports/gbz80/spec.mk: Added clean
10422
10423         * support/regression/ports/host/spec.mk: Added clean
10424
10425         * support/regression/ports/z80/spec.mk: Added clean
10426
10427         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10428
10429         * support/regression/ports/mcs51/timeout.c: little improvements
10430
10431 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10432
10433         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10434
10435         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10436
10437         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10438
10439 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10440
10441         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10442
10443         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10444
10445 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10446         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10447
10448         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10449
10450         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10451
10452         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10453
10454         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10455
10456         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10457
10458         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10459
10460         * support/regression/tests/longor.c: Added.
10461
10462 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10463
10464         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10465
10466         * as/mcs51/aslink.h: define PATH_MAX
10467
10468         * as/mcs51/asm.h: define PATH_MAX
10469
10470         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10471
10472         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10473
10474         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10475
10476         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10477
10478         * src/SDCCglobl.h: define PATH_MAX
10479
10480         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10481
10482         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10483
10484 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10485
10486         * src/z80/gen.c (gencjneshort): Fixed
10487
10488         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10489
10490 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10491
10492         * support/regression/tests/bug-469671.c: Added.
10493
10494         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10495
10496 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10497
10498         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10499
10500         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10501
10502 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10503
10504         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10505
10506         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10507
10508         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10509
10510         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10511
10512         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10513
10514         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10515
10516         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10517
10518 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10519
10520         * 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.
10521
10522         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10523
10524         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10525
10526 2001-10-07    <johan AT FRIJA>
10527
10528         * device/lib/gets.c (gets): fixed the return value.
10529
10530 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10531         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10532
10533         * 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.
10534
10535         * 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.
10536
10537         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10538
10539         * src/pic/gen.c: Removed Safe_strdup.
10540
10541         * configure.in: Added option to enable libgc support.
10542
10543         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10544         (bitVectUnion): Optimised.
10545         (bitVectIntersect): Optimised.
10546         (bitVectBitsInCommon): Optimised.
10547         (bitVectCplAnd): Optimised.
10548
10549         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10550
10551 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10552
10553         * src/SDCCmain.c: distinguish between assembler debug and plain options
10554
10555         * src/avr/main.c:   remove standard assembler options
10556
10557         * src/ds390/main.c: remove standard assembler options
10558
10559         * src/mcs51/main.c: remove standard assembler options
10560
10561         * src/port.h: removed "PENDING" comment
10562
10563 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10564
10565         * src/device/lib/_mulint.c  : new, with assember functions
10566
10567         * src/device/lib/_mullong.c : new, with assember functions
10568
10569         * src/device/lib/_divuint.c : with assember functions
10570
10571         * src/device/lib/_divsint.c : with assember functions
10572
10573         * src/device/lib/_divulong.c: with assember functions
10574
10575         * src/device/lib/_divslong.c: with assember functions
10576
10577         * src/device/lib/_moduint.c : with assember functions
10578
10579         * src/device/lib/_modsint.c : with assember functions
10580
10581         * src/device/lib/_modulong.c: with assember functions
10582
10583         * src/device/lib/_modslong.c: with assember functions
10584
10585         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10586
10587         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10588
10589         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10590                                       replaced _mululong.c and _mulslong.c by _mullong.c
10591
10592 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10593
10594         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10595
10596 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10597
10598         * src/SDCCglue.c: test, if win32api is available for MINGW
10599
10600 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10601
10602         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10603         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10604         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10605         * support/regression/ports/host/spec.mk: removed GENERIC
10606         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10607         * support/regression/ports/z80/spec.mk: removed GENERIC
10608
10609 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10610
10611         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10612
10613         * support/regression/tests/bug-467035.c: Created.
10614
10615 2001-10-01    <johan AT FRIJA>
10616
10617         * src/SDCC.y: fixed bug #466586 part 1
10618
10619 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10620
10621         * SDCCicode.c: z80 has no generic pointers
10622         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10623
10624 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10625
10626         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10627
10628 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10629
10630         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10631
10632         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10633
10634 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10635
10636         * configure.in: Fixed up so that ucsim is only configured once.
10637
10638         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10639
10640         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10641         (getPathDifference): As above.
10642
10643         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10644
10645         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10646
10647 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10648         * .version: Updated to 2.3.1
10649
10650         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10651         Added copyright header.
10652
10653         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10654         (assemble): Added support for macro based assembler commands.
10655         (linkEdit): Added support for macro based linker commands.
10656         (preProcess): Changed the pre-processor to use macros.
10657         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10658         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10659
10660         * device/lib/z80/crt0.s: Added module name for debugging.
10661
10662 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10663
10664         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10665
10666         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10667
10668         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10669
10670         * src/Makefile.in: Added SDCCmacro and SDCCutil
10671
10672 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10673
10674         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10675
10676 2001-09-16    <johan AT FRIJA>
10677
10678         * 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.
10679
10680 2001-09-15    <johan AT FRIJA>
10681
10682         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10683         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10684
10685 2001-09-11    <johan AT FRIJA>
10686
10687         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10688
10689 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10690
10691         * support/regression/tests/bug-460444.c: Added test case.
10692
10693         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10694         (genCast): Added justification for all of the asserts.
10695
10696 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10697
10698         * support/regression/support.c: _xdata replaced by xdata
10699
10700         * support/regression/spec.mk: removed _generic
10701
10702 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10703
10704         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10705
10706         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10707         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10708
10709         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10710
10711         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10712
10713         * support/regression/tests/bug-460010.c: Added test case.
10714
10715         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10716
10717 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10718
10719         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10720
10721         * support/regression/testfwk.c: removed workaround for bug #436344
10722
10723         * support/regression/tests/bp.c: use less memory with mcs51
10724
10725         * support/regression/tests/bug-441448.c: use less memory
10726
10727         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10728
10729         * support/regression/collate-results.py: typo
10730
10731 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10732
10733         * support/regression/tests/fetchoverlap.c: Added new test case.
10734
10735         * support/regression/tests/bp.c: Added new test case.
10736
10737         * support/regression/tests/bug-448984.c: Added new test case.
10738
10739         * support/regression/tests/pow2shifts.c: Added new test case.
10740
10741         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10742         (genlshTwo): Fixed right shift for count > 8.
10743
10744         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10745
10746 2001-09-08    <johan AT FRIJA>
10747
10748         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10749
10750 2001-09-07    <johan AT FRIJA>
10751
10752         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10753
10754         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10755
10756 2001-09-06    <johan AT FRIJA>
10757
10758         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10759         * bernhard noted me at this: "() equals to (void)" (1.38)
10760
10761 2001-09-05    <johan AT FRIJA>
10762
10763         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10764
10765 2001-09-04    <johan AT FRIJA>
10766
10767         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10768
10769
10770 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10771
10772         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10773
10774 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10775
10776         * link/z80/aslink.h: Fixed path for PATH_MAX
10777
10778 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10779
10780         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10781
10782         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10783
10784         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10785
10786         * 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.
10787
10788 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10789
10790         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10791         (genCmp): Fixed up genCmp for the GB with longs.
10792
10793         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10794
10795         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10796
10797         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10798
10799         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10800
10801 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10802
10803         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10804
10805 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10806
10807         * 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.
10808
10809         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10810
10811 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10812
10813         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10814
10815         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10816
10817 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10818
10819   * sim/ucsim/configure:    little improvement of Cygwin-detection
10820   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10821   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10822   * support/regression/tests/bug-221100.c: small changes for mcs51
10823   * support/regression/tests/bug-221168.c: small changes for mcs51
10824   * support/regression/tests/bug-227710.c: small changes for mcs51
10825   * support/regression/tests/staticinit.c: small changes for mcs51
10826   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10827   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10828   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10829
10830 $Revision$