* src/SDCCpeeph.c (operandsLiteral): new, added,
[fw/sdcc] / ChangeLog
1 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/SDCCpeeph.c (operandsLiteral): new, added,
4           (callFuncByName): inserted operandsLiteral
5         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
6
7 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8
9         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
10         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
11
12 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
13
14         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
15           implemented patch 1120823 Thanks to Willy De la Court (normal
16           interrupts need an interrupt number now if they are made critical),
17           and enabled nesting of critical functions though not for gbz80
18           (genCritical, genEndCritical): added functions
19           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
20         * src/z80/mappings.i: added "ei" to all mappings
21
22 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
23
24         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
25         submitted by the Debian SDCC maintainer Aurelien Jarno:
26         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
27         archive with gcc 4.1 on mips and wrote the patch"
28
29 2006-03-16 Raphael Neider <rneider AT web.de>
30
31         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
32           the left operand is shorter than the result (c* = lit-c* + int),
33           fixes bug #1450796
34         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
35           OP_SYMBOL
36
37 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
38
39         * src/.version: increased version number to 2.5.5
40         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
41         linking is done manually in pic16 port's _linkEdit,
42         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
43         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
44         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
45         allocate asmop as AOP_ACC,
46         (aopForRemat): added parameter 'bool result' in function declaration,
47         (pic16_aopGet): return AOP_ACC when accessing WREG,
48         (pic16_popGetTempReg): minor modification,
49         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
50         'pic16_allocWithIdx',
51         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
52         calling function in absolute addresses,
53         (genAssign): take into account AOP_ACC asmop,
54         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
55         * src/pic16/pcoderegs.c: some debug functions and lines added,
56         * src/pic16/ralloc.c (decodeRegType): added but commented out,
57         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
58         register too,
59         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
60         call to allocReg, not by manually allocating a new one,
61         (pic16_assignRegisters): now before going through the register
62         allocating functions mark all registers as free. This eliminates some
63         side effects resulting from peephole parser done earlier in the backbone
64
65 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
66
67         * src/SDCCicode.c (geniCodeLogic),
68         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
69
70 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
71
72         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
73           (genSend): bugfix, do not allocate and free twice,
74           (shiftRLong): handle partially overlapping aops
75         * support/regression/tests/bitopcse.c: fixed warning redefined idata
76
77 2006-03-08 Borut Razem <borut.razem AT siol.net>
78
79         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
80           for pic16
81
82 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
83
84         * support/regression/tests/bug1409955.c: new, added
85         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
86         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
87           (aopForSym, aopOp): increment asmop.allocated if reused,
88           (freeAsmop): decrement asmop.allocated and check for zero instead of
89           using asmop.freed,
90           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
91           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
92            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
93            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
94            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
95            genSignedRightShift, genRightShift, genDataPointerGet,
96            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
97            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
98             in reverse order from allocation,
99           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
100             added swappedLR to keep track
101         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
102           pdata & code for GCC, z80, gbz80 & hc08
103         * support/regression/tests/zeropad.c: moved defines to testfwk.h
104
105 2006-03-08 Raphael Neider <rneider AT web.de>
106
107         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
108
109 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
110
111         * device/include/mcs51/c8051f410.h: new SiLabs mcu
112         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
113         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
114
115 2006-03-06 Borut Razem <borut.razem AT siol.net>
116
117         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
118           made the linker quiet
119
120 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
121
122         * src/pic16/gen.c (genPcall): fixed bug #1443644
123         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
124         which dumps before the function entry point a data byte which represents
125         the number of the local variables used by the specified function, added
126         'xinst' for initial support for Extended Instruction Support,
127         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
128         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
129         port->fun_prefix anymore (may change later),
130         (genFunction, genEndFunction): do not store/restore local registers for
131         _main (this should take care the --main-return command line option in
132         the future),
133         (genOr): removed some legacy pic-port instructions,
134         * src/pic16/genarith.c (genAddLit): re-enabled old code because
135         performing operations with SFR's causes data to be written more than
136         once to each SFR. Perhaps SFRs should be handled in special cases...
137         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
138         pcode.h
139         * src/pic16/main.c (_process_pragma): stack bound checking did not take
140         into account for stack starting position,
141         (struct OPTIONS pic16_optionsTable): added command line argument
142         --extended or -y for Extended Instruction Support,
143         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
144         (deassignLRs): *** perhaps the most important change, old 'for' code
145         (commented out for reference), didn't account for some registers which
146         were left marked 'not free' after a pointer operation. The change
147         reduces register usage a lot in some cases
148
149 2006-03-04 Borut Razem <borut.razem AT siol.net>
150
151         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
152           _clean
153         * support/regression/tests/bug-524697.c: decreased array size for
154           mcs51 to fit into the internal RAM
155         * support/regression/Makefile.in: a little bit more verbose
156
157 2006-03-03 Borut Razem <borut.razem AT siol.net>
158
159         * support/regression/fwk/lib/testfwk.c,
160           support/regression/fwk/include/testfwk.h: introduced function
161           _prints(), nonrecursive _printn(), call _initEmu() from main()
162         * support/regression/ports/gbz80/support.asm,
163           support/regression/ports/ucz80/support.asm,
164           support/regression/ports/z80/support.asm,
165           support/regression/ports/ds390/support.c,
166           support/regression/ports/hc08/support.c,
167           support/regression/ports/host/support.c,
168           support/regression/ports/mcs51/support.c,
169           support/regression/ports/xa51/support.c: added empty _initEmu()
170           function
171         * support/regression/ports/pic16/gpsim.cmd,
172           support/regression/ports/pic16/spec.mk,
173           support/regression/ports/pic16/support.c,
174           support/regression/Makefile.in: added pic16 regression test
175
176 2006-03-01 Raphael Neider <rneider AT web.de>
177
178         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
179           genConstPointerGet): use safe way of generating MOVFF to cover
180             literals as well as registers, fixes bug #1440527
181         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
182             dereference
183           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
184             more correctly, fixes bug #1232186
185           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
186         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
187             gplink guess the correct processor in more cases, applied patch
188             from Till Riedel attached to and fixing bug #1436552
189
190 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
191
192         * support/regression/tests/array.c: added, contains check for #1434401
193         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
194
195 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
196
197         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
198         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
199         * device/include/mcs51/c8051f326.h,
200         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
201         * device/include/mcs51/c8051f000.h,
202         * device/include/mcs51/c8051f018.h,
203         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
204           PCON_IDLE,PCON_STOP and added sfr16 definitions
205
206 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
207
208         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
209           genGetWord): fixed bug 1409955
210
211 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
212
213         * device/include/hc08/mc68hc908gp32.h,
214         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
215
216 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
217
218         * src/SDCCast.c (constExprValue): return NULL if not a value
219         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
220         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
221         * support/regression/tests/bitfields.c: enabled signed bitfield for all
222
223 2006-02-13 Borut Razem <borut.razem AT siol.net>
224
225         * src/regression/ptrarg.c: added, fails due to bug #1430967
226         * src/regression/Makefile: ptrarg.c added, ...
227
228 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
229
230         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
231         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
232
233 2006-02-11 Borut Razem <borut.razem AT siol.net>
234
235         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
236           print "Processor: xxx" message to stdout only if --verbose
237
238 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
239
240         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
241         * support/regression/tests/bug1426356.c: added
242         * support/regression/tests/bitfields.c: removed 2 tests
243
244 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
245
246         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
247         * device/include/mcs51/c8051f330.h,
248         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
249           PCON_IDLE,PCON_STOP and added sfr16 definitions
250         * device/lib/_divsint.c,
251         * device/lib/_divuint.c,
252         * device/lib/_divulong.c,
253         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
254           register bank bug for small stackauto
255
256 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
257
258         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
259
260 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
261
262         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
263         * all.dsp: corrected several bin paths
264         * device/include/mcs51/c8051f120.h,
265         * device/include/mcs51/c8051f300.h,
266         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
267           to PCON_IDLE,PCON_STOP
268         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
269         * device/lib/printf_large.c (output_float): fixed bug 1388703
270         * support/regression/tests/bug1057979.c: added test for bug 1388703
271
272 2006-02-08 Raphael Neider <rneider AT web.de>
273
274         * src/pic/pcode.c (pciTRIS): fixed typo,
275           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
276           (LinkFlow): fixed handling of flows that end in a call,
277           (ReuseReg): perform safety check earlier
278         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
279             to work with flows at the beginning of a pBlock,
280             fixes #1426557 (Symbol not previously defined),
281           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
282             usage information
283           (RemoveUnusedRegisters): update register usage info
284         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
285             created, reuse existing ones instead
286         * src/pic/gen.c (genPcall): fixed #1424719
287
288 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
289
290         * link/z80/lkmain.c,
291         * link/z80/lklex.c,
292         * link/z80/lkdata.c,
293         * link/z80/aslink.h: fixed build on current cygwin:
294         replaced getline() by lk_getline()
295
296 2006-02-01 Borut Razem <borut.razem AT siol.net>
297
298         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
299           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
300           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
301           src/regression/bool1.c, src/regression/bool2.c,
302           src/regression/bool3.c, src/regression/call1.c,
303           src/regression/compare.c, src/regression/compare10.c,
304           src/regression/compare2.c, src/regression/compare3.c,
305           src/regression/compare4.c, src/regression/compare5.c,
306           src/regression/compare6.c, src/regression/compare7.c,
307           src/regression/compare8.c, src/regression/compare9.c,
308           src/regression/configword.c, src/regression/for.c,
309           src/regression/inline.c, src/regression/mult1.c,
310           src/regression/nestfor.c, src/regression/or1.c,
311           src/regression/pointer1.c, src/regression/ptrfunc.c,
312           src/regression/rotate1.c, src/regression/rotate2.c,
313           src/regression/rotate3.c, src/regression/rotate4.c,
314           src/regression/rotate5.c, src/regression/rotate6.c,
315           src/regression/rotate7.c, src/regression/string1.c,
316           src/regression/struct1.c, src/regression/sub.c,
317           src/regression/sub2.c, src/regression/switch1.c,
318           src/regression/while.c, src/regression/xor.c,
319           src/regression/create_stc, src/regression/simulate,
320           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
321           regression tests
322         * src/regression/gpsim_assert.h: added
323
324 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
325
326         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
327         ((void (code *) (void)) 0) ();
328         * as/hc08/aslex.c,
329         * as/hc08/aslink.h,
330         * as/hc08/asm.h,
331         * as/hc08/asmain.c,
332         * as/hc08/lkdata.c,
333         * as/hc08/lklex.c,
334         * as/hc08/lkmain.c,
335         * as/mcs51/aslex.c,
336         * as/mcs51/aslink.h,
337         * as/mcs51/asm.h,
338         * as/mcs51/asmain.c,
339         * as/mcs51/lkdata.c,
340         * as/mcs51/lklex.c,
341         * as/mcs51/lkmain.c,
342         * as/z80/aslex.c,
343         * as/z80/asm.h,
344         * as/z80/asmain.c: fixed build on current cygwin:
345         replaced getline() by as_getline()
346
347 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
348
349         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
350         declarator in the symbol chain
351         * src/SDCCsymt.h,
352         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
353         parameter list for function pointers
354         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
355         * support/regression/tests/bug-716242.c: added
356
357 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
358
359         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
360         offset if possible
361         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
362
363 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
364
365         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
366         inifinitely recurseable, added static
367         * support/regression/tests/bug-1408066.c: added
368
369 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
370
371         * src/SDCCicode.h,
372         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
373         renamed, added possibility to create "postLoopLbl"-labels
374         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
375         newiTempLoopHeaderLabel
376         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
377         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
378         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
379         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
380         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
381         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
382         (basicInduction): fixed bug #136564, made static,
383         (loopInduction): changed parameter of basicInduction, made static,
384         (addPostLoopBlock): added
385         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
386         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
387         findLoopEndSeq
388         * support/regression/tests/bug-136564.c: added
389         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
390         --std-sdcc99 to LIBSDCCFLAGS
391
392 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
393
394         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
395         while loop
396         * support/regression/tests/bug-1406131.c: added
397
398 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
399
400         * src/SDCCast.c (decorateType): fix promotion of unary minus
401         * src/SDCCsymt.c (computeType): beautified
402         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
403         (valUnaryPM, valComplement): fix sign and promotion,
404         (valNot): ANSI: result type is int (SDCC: unsigned char)
405         * support/regression/tests/uminus.c: speedup by removing superflous
406         test case 'int'
407         * support/regression/tests/onebyte.c: added promotion and signedness
408         tests for unary minus
409         * support/regressions/tests/bug-477927.c: disable warning about
410         uninitialized variables
411         * support/regression/tests/not.c: added
412
413 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
414
415         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
416         * src/mcs51/gen.c (gen51Code): show final register usage after
417         fillGaps in asm with --i-code-in-asm
418         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
419         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
420         incUsed, rliveClear, adjustIChain): made static,
421         (setFromRange): excluded because it's unused,
422         (findPrevUseSym, markWholeLoop): added,
423         (findPrevUse): rewritten; fixes bug 895992; now a complete search
424         through all branches of predecessors enables sdcc to emit the warning
425         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
426         (rlivePoint): made static, added parameter emitWarnings which is only
427         true during the first run out of two,
428         (findRecursiveSucc, findRecursivePred): removed,
429         (computeLiveRanges): made static, added parameter emitWarnings,
430         (dumpIcRlive): added for debugging only
431         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
432         removed prototype of setFromRange()
433         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
434         in call of computeLiveRanges()
435         * support/regression/tests/bug-895992.c: added
436         * support/regression/tests/bug-971834.c: added
437         * support/valdiag/tests/bug-895992.c: added
438         * support/valdiag/tests/bug-971834.c: added
439
440 2005-12-18 Raphael Neider <rneider AT web.de>
441
442         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
443           (genUnpackBits): improved code for direct operands,
444           (genPackBits): improved code for literal assignment to bitfields
445             and for direct destination operands (no FSR indirection),
446             prevented redundant AND, fixes #1362800,
447           (AccLsh): added parameter to disable masking of the result
448         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
449           skip instructions with side-effects (like incfsz),
450           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
451         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
452         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
453           fixes #1375263
454
455 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
456
457         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
458         volatile variables as spill location
459
460 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
461
462         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
463         replacing literals
464         * support/regression/tests/bug-1376320.c: added
465
466 2005-12-08 Raphael Neider <rneider AT web.de>
467
468         * src/pic/device.c: renamed is_shared to pic14_is_shared
469         * src/pic/gen.c (genIfx): re-enabled handling of sbits
470         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
471           (is_valid_identifier): added for above workaround
472
473 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
474
475         * device/lib/Makefile.in: fixed to enable port-specific-objects
476         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
477           char, thanks Hubert Sack
478         * doc/sdccman.lyx: documented --xstack-loc,
479           elaborated a bit more on interrupts and pitfalls,
480           removed "setjmp/longjmp unsupported",
481           documented some unsupported C99 features
482         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
483         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
484           if, thanks Hubert Sack
485         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
486         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
487           make make_library
488         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
489           regression tests can report resource usage (rfe 700441)
490         * support/regression/collate-results.py: report resource usage
491         * support/regression/ports/ds390/spec.mk,
492         * support/regression/ports/hc08/spec.mk,
493         * support/regression/ports/mcs51/spec.mk,
494         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
495         * support/regression/ports/ds390/uCsim.cmd,
496         * support/regression/ports/hc08/uCsim.cmd,
497         * support/regression/ports/mcs51/uCsim.cmd,
498         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
499         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
500           library, use the default one
501         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
502           building the library
503
504 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
505
506         * config.dsp: added dependency on .version and configure_vc.awk
507         * device/include/setjmp.h: updated for --stack-auto and --xstack
508         * device/include/mcs51/at89c51snd1c.h: corrected line endings
509         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
510         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
511         * device/lib/libsdcc.lib: added _setjmp
512         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
513           (decorateType): fixed bug 1372851,
514           (optimizeGetHbit): fixed warning
515         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
516           array initialisation
517         * support/regression/tests/bug1057979.c: added test for bug 1358192
518         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
519
520 2005-12-03 Borut Razem <borut.razem AT siol.net>
521
522         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
523           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
524
525 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
526
527         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
528         createIval): implement symbol independant "flexible array member",
529         (createIvalCharPtr): implemented flexible array initialisation with a
530         string
531         * src/SDCCsymt.c (copyStruct): removed,
532         (getSize): fixed misleading comment,
533         (getAllocSize): removed, the additional allocation size is now in
534         sym->flexArrayLength,
535         (checkStructFlexArray): new, syntax checks for flexible array members,
536         (compStructSize): added syntax checks for "flexible array members"
537         (copyStruct): removed,
538         (copyLinkChain): removed inefficient fix for bug 770487
539         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
540         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
541         symbol->flexArrayLength
542         * src/SDCCerr.c,
543         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
544         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
545         * support/regression/tests/structflexarray.c: added
546         * support/valdiag/tests/structflexiblearray.c: added
547
548 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
549
550         * src/SDCCast.c (decorateType): fixed bug 1368489
551         * support/Util/SDCCerr.c,
552         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
553
554 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
555
556         * device/include/mcs51/at89c51snd1c.h: added file submitted by
557           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
558
559 2005-11-27 Borut Razem <borut.razem AT siol.net>
560
561         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
562           support/cpp2/mkdeps.h: added command line option
563           -obj-ext=<extension> to SDCPP to define object file externion, used
564           for generation of make dependencies (-M)
565         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
566
567 2005-11-26 Borut Razem <borut.razem AT siol.net>
568
569         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
570           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
571           added pic and pic16 libraries
572
573 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
574
575         * device/include/float.h: Corrected typo in prototype of __fsgt
576
577 2005-11-25 Borut Razem <borut.razem AT siol.net>
578
579         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
580           added creation of model-mcs51-stack-auto libraries
581
582 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
583
584         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
585         and fields-list too
586         * src/SDCCast.c (createIvalArray): removed obsolete comment
587
588 2005-11-24 Borut Razem <borut.razem AT siol.net>
589
590         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
591           added missing device/lib/mcs51/crt*.asm sources
592
593 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
594
595         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
596
597 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
598
599         * device/lib/_fs2schar.c,
600         * device/lib/_fs2sint.c,
601         * device/lib/_fs2slong.c: optimized inline asm
602
603 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
604
605         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
606           Better handling of floats between -1.0 and 0.0.
607
608 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
609
610         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
611           (the missing "if"s prohibited removal of redundant labels)
612
613 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
614
615         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
616           Properly convert floats between -1.0 and 0.0 to long, int, and char
617           types (max integer value of negative floats tends to zero).
618         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
619           Removed changes made so to work properly with floats between
620           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
621           and _fs2char.c
622
623 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
624
625         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
626         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
627         (genCast) cosmetic change
628         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
629         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
630         from mcs51
631         * support/regression/tests/bitfields (testSignedBitfields): added
632
633 2005-11-18 Borut Razem <borut.razem AT siol.net>
634
635         * sdcc/device/lib/Makefile.in: remove all unnecessary files
636         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
637           introduced SILENT option to make building of pic16 libraries less
638
639 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
640
641         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
642           Now they work properly with floats between -1.0 and 0.0
643         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
644
645 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
646
647         * src/SDCCicode.c (printOperand): added missing else
648
649 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
650
651         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
652         reformatted for better readability
653         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
654         signed bitfields
655
656 2005-11-17 Borut Razem <borut.razem AT siol.net>
657
658         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
659           introduced SILENT option to make building of pic16 libraries less
660           verbose - used for nightly snapshot build
661         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
662           available on Win32 platforms.
663         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
664           medium, large, pic and pic16
665
666 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
667
668         * device/lib/printf_large.c: Temporary patch for bug 1358192:
669           printf("%f"...) sets fraction to zero.
670
671 2005-11-16 Raphael Neider <rneider AT web.de>
672
673         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
674           fixes #1357221
675         * src/pic/gen.c (genIfx): implemented for CARRY bit
676         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
677           to generic pointers, fixes #1357332,
678           (pic16_movLit2f): NEW,
679           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
680
681 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
682
683         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
684
685 2005-11-11 Raphael Neider <rneider AT web.de>
686
687         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
688         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
689           compute pointer's type from operand,
690           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
691           improved single bit reads, fixes bug #1353379
692
693 2005-11-09 Borut Razem <borut.razem AT siol.net>
694
695         * support/scripts/sdcc.nsi: added lib/pic to the package
696
697 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
698
699         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
700
701 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
702
703         * support/regression/tests/bug1348008.c: added
704         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
705         * support/regression/tests/bug1337835.c: updated comment
706
707 2005-11-06 Borut Razem <borut.razem AT siol.net>
708
709         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
710           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
711           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
712           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
713           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
714           dynamic construction of cl_error_class and derivates - 2.nd try
715
716 2005-11-05 Borut Razem <borut.razem AT siol.net>
717
718         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
719           bug, which caused Bus Errors on sparc solaris
720
721 2005-11-04 Borut Razem <borut.razem AT siol.net>
722
723         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
724           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
725           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
726           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
727           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
728           and derivates to resolve the initialization problem on OSX
729
730 2005-11-02 Borut Razem <borut.razem AT siol.net>
731
732         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
733           corrected typo - #include <winsock2.h>
734
735 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
736
737         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
738           (_asxxxx_mapping): added org directive for future enhancements
739
740 2005-11-01 Borut Razem <borut.razem AT siol.net>
741
742         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
743           enabled sockets on WIN32
744         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
745
746 2005-10-31 Borut Razem <borut.razem AT siol.net>
747
748         * support/regression/generate-cases.py: escape backslashes in {testcase}:
749           WIN32 backslash path delimiters should be escaped when used in C strings
750         * support/regression/tests/bitfields.c: exclude failing assertions for
751           __CYGWIN32__ and __MINGW32__ hosts
752
753 2005-10-30 Borut Razem <borut.razem AT siol.net>
754
755         * src/SDCCutil.c: corrected double comparison typo
756
757 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
758
759         * device/lib/medium/Makefile: added for new memory model medium
760         * device/include/asm/mcs51/features.h: updated for medium/pdata
761         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
762           added Multiply & Accumulate sbit's and MAC0_PAGE define
763         * device/include/mcs51/c8051f300.h: added sfr16 definitions
764         * device/include/mcs51/c8051f310.h: added sfr16 definitions
765         * device/lib/_mullong.c: update for medium model
766         * device/lib/incl.mk: added medium model
767         * doc/sdccman.lyx: documented medium model
768         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
769         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
770         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
771         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
772           (allocParms): set SCLS and OCLS to pdata for medium model
773         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
774           for pdata,
775           (powof2): return <0 if not power of 2
776         * src/avr/gen.c (genBitWise): use updated powof2
777         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
778           (shiftR2Left2Result): small optimization in setup, save acc when storing,
779           (shiftLLeftOrResult): use B if necessary
780         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
781         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
782         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
783         * support/regression/Makefile.in: added test-mcs51-medium
784         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
785
786 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
787
788         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
789         specifier unsigned
790         * device/lib/time.c (mktime): fixed bug 1334315
791
792 2005-10-28 Raphael Neider <rneider AT web.de>
793
794         * device/include/pic/p16f_common.inc: added common declarations
795         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
796
797 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
798
799         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
800           (aopPutUsesAcc): added to predict accumulator use,
801           (assignResultValue): save acc if necessary,
802           (genMinusDec): store result if indirectly addressed,
803           (genDivOneByte):  save acc if necessary,
804           (movLeft2Result): bugfix if left already in acc,
805           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
806             attention to accumulator use (esp. pdata),
807           (genReceive): receive pdata correctly
808         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
809         * src/SDCCicode.h: added isOperandInPagedSpace prototype
810
811 2005-10-27 Raphael Neider <rneider AT web.de>
812
813         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
814
815 2005-10-27 Raphael Neider <rneider AT web.de>
816
817         * .version: changed version to 2.5.4
818         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
819         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
820           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
821             arithmetics support routines
822         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
823         * device/lib/Makefile.in: also create installdir for pic
824
825         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
826           pic14 port as well
827         * src/pic/device.c (dump_sfr): rewritten to delegate register
828           placement to the linker (use `extern sym' rather than sym EQU addr),
829           (validAddress): fixed to check last specified address
830         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
831           (popGetLit): truncate literal value to 8 bit,
832           (popGet): moved assert to more appropriate place
833           (popGetExternal): create pCode operand from and mark the according
834             symbol as being `extern'
835           (popGetAddr): added sanity check on immediate's offset, provide
836             GPOINTER tag on demand
837           (aopPut): fixed for immediates,
838           (mov2w_op): move operand's address or contents to WREG (depending on
839             operand type), safer variant of mov2w,
840           (movwf,call_libraryfunc): NEW, handy abbreviations,
841           (get_argument_pcop,get_return_val_pcop,pass_argument,
842           get_returnvalue): interface for accessing function parameters and
843             return values,
844           (assignResultValuei,genRet): use new parameter/return value interface
845           (pic14_getDataSize): back to old version handling generic pointers,
846           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
847             provided implementation and/or fixed old one,
848           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
849             calls, removed legacy 8051 reference code
850           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
851           (loadSignToC): NEW, move the operands sign bit to CARRY,
852           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
853             genRightShiftSigned, accepts negative shift counts,
854           (setup_fsr): load FSR and adjust IRP (indirect memory access),
855           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
856             generic pointers, __data pointers and __code pointers,
857           (genUnpackBits,genPackBits): rewritten to work with generic pointers
858             and signed bitfields, limit bitfields to 8 bit,
859           (genDataPointerGet): fixed number of bytes read,
860           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
861           (genPointerGet,genPointerSet): fixed handling of __code pointers,
862             pointers to constant data are no longer assumed to point to __code
863             space, removed invalid pointer types,
864           (bitpatternFromVal): retrieve the PICs representation of an integer
865             or float literal,
866           (genDataPointerSet): fixed assigning to po_immediate operands,
867           (genGenPointerSet): implemented as library call,
868           (genIfx): fixed incorrect condition,
869           (genAddrOf): limit generic pointers' addresses to 2 bytes,
870             provide GPOINTER tag according to destination's storage class,
871           (genCast): added code to handle casting to generic pointers, added
872             sign-/zero extension of the result
873           (aop_isLitLike,op_isLitLike): fixed handling of immediates
874         * src/pic/gen.h: added macros to access IRP bit in STATUS register
875         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
876           extend the result
877         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
878           address/register resides in the shared banks
879           (emitSymbolToFile): improved to handle global and `pinned' symbols,
880             put all variables into separate sections (have the linker arrange
881             them)
882           (picglue): put init code and interrupt handlers in separate sections
883         * src/pic/main.c: added port specific options table, modified to PORT
884           structure to make GPOINTERs 3 byte, added pic14_options
885           (_pic14_do_link): private linking routine (update paths to libraries,
886             add libsdcc.lib by default)
887         * src/pic/main.h: declare pic14_options
888         * src/pic/pcode.c: fixed instructions i/o relations,
889           (RegCond): reverted to correct version,
890           (newpCodeOpLit): truncate literals to 8 bit,
891           (genericPrint): added debug output,
892           (getRegFromInstruction): fixed for various operand types, simplified
893           (BuildFlow): fixed broken handling of isntructions with labels
894           (LinkFlow): start at last instruction in flow (skip trailing comments),
895             pass the flow on to the next instruction after CALL
896           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
897           (insertPCodeInstruction): fixed inserting after a skip instruction,
898           (DoBankSelect): fixed for labeled instructions
899           (OptimizepBlock): honor --nopeep switch
900           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
901         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
902         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
903           (pCodeOptime2pCodes): allow disabling this optimization via
904             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
905             but is still buggy), started implementation of a dataflow based
906             pCode optimization (CSE + dead code elimination)
907           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
908         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
909           names are independant of the stack location and therefore portable across
910           devices
911
912 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
913
914         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
915           (selectSpil): fixed bug 1337835 by not spilling bit variables
916         * support/regression/tests/bug1337835.c: added test for this bug
917         * src/mcs51/peeph.def: restart after rule 3.c,
918           addded rules 263.x to optimize loading constants
919
920 2005-10-26 Raphael Neider <rneider AT web.de>
921
922         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
923         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
924           (genAssign): emit warning when casting literals to generic pointer
925             type, also applies when taking the address of a fixed variable,
926           (genCast): improved casting to generic pointers
927         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
928           extern variables, added verbose error message
929         * device/include/pic16/{string.h,errno.h}: added #pragma library c
930
931 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
932
933         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
934         carry must be complemented too
935         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
936         could be emitted by genMinus
937         * src/SDCCval.c (constVal): fixed bug 1305065
938
939 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
940
941         * src/SDCCast.c (addCast): added promotion for bit variables
942         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
943         promotion casts + optimisation
944         (optimizeGetWord): fix warning 'i' might be used uninitialized
945         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
946         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
947
948 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
949
950         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
951         all chars are promoted to int; promotion should be handled in SDCCast.c
952
953 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
954
955         * device/lib/_strcmp.c: Fixed bug 1326457
956
957 2005-10-11 Raphael Neider <rneider AT web.de>
958
959         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
960         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
961
962 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
963
964         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
965         * support/regression/tests/sfr16.c: added test for the sfr32 bug
966
967 2005-10-04 Raphael Neider <rneider AT web.de>
968
969         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
970           device/lib/pic16/pics.all: added pic18f1320
971         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
972
973 2005-09-30 Raphael Neider <rneider AT web.de>
974
975         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
976         * src/pic16/devices.inc: NEW, provides device descriptions
977         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
978
979 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
980
981         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
982           GETHBIT
983
984 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
985
986         * doc/sdccman.lyx: updated Highest Order Bit documentation,
987           documented Any Order Bit, Higher Order Byte and Higher Order Word
988         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
989         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
990           (optimizeGetAbit): new, to get any bit, not only the high bit,
991           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
992           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
993           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
994           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
995             RIGHT_OP: also try GETBYTE, GETWORD optimization,
996             GETABIT, GETBYTE, GETWORD: decorate them,
997           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
998           (ast_print): added GETABIT, GETBYTE, GETWORD
999         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1000         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1001           (geniCodeBinary): new generic binary icode,
1002           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1003         * src/port.h: updated comment for PORT.hasExtBitOp
1004         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1005           (genGetByte): new, to get a single byte,
1006           (genGetWord): new, to get a word from a long,
1007           (gen51Code): added GETABIT, GETBYTE, GETWORD
1008         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1009
1010 2005-09-23 Raphael Neider <rneider AT web.de>
1011
1012         * configure.in, configure: have device/lib/pic configured
1013         * device/lib/Makefile.in: added model-pic14
1014         * device/lib/clean.mk: added pic/ to clean rule
1015         * device/lib/pic: added rudimentary pic14 library providing support
1016           functions for multiplication/division/generic pointer access
1017         * src/SDCCopt.c (convilong): mark support functions as extern
1018           for pic14 port as well
1019         * src/pic/gen.c (genMult): added assertions,
1020           (genpic14Code): emit warning on unhandled iCodes
1021         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1022         * src/pic/pcode.c (pCodeOpCopy),
1023         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1024           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1025           SFR_REGISTER}), made safe for future extensions
1026         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1027           instructions even if preceeded by SKIP instructions (also remove
1028           them); removed unused code
1029         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1030           prevents leaving parts of the structure uninitialized after copying
1031
1032 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1033
1034         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1035           ago by me
1036         * support/regression/tests/addsub.c: added test for the bug
1037
1038 2005-09-21 Raphael Neider <rneider AT web.de>
1039
1040         * device/include/pic16/pic18f1220.h,
1041           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1042         * device/lib/pic16/Makefile.rules: added missing opening paren
1043         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1044           are provided in genutils.c,
1045           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1046           operand/result sizes,
1047           (genCmp): assert on NULL pointers first, then check deref'ed values
1048         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1049           result size
1050
1051 2005-09-18 Raphael Neider <rneider AT web.de>
1052
1053         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1054           as these are now unused,
1055           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1056         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1057           local, avoids uninitialized pointer dereference on r->name
1058         * src/pic16/ralloc.c (newReg): fixed indentation
1059
1060 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1061
1062         * src/SDCCval.c (constVal): fixed bug 730366
1063         * support/Util/SDCCerr.c,
1064         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1065
1066 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1067
1068         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1069
1070 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1071
1072         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1073
1074 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1075
1076         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1077           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1078         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1079           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1080         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1081         * packihx/packihx.c (hexDigit): made c unsigned char
1082         * as/mcs51/lklibr.c (fndsym),
1083         * link/z80/lkgb.c (gb),
1084         * link/z80/lklibr.c (fndsym),
1085         * link/z80/lkrloc.c (relr),
1086         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1087         * src/SDCC.lex (checkCurrFile, process_pragma),
1088         * src/SDCCglue.c (spacesToUnderscores),
1089         * src/SDCCmain.c (setParseWithComma, processFile),
1090         * src/asm.c (tvsprintf, printCLine),
1091         * src/avr/gen.c (emitcode, aopPut),
1092         * src/ds390/gen.c (emitcode),
1093         * src/hc08/gen.c (emitcode, emitinline),
1094         * src/mcs51/gen.c (emitcode, genInline),
1095         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1096           tokenizeLineNode),
1097         * src/pic/ralloc.c (debugLog),
1098         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1099           tokenizeLineNode),
1100         * src/pic16/ralloc.c (debugLog),
1101         * src/z80/main.c (_process_pragma):
1102            made all ctype.h function calls safe
1103         * src/SDCCopt.c: include math.h for fabs
1104         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1105           and used them throughout the code to make ctype.h function calls safe
1106         * src/ds390/main.c (asmLineNodeFromLineNode),
1107         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1108         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1109            unsigned char*
1110         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1111           (newpCodeAsmDir): made ctype.h function calls safe
1112         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1113           pic16_emitcode):  made lbp unsigned char*
1114         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1115           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1116         * src/xa51/gen.c (emitcode),
1117         * src/z80/gen.c (_emit2): made lbp unsigned char*
1118         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1119            char*
1120
1121 2005-09-05 Raphael Neider <rneider AT web.de>
1122
1123         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1124           access bank splitpoint
1125
1126 2005-09-05 Raphael Neider <rneider AT web.de>
1127
1128         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1129
1130 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1131
1132         * .version: changed to version 2.5.3
1133         * doc/sdccman.lyx: changed version to 2.5.3,
1134           documented --codeseg and --constseg and pragma codeseg and constseg,
1135           documented bit parameters (reentrant) and bit returning
1136         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1137            currFunc->recvSize, but is this ok for all ports?
1138           (ast2iCode): result of ~ on unsigned char must be cast to int for
1139            bool to work
1140         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1141           function pointers in bit space
1142         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1143           (processFuncArgs): call port.reg_parm() with reentrancy info
1144         * src/port.h,
1145         * src/avr/main.c,
1146         * src/ds390/main.c,
1147         * src/hc08/main.c,
1148         * src/pic/main.c,
1149         * src/pic16/main.c,
1150         * src/xa51/main.c,
1151         * src/z80/main.c: port.reg_parm prototype extended with
1152           "bool reentrant" parameter
1153         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1154           options.stackAuto for allocating bit register parameters
1155         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1156           (genSend): set BitBankUsed if it is,
1157           (selectRegBank): factored out of genCall for use in genPcall,
1158           (genCall): removed redundant dtype assignmen, use selectRegBank,
1159           (genPcall): handle returning in Carry properly, save in F0 if needed,
1160           (genReceive): handle bit register parameters
1161         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1162           (mcs51_assignRegisters): enable bit registers for all reentrant
1163            functions and don't set BitBankUsed unconditionally
1164         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1165         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1166         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1167
1168 2005-08-27 Borut Razem <borut.razem AT siol.net>
1169
1170         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1171         ppc-osx (Darwin) does not support -u option. It seems that it is
1172         supported only on Linux - GNU cp
1173
1174 2005-08-25 Borut Razem <borut.razem AT siol.net>
1175
1176         * sim/ucsim/gui.src/serio.src/Makefile.in,
1177           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1178           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1179           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1180           install and strip, since the strip at /usr/ccs/bin should be used
1181           on solaris
1182
1183 2005-08-24 Borut Razem <borut.razem AT siol.net>
1184
1185         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1186
1187 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1188
1189         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1190         ffffffffu
1191
1192 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1193
1194         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1195         * as/mcs51/lkmain.c (link_main): fixed warning
1196         * device/include/stdbool.h: ds390 has no advanced bit support yet
1197         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1198         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1199         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1200           and updated their macros
1201         * src/SDCCval.c (constVal): updated comment for renamed b_long
1202
1203 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1204
1205         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1206         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1207           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1208           (oprio): set priority for '['
1209         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1210            and adb_24_bit
1211         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1212         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1213         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1214         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1215           added overlayable BIT_BANK area
1216         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1217           (summary2): explain 'T' in legenda
1218         * as/mcs51/lkrloc.c: replaced old K&R style,
1219           (relr): added R_BIT processing,
1220           (errmsg): added "Bit-addressable relocation error",
1221           (adb_bit): added for converting from byte- to bit-addressable space,
1222           (adb_24_bit): added for converting from byte- to bit-addressable space
1223         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1224            used in reentrant functions now even as return value
1225         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1226         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1227           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1228         * src/SDCCglobl.h: added indicator BitBankUsed
1229         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1230            the bit registers b0-b7
1231         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1232           (geniCodeCast): fixed bug 1263853,
1233           (geniCodeLogicAndOr): put result in bool or char,
1234           (geniCodeReceive): added parameter func for accessing the return type,
1235           (geniCodeFunctionBody): pass func to geniCodeReceive
1236         * src/SDCCmain.c: added indicator BitBankUsed
1237         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1238         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1239           (checkSClass): don't put automatic bool/bit on stack,
1240           (checkFunction): removed check on function cannot return bit
1241         * src/SDCCsymt.h: added newBoolLink prototype
1242         * src/mcs51/gen.c (rb1regs): added bit registers,
1243           (movc): created for assigning to carry,
1244           (pushReg, popReg): created for pushing registers,
1245           (sameRegs): check both AOP_REG and AOP_CRY types,
1246           (aopOp): handle bit registers,
1247           (aopPut): optimization no self-assign,
1248           (saveRegisters): push reg->base (bits) only once for bit registers,
1249            and use pushReg,
1250           (unsaveRegisters): pop reg->base only once and use popReg,
1251           (assignResultValue): added parameter func and return in carry for bits,
1252           (genIpush): optimization no reload in A if not changed,
1253           (genSend): bit parameters in reentrant functions are passed in bit
1254            registers by first assigning to bits in B, then save registers and
1255            copy B to bits,
1256           (genCall): handle returning in Carry properly, save it in F0 if needed,
1257           (genPcall): updated assignResultValue call, this is not safe yet for bit
1258            returning function !!!
1259           (genFunction): don't generate equ's for bit registers and use pushReg,
1260           (genEndFunction): take care of bit returning functions and use popReg,
1261           (genRet): return bit in Carry,
1262           (genIfx): optimize bit registers and other directly addressable bits,
1263           (genReceive): updated assignResultValue call
1264         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1265           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1266            registers when using stack-auto
1267         * src/mcs51/ralloc.c (_G): added allBitregs,
1268           (regs8051): added the bit registers,
1269           (createStackSpil): use macro IS_BIT,
1270           (getRegBit): added to allocate a bit register, else spill,
1271           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1272           (updateRegUsage): factored out to ease stepping while debugging,
1273           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1274            also allocate bit registers,
1275           (fillGaps): handle bit registers,
1276           (findAllBitregs): added to create bit vector with all bit registers,
1277           (mcs51_allBitregs): returns this bit vector,
1278           (mcs51_assignRegisters): when using stack-auto use bit registers for
1279            passing parameters and creating local variables
1280         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1281
1282 2005-08-22 Borut Razem <borut.razem AT siol.net>
1283
1284         * device/lib/Makefile.in: replaced find option -or with -o
1285           to make it run on solaris
1286
1287 2005-08-22 Raphael Neider <rneider AT web.de>
1288
1289         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1290           fixes #1265442 (crash on Solaris)
1291
1292 2005-08-20 Borut Razem <borut.razem AT siol.net>
1293
1294         * configure, configure.in: added tests for libsocket and libnsl libraries,
1295           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1296           from support/regression/Makefile.in
1297         * support/regression/Makefile.in: added
1298         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1299         * sim/ucsim/libtool: regenerated on sparc-solaris
1300         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1301           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1302           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1303           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1304           sparc-solaris, which doesn't use GNU ld linker
1305         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1306         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1307
1308 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1309
1310         * src/mcs51/peeph.def: updated comments
1311
1312 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1313
1314         * device/lib/_gptrget.c,
1315         * device/lib/_gptrput.c: slightly shorter
1316         * doc/sdccman.lyx: incremented version
1317         * src/mcs51/peeph.def: moved peephole comments to the line of first
1318           change to better keep line correlation, reanimated 186.e
1319         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1320
1321 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1322
1323         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1324           David Saxton with quotes around file name.
1325
1326 2005-08-15 Borut Razem <borut.razem AT siol.net>
1327
1328         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1329           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1330           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1331           make tests run on x86_64 platform
1332
1333 2005-08-13 Raphael Neider <rneider AT web.de>
1334
1335         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1336           as it might be executed DURING a build (parallel make is wonderful)
1337
1338 2005-08-13 Raphael Neider <rneider AT web.de>
1339
1340         * device/lib/Makefile.in (port-specific-objects-pic16):
1341           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1342         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1343           dependency
1344         * device/lib/pic16/Makefile.rules: build subdirs before creating
1345           the library, removed builddir rule, create $(builddir) early in
1346           recurse rule, use empty recurse rule for leaf directories
1347         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1348           mkdir errors (race condition), removed duplicate suffix "hex"
1349           from clean rules
1350         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1351         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1352           prevents mkdir -p from aborting on Alpha
1353
1354 2005-08-12 Raphael Neider <rneider AT web.de>
1355
1356         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1357           db-statements in order to allow for arrays of pointers in code
1358           sections to be placed without interspersed 0-padding, fixes
1359           bug #1256215
1360         * (emitStatistics): fixed division by zero for pic18f1220
1361         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1362           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1363         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1364         * (pic16_pCodeConstString): keep track of already emitted string
1365           literals to prevent "duplicate definitions of symbol _str_NR"
1366         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1367           debug message
1368         * device/lib/Makefile.in: ignore failing PIC16 library builds
1369         * device/lib/pic16/Makefile: do not build if gputils are missing
1370         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1371
1372 2005-08-10 Raphael Neider <rneider AT web.de>
1373
1374         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1375           my last commit)
1376
1377 2005-08-10 Raphael Neider <rneider AT web.de>
1378
1379         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1380           Rokas' patch to add the new fixed point type "__fixed16x16"
1381         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1382           functions for __fixed16x16 arithmetics
1383         * device/lib/pic16: reimplemented the build system to support
1384           a separate build directory, better handling of libio (create
1385           the library in a separate subdir for each architecture) and
1386           easier configuration (centralized in Makefile.common)
1387
1388 2005-08-07 Raphael Neider <rneider AT web.de>
1389
1390         * src/pic16/gen.c (genrshTwo): fixed sign extension
1391         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1392         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1393           added T0CONbits
1394         * device/include/pic16/pic18f4220.h: NEW, header for
1395           pic18f4220 and pic18f4320
1396         * device/include/pic16/pic18fregs.h: added new devices,
1397           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1398         * device/include/pic16/signal.h: resolved name clashes
1399           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1400           to also allow testing for interrupt enable bits, added
1401           comments on how to use the macros
1402         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1403         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1404           register definitions for the devices
1405         * device/lib/pic16/pics.all: added new devices
1406         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1407           allocated memory
1408         * device/lib/pic16/libc/stdlib/memfree: do not count
1409           the block header as free memory
1410         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1411           simplified and added missing end-of-blocklist-marker
1412           (reported by Peter Onion, fixes #1252814)
1413         * (_mergeHeapBlock): fixed loop condition
1414         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1415           len==0, restructured code
1416         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1417           up a bit, reduced bitfield accesses, prevent endless loops
1418           in case of heap corruption
1419         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1420           "unreferenced arguments/must return a value" warnings
1421         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1422           replaced BAUDREG with SPBRG
1423         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1424           device/lib/pic16/debug/gstack/gstack.c: replaced
1425           _naked, _asm, _endasm with __naked, __asm, __endasm
1426
1427 2005-08-05 Raphael Neider <rneider AT web.de>
1428
1429         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1430           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1431
1432 2005-08-05 Borut Razem <borut.razem AT siol.net>
1433
1434         * device/lib/Makefile.in: added missing ';'
1435         * configure: removed ^M characters
1436
1437 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1438
1439         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1440           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1441           License
1442
1443 2005-08-04 Borut Razem <borut.razem AT siol.net>
1444
1445         * configure.in: pic16 libraries build 2nd try - enable running
1446           configure in device/lib/pic16
1447         * configure: regenerated from configure.in
1448         * device/lib/Makefile.in: create $(PORT)/bin directory
1449
1450 2005-08-03 Raphael Neider <rneider AT web.de>
1451
1452         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1453           to get/set values via pointers
1454         * (genUnpackBits,genPackBits): changed detection of
1455           ptr->bitfield vs. sym.bitfield, fixed access via generic
1456           pointers, removed dead (wrong) code for multibyte bitfields
1457         * (genNearPointerGet, genGenPointerGet): removed useless code,
1458           fixed bitfield detection, fixes #1250594
1459         * (genNearPointerSet): removed useless code
1460         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1461           and introduced macro pic16_emitpcode that conditionally emits
1462           the origin of the following pCode (useful for debugging SDCC)
1463         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1464         * (createDefmap): fixed handling of LFSR for --optimize-df
1465
1466 2005-08-02 Borut Razem <borut.razem AT siol.net>
1467
1468         * device/lib/Makefile.in: pic16 libraries build enabled since
1469           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1470
1471 2005-08-02 Raphael Neider <rneider AT web.de>
1472
1473         * src/pic16/gen.c (genPackBits): removed deprecated warning
1474         * (genGenPointerSet): fixed bitfield detection
1475
1476 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1477
1478         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1479
1480 2005-07-31 Raphael Neider <rneider AT web.de>
1481
1482         * device/lib/pic16/libdev/pic18f458.c,
1483           device/include/pic16/pic18f458.h: added missing T0CONbits
1484
1485 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1486
1487         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1488
1489 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1490
1491         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1492
1493 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1494
1495         * device/include/mcs51/at89c51ed2.h: added.
1496
1497 2005-07-23 Raphael Neider <rneider AT web.de>
1498
1499         * src/pic/gen.h: added emitpcode macro for debugging
1500         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1501           and replace by macro adding debug information on demand
1502         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1503         * (gencjne): tried to fix; replaced with correct (slower) code
1504         * (gen{Unp,P}ackBits): fixed single bit access
1505         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1506         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1507           previous instruction
1508         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1509           register has to be handled with care (forbidding movement
1510           of assignments/uses, removing assignments completely, ...)
1511         * (pCodeOptime2pCodes): make use of regIsSpecial
1512         * added lots of debugging output (commented out)
1513         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1514           from being reused as result UNLESS it is known to work
1515
1516 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1517
1518         * support/Util/dbuf.h: include <stddef.h> for size_t
1519         * .version: changed to version 2.5.2
1520
1521 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1522
1523         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1524
1525 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1526
1527         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1528           (genModOneByte): removed needless psha/pula
1529
1530 2005-07-22 Raphael Neider <rneider AT web.de>
1531
1532         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1533           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1534         * src/pic/gen.c (resolveIfx): do not "invent" labels
1535         * (genSkipc): changed to positive logic
1536         * (genSkipCond): removed as no longer needed
1537         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1538           backport from PIC16
1539         * (genLeftShift): check operands are in different registers
1540         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1541           INCF does not update CARRY...
1542         * src/pic/main.c: fixed _linkCmd
1543         * src/pic/pcode.c (unlinkpCode): added inactive code
1544         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1545           alive (do not assign result and operand overlapping registers)
1546
1547 2005-07-22 Raphael Neider <rneider AT web.de>
1548
1549         * src/pic/device.c (dump_sfr): replaced register declaration with
1550           call to emitSymbolToFile() to avoid duplicate symbols
1551         * (assignRelocatableRegisters): do not declare external symbols
1552         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1553           right (take size of type, not etype)
1554         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1555         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1556         * (packRegsForAccUse): disabled assignment of WREG as
1557           the result reg to prevent occurence of just fixed #1235003,
1558           fixes #1242954
1559         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1560           symbols (avoids duplicate symbols in .asm file)
1561         * (pic14emitRegularMap): use emitSymbolToFile()
1562         * src/pic/gen.c (aopOp): fixed spillLocation handling
1563         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1564         * (genDataPointerSet): removed unneccessary variables/output
1565
1566 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1567
1568         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1569         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1570
1571 2005-07-21 Raphael Neider <rneider AT web.de>
1572
1573         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1574           architecture cannot handle them efficiently, fixes bug #1235003
1575         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1576           check for empty sets before using them (fixes bug #1232190)
1577
1578 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1579
1580         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1581           (lnksect2): generate warnings for memory overlap
1582         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1583           constseg to set the name of these segments so you can instruct the linker
1584           to place them in banks
1585         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1586         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1587           added code_seg and const_seg to options
1588         * src/SDCCglue.c (emitMaps): use options.const_seg,
1589           (createInterruptVect): put interrupt vectors in segment HOME,
1590           (glue): put HOME before static segment and put the main glue in HOME,
1591           (glue): use options.code_seg
1592         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1593         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1594           these segments so you can instruct the linker to place them in banks
1595           (linkEdit): use code_loc for HOME segment which should be the first
1596           segment in code memory now
1597         * src/SDCCmem.c: fixed more stuff like bug 1238386
1598         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1599           (changePointer): don't change function pointers to code pointers for
1600           banked functions,
1601           (compareType): added exceptional check for banked function pointers
1602         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1603         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1604           after static in code memory
1605         * src/mcs51/gen.c: added aopLiteralLong prototype,
1606           (aopForSym): use getSize for functions,
1607           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1608           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1609           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1610           the segment,
1611           (genPcall): use call for literal function pointers and generate banked
1612           calls over the one trampoline so there's only one place for the user to
1613           modify according to his/hers hardware,
1614           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1615           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1616         * src/mcs51/main.c: added keyword banked,
1617           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1618         * support/Util/SDCCerr.c,
1619         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1620           needed for passing the bank and address to the trampoline
1621         * device/lib/mcs51/crtbank.asm: added for bankswitching
1622         * device/lib/mcs51/Makefile: added crtbank
1623
1624 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1625
1626         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1627           for fields at offset 0 of a struct or union as reported
1628           on 2005-07-07 in the developer mailing list.
1629
1630 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1631
1632         * src/SDCCmem.c: fixed bug 1238386
1633
1634 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1635
1636         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1637           (patch #1144962), added peephole 300, enabled 259.x
1638         * doc/sdccman.lyx: removed screenshot and provided link instead
1639
1640 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1641
1642         * doc/sdccman.lyx: added section about debugging with ddd
1643         * doc/figures/ddd_example.eps: screenshot of debugging session
1644
1645 2005-07-04 Raphael Neider <rneider AT web.de>
1646
1647         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1648           like CODE pointers, fixes #1115683
1649         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1650           call, fixes bugs #1232211, #1228110,
1651           fixed wrong casts to pCodeFlow from pCodeInstructions
1652
1653 2005-07-04 Raphael Neider <rneider AT web.de>
1654
1655         * src/pic/gen.c (popGet): changed assert to allow for
1656           bit operands
1657         * (popGetAddr): changed signature to provide
1658           an additional index, patched all call sites
1659         * (genCmpEq): handle literal-like operands correctly
1660         * (genAddrOf): added sanity checks on __code/__data pointers
1661         * (genAssign): added handling of symbols from __code section
1662         * (gencjne): do not generate code for comparisons whose result
1663           is neither stored nor used, fixes bug #1171114
1664         * (AccLsh, AccRsh): operate on operand instead of WREG
1665         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1666           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1667           by known count
1668         * rewrote complete shift-by-literal logic, commented unused
1669           functions out
1670         * (genConstPointerGet): get multiple bytes (if result size > 1),
1671           fixed handling of non-immediate addresses
1672         * (genPointerGet): handle CODE pointers like CONST pointers
1673         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1674         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1675           operand is to be treated as a literal or not
1676         * (mov2w,genPcall,genCmpEq),
1677           src/pic/genarith.c: use aop_isLitLike() to decide between
1678           literal/register contents
1679         * (addSign): added missing offset
1680         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1681           only emit comment in debug-mode,
1682           use {aop,op}_isLitLike throughout the file
1683         * src/pic/glue.c: fix initializers for pointers (work in progress)
1684         * src/pic/pcode.c (get_op): honor index on _const symbols
1685         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1686         * (dumppBlock): added pCode size estimation
1687         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1688           check for IS_SYMOP before OP_SYMBOL'ing
1689         * fixed indentation, compacted switch-statements
1690         * (allocReg): find free register and allocate it instead of
1691           allocating new registers all the time
1692         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1693           registers as its operands (necessary only for multibyte GETs)
1694
1695 2005-07-01 Raphael Neider <rneider AT web.de>
1696
1697         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1698           debugging .asm-output macros FENTRY + FEXIT
1699         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1700           way... I wonder...
1701         * (emitpComment): NEW, printf to pCode
1702         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1703           offset handling
1704         * (popGetAddr): NEW, variant of popGet to access an immediates
1705           high(er) bytes instead of the n'th byte of memory they reference,
1706           replaced popGet with popGetAddr where neccessary
1707         * (genDataPointerGet): reactivated and fixed implementation
1708         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1709           accesses
1710         * (genDataPointerSet): fixed multibyte assignments
1711         * (genpic14Code): fixed --i-code-in-asm handling
1712         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1713         * (genPlus): fixed index-out-of-bounds error
1714         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1715         * src/pic/ralloc.c: added debugging output macro FENTRY2
1716         * (spillThis): fixed indentation, enbraced for-body for clarity
1717         * (rematStr): commented out as now unused
1718         * (regTypeNum): commented out special spill case (overwrites
1719           arbitrary values)
1720         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1721
1722 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1723
1724         * doc/sdccman.lyx: documented sfr16/sfr32,
1725           added example for using storage class with function pointers
1726         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1727
1728 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1729
1730         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1731         * device/lib/_itoa.c,
1732         * device/lib/_ltoa.c: optimized codesize
1733         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1734           but don't know how to suppress the double warning.
1735         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1736         * support/Util/SDCCerr.c,
1737         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1738
1739 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1740
1741         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1742           fixed old K&R prototypes
1743         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1744         * device/lib/_gptrget.c,
1745         * device/lib/_gptrgetc.c,
1746         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1747           also new versions for small generic pointers and banked generic pointers
1748         * src/port.h: added const_name
1749         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1750         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1751         * src/SDCCcse.c (findPrevIc): check all associative operators
1752         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1753         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1754         * src/SDCCmem.c: updated comments,
1755           set far-space to 0 for pdata, results in optimized code
1756         * src/SDCCmem.h: added macro CONST_NAME
1757         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1758           moving the info into the highest bits, see also gptrget/gptrput
1759         * src/src.dsp: added sdcc.ico to project files
1760         * src/avr/gen.c (genCast): fixed bug 0x%d
1761         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1762         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1763           relation between ptr_type and DCL_TYPE,
1764           (genCast): fixed bug 0x%d
1765         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1766           (CODE)" for const_name
1767         * src/hc08/gen.c (genCast): fixed bug 0x%d
1768         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1769           (hc08_port): added "CONST (CODE)" for const_name
1770         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1771           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1772           between ptr_type and DCL_TYPE,
1773           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1774           operand* and took AOP() inside function so sfr-ness can be checked,
1775           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1776           new prototype,
1777           (genFunction, genEndFunction): optimized stack setup,
1778           (genMinus): optimized for literals with ending zeroes (in bytes),
1779           (genCast): fixed bug 0x%d
1780         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1781           (mcs51_port): added "CONST (CODE)" for const_name
1782         * src/mcs51/peeph.def: made rule 226 more generic
1783         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1784         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1785         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1786         * src/z80/main.c (z80_port): added NULL for const_name,
1787           (gbz80_port): added NULL for const_name
1788         * support/regression/tests/bug663539.c,
1789         * support/regression/tests/sfr16.c: new tests
1790
1791 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1792
1793         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1794
1795 2005-06-24 Raphael Neider <rneider AT web.de>
1796
1797         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1798           corrected typos...
1799         * device/include/pic16/signal.h: added USBIF
1800           and SIG_USB
1801
1802 2005-06-24 Raphael Neider <rneider AT web.de>
1803
1804         * device/lib/pic16/libdev/pic18f2455.c,
1805           device/include/pic16/pic18f2455.h: NEW
1806         * device/include/pic16/pic18fregs.h,
1807           device/lib/pic16/pics.all,
1808           src/pic16/device.c: added 18f2455
1809         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1810           device/include/pic16/{pic18f[68][567].h,usart.h}:
1811           replaced MULTIPLE_USARTS define with more relaible
1812           compatibility sfrs (for USART access)
1813
1814 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1815
1816         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1817           and the output asm file line is printed on two lines.
1818
1819 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1820
1821         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1822           BGT, BLE, BHI, and BLS instructions
1823         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1824           genCmpEq): removed
1825         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1826           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1827           fixes bug #1216342
1828         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1829
1830 2005-06-15 Raphael Neider <rneider AT web.de>
1831
1832         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1833         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1834         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1835           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1836           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1837
1838 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1839
1840         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1841           Marcel Telka in bug #1215704
1842
1843 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1844
1845         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1846           located in shared memory bank.
1847
1848 2005-05-31 Raphael Neider <rneider AT web.de>
1849
1850         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1851           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1852           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1853
1854 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1855
1856         * device/lib/_strncpy.c: fixed the fix
1857
1858 2005-05-26 Raphael Neider <rneider AT web.de>
1859
1860         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1861           initializers with \0, bug #1208187
1862         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1863           intializers with \0, bug #1208187
1864
1865 2005-05-26 Raphael Neider <rneider AT web.de>
1866
1867         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1868           initializers with \0, bug #1208187
1869         * src/pic16/main.c (_process_pragma): added sanity checks
1870           for stack position and size, emit warnings when appropriate
1871
1872 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1873
1874         * device/lib/_strncpy.c: fixed not filling with \0
1875
1876 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1877
1878         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1879           createFunction),
1880         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1881           compound_statement),
1882         * src/SDCCsymt.h,
1883         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1884
1885 2005-05-24 Raphael Neider <rneider AT web.de>
1886
1887         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1888
1889 2005-05-24 Raphael Neider <rneider AT web.de>
1890
1891         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1892           TRISE definitions, closes bug #1162453
1893
1894 2005-05-22 Raphael Neider <rneider AT web.de>
1895
1896         * src/pic16/main.c (_process_pragma): check for missing
1897           arguments to pragmas code and udata
1898         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1899           consistency fixes to match other headers (thanks to Jim Paris)
1900         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1901
1902 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1903
1904         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1905
1906 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1907
1908         * support/regression/tests/bug1198642.c: new test
1909         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1910         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1911         * support/scripts/resource.h,
1912         * support/scripts/resource.rc,
1913         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1914         * support/scripts/sdcc.ico: added 32x32 icon
1915
1916 2005-05-18 Raphael Neider <rneider AT web.de>
1917
1918         * device/lib/pic16/libdev/pic18f*.c,
1919         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1920           keywords to "__sfr" and "__at (X)"
1921         * device/include/pic16/pic18fregs.h: added pic18f4520
1922         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1923           #1203088 (MPLAB compatibility)
1924
1925 2005-05-17 Raphael Neider <rneider AT web.de>
1926
1927         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1928         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1929         * device/lib/pic16/pics.all: added new devices
1930         * src/pic16/device.c: added support for pic18f4520
1931
1932 2005-05-16 Raphael Neider <rneider AT web.de>
1933         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1934         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1935         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1936           convenience function for bit access
1937
1938 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1939
1940         * device/lib/printf_large.c: fixed bug 1193299
1941         * support/regression/tests/bug1057979.c: added test %3.3s
1942
1943 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1944
1945         * device/include/mcs51/8051.h,
1946         * device/include/mcs51/8052.h: made parseable with lint
1947         * device/include/mcs51/lint.h: added include file for (sp)lint
1948         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1949         * doc/cdbfileformat.lyx,
1950         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1951
1952 2005-05-14 Raphael Neider <rneider AT web.de>
1953
1954         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1955         * device/lib/pic16/libc/stdlib/itoa.c (new)
1956         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1957         * device/lib/pic16/libio/Makefile: exclude subdir according to
1958           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1959         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1960         * src/pic16/gen.c (genFunction): prevent annoying warning
1961         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1962           nameclashes on BeOS
1963         * support/cpp2/cppmain.c (cpp_output_string): new
1964         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1965           fixes bug 1116802
1966
1967 2005-05-13 Borut Razem <borut.razem AT siol.net>
1968
1969         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1970
1971 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1972
1973         * .version: changed to version 2.5.1; back to bleeding edge development
1974
1975 2005-05-11 Borut Razem <borut.razem AT siol.net>
1976
1977         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1978           generate PDF version 1.3 documents
1979
1980 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1981
1982         * .version: changed to version 2.5.0
1983
1984 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1985
1986         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1987
1988 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1989
1990         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1991         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1992         well as many smaller updates.
1993         * .version: changed to version 2.5.0-pre1
1994
1995 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1996
1997         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1998
1999 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2000
2001         * support/regression/tests/bug1185672.c: added
2002         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2003           bug 1185672
2004         * src/mcs51/gen.c (genCall): added comments, made it look safer
2005         * src/mcs51/gen.c (genEndFunction): simplified
2006
2007 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2008
2009         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2010
2011 2005-04-14 Borut Razem <borut.razem AT siol.net>
2012
2013         * fixed bug 1045046 - SIGSEGV with really simple code?:
2014           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2015           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2016
2017 2005-04-14 Borut Razem <borut.razem AT siol.net>
2018
2019         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2020           src/pic16/device.h: temporarily disabled experimental #inline pragma
2021           for 2.5.0 release
2022
2023 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2024
2025         * device/include/z80/stdio.h,
2026         * device/include/z80/string.h: removed these highly incomplete files so
2027           SDCC can use the default ones in device/include/
2028
2029 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2030
2031         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2032         gcc warning.
2033         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2034         fix sdcpp warnings.
2035
2036 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2037
2038         * device/include/malloc.h: removed redundant __reentrant prototypes
2039         * device/lib/_mullong.c: added working xstack variant in asm (C version
2040           doesn't pass regression tests)
2041         * device/lib/bpx.c: used __data and made bpx char for mcs51
2042         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2043           (createFunction): fixed bug with xstackPtr
2044         * src/SDCCcse.c: corrected comments
2045         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2046           (killDeadCode, eBBlockFromiCode): removed unused code
2047         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2048           corrected comments
2049         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2050           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2051           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2052           (genModOneByte): fixed warning in MSVC
2053         * src/mcs51/main.c (): added comments
2054         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2055
2056 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2057
2058         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2059
2060 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2061
2062         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2063
2064 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2065
2066         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2067         characters arrays of larger size than the declared one.
2068
2069 2005-04-10 Borut Razem <borut.razem AT siol.net>
2070
2071         * src/pic/gen.c (genInline),
2072           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2073           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2074           (findNextInstruction), (findPrevInstruction),
2075           (findInstructionUsingLabel),
2076           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2077         * src/pic/pcode.c (findLabel): added missing '\n'
2078         * src/src.dsp: added SDCCdwarf2.c to the project
2079
2080 2005-04-09 Borut Razem <borut.razem AT siol.net>
2081
2082         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2083
2084 2005-04-08 Raphael Neider <rneider AT web.de>
2085
2086         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2087           into the chain after a given one) and mergeDefmapSymbols (combine
2088           defmap entries for each symbol per pcode)
2089         * (createDefmap): have defmap entries merged in the end
2090         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2091           a symbol before replacing one access type's symbol, merge symbols in
2092           the end (replacement symbol might already have an entry)
2093         * (assignValnums): keep reference to written WREG intact
2094
2095 2005-04-08 Raphael Neider <rneider AT web.de>
2096
2097         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2098           Alpha)
2099
2100 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2101
2102         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2103         bytes
2104
2105 2005-04-07 Raphael Neider <rneider AT web.de>
2106
2107         * device/include/pic16/usart.h: added compatibility defines for
2108           devices with more than one USART
2109         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2110
2111 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2112
2113         * device/lib/Makefile.in: updated for port specific include
2114
2115 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2116
2117         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2118
2119 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2120
2121         * device/include/8051.h,
2122         * device/include/8052.h,
2123         * device/include/at89S8252.h,
2124         * device/include/at89c55.h,
2125         * device/include/at89x051.h,
2126         * device/include/at89x51.h,
2127         * device/include/at89x52.h,
2128         * device/include/mcs51reg.h,
2129         * device/include/reg51.h,
2130         * device/include/reg764.h,
2131         * device/include/regc515c.h,
2132         * device/include/sab80515.h: (re)moved these 12 files
2133         * device/include/mcs51/8051.h,
2134         * device/include/mcs51/8052.h,
2135         * device/include/mcs51/at89S8252.h,
2136         * device/include/mcs51/at89c55.h,
2137         * device/include/mcs51/at89x051.h,
2138         * device/include/mcs51/at89x51.h,
2139         * device/include/mcs51/at89x52.h,
2140         * device/include/mcs51/mcs51reg.h,
2141         * device/include/mcs51/reg51.h,
2142         * device/include/mcs51/reg764.h,
2143         * device/include/mcs51/regc515c.h,
2144         * device/include/mcs51/sab80515.h: and added them here
2145
2146 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2147
2148         * device/include/stdarg.h: changed SDCC specific keywords to double
2149           underlined form.
2150         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2151           mcs51 and ds390.
2152         * device/include/hc08/mc68hc908gp32.h,
2153         * device/include/hc08/mc68hc908jb8.h,
2154         * device/include/hc08/mc68hc908jkjl.h,
2155         * device/include/hc08/mc68hc908qy.h: fixed comments
2156         * device/include/mcs51/README: updated
2157         * device/include/mcs51/c8051f120.h: added PINRSF
2158         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2159         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2160           amidst code. Also inline is not supported.
2161
2162 2005-04-06 Raphael Neider <rneider AT web.de>
2163
2164         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2165         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2166           callers stack/frame pointers
2167
2168 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2169
2170         * device/include/pic16/usart.h: added, missing in previous commit,
2171         * device/include/pic16/adc.h: fixed typo,
2172         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2173         commit,
2174         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2175         <p18fxxx.inc>
2176         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2177         uninitialized because a bug appears with gplink
2178         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2179         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2180         complains for unrecognised option
2181
2182 2005-04-05 Raphael Neider <rneider AT web.de>
2183
2184         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2185           structs as well (using memcpy)
2186         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2187           on ISRs (GOTO has no label)
2188         * src/pic16/device.h: added OF_OPTIMIZE_DF
2189         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2190           new data flow analysis/optimization
2191         * src/pic16/pcode.c: added (prototypes for and implementation of)
2192           dataflow analysis functions, fixed pCodeInstructions' inCond and
2193           outCond values, made RCALL a branch instruction
2194         * (pic16_unlinkpCode): keep C line if possible
2195         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2196           C line moved if possible
2197         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2198         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2199           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2200         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2201           new flow)
2202         * (pic16_getJumptabpCode): NEW, needed in...
2203         * (LinkFlow): fixed handling of jumptables, calls and conditional
2204           branches
2205         * (pic16_InsertCommentAfter): NEW
2206         * (pic16_pCodeReplace): made verbose and flow preserving
2207         * (AnalyzeFlow): added call to data flow analysis
2208         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2209         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2210         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2211
2212 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2213
2214         * src/SDCCast.c (decorateType): fixed bug #1105626
2215
2216 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2217
2218         * device/include/asm/pic16/features.h,
2219         * pic18f*.h headers,
2220         * device/include/pic16/adc.h,
2221         * device/include/pic16/delay.h,
2222         * device/include/pic16/i2c.h,
2223         * device/include/pic16/malloc.h,
2224         * device/include/pic16/stdio.h,
2225         * device/include/pic16/stdlib.h,
2226         * device/include/pic16/string.h,
2227         * device/lib/pic16/libc/stdio/printf_tiny.c,
2228         * device/lib/pic16/libc/stdio/printf_small.c,
2229         * device/lib/pic16/libc/stdio/strmgpsim.c,
2230         * device/lib/pic16/libc/stdio/strmmssp.c,
2231         * device/lib/pic16/libc/stdio/strmusart.c,
2232         * device/lib/pic16/libc/stdio/vfprintf.c,
2233         * device/lib/pic16/libc/stdlib/ltoa.c,
2234         * device/lib/pic16/libc/stdlib/putchar.c,
2235         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2236         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2237         * device/lib/pic16/libc/stdlib/memchrram.c,
2238         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2239         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2240         * device/lib/pic16/libio/adc/adcbusy.c,
2241         * device/lib/pic16/libio/adc/adcread.c,
2242         * device/lib/pic16/libio/adc/adcsetch.c,
2243         * device/lib/pic16/libio/usart/ubaud.c,
2244         * device/lib/pic16/libio/usart/ubusy.c,
2245         * device/lib/pic16/libio/usart/udrdy.c,
2246         * device/lib/pic16/libio/usart/uopen.c,
2247         * device/lib/pic16/libio/usart/uputc.c,
2248         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2249         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2250         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2251         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2252         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2253         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2254         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2255         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2256         specific keywords to double underlined form,
2257         * device/lib/pic16/libc/Makefile.rules,
2258         * device/lib/pic16/libsdcc/Makefile.rules,
2259         * device/lib/pic16/libm/Makefile,
2260         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2261         to compile with C standard set in Makefile.common
2262         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2263         rand.c and crc.c in compilation process,
2264         * device/lib/pic16/libsdcc/int/divuint.c,
2265         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2266         `c' from signed to unsigned,
2267         * device/lib/pic16/startup/crt0.c,
2268         * device/lib/pic16/startup/crt0i.c,
2269         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2270         keywords to double underlined form, bug fixes in _do_cinit function
2271         which prevented the correct initialization of the .idata segment,
2272         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2273         core to enter a infinite loop
2274         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2275
2276 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2277
2278         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2279
2280 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2281
2282         * device/include/Makefile.in: add support for hc08 subdirectory
2283         * device/include/hc08/: new subdirectory
2284         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2285         Lucas Loizaga, thanks!
2286         * device/include/hc08/mc68hc908qy.h,
2287         * device/include/hc08/mc68hc908gp32.h,
2288         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2289         their own directory. Changed internal macro names to use the compiler
2290         reserved namespace. Changed SDCC specific keywords to double
2291         underlined form.
2292         * device/include/math.h,
2293         * device/include/malloc.h,
2294         * device/include/stdarg.h,
2295         * device/include/stdbool.h
2296         * device/include/string.h,
2297         * device/include/tinibios.h,
2298         * device/include/ds400rom.h,
2299         * device/include/8051.h,
2300         * device/include/8052.h,
2301         * device/include/80c51xa.h,
2302         * device/include/at89c55.h,
2303         * device/include/at89S8252.h,
2304         * device/include/at89x51.h,
2305         * device/include/at89x52.h,
2306         * device/include/ds80c390.h,
2307         * device/include/reg764.h,
2308         * device/include/regc515c.h,
2309         * device/include/sab80515.h,
2310         * device/include/mcs51/c8051f000.h,
2311         * device/include/mcs51/c8051f018.h,
2312         * device/include/mcs51/c8051f020.h,
2313         * device/include/mcs51/c8051f040.h,
2314         * device/include/mcs51/c8051f060.h,
2315         * device/include/mcs51/c8051f120.h,
2316         * device/include/mcs51/c8051f300.h,
2317         * device/include/mcs51/c8051f310.h,
2318         * device/include/mcs51/c8051f320.h,
2319         * device/include/mcs51/c8051f330.h,
2320         * device/include/mcs51/c8051f350.h,
2321         * device/include/z180.h: Changed SDCC specific keywords to double
2322         underlined form.
2323
2324 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2325
2326         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2327         18F4455,
2328         * (pic16_assignConfigWordValue): disable testing of configuration
2329         register value with config mask,
2330         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2331         function with port->fun_prefix,
2332         * (genFunction): when generating a naked interrupt function never
2333         create an absolute segment placed in interrupt vector address, place
2334         the actual interrupt function at IVA instead, when an interrupt
2335         function is generated with unspecified interrupt then do not create
2336         the absolute section,
2337         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2338         code for generating a call to generic pointer get/put function with
2339         a call to function pic16_callGenericPointer(),
2340         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2341         the call to the generic pointer get/put functions with prefixing the
2342         function name with port->fun_prefix,
2343         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2344         * src/pic16/main.c (_process_pragma): prefix function with
2345         port->fun_prefix,
2346         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2347         calling assembler, old 18Fxxxx macro is deprecated,
2348         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2349         PC_ASMDIR in while condition,
2350         * (findInstruction): add PC_ASMDIR in while condition,
2351         * (buildCallTree): prefix main with port->fun_prefix,
2352         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2353         identifier for variable with banked access in instructions BTFSS,
2354         BTFSC, BCF, BSF, BTG
2355         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2356         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2357         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2358         perform optimization when enviroment variable NO_REG_OPT is set,
2359         * (insideLRBlock): NEW, return 1 if register is inside an
2360         INF_LOCALREGS block,
2361         * (RemoveRegFromLRBlock): remove a register that is completely
2362         eliminated by register optimization, but it is still left in local
2363         register store/restore in/from stack block,
2364         * (Remove2pcodes): after removing register, check to see if it
2365         should be removed from local register store/restore in/from stack
2366         block,
2367         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2368         DUMMY_READ_VOLATILE,
2369
2370         * device/include/pic16/adc.h: minor prototype modifications and
2371         update,
2372         * device/include/pic16/malloc.h: added GPL notice various
2373         modifications,
2374         * device/include/pic16/stdint.h: NEW, standard header for ints
2375         * device/include/pic16/delay.h: NEW, header for delay functions,
2376         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2377         delay1mtcy,
2378         * device/include/pic16/signal.h: NEW, header providing helper macros
2379         for implementing signal handlers,
2380         * device/include/pic16/stdio.h: added prototypes for functions,
2381         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2382         prototypes for stdin and stdout, added macro PUTCHAR to
2383         automatically implement putchar function prototype,
2384         * device/include/pic16/usart.h: modified and updated USART library,
2385         * device/lib/pic16/libio/adc/,
2386         * device/lib/pic16/libio/i2c: some modifications to improve library
2387         performance,
2388         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2389         family of functions,
2390         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2391         family of functions and other sources,
2392         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2393         of the PIC18Fxx[28] devices,
2394         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2395         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2396         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2397         _do_cinit function, because the previous failed when local variables
2398         where not placed in the same memory bank,
2399         * device/lib/pic16/libsdcc/char/: various modifications to improve
2400         library performance,
2401         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2402         information on the new functions of the c library and more...
2403
2404 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2405
2406         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2407
2408 2005-03-26 Raphael Neider <rneider AT web.de>
2409
2410         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2411           if condition == CARRY)
2412         * (genCmp): adapted to new genSkipc semantics
2413         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2414           on rIfx (genCmp was broken)
2415
2416 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2417
2418         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2419         * src/z80/main.c (_keywords[]),
2420         * src/SDCCglobal.h (struct options),
2421         * src/SDCC.y,
2422         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2423         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2424         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2425         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2426         always available in leading double underscore form. The C99 support is
2427         mostly missing, but it's a start.
2428         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2429         reserved identifier "__data".
2430
2431 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2432
2433         * src/mcs51/peeph.def: fixed bug 1170013
2434
2435 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2436
2437         * device/include/mcs51reg.h: fixed bug 842007
2438
2439 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2440
2441         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2442         last time.
2443
2444 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2445
2446         * src/port.h (struct PORT),
2447         * src/avr/ralloc.c (avr_assignRegisters),
2448         * src/avr/main.c,
2449         * src/ds390/ralloc.c (ds390_assignRegisters),
2450         * src/ds390/main.c,
2451         * src/hc08/ralloc.c (hc08_assignRegisters),
2452         * src/hc08/main.c,
2453         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2454         * src/mcs51/main.c,
2455         * src/pic/ralloc.c (pic14_assignRegisters),
2456         * src/pic/main.c,
2457         * src/pic16/ralloc.c (pic16_assignRegisters),
2458         * src/pic16/main.c,
2459         * src/xa51/ralloc.c (xa51_assignRegisters),
2460         * src/xa51/main.c,
2461         * src/z80/ralloc.c (z80_assignRegisters),
2462         * src/z80/ralloc.h,
2463         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2464         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2465         * src/SDCCcse.h,
2466         * src/SDCCdflow.c (computeDataFlow),
2467         * src/SDCCdflow.h,
2468         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2469         * src/SDCCloop.h,
2470         * src/SDCCcflow.c (*),
2471         * src/SDCCcflow.h,
2472         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2473         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2474         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2475         immedDom() returning wrong block; probably fixes bug #1160833)
2476
2477 2005-03-20 Borut Razem <borut.razem AT siol.net>
2478
2479         * support/scripts/inc2h.pl: WIN32 port
2480
2481 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2482
2483         * device/lib/makefile.in: added abs.c and labs.c
2484
2485 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2486
2487         * device/include/stdint.h: added
2488         * device/lib/abs.c: added
2489         * device/lib/labs.c: added
2490         * device/include/stdlib.h: added abs() and labs() prototypes
2491         * device/lib/libsdcc.lib: added abs and labs
2492         * device/include/float.h,
2493         * device/lib/_fsmul.c,
2494         * device/lib/printf_fast.c,
2495         * device/lib/printf_tiny.c: updated comments
2496
2497 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2498
2499         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2500         bug #1164313
2501
2502 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2503
2504         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2505         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2506
2507 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2508
2509         * device/lib/printf_large.c: removed inline assembly for portability and
2510           readability. Use printf_fast if speed or size are more important.
2511         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2512         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2513
2514 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2515
2516         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2517         prevent compiler warning
2518
2519 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2520
2521         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2522         moved to level 0 and declared as static. Also they are explicit
2523         placed in access bank. This was necessery because some times they
2524         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2525         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2526         optimizations. Currently only compare to unsigned char is implemented,
2527         * src/pic16/gen.c: added fReturnIdx array,
2528         * (struct resolvedIfx) is moved to gen.h and made public,
2529         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2530         * (aopForSym): added an optimization to directly store in stack of
2531         the operand of a SEND iCode,
2532         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2533         but as registers instead (AOP_REG) using the fReturnIdx array,
2534         * (pic16_freeAsmop): remove the freed register from the
2535         _G.sregsAlloc field,
2536         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2537         a compare of 'WREG',
2538         * (pic16_popGetTempRegCond): changed function prototype, now
2539         function takes also a bitVector argument v which holds the current
2540         set of registers that are allocated for stack access by aopForSym,
2541         registers allocated in aopForSym for accessing stack symbols are not
2542         any more part of the functions usedRegs field,
2543         * (genCall): some times aopOp is called for a stack variable to be
2544         send, aopForSym might perform the push, if this is true make sure
2545         that genCall doesn't push the variable twice by testing _G.resDirect,
2546         * (genFunction): changed testing for unspecified interrupt number
2547         from 256 to INTNO_UNSPEC,
2548         * modified selection scheme of frame pointer generation. Previously
2549         if function did use local registers a frame pointer was generated,
2550         now a frame pointer is generated only if function has arguments
2551         (that need PLUSW2 register access), or has stack arguments, or the
2552         compiler is not instructed to omit the frame pointer,
2553         * (genEndFunction): before restoring local registers that were saved
2554         in the function preamble, also restore the registers that *might*
2555         have been allocated for stack access,
2556         * (genRet): removed some old comments,
2557         * (genCmp, the active (RN's) version): added a call to the
2558         pic16_genCmp_special function to perform the compare with a more
2559         robust and optimized way,
2560         * (genInline): a feature has been added in inline code generation,
2561         which allows a wildcard variable substitution when writing inline
2562         assembly. Code is incomplete and experimental therefore undocumented,
2563         * (genCast): changed order of aopOp for result and right to allow
2564         aopForSym to directly load the result if possible,
2565         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2566         perform an optimized compare on some selected special occasions,
2567         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2568         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2569         generate an IVT any more,
2570         * src/pic16/main.c (pic16_optionsTable): added command line option
2571         --optimize-cmp,
2572         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2573         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2574         macros,
2575         * src/pic16/NOTES: Raphael Neider added in list of active developers
2576         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2577         jumptable_end to prevent bug #,
2578         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2579         inCond and outCond fields,
2580         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2581         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2582         turn off register spilling,
2583         * (packRegsForOneUse): synced with other ports' versions although it
2584         is not used currently,
2585         * (pic16_packRegisters): added an optimization while reading
2586         structure bitfields, some registers may be saved (malloc code is
2587         decreased by 80 bytes)
2588
2589 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2590
2591         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2592         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2593         this can be optimized more?
2594
2595 2005-03-10 Raphael Neider <rneider AT web.de>
2596
2597         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2598           genNearPointerGet): (hopefully) fixed access to bitfields via
2599           pointers (p->bitN = x; and x = p->bitN; failed)
2600
2601 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2602
2603         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2604
2605 2005-03-09 Raphael Neider <rneider AT web.de>
2606
2607         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2608
2609 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2610
2611         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2612         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2613           (regTypeNum): set REG_BIT type if necessary
2614         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2615         * support/regression/tests/critical.c: check bug 1144613
2616
2617 2005-03-02 Raphael Neider <rneider AT web.de>
2618
2619         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2620
2621 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2622
2623         * src/avr/ralloc.c (serialRegAssign),
2624         * src/ds390/ralloc.c (serialRegAssign),
2625         * src/hc08/ralloc.c (serialRegAssign),
2626         * src/mcs51/ralloc.c (serialRegAssign),
2627         * src/pic/ralloc.c (serialRegAssign),
2628         * src/pic16/ralloc.c (serialRegAssign),
2629         * src/xa51/ralloc.c (serialRegAssign),
2630         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2631
2632 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2633
2634         * src/SDCCast.c (decorateType): fixed bug 1124787
2635
2636 2005-02-20 Hubert Sack <sack AT digiplan.de>
2637         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2638
2639         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2640         patch #1121755
2641
2642 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2643
2644         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2645         to keep the correct label reference count when adding/removing references
2646         to labels. A peephole file using this is appended to patch #1144962.
2647
2648 2005-02-14 Raphael Neider <rneider AT web.de>
2649
2650         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2651         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2652         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2653           retrievals of result operand's value on assignment
2654
2655 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2656
2657         * device/include/pic16/string.h: modified prototype for memccpy()
2658         to memccpy(void *, void *, char, size_t)
2659         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2660         check whether to omit frame pointer or not,
2661         * (genInline): convert all occurences of "\n" to LF in inline
2662         assembler blocks, this helps formatting the inline text,
2663         * (pic16_loadFSR0): modified prototype,
2664         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2665         removed some 8051 legacy code,
2666         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2667         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2668         before allocating temporary registers in functions,
2669
2670 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2671
2672         * support/regression/tests/bitvars.c: corrected the "fix"
2673
2674 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2675
2676         * support/regression/tests/bitvars.c,
2677         * support/regression/tests/bitwise.c,
2678         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2679
2680 2005-02-10 Raphael Neider <rneider AT web.de>
2681
2682         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2683           different size for Alpha
2684         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2685
2686 2005-02-09 Raphael Neider <rneider AT web.de>
2687
2688         * src/SDCC.lex(doPragma) : save and restore warning options as well
2689           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2690         * have #pragma less_pedantic set the errorlevel to WARNING
2691           (fixes #1117001)
2692         * (cloneOptimize) : fixed wrong malloc's size
2693         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2694           facilitate correct handling of #pragma (save|restore)
2695
2696 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2697
2698         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2699
2700 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2701
2702         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2703
2704 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2705
2706         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2707
2708 2005-02-02 Raphael Neider <rneider AT web.de>
2709
2710         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2711         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2712         * (pic16_storeForReturn): fixed to allow returning function pointers
2713         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2714         * device/include/pic16/{stddef.h,stdbool.h}: added
2715
2716 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2717
2718         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2719
2720 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2721
2722         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2723         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2724          appeared to be required
2725
2726 2005-01-31 Borut Razem <borut.razem AT siol.net>
2727
2728         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2729           include/mcs51 and include/z80 directories to the package
2730
2731 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2732
2733         * src/hc08/gen.c (genFunction): fixed bug #1112752
2734
2735 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2736
2737         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2738
2739 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2740
2741         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2742
2743 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2744
2745         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2746
2747 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2748
2749         * device/include/c8051fxxx.h: removed these 6 files
2750         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2751
2752 2005-01-26 Raphael Neider <rneider AT web.de>
2753
2754         * src/pic16/gen.c (genAssign): fixed assignment from longs
2755           in codespace (were cut to three bytes)
2756         * (genDummyRead): implemented (except for CODESPACE...),
2757           fixed bug #1108575
2758         * src/pic16/glue.c (emitStatistics): beautified
2759         * device/lib/pic16/libm/Makefile: added include path
2760
2761 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2762
2763         * src/z80/gen.c (aopPut): fixed bug #1103902
2764
2765 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2766
2767         * device/lib/expf.c: fixed bug #1095792
2768
2769 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2770
2771         * device/lib/pic16/libm: added Math library sources
2772
2773 2005-01-24 Raphael Neider <rneider AT web.de>
2774
2775         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2776           to enable upcast to pCodeOpReg2 (there is no type tag to
2777           differenciate the two and pic16_popGet2p cast into PCOR2)
2778         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2779           (sizeof(sectNames) changed to sizeof(sectName))
2780           Both patches fix segfaults under MinGW.
2781
2782 2005-01-23 Raphael Neider <rneider AT web.de>
2783
2784         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2785           Safe_[mc]?alloc()'ed variables
2786         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2787           of (byte sized) temporaries (assign them to WREG for now)
2788         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2789           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2790           this might fix SIGSEGVs on MinGW...
2791         * src/SDCCopt.c (killDeadCode): restored original behaviour
2792           (volatile operands might get thrown away though)
2793
2794 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2795
2796         * src/pic16/gen.c: fixed bug #1106975,
2797         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2798         pointer update, INTCON is saved, global interrupts are disabled and
2799         restored after updateing TOS.
2800         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2801         * added function attribute 'shadowregs' to take advantage of shadow
2802         registers,
2803         * added function attribute 'wparam' as an alternative to the wparam
2804         pragma,
2805         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2806         user declares a non-ISR function as 'shadowregs',
2807         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2808
2809 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2810
2811         * .version: bumped version number to 2.4.8
2812         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2813         pic16 port,
2814         * device/lib/pic16/libio/i2c/: I2C module support library,
2815         * device/include/pic16/i2c.h: I2C support library header,
2816         * device/lib/pic16/libc/stdio/: standard IO support sources,
2817         * (printf_small.c): printf_small() source, supports float print,
2818         * (printf_tiny.c): printf_tiny() source, does not support floats,
2819         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2820         enable global optimizations for entire library source, other
2821         Makefiles in the source tree are also modified to reflect this,
2822         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2823         function,
2824         * doc/sdccman.lyx: updated to reflect new changes,
2825         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2826         sym->onStack if-case,
2827         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2828         sbit, idata, _idata, xdata, _xdata,
2829         * added pragma library, to link an external library, (see doc),
2830         * removed command line options, --pomit-config-words, --pomit-ivt,
2831         --pleave-reset-vector,
2832         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2833         when calling assembler to reflect memory model used, also define
2834         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2835         reflect stack model used,
2836         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2837         on stack return NULL,
2838
2839 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2840
2841         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2842           of the operands is volatile. Fixes #1020220
2843
2844 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2845
2846         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2847         * (OptimizeRegUsage): make sure that there is really no other flow where
2848           the first pCode is used
2849
2850 2005-01-22 Raphael Neider <rneider AT web.de>
2851
2852         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2853           to fix #1106967 (pCode->seq are not set up correctly)
2854
2855 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2856
2857         * src/SDCCglue.c (glue): make sure code area is declared before the
2858         static initialization area.
2859
2860 2005-01-21 Raphael Neider <rneider AT web.de>
2861
2862         * device/lib/Makefile.in: fixed test for pic16 install dir
2863         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2864           optimizations
2865         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2866           added --optimize-goto compiler switch and pragma wparam documentation
2867         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2868         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2869           and PRODH closing bug #1071770 (peephole optimizer)
2870
2871 2005-01-19 Raphael Neider <rneider AT web.de>
2872
2873         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2874           cmdLine buffers (used when calling sdcpp...) are large enough
2875           (MAX_PATH=256 truncates arguments leading to system halts when
2876           used in MinGW...)
2877         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2878         * (genUminus): rewritten to for efficiency
2879         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2880           used uninitialized in some cases)
2881         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2882           copy the third byte from the int -- now assumes 0x80 (data memory)
2883         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2884           operands (genAddLit expects the iCode's operands to swapped as
2885           well), fixed leftover bytes (crashed for short left operands)
2886         * (pic16_genMinusDec): performance improvements, removed false
2887           PIC14 emitSKPNCs
2888         * (pic16_genMinus): fixed to cope with differently sized operands
2889         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2890           for --obanksel > 1
2891         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2892         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2893           new banksel optimization
2894         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2895           analysis for temporary registers (segfaults...)
2896         * src/pic16/peeph.def: added rule
2897
2898 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2899
2900         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2901         which converts a float number to its ASCII representation
2902         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2903         functions to convert the fractional and integer part of a float to ASCII,
2904         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2905         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2906         ram
2907         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2908         _STATMEM macros,
2909         * device/include/pic16/adc.h: added GPL info,
2910         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2911         a pCodeOp as tested operand,
2912         * (genNearPointerGet): optimized bit testing, does not use
2913         intermediate register for bit value, test directly instead with
2914         BTFSS, BTFSC, works only for single bits,
2915         * (genpic16Code): dump the name of the iCode in the asm,
2916         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2917         renamed to pic16_decodeOp,
2918         * (serialRegAssign): do not allocate a temporary register for iCode
2919         sequences that test a single bit for 1/0
2920
2921 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2922
2923         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2924         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2925         access stack and frame pointers. They are initially assigned to
2926         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2927         accessing SFRs. Updated all occurences of modification of stack or
2928         frame pointer in gen.c and pcode.c,
2929         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2930         assigning of a literal value to pointers,
2931         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2932         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2933         selected
2934
2935 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2936
2937         * doc/sdccman.lyx: update documentation about stack pragma, added
2938         some info for stack memory models
2939
2940 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2941
2942         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2943
2944 2005-01-08 Raphael Neider <rneider AT web.de>
2945
2946         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2947           udata sections to fix bug #1097823
2948
2949 2005-01-05 Raphael Neider <rneider AT web.de>
2950
2951         * src/pic16/gen.c (genGenericShift): added handling of differently
2952           sized left operand and result
2953
2954 2005-01-04 Raphael Neider <rneider AT web.de>
2955
2956         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2957         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2958           to hold the condition bit)
2959         * added new version of genCmp (old code available via #define)
2960         * added new version of genShiftLeft/genShiftRight in a generic
2961           way, now supports shifting by negative values
2962         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2963           shiftCount (expected by genGenericShift)
2964         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2965         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2966           dump
2967         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2968           is an invalid literal too...)
2969
2970 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2971
2972         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2973         from Raphael Neider,
2974         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2975         for 8-bit literals. This fixes some literal operands which are sign
2976         extended to 16-bits ints when instruction needs only 8-bits.
2977
2978 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2979
2980         * device/lib/logf.c: added mcs51 assembly version
2981         * device/lib/expf.c: added mcs51 assembly version
2982         * device/lib/_logexpf.c: new shared asm code for expf and logf
2983         * device/include/math.h: add defines for assembly math library
2984         * device/lib/Makefile.in: build new _logexpf.c
2985         * device/lib/libfloat.lib: use new _logexpf.c
2986
2987 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2988
2989         * src/pic/device.c
2990         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2991           device types which have less than 0x7f registers.
2992
2993 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2994
2995         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2996
2997 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2998
2999         * device/lib/printf_fast.c: only build on supported arch.
3000         * device/lib/printf_tiny.c: only build on supported arch.
3001         * device/lib/printf_fast_f.c: only build if asm float lib
3002         * device/lib/_fsget1arg.c: only build if asm float lib
3003         * device/lib/_fsget2args.c: only build if asm float lib
3004         * device/lib/_fsnormalize.c: only build if asm float lib
3005         * device/lib/_fsreturnval.c: only build if asm float lib
3006         * device/lib/_fsrshift.c: only build if asm float lib
3007         * device/lib/_fsswapargs.c: only build if asm float lib
3008         * device/include/stdio.h: don't provide print_fast,
3009           print_fast_f, print_tiny prototypes if --xstack used
3010
3011 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3012
3013         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3014         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3015           to the SOURCES
3016
3017 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3018
3019         * device/lib/printf_fast_f.c: same as printf_fast, but
3020           with floating point enabled
3021         * device/lib/printf_fast.c: minor tweaks
3022         * device/include/stdio.h: add printf_fast_f
3023
3024 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3025
3026         * src/SDCCmain.c: make --float-reent default for mcs51
3027         * device/lib/_fsadd.c: added mcs51 assembly version
3028         * device/lib/_fssub.c: added mcs51 assembly version
3029         * device/lib/_fsmul.c: added mcs51 assembly version
3030         * device/lib/_fsdiv.c: added mcs51 assembly version
3031         * device/lib/_fseq.c: added mcs51 assembly version
3032         * device/lib/_fsneq.c: added mcs51 assembly version
3033         * device/lib/_fsgt.c: added mcs51 assembly version
3034         * device/lib/_fslt.c: added mcs51 assembly version
3035         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3036         * device/lib/Makefile.in: add _fscmp to build
3037         * device/lib/libfloat.lib: add _fscmp to build
3038
3039 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3040
3041         * device/lib/_fs2slong.c: added mcs51 assembly version
3042         * device/lib/_fs2sint.c: added mcs51 assembly version
3043         * device/lib/_fs2schar.c: added mcs51 assembly version
3044         * device/lib/_fs2ulong.c: added mcs51 assembly version
3045         * device/lib/_fs2uint.c: added mcs51 assembly version
3046         * device/lib/_fs2uchar.c: added mcs51 assembly version
3047         * device/lib/_slong2fs.c: added mcs51 assembly version
3048         * device/lib/_sint2fs.c: added mcs51 assembly version
3049         * device/lib/_schar2fs.c: added mcs51 assembly version
3050         * device/lib/_ulong2fs.c: added mcs51 assembly version
3051         * device/lib/_uint2fs.c: added mcs51 assembly version
3052         * device/lib/_uchar2fs.c: added mcs51 assembly version
3053         * device/include/float.h: added #define to select asm vs c
3054
3055 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3056
3057         * device/lib/printf_fast.c: improvements to float output
3058         * device/include/float.h: add defines for assembly float library
3059         * device/lib/_fsget1arg.c: receive 1 float arg
3060         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3061         * device/lib/_fsnormalize.c: normalize a float
3062         * device/lib/_fsreturnval.c: return float, various helper routines
3063         * device/lib/_fsrshift.c: right shift a float's mantissa
3064         * device/lib/_fsswapargs.c: swap 2 floats
3065         * device/lib/Makefile.in: build these 6 new files for mcs51
3066         * device/lib/libfloat.lib: add these 6 files to the library
3067
3068 2004-12-26 Borut Razem <borut.razem AT siol.net>
3069
3070         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3071           built by gcc 3.4.2
3072
3073 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3074
3075         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3076           and fully reentrant and register bank neutral.
3077         * device/lib/printf_fast.c: added float (not enabled by default),
3078           added compact/slower integer (also not enabled by default),
3079           improved size/speed of fast integer code, other minor changes
3080         * device/include/stdio.h, device/lib/Makefile.in,
3081           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3082
3083 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3084
3085         * src/pic16/pcode.c: declaring variables other than at the start of a
3086           block is not supported in C by VC6.
3087
3088 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3089
3090         * applied a previous patch from Raphael Neider that wasn't included
3091         in the previous commits, which fixes infinite loops within jumptable
3092         improvements,
3093         * made some fixes that previous patches introduced
3094
3095 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3096
3097         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3098         that fixes an issue with AOP_PCODE asmop's offset,
3099         * (pic16_popCopyReg): update instance field too,
3100         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3101         function of pic port,
3102         * (genCmp, genAnd, genAssign),
3103         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3104
3105 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3106
3107         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3108         variables initial values to idata section,
3109         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3110         variables in some functions. This utilizes parmBytes field of iCode
3111         structure to hold the offset of the variable in stack. (might be
3112         able to use the stack field too?)
3113         * applied patch from Raphael Neider # ### , # ###
3114         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3115         variable initial values in idata section,
3116         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3117         for static variables with initial value
3118         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3119         applied fix in while loop from Raphael Neider.
3120
3121 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3122
3123         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3124         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3125         * src/ds390/ralloc.c (serialRegAssign): spill bits
3126         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3127         * support/Util/SDCCerr.c,
3128         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3129         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3130         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3131
3132 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3133
3134         * device/include/sdcc-lib.h: inserted LGPL, added includes
3135           asm/ds390/features.h and asm/mcs51/features.h
3136         * device/include/asm/default/features.h,
3137         * device/include/asm/gbz80/features.h,
3138         * device/include/asm/z80/features.h: added empty _AUTOMEM
3139           and _STATMEM
3140         * device/include/asm/ds390/features.h,
3141         * device/include/asm/mcs51/features.h: added files with defines for
3142           _AUTOMEM and _STATMEM indicating automatic and static storage class
3143         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3144         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3145         * src/SDCCicode.c (geniCodeCast),
3146         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3147         * src/SDCCloop.c (loopInduction): removed unused variable lr
3148         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3149           to convertToFcall to include char modulo (RFE 1065037), added check
3150           if left operand is unsigned and use abs of literal value
3151         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3152           as it doesn't work after conversion from peephole.def to peephole.rul
3153         * src/mcs51/gen.c (toBoolean): added check for size,
3154           (genModOneByte): optimized code for signed char modulo a literal
3155           power of 2 (thanks to Hubert Sack),
3156           (genRRC): removed unnecessary "clr c",
3157           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3158         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3159           jump optimization,
3160           swapped rules 256.c and 256.d,
3161           extended 256.d by using new multiple checks (thanks Erik),
3162           added rules 256.e and 256.f,
3163           updated rule 261.a and 261.b to new generated code
3164         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3165
3166 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3167
3168         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3169           induction related bugs, including first part of bug #1074377
3170
3171 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3172
3173         * applied patch from bug-report #1076292,
3174         * applied patches for genAnd and Goto-optimizations for Raphael
3175         Neider,
3176         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3177         dump a less iCode information,
3178         * src/pic16/device.h (pic16_options_t): added field debgen,
3179         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3180         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3181         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3182         puclic,
3183         * (various functions): added macros FENTRY and FENTRY2 to functions,
3184         to emit function prologue,
3185         * (various functions): fixed indentation,
3186         * (genNearPointerGet): fixed loading of FSR0,
3187         * (genPackBits): applied patch from Raphael Neider to fix updating
3188         of FSR0 and touching only the modified bits,
3189         * src/pic16/genarith.c (various functions): added macros FENTRY to
3190         emit function prologue in comments,
3191         * src/pic16/pcode.h: added functions debugf2, debugf3,
3192         * src/pic16/ralloc.c: partial fix for packForPush caused
3193         segmentation fault,
3194
3195 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3196
3197         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3198           <stsp AT users.sourceforge.net> with reversed byte order
3199         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3200
3201 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3202
3203         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3204           bug #1074377
3205         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3206         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3207
3208 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3209
3210         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3211
3212 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3213
3214         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3215           conditions,
3216           (setFromConditionArgs): friendly operand parser for peephole rules,
3217           (operandBaseName, operandsNotRelated): new peephole condition
3218           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3219           architecture specific register naming into account, handles n-way
3220           comparisons, and supports quoted literals
3221         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3222
3223 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3224
3225         * src/mcs51/peeph.def: fixed bug #1076940
3226
3227 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3228
3229         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3230
3231 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3232
3233         Adding support for replacing ljmps with sjmps in jumptables
3234         generated for switch statements. For now you need to set the
3235         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3236         Now 4 algorithms for mcs51 jumptable generation are used:
3237         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3238         addresses loaded pc-relative for up to 112 cases and stack-pushing
3239         target addresses loaded with offset from dptr for up to 256 cases.
3240
3241         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3242         * src/mcs51/main.c: adapted constants for switch table generation
3243         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3244
3245 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3246
3247         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3248         * support/regression/tests/bug1057979.c: added test for bug 1073386
3249
3250 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3251
3252         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3253         compilers
3254
3255 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3256
3257         * src/pic16/device.h,
3258         * src/pic16/genarith.c,
3259         * src/pic16/glue.c,
3260         * src/pic16/main.c,
3261         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3262
3263 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3264
3265         Large cummulative patch for pic16 port.
3266         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3267         to call when a stack overflow occurs,
3268         * (malloc.h): added CVS Id tag,
3269         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3270         variable,
3271         * added libc directory. The current version of LibC contains string
3272         functions, ctype functions and macros and some functions of the
3273         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3274         be extensively tested in the future. Standard disclaimer here.
3275         Library is not automatically build yet. But one can build it by
3276         invoking 'make' inside the libc directory.
3277         * added ADC library under libio. Preliminary version yet.
3278
3279         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3280         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3281         aopForRemat() now and not by pic16_aopOp(),
3282         * (pic16_popGetTempReg): removed warning messgae when allocating
3283         temporary registers, its a buggy feature and will be removed,
3284         * (pic16_popGet): set register instance field in AOP_CRY,
3285         * (pic16_outBitC): fixed for results in size greater than 1,
3286         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3287         * (pic16_storeForReturn): optimized return of 0,
3288         * (genCmp): experimental code for new genCmp which uses PIC18's
3289         special compare&skip instructions. Initial tests fail some times
3290         with variables grater than 1 byte in size, so new code is disabled,
3291         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3292         a single bit,
3293         * (genCast): began a fix to optimize the casting of a bit to another
3294         bit, now assigning a bitfield to another bitfield will fail, sorry,
3295         * src/pic16/main.c: disabled the use of lr-support feature,
3296         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3297         * added some function prototypes, added function _debugf prototype,
3298         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3299         bits with offset (case PO_GPR_BIT),
3300         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3301         command line,
3302         * (isBankInstruction): modified to return 0 for no banking instruction,
3303         and 1 for banking instruction,
3304         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3305         caused stop processing pCodes after a inline assembly block,
3306         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3307         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3308         registers when it shouldn't,
3309         * src/pic16/ralloc.c (allocReg): add preliminary support for
3310         supporting a limited set of temporary registers,
3311
3312 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3313
3314         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3315           genDataPointerSet): ensure assignments always copy in MSB to LSB
3316           order,
3317           (loadRegFromAop): recognize CLRH optimization,
3318           (genFunction): optimize RECEIVE iCodes in reentrant functions
3319
3320 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3321
3322         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3323           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3324           selected.
3325         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3326         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3327           contiguous with data
3328
3329 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3330
3331         * device/lib/_gptrget.c (_gptrget),
3332         * device/lib/_gptrgetc.c (_gptrgetc),
3333         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3334           instead of sjmp to ret
3335         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3336           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3337
3338 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3339
3340         * .version: bumped version to 2.4.7
3341         * device/lib/_gptrget.c (_gptrget): is now _naked
3342         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3343         * device/lib/_gptrput.c (_gptrput): is now _naked
3344         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3345           (createFunction): fixed xstack
3346         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3347         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3348           or bit either,
3349           (geniCodeCritical): store original interrupt state in an iTemp bit
3350           var unless stack-auto
3351         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3352         * src/SDCCmain.c (setIncludePath): added include/target to search path
3353         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3354         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3355           prototype,
3356           (processFuncArgs): put bit vars in bit area
3357         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3358           unsaveRBank): fixed xstack,
3359           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3360           (genFunction, genEndFunction): fixed xstack,
3361           (genAssign): optimization don't walk backwards through mem
3362         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3363         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3364         * support/regression/Makefile: also make library (for stack-auto) when
3365           making "all" and added "test-mcs51-xstack-auto"
3366         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3367         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3368         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3369         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3370         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3371           make-library by MAKE_LIBRARY
3372         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3373           regression tests for xstack
3374         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3375         * support/regression/tests/critical.c: test for critical on mcs51
3376
3377 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3378
3379         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3380           built version of sdcc instead of installed version
3381
3382 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3383
3384         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3385         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3386           vprintf.c now
3387         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3388         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3389           WARNING: remove device/lib/build/z80/printf.o by hand when
3390           updating from previous build!
3391         * device/lib/z80/printf.c: updated comment
3392         * support/regression/tests/bug1057979.c: test all ports now
3393         * support/regression/tests/bug1065458.c: file added
3394
3395 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3396
3397         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3398           *_start and *_end symbols for static functions
3399
3400 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3401
3402         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3403           and search crt0.o in all library paths,
3404           (setIncludePath): proper handling of --nostdinc,
3405           (setLibPath): proper handling of --nostdlib
3406         * support/regression/Makefile,
3407         * support/regression/ports/ds390/spec.mk,
3408         * support/regression/ports/gbz80/spec.mk,
3409         * support/regression/ports/hc08/spec.mk,
3410         * support/regression/ports/mcs51/spec.mk,
3411         * support/regression/ports/mcs51-large/spec.mk,
3412         * support/regression/ports/mcs51-stack-auto/spec.mk,
3413         * support/regression/ports/z80/spec.mk: use include and lib files from
3414           built version of sdcc instead of installed version
3415         * doc/sdccman.lyx: fixed typo in --nostdinc
3416
3417 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3418
3419         * src/pic/pcode.c,
3420         * src/pic/device.c,
3421         * src/pic/ralloc.c,
3422         * src/pic/gen.c : added support to generate code for struct bit fields.
3423
3424 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3425
3426         * as/xa51/xa_version.h,
3427         * device/include/errno.h,
3428         * device/include/regc515c.h,
3429         * device/lib/_itoa.c,
3430         * device/lib/_ltoa.c,
3431         * device/lib/ser_ir_cts_rts.c,
3432         * sim/ucsim/xa.src/glob.cc,
3433         * sim/ucsim/xa.src/inst_gen.cc,
3434         * sim/ucsim/xa.src/xa_bit.cc,
3435         * sim/ucsim/xa.src/xa_sfr.cc,
3436         * sim/ucsim/z80.src/inst_dd.cc,
3437         * sim/ucsim/z80.src/inst_fdcb.cc,
3438         * support/scripts/keil2sdcc.pl,
3439         * src/pic16/pic16.dsp,
3440         * src/pic16/pic16a.dsp: corrected cvs line endings
3441         * device/lib/printf_large.c: fixed bug 1057979
3442         * src/pic16/gen.c: fixed non-C standard code
3443         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3444         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3445         * support/regression/ports/mcs51/support.c: reload T1 asap
3446         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3447           pdata use and clear idata startup behaviour
3448         * support/regression/tests/bug1057979.c: added
3449
3450 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3451
3452         * device/examples/ds390/ow390/ad26.h,
3453         * device/examples/ds390/ow390/cnt1d.h,
3454         * device/examples/ds390/ow390/crcutil.c,
3455         * device/examples/ds390/ow390/ownet.h,
3456         * device/examples/ds390/ow390/owsesu.c,
3457         * device/examples/ds390/ow390/swt12.h,
3458         * device/examples/ds390/ow390/swtoper.c,
3459         * device/examples/ds390/ow390/temp10.h,
3460         * device/examples/ds390/ow390/thermodl.c,
3461         * device/examples/ds390/tinitalk/tinitalk.dsp,
3462         * device/examples/ds390/tinitalk/tinitalk.dsw,
3463         * device/examples/mcs51/clock/hw.h,
3464         * device/examples/mcs51/simple2/go.bat,
3465         * device/examples/serialcomm/windows/serial.h,
3466         * device/examples/xa51/dummy.c,
3467         * device/examples/xa51/hello.c,
3468         * device/include/80c51xa.h,
3469         * device/include/at89x051.h: corrected cvs line endings
3470
3471 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3472
3473         * src/pic16/main.c (options): added command line --gstack, to trace
3474         stack over/under flows,
3475         * added pragma 'wparam' to allow passing first byte of function
3476         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3477         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3478         call to __gstack_test function and sets up the symbol as extern,
3479         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3480         * popaop): added call to pic16_testStackOverflow,
3481         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3482         wparamList list,
3483         * (genCall, genPcall): now all parameters are passed via stack
3484         except in functions that are pass to wparam pragma in which WREG is
3485         used too,
3486         * (genPcall): REENTRANT flag is checked to see if variable prototype
3487         contains reentrant keyword, don't call a non-reentrant function, via
3488         a reentrant function pointer or vice versa, functions are never
3489         passed via WREG,
3490         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3491         D.Winkler,
3492         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3493         SIGSEGV when accessing a NULL register stucture,
3494         * (pic16_printGPointerType): modified to handle UPPER modifier for
3495         function initializers, changed prototype of function to simpler one,
3496         * (pic16_printIvalFuncPtr): check to see if function is already
3497         added in externs list,
3498         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3499         optimized a move from W to SFR with a move to the same register
3500         later after a CALL,
3501         * device/lib/pic16/debug: NEW directory, contains debug features
3502         which are enabled when linking with libdebug.lib, currently command
3503         line option --gstack enables stack pointer tracing for over/under
3504         flow, corresponding sources are in debug/gstack
3505
3506 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3507
3508         * doc/sdccman.lyx: updated SDCC version,
3509         * (PIC16 port): update list of command line options,
3510         * src/pic16/device.h (structure pic16_options_t): added field gstack
3511         to enable stack overflow tracing on push/pops,
3512         * src/pic16/device.c (statistics structure): added statistics
3513         structure,
3514         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3515         pic16_dump_int_registers): increase statistics counters for each
3516         * variable which is encountered
3517         * (pic16_dump_usection): emit each .udata variable to its own udata
3518         section,
3519         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3520         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3521         parameters via stack, otherwise use old scheme,
3522         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3523         assembler output file,
3524         * src/pic16/main.c: added command line options --gstack to enable
3525         push/pop tracing for stack overflow,
3526         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3527         instructions): added size of each instruction,
3528         * (pic16_countInstruction): estimate size of instructions in
3529         the_pFile list, inline assembly blocks are not counted,
3530         * (pic16_FixRegisterBanking): trace previous register usage, when
3531         banksel optimizations is greater than 0, don't emit a redudant
3532         banksel directive,
3533
3534 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3535
3536         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3537         * src/pic16/ralloc.c : applied same fix for pic16.
3538         * src/pic/gen.c : tidied it up a little.
3539
3540 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3541
3542         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3543         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3544
3545 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3546
3547         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3548
3549 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3550
3551         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3552         non-reentrant function __modsint in the interrupt function (thus
3553         corrupting math operations during serial I/O)
3554         * device/lib/ser_ir.c: as above, changed buffersize
3555         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3556         256.c,d for zeroing
3557         * doc/Makefile: added option -t for rsync
3558
3559 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3560
3561         * src/SDCCast.h (struct ast),
3562         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3563
3564 2004-10-20 Borut Razem <borut.razem AT siol.net>
3565
3566         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3567         package
3568
3569 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3570
3571         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3572         makefile targets,
3573         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3574         support functions to replace long sequences of MOVFF's from access
3575         bank registers to stack and vice versa,
3576         * src/pic16/device.h: added new field opt_flags, where optimization
3577         flags can be set to enable certain features,
3578         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3579         * pBlock, (genFunction, genEndFunction): surroung loop for
3580         saving/loading used registers in stack with PC_INFO pCodes,
3581         INF_LREGS. Code in between can then be optimized by pCode optimizer
3582         to support function calls,
3583         * (genDataPointerSet): fixed bug which loaded float fields in
3584         structures with corrupt data,
3585         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3586         in a standard way debug info on stderr. Feature used for developing
3587         and debugging only,
3588         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3589         obsolete chunks of code,
3590         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3591         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3592         * pic16/src/pcode.c (pic16_newpCodeInfo,
3593         * (pic16_newpCodeOpLocalRegs),
3594         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3595         feature,
3596         * (pic16_pCodeConstString): printing of the initial value of a
3597         symbol as a comment is inhibited since parsing was already done by
3598         copyStr and output is corrupt,
3599         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3600
3601 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3602
3603         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3604
3605 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3606
3607         * as/mcs51/lkarea.c: removed old K&R style,
3608           (lnksect): changed check on boundary error,
3609           (lnksect2): changed check on boundary error,
3610           (lnksect2): extend XSTK to end of page if size = 1
3611         * as/mcs51/lkmain.c: removed old K&R style,
3612           (Areas51): create l_IRAM symbol
3613         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3614         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3615           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3616         * device/lib/_mullong.c: added version to be compiled with xstack
3617         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3618         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3619         * device/lib/mcs51/crtxstack.asm: fixed comment
3620         * src/SDCCglue.c: maxInterrupts defaults to 0,
3621           (emitMaps): added pdata,
3622           (createInterruptVect): (re)moved default,
3623           (glue): added pdata,
3624           (glue): moved __start__xstack to XSTK with default size 1
3625         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3626           and options.float_rent when options.stackAuto is set,
3627           (linkEdit): only write XDATA_NAME if provided on command line
3628         * src/SDCCmem.h,
3629         * src/SDCCmem.c: added pdata
3630         * src/port.h: added pdata_name to PORT
3631         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3632           (saveRegisters, unsaveRegisters): removed usage of B,
3633           (genMinus): fixed accumulator clash,
3634           (genJumpTab): added comment, this needs another look
3635         * src/mcs51/gen.c: added check for "B in use" paranoia,
3636           added pushB() and popB()
3637         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3638           chance
3639         * src/avr/main.c,
3640         * src/ds390/main.c,
3641         * src/hc08/main.c,
3642         * src/mcs51/main.c,
3643         * src/pic/main.c,
3644         * src/pic16/main.c,
3645         * src/xa51/main.c,
3646         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3647           added PSEG (PAG,XDATA) or NULL to port specifier
3648         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3649         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3650           (_mcs51_genInitStartup): removed __start__xstack equ,
3651           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3652         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3653         * src/z80/gen.c (_rleAppend): fixed warnings
3654         * support/regression/tests/zeropad.c: added pdata test
3655         * .version: bumped to 2.4.6
3656
3657 2004-10-17 Borut Razem <borut.razem AT siol.net>
3658
3659         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3660         as a part of nightly build
3661
3662 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3663
3664         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3665         WREG holds the first byte function parameters,
3666         * (aopForSym): take special case for symbols which are in FARSPACE
3667         but in CODESPACE too,
3668         * (assignResultValue): modified to take into account _G.useWreg,
3669         * (genCall): don't use wreg for parameter passing when function is
3670         declared as reentrant, too, added optimization INCF to stack
3671         pointer when stack parameter count is 1,
3672         * (genFunction, genEndFunction): refurnished and fixed to not using
3673         wreg for passing parameters when function has varargs or is
3674         reentrant, fixed bug with symbol name compare for generating
3675         functions in absolute address,
3676         * (pic16_storeForReturn): refurnished,
3677         * (genCmp): began writing a new version of the function, not ready
3678         yet, therefore it is disabled,
3679         * (genAssign): do not read code memory when assigning a function to
3680         a pointer function,
3681         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3682         array of characters, not pointer,
3683         * (pic16initialComments): in debug mode emit an .ident directive for
3684         the assembler,
3685         * (_process_pragma): emit a new warning type (internal to pic16)
3686         when setting stack to default length, emit a similar warning when
3687         placing a function at absolute address and address is not word aligned
3688         * (_pic16_parseOptions): added 'return TRUE' statement,
3689         * (_pic16_linkEdit): if compiling a source, then add the source's
3690         file object, first in the list of objects to link,
3691
3692 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3693
3694         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3695         * src/pic/main.c : removed VC warning.
3696         * src/pic/gen.c : changed comment.
3697
3698 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3699
3700         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3701         reference to a deprecated symbol _GPTRREG was causing failure to
3702         link. Thanks G. M. Gallant for the info.
3703
3704 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3705
3706         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3707         comments for Bugs item #954788.
3708
3709 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3710
3711         * src/pic16/device.c (pic16_dump_gsection,
3712         * pic16_groupRegistersInSection): handle symbols declared to be in
3713         access bank differently,
3714         * src/pic16/gen.c (struct _G): added field resDirect,
3715         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3716         send values read from stack directly to result and don't allocate
3717         temporary values,
3718         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3719         same registers,
3720         * (pic16_sameRegsOfs): NEW,
3721         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3722         free because they were not allocated from temporary pool,
3723         * pic16_popRegFromString): workaround to fix a problem with
3724         allocating variables twice or never,
3725         * (genGenPointerGet): using PRODL instead of FSR0H,
3726         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3727         instead of FSR0H,
3728         * (genAssign): take advantage of the _G.resDirect flag,
3729         * (genCast): around line 11844, use mov2f instead of directly
3730         MOVFF'ing between operands to account for literal values,
3731         * src/pic16/genutils.c: some new debug functions for gpsim have been
3732         added,
3733         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3734         float with integer part only,
3735         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3736         place variables in access bank
3737         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3738         updated sources to reflect recent changes in gen.c
3739
3740 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3741
3742         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3743         sources that searched for headers in installation path, now the
3744         device/include/pic16 is used,
3745         * src/pic16/glue.c (pic16glue),
3746         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3747         .line directives if not in debug mode, this suppresses assembler's
3748         warnings for ignored directives
3749
3750 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3751
3752         * src/port.h: made reset_regparms prototype void parameter explicit.
3753         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3754         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3755         * doc/sdccman.lyx: documented warning disabling and how to use
3756           printf_large to make it print floats.
3757         * device/include/stdbool.h: NEW
3758         * device/lib/_atof.c,
3759         * device/lib/_divuint.c,
3760         * device/lib/_divulong.c,
3761         * device/lib/expf.c,
3762         * device/lib/printf_large.c,
3763         * device/lib/sincosf.c,
3764         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3765         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3766           a completely reentrant lib.
3767
3768 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3769
3770         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3771         * device/include/pic16/stdio.h: fixed bug with colon
3772
3773 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3774
3775         * device/include/pic16/stdio.h,
3776         * device/include/pic16/stdlib.h,
3777         * device/include/pic16/math.h: NEW
3778         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3779         declared as _naked to reduce overhead
3780         * device/lib/Makefile.in (target port-specific-objects-pic16):
3781         changed * to *.* so to ignore the CVS directory,
3782         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3783         stacked variables back in stack,
3784         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3785         corruption
3786
3787 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3788
3789         * .version: bumped version number to 2.4.5
3790         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3791         * support/Util/SDCCerr.c (messages structure): added entry for
3792         W_POSSBUG2
3793
3794         Large cumulative patch for pic16 port and libraries.
3795         * device/include/pic16/sdcc-lib.h,
3796         * device/include/pic16/stdarg.h,
3797         * device/include/asm/pic16/features.h,
3798         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3799         * device/include/pic16/float.h: changes reentrant keyword with
3800         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3801         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3802         updated target build-libraries to include objects from gptr,
3803         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3804         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3805         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3806         all function headings,
3807         * src/SDCCmain.c: added global parameter userIncDirsSet,
3808         * (parseCmdLine): when option -I is encountered add directory to
3809         userIncDirsSet too,
3810         * src/version.awk: added space between control and long,
3811         * src/pic16/NOTES: added some notes for the port,
3812         * src/pic16/gen.c: added prototype for mov2fp function,
3813         * (fReturnpic16[]): properly named return value registers,
3814         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3815         * (aopForSym): added code to handle symbols with onStack flag set,
3816         symbols onStack are allocated PTRSIZE bytes,
3817         * (aopFreeAsmop): handles special case where asmops are stack objects,
3818         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3819         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3820         added argument lock to trace flaws in allocating temporary registers
3821         when developing port,
3822         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3823         * (pic16_popRegFromString): reenabled allocating a direct register
3824         from string,
3825         * (assignResultValue): various beautifications,
3826         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3827         referenced function argument,
3828         * (genIpush): reenabled to allow stacked arguments, handles only
3829         ic->parmPush iCodes,
3830         * (genCall, genPcall): major changes to allow for variable argument
3831         functions, fixed a bug with falsely restoring stack pointer after
3832         returning from call,
3833         * (genFunction): pending code for critical function,
3834         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3835         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3836         * (genNearPointerGet): fixed bug with indirect reading, was always
3837         reading from INDF0
3838         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3839         pointers,
3840         * (genAddrOf): rewrote code to take address of a stacked function parameter
3841         * (genCast): fixed casting to generic pointer type,
3842         * src/pic16/gen.h: added AOP_STA,
3843         * (struct asmop): added field stk,
3844         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3845         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3846         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3847         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3848         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3849         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3850         generic pointers,
3851         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3852         and library paths,
3853         * (pic16_port structure): generic pointer size is set to 3,
3854         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3855         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3856         compiler warning,
3857         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3858         operand is an iTemp,
3859
3860 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3861
3862         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3863         * debugger/mcs51/simi.c: addapt new syntax of s51
3864
3865 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3866
3867         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3868         * src/pic16/pcode.c: commented out some calls to free() in order to
3869         fix bug #989576,
3870
3871 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3872
3873         * src/SDCCicode.h,
3874         * src/SDCCicode.c (isiCodeInFunctionCall),
3875         * src/avr/ralloc.c (selectSpil),
3876         * src/pic/ralloc.c (selectSpil),
3877         * src/pic16/ralloc.c (selectSpil),
3878         * src/ds390/ralloc.c (selectSpil),
3879         * src/hc08/ralloc.c (selectSpil),
3880         * src/xa51/ralloc.c (selectSpil),
3881         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3882         stack in the middle of a function call sequence (fixes bug #1020268)
3883         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3884         costs associated with the minimum switch case.
3885
3886 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3887
3888         * src/SDCC.lex: fixed bug #1030549
3889
3890 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3891
3892         * src/SDCCcse.h (struct cseDef),
3893         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3894         over a function call if the CSE is derived from a symbol whose
3895         address has been taken (fixes bug #1029883)
3896         * support/regression/tests/bug-1029883: a new regression test for
3897         this bug
3898
3899 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3900
3901         * src/hc08/gen.c (emitinline): fixed bug #1029778
3902         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3903         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3904         and starts toward RFE #905167)
3905
3906 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3907
3908         * src/pic16/gen.c (mov2f): New function to move an operand to
3909         another without considering if it is a literal or a register,
3910         * (pic16_sameRegs): don't check if they are both AOP_REG,
3911         * (AccRsh): removed andmask=0 lines,
3912         * (genLeftShift): duplicated to be improved in future versions,
3913         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3914         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3915         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3916         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3917         * (insertBankSwitch): fixed inserting banksel directives algorithm
3918         for instructions that follow a skip instruction, this fixes a report
3919         for broken subtraction code generation,
3920         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3921         iCode is a left op, just in case result and right share the same
3922         registers
3923
3924 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3925
3926         * src/hc08/main.c,
3927         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3928         preservation of HX
3929         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3930         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3931         on 2004-09-12; it was buggy
3932
3933 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3934
3935         * src/SDCCsymt.h: removed RESULT_CHECK
3936         * src/SDCCast.c,
3937         * src/SDCCglue.c,
3938         * src/SDCCval.c,
3939         * src/pic/glue.c,
3940         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3941
3942 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3943
3944         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3945         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3946         configuration values no more rejected by compiler, they are assigned
3947         to configuration registers with a warning message instead,
3948         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3949         the for-loop so last conf register is emitted too,
3950         * (_pic16_initPaths): link library libsdcc.lib by default,
3951         * (_hasNativeMulFor): modified test for multiplication according to
3952         Raphael Neider's remarks. Integer multiplication is also done with
3953         support functions,
3954         * device/include/pic16/pic18fregs.h: corrected type error in while
3955         testing and including 18f6720 header file
3956
3957 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3958
3959         * src/pic16/device.h (pic16_options): removed field use_crt,
3960         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3961         until an optimization to handle single bits is added,
3962         * (pic16_loadFSR0): moved before genUnpackBits,
3963         * (genAnd): some white lines removed,
3964         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3965         leave_reset flags in pic16_options when using crt modules,
3966
3967 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3968
3969         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3970           for bugs 898889 & 979599. Also used some safer print instructions.
3971
3972 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3973
3974         * src/pic16/device.h (pic16_options_t): added field use_crt,
3975         crt_name, no_crt,
3976         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3977         catch a probable future bug,
3978         * src/pic16/gen.c: aopIdx function commented out,
3979         * (genAssign): commented out old code which used aopIdx,
3980         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3981         code, added if conditionals to take into account the --use-crt
3982         command line options,
3983         * src/pic16/main.c (pic16_optionsTable): added new command line
3984         options, --use-crt= and --no-crt,
3985         * (_pic16_linkEdit): now the proper crt object is added in the
3986         linker command line except than when --no-crt is specified,
3987         * src/pic16/pcode.c,
3988         * src/pic16/pcode.h: added some structures and functions for a new
3989         optimization scheme to compansate for instruction overhead between
3990         same iCodes, this scheme is currently under development and is not
3991         working in any way,
3992         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3993         to && operator,
3994         * device/lib/pic16/startup/crt0i.c,
3995         * device/lib/pic16/startup/crt0iz.c: added global char variable
3996         __uflags to force the generation of an idata section
3997
3998 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3999
4000         * doc/Makefile,
4001         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4002         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4003
4004 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4005
4006         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4007         Frieder) and clarified the default code optimization mode
4008
4009 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4010
4011         * src/SDCC.lex (doPragma, process_pragma),
4012         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4013         "opt_code_size", and "opt_code_balanced"
4014         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4015         regrouped options by category, added support for category headers
4016         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4017         and "--opt-code-size"
4018         * doc/sdccman.lyx: documented these new options and pragmas
4019         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4020         preference into account
4021
4022 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4023
4024         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4025           geniCodePreDec): Fixed bug 904237 by generating a warning
4026         * src/SDCCerr.h,
4027         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4028
4029 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4030
4031         * src/pic/device.c : When no max ram set validate full memory range.
4032         * src/pic/pcode.c,
4033         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4034
4035 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4036
4037         * device/lib/_gptrget.c,
4038         * device/lib/_gptrput.c: updated comment
4039         * device/lib/calloc.c,
4040         * device/lib/free.c,
4041         * device/lib/malloc.c,
4042         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4043         * src/SDCCcse.c (cseBBlock),
4044         * src/SDCCicode.c (printOperand, geniCodeArray),
4045         * src/SDCCicode.h (struct operand): fixed bug 868103
4046         * support/regression/tests/bug-868103.c: added
4047         * src/SDCCast.c (searchLitOp),
4048         * src/SDCCcse.h (struct cseDef),
4049         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4050         * src/SDCCicode.h (struct operand),
4051         * src/SDCCsymt.h (struct sym_link),
4052         * src/avr/gen.c (hasInc),
4053         * src/ds390/gen.c (hasInc),
4054         * src/hc08/gen.c (genPlusIncr, hasInc),
4055         * src/mcs51/gen.c (hasInc),
4056         * src/pic16/glue.c (pic16_printIvalChar),
4057         * src/pic16/ralloc.c (regWithIdx),
4058         * src/xa51/gen.c (hasInc) : removed warnings
4059         * src/SDCCast.c (createBlock): added comment ???
4060         * src/hc08/ralloc.c: updated comments
4061
4062 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4063
4064         * doc/sdccman.lyx: updated section on switch statements, added
4065         section about semaphore locking
4066         * doc/Makefile: added option -info for latex2html
4067         * device/lib/_gptrget.c,
4068         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4069
4070 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4071
4072         * src/pic/device.h,
4073         * src/pic/device.c,
4074         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4075          maxram is less than 0x100.
4076
4077 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4078
4079         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4080
4081 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4082
4083         * src/port.h,
4084         * src/mcs51/main.c,
4085         * src/ds390/main.c,
4086         * src/z80/main.c,
4087         * src/hc08/main.c,
4088         * src/pic/main.c,
4089         * src/pic16/main.c,
4090         * src/avr/main.c,
4091         * src/xa51/main.c
4092         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4093         a jump table is the best form for a switch statement, including
4094         automatic insertion of missing cases to make the case range
4095         continuous. Developed in collaboration with Frieder Ferlemann.
4096
4097 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4098
4099         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4100         accumulator result if it needs sign extension
4101
4102 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4103
4104         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4105
4106 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4107
4108         * device/lib/gbz80/printf.c,
4109         * device/lib/z80/printf.c: removed define for NULL
4110
4111 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4112
4113         * as/xa51/xa_link.c,
4114         * device/examples/ds390/ow390/ad26.c,
4115         * device/examples/ds390/ow390/cnt1d.c,
4116         * device/examples/ds390/ow390/counter.c,
4117         * device/examples/ds390/ow390/ds2480.h,
4118         * device/examples/ds390/ow390/ds2480ut.c,
4119         * device/examples/ds390/ow390/findtype.c,
4120         * device/examples/ds390/ow390/gethumd.c,
4121         * device/examples/ds390/ow390/owllu.c,
4122         * device/examples/ds390/ow390/ownetu.c,
4123         * device/examples/ds390/ow390/swt12.c,
4124         * device/examples/ds390/ow390/swtloop.c,
4125         * device/examples/ds390/ow390/temp.c,
4126         * device/examples/ds390/ow390/temp10.c,
4127         * device/examples/ds390/ow390/thermo21.c,
4128         * device/examples/ds390/ow390/tinilnk.c,
4129         * device/examples/ds390/ow390/tstfind.c,
4130         * device/examples/serialcomm/windows/serial.cpp,
4131         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4132         * device/include/reg51.h: fixed line endings for cvs
4133
4134 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4135
4136         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4137         packRegsForAccUse, packRegisters): new accumulator register
4138         packing algorithm
4139         * support/regression/ports/hc08/support.c (_putchar): suppress
4140         warning of unused variable
4141         * src/SDCCicode.c: added SWAP entry to codeTable
4142
4143 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4144
4145         * device/lib/sprintf.c: forgot to add this file before previous commit
4146
4147 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4148
4149         * src/pic16/gen.c (genPackBits): added operand right in function
4150         parameters, load result directly if p_type is POINTER (that is
4151         called by genNearPointerSet)
4152         * (genUnPackBits): added operand left in function parameters,
4153         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4154         FSR0 if accessing bitfields,
4155
4156 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4157
4158         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4159           _print_format; updated printf, sprintf, vsprintf
4160         * device/include/asm/default/features.h: corrected comment/define
4161         * device/lib/Makefile.in: added sprintf.c
4162         * device/lib/libsdcc.lib: added sprintf module
4163         * device/lib/printf_large.c,
4164         * device/lib/vprintf.c,
4165         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4166           into these 3 files
4167         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4168         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4169         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4170           hc08 test
4171         * support/regression/tests/zeropad.c: define idata as data for hc08
4172
4173 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4174
4175         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4176         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4177         labels are referenced at least once (even if a reference is not found)
4178         * src/hc08/gen.c (emitcode): set isComment flag for comments
4179         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4180         loads), rules 6a..6b (optimize jumps to return)
4181
4182 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4183
4184         * device/lib/acosf.c (acosf),
4185         * device/lib/asinf.c (asinf),
4186         * device/lib/atanf.c (atanf),
4187         * device/lib/ceilf.c (ceilf),
4188         * device/lib/cosf.c (cosf),
4189         * device/lib/coshf.c (coshf),
4190         * device/lib/cotf.c (cotf),
4191         * device/lib/fabsf.c (fabsf),
4192         * device/lib/floorf.c (floorf),
4193         * device/lib/log10f.c (log10f),
4194         * device/lib/logf.c (logf),
4195         * device/lib/sinf.c (sinf),
4196         * device/lib/sinhf.c (sinhf),
4197         * device/lib/sqrtf.c (sqrtf),
4198         * device/lib/tanf.c (tanf),
4199         * device/lib/tanhf.c (tanhf),
4200         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4201         replaced all instances of "reentrant" in the library functions
4202         defined in math.h with this macro.
4203         * support/regression/tests/float_trans.c: reenabled test for hc08
4204
4205 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4206
4207         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4208         erroneously deleted
4209
4210 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4211
4212         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4213         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4214         multi-byte volatile operands are used
4215         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4216         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4217         initialization to area GSINIT0 so that it would always precede
4218         any static initializers in GSINIT
4219         * support/regression/tests/zeropad.c: fixed idata define for hc08
4220         * support/regression/tests/bug-927659.c,
4221         * support/regression/tests/float_trans.c: disabled tests for hc08
4222         pending missing library routines
4223         * .version: increased version number to 2.4.4 - hc08 port now passes
4224         regression tests
4225
4226
4227 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4228
4229         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4230         * Makefile.common.in,
4231         * as/Makefile,
4232         * as/hc08/Makefile.in,
4233         * as/mcs51/Makefile.in,
4234         * as/z80/Makefile.in,
4235         * debugger/mcs51/Makefile.in,
4236         * device/include/Makefile.in,
4237         * device/lib/Makefile.in,
4238         * doc/Makefile,
4239         * link/Makefile,
4240         * link/z80/Makefile.in,
4241         * packihx/Makefile.in,
4242         * sim/ucsim/main_in.mk,
4243         * sim/ucsim/avr.src/Makefile.in,
4244         * sim/ucsim/doc/Makefile.in,
4245         * sim/ucsim/gui.src/serio.src/Makefile.in,
4246         * sim/ucsim/hc08.src/Makefile.in,
4247         * sim/ucsim/s51.src/Makefile.in,
4248         * sim/ucsim/xa.src/Makefile.in,
4249         * sim/ucsim/z80.src/Makefile.in,
4250         * src/Makefile.in,
4251         * support/cpp2/Makefile.in,
4252         * support/librarian/Makefile,
4253         * support/makebin/Makefile: added DESTDIR to the install path proposed
4254         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4255         * doc/sdccman.lyx: added DESTDIR documentation
4256
4257 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4258
4259         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4260         instruction for interrupt handlers, use fast returns when returning
4261         from high priority interrupts
4262
4263 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4264
4265         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4266         code generation
4267         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4268         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4269         bugs, ported much of Bernhard's code from mcs51
4270         * src/mcs51/gen.c (genSend),
4271         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4272         than one when calling a reentrant function
4273         * device/lib/_mullong.c: defined an alternate struct layout for big
4274         endian ports (hc08)
4275
4276 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4277
4278         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4279         test
4280
4281 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4282
4283         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4284         are sane and complete before asking the port its prefered parameter
4285         passing method (fixes bug #1017633)
4286         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4287         and _ret3
4288
4289 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4290
4291         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4292         problem in bitfields >= 8 bits.
4293
4294 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4295
4296         * src/SDCCsymt.c: undid changes that were not meant to be committed
4297
4298 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4299
4300         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4301
4302 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4303
4304         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4305           copied and wrong bit got inverted
4306
4307 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4308
4309         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4310         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4311         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4312         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4313         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4314         assignments to bitfields at known addresses
4315         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4316         reads from bitfields at known addresses
4317         * src/hc08/ralloc.c (packRegisters),
4318         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4319         genhc08Code): optimize pointer get values used as conditionals
4320         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4321         and branch
4322
4323 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4324
4325         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4326         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4327         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4328         as conditionals
4329
4330 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4331
4332         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4333
4334 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4335
4336         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4337         related problems
4338
4339 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4340
4341         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4342
4343 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4344
4345         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4346         mcs51 port
4347
4348 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4349
4350         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4351
4352 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4353
4354         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4355         cases use more compact code.
4356
4357 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4358
4359         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4360
4361 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4362
4363         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4364
4365 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4366
4367         * src/SDCCsymt.h,
4368         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4369         parameter of changePointer() from symbol* to sym_link*
4370         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4371         * src/SDCCsymt.c (compareType): void* type is castable to other
4372         pointers, but not necesarily an exact match.
4373         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4374         is no longer blindly treated as an exact match.
4375         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4376
4377 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4378
4379         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4380
4381 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4382
4383         * src/pic/gen.c,
4384         * src/pic/pcode.c,
4385         * src/pic/ralloc.h,
4386         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4387
4388 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4389
4390         * src/pic/device.c,
4391         * src/pic/device.h,
4392         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4393
4394 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4395
4396         * src/mcs51/gen.c (emitcode): fixed bug #992819
4397
4398 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4399
4400         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4401           there's no need to make it worse
4402
4403 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4404
4405         * src/mcs51/ralloc.c (deassignLR),
4406         * src/ds390/ralloc.c (deassignLR),
4407         * src/hc08/ralloc.c (deassignLR),
4408         * src/z80/ralloc.c (deassignLR),
4409         * src/pic/ralloc.c (deassignLR),
4410         * src/pic16/ralloc.c (deassignLR),
4411         * src/avr/ralloc.c (deassignLR),
4412         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4413         rlivePoint): fixed another part of bug #971834
4414
4415 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4416
4417         * src/z80/main.c: enabled "critical" keyword
4418         * src/z80/mappings.i,
4419         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4420         functions (fixes bug #979646)
4421         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4422
4423 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4424
4425         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4426           such as c:\mydir.
4427
4428 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4429
4430         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4431           doesn't disable too much optimizations
4432
4433 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4434
4435         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4436
4437 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4438
4439         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4440
4441 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4442
4443         * src/pic/gen.c tidied up tabs
4444         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4445         * src/pic/main.c tidied up tabs
4446         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4447         * src/pic/pcoderegs.c tidied up tabs
4448         * src/pic/ralloc.c tidied up tabs
4449
4450 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4451
4452         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4453         to S_FIXED for pic16 port and when symbol is not in level 0,
4454         allocate for S_REGISTER storage class and pic16 port, too,
4455         * src/pic16/device.h: prototype for checkSym,
4456         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4457         * (pic16_assignConfigWordValue): test the value and the mask to
4458         validate that the value is suitable for the configuration word,
4459         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4460         collect extern declared symbols, don't emit symbol twice, check
4461         first if symbol is in publics set first,
4462         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4463         * added command line '--fstack' which enables an experimental
4464         feature for stack access, too buggy to be used yet...
4465         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4466         * (pic16_allocDirReg): when register has storage class S_REGISTER
4467         allocate in pic16_dynAccessRegs,
4468         * device/include/pic16/pic18f????.h: modified configuration word
4469         naming convention, words started as CONFIG0H but should be CONFIG1H
4470
4471 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4472
4473         * device/include/mcs51reg.h: fixed bug 970993
4474
4475 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4476
4477         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4478         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4479         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4480         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4481         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4482         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4483           error/warning numbers,
4484           added function setWarningDisabled()
4485         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4486         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4487           _memcmp.c _memmove.c calloc.c realloc.c free.c
4488         * support/regression/tests/malloc.c: added tests for new functionality
4489         * support/regression/tests/zeropad.c: added tests for truncated initializers
4490           and initialized char arrays starting with '\x0'
4491         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4492
4493 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4494
4495         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4496
4497 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4498
4499         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4500         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4501         peephole 177.e. Thanks to anonymous
4502
4503 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4504
4505         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4506         function isn't used in the source but referenced as a
4507         variable initializer then declare it as extern in .asm file
4508
4509 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4510
4511         * .version: increased version number to 2.4.3
4512
4513         Adding version extension according to ChangeLog CVS revision
4514         * src/Makefile.in (target all): added dependency 'version.h'
4515         * (rule version.h): added rule to create version.h from ChangeLog,
4516         * (rule dep): added dependency version.h,
4517         * src/version.awk: AWK script to create version.h
4518         * src/SDCCdwarf2.c (dwWriteModule),
4519         * src/SDCCglue.c (initialComments),
4520         * src/SDCCmain.c (printVersionInfo): modified to write after
4521         version string the version extension number,
4522         * src/SDCCutil.c: included "version.h"
4523         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4524         number,
4525         * src/SDCCutil.h: added prototype for getBuildNumber
4526
4527         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4528         includeDirsSet, too,
4529         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4530         const char [] is found in function prototype...
4531
4532         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4533         moving to WREG with source is already in WREG,
4534         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4535         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4536         * (aopForSym): stack'ed symbols are partially supported, added
4537         if-clause to support symbols in FARSPACE,
4538         * (sameRegs): added test for AOP_ACC to see if registers are same,
4539         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4540         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4541         * (pic16_popRegFromString): will not allocate a new register if it
4542         doesn't find one by name, bug may have introduced...
4543         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4544         * (genIpush): revived to use pic16 port's stack,
4545         * (genAddrOf): added incomplete case for stack'ed operand,
4546         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4547         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4548         can handle multibyte operands,
4549         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4550         * (pic16initialComments): added message for MPLAB compatibility
4551         mode enabled,
4552         * src/pic16/main.h: prototype for pic16_mplab_comp,
4553         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4554         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4555         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4556         because of increased complexity of procedure,
4557         * (_process_pragma): stack pragma changed to format 'stack pos len',
4558         emit symbol '_stack_end' to conform with gplink,
4559         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4560         to search for register,
4561         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4562         PO_GPR_REGISTER,
4563         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4564         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4565         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4566         case for PO_GPR_REGISTER,
4567         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4568         dies, the new era is ahead !...
4569         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4570         pic16_dynInternalRegs,
4571         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4572         * (pic16_allocDirReg): minor optimizations and bug fixes,
4573         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4574
4575         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4576         load stack and frame pointer with address of 'stack_end' symbol
4577
4578 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4579
4580         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4581         without source code but only variable initializers
4582
4583 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4584
4585         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4586         external are not declared as extern to reduce overhead while linking
4587
4588 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4589
4590         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4591
4592 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4593
4594         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4595           Yee Keat for the patch
4596         * src/SDCCast.c (decorateType): fixed bug #979599
4597         * src/ds390/gen.h: removed local fReturnSizeDS390
4598         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4599         * src/ds390/gen.c (genAnd, genOr, genXor),
4600         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4601
4602 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4603
4604         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4605         add relFilesSet to $3, manipulate $2 to handle linking of object
4606         files without source files in command line,
4607         * device/include/pic16 (all headers): added ID location macros,
4608         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4609         entries for ID location bytes,
4610         * (pic16_assignIdByteValue): NEW,
4611         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4612         added field dumpcalltree to pic16_options_t,
4613         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4614         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4615         emitting rFalseIfx label after check_carry label,
4616         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4617         pic16_emitDIRegs), NEW
4618         * (pic16glue): dump .calltree file when option --calltree found,
4619         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4620         * (_pic16_genAssemblerPreamble): emit ID locations after
4621         configuration registers,
4622         * (pic16_linkCmd): modifications of the link command,
4623         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4624         * (pic16_pCodeInitRegisters): don't init stack registers,
4625         * (pic16_findPrevInstruction): fixed bug,
4626         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4627         bug with immediate registers,
4628         * (buildCallTree): traces stack push and pop,
4629         * (pct2): dump also stack usage for each function,
4630         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4631         * (pic16_allocDirReg): various modifications,
4632         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4633         fixed to 1,
4634
4635 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4636
4637         * src/pic16/pcode.c: removed buggy double colon
4638
4639 2004-07-01 Borut Razem <borut.razem AT siol.net>
4640
4641         * support/scripts/sdcc.nsi: added include/pic16 to setup
4642
4643 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4644
4645         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4646         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4647         target 'clean',
4648         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4649         specific command line arguments. Also added sample lkr script
4650         for placing a variable at a specific memory bank.
4651         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4652         at a specific memory bank,
4653         * (pic16_dump_isection): fixed bug which caused string literals to
4654         be omitted when dumping idata section,
4655         * (pic16_groupRegistersInSection): added code to handle registers
4656         in specific memory banks,
4657         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4658         public, all references are renamed too,
4659         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4660         AOP_DPTR2,
4661         * (pic16_storeForReturn): added case to handle when dest is WREG,
4662         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4663         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4664         pic16_rel_udata, check to see if that register is marked as being
4665         a member of a specific memory bank,
4666         * (pic16_printIvalCharPtr): added code to add string literals either
4667         to code or the idata sections,
4668         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4669         also accept the 'udata' pragma,
4670         * src/pic16/main.h: new structure types sectName and sectSym
4671         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4672         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4673         * (pic16_findPrevInstruction): fixed, it returned nothing,
4674         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4675         instruction combinations,
4676         * (pic16_FixRegisterBanking): heavily reorganised,
4677         * (pic16_AnalyzeBanking): if generating banksel directives is
4678         disabled, then don't call FixRegisterBanking at all,
4679         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4680         completely removed,
4681         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4682
4683 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4684
4685         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4686         Phuah Yee Keat <yk.phuah AT nestac.com>
4687
4688 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4689
4690         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4691         correctly the IVT even if it is relocated to some other location
4692
4693 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4694
4695         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4696         * device/include/pic16/pic18f2220.h: NEW,
4697         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4698         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4699         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4700         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4701         nodefaultlibs, ivt_loc is the location of the interrupt vector
4702         table, and nodefaultlibs signs that default libraries should not be
4703         linked in link stage,
4704         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4705         according to --ivt-loc argument,
4706         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4707         when pragma stack is found,
4708
4709 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4710
4711         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4712         256 (range check), 257 (do while), 258.a-f (bit banging
4713         f.e. on 3-wire SPI bus)
4714
4715 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4716
4717         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4718         variables used exclusively within a loop
4719
4720 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4721
4722         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4723
4724 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4725
4726         * src/SDCClrange.c (computeClash): fixed bug #971834
4727
4728 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4729
4730         * src/mcs51/gen.c (genCmp): fixed bug #975903
4731         * src/hc08/gen.c (operandsEqu),
4732         * src/ds390/gen.c (operandsEqu),
4733         * src/z80/gen.c (operandsEqu),
4734         * src/pic/gen.c (operandsEqu),
4735         * src/pic16/gen.c (operandsEqu),
4736         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4737         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4738
4739 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4740
4741         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4742
4743 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4744
4745         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4746         default case in switch statement,
4747         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4748         to eliminate problem with initialisation of pointers, but problem
4749         still exists,
4750         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4751         * (emitStaticSegment): removed various lines emitting debug info,
4752         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4753         added processor registers for utilizing EEPROM,
4754         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4755         configurable and set 8
4756
4757 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4758
4759         * .version: increased version number to 2.4.2,
4760
4761         Cumulative patch for pic16 port
4762         * src/pic16/device.c: changed scheme to dump initial values for
4763         variables in idata segment, all print_idata* functions were removed,
4764         now the pic16_printIval* will be called,
4765         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4766         * _pic16_printPointerType, pic16_printPointerType,
4767         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4768         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4769         NEW, similar to the respective functions in SDCCglue.c,
4770         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4771         way, emitting hex bytes,
4772         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4773
4774 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4775
4776         * src/avr/ralloc.c (serialRegAssign),
4777         * src/xa51/ralloc.c (serialRegAssign),
4778         * src/pic/ralloc.c (serialRegAssign),
4779         * src/pic16/ralloc.c (serialRegAssign),
4780         * src/hc08/ralloc.c (serialRegAssign),
4781         * src/z80/ralloc.c (serialRegAssign),
4782         * src/ds390/ralloc.c (serialRegAssign),
4783         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4784
4785 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4786
4787         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4788         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4789
4790 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4791
4792         Cumulative patch for pic16 port:
4793         * src/pic16/device.h (typedef PIC16_device) modified fields for
4794         defining microcontrollers,
4795         * src/pic16/device.c: added new info for all devices in Pics16 array,
4796         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4797         to be optimised out by the pCode optimiser,
4798         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4799         specially, bug reported by G.M. Gallant,
4800         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4801         as force'd so that cannot be optimised out by pCode optimiser,
4802         * src/pic16/pcode.c,
4803         * src/pic16/pcodepeeph.c,
4804         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4805         they are disabled by default, but can be enabled explicit with
4806         command argument --denable-peeps, for testing,
4807         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4808         --pomit-ivt in COMPILE_FLAGS
4809
4810 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4811
4812         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4813           compilation on MSVC
4814
4815 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4816
4817         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4818
4819 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4820
4821         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4822         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4823
4824 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4825
4826         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4827         would only assign 0x300001 register.
4828
4829 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4830
4831         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4832         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4833
4834 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4835
4836         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4837         for ds80c400
4838         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4839         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4840         added peephole 254 (left shift), 255 (jump table)
4841
4842 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4843
4844         * device/lib/Makefile.in: removed comment line with model-pic16,
4845         * (target port-specific-objects-pic16): the libraries and objects
4846         are copied to the build directory form the device/lib/pic16/bin
4847         directory
4848
4849         Cumulative patch concerning pic16 port:
4850         * library directory has been re-organized,
4851         * added support for PIC18F1220,
4852         * added headers and library sources for chips 18f1220,18f6520,
4853         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4854
4855         * configuration registers setting has changed, now each supported
4856         device has a complete description of the registers it uses,
4857         * all initialisations are moved to idata sections, these section
4858         can be absolute or relocatable,
4859         * fixed initialisation of codespace variables,
4860         * fixed warning about PCLATU and gpsim,
4861         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4862         * (genAssign): use table reads when assigning from variables in codespace,
4863         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4864         char/int variables placed in codespace,
4865         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4866         registers set in .asm file, no need for --pomit-config-words anymore,
4867         * (pic16glue): some 8051 legacy segments are commented out
4868         (to be removed completely),
4869         * added support for alternative assembler and linker with --asm=
4870         and --link= command line arguments,
4871         * peepholes are disabled automatically in the port, no need to
4872         specify on command line,
4873         * port supports natively char/int/long multiplication, but converts
4874         all divisions to support functions,
4875         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4876         to the file set in variable $2,
4877         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4878         strings in ASCII format and not in hex,
4879         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4880         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4881         allocate proper register if iCodes aren't temporary,
4882
4883 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4884
4885         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4886
4887 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4888
4889         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4890         is commented out
4891
4892 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4893
4894         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4895         computed address is reused
4896         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4897         multi-byte bitfields
4898
4899 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4900
4901         * src/z80/gen.c: (genArrayInit): must check for pointers too
4902
4903 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4904
4905         * support/regression/tests/zeropad.c: never meant to commit the
4906           nestedstruct test: removed, added check for GCC version
4907
4908 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4909
4910         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4911         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4912         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4913           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4914           bugs 928906 and 954082 half-empty initializers
4915         * src/SDCCsymt.h,
4916         * src/SDCCsymt.c (getAllocSize): added for above fix
4917         * src/z80/gen.c (genArrayInit): fixed bug 741044
4918         * support/regression/tests/zeropad.c: added tests
4919
4920 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4921
4922         * src/pic16/device.c (pic16_dump_section): corrected bug which
4923         caused some symbols of the libraries to be misplaced
4924
4925 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4926
4927         * src/pic16/glue.c,
4928         * src/pic16/ralloc.h,
4929         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4930         to fix conflict with pic port
4931
4932 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4933
4934         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4935         externs configuration variables,
4936         * src/pic16/ralloc.h,
4937         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4938         prototype in header, commented out some debug messages
4939
4940 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4941
4942         * src/pic16/glue.c,
4943         * src/pic16/main.c,
4944         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4945         for gpasm COFF object generation. Thanks to D. Hawkins for
4946         his patch info
4947
4948 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4949
4950         * src/ds390/main.c,
4951         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4952         Brock for spotting this)
4953         * src/ds390/gen.c (genEndFunction),
4954         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4955         interrupt handler and critical. Disable push/pop optimizations when
4956         peephole optimizations disabled.
4957
4958 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4959
4960         Updated pic16 library sources and headers.
4961         * device/lib/pic16/pic18f*/ ,
4962         * device/include/pic16/*.h: modified to handle structured SFR
4963         definitions
4964
4965 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4966
4967         * src/port.h (PORT structure): added hook initPaths, now each
4968         port can declare its own default search paths,
4969         which can been seen with the --print-search-dirs option,
4970         see pic16 port for example,
4971         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4972         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4973         * (doPrintSearchDirs): NEW, replaces in a central manner the
4974         printing of search dirs which was split in set*Paths functions,
4975         * (main): added call to port->initPaths and doPrintSearchDirs,
4976         * src/avr/main.c,
4977         * src/ds390/main.c,
4978         * src/hc08/main.c,
4979         * src/izt/i186.c,
4980         * src/izt/tlcs900h.c,
4981         * src/mcs51/main.c,
4982         * src/pic/main.c,
4983         * src/pic16/main.c: modified port structures to reflect addition of
4984         initPaths hook,
4985
4986         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4987         * (pic16_dump_section): for registers in same address reserve memory once,
4988         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4989         to no_banksel,
4990         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4991         result is greater in size than right or left,
4992         * (pic16_genUMult8X8_8): there are some cases where the result can
4993         be 16 bits size, so handle these,
4994         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4995         * (pic16_outBitC): modified to emit pcodes,
4996         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4997         or not,
4998         * (genDivOneByte): implemented algorithm to divide 8-bits,
4999         * (genCmp): uncommented goto, but issues still exist,
5000         * (genAnd): fixed a bug with variables >8bits,
5001         * (genPackBits): optimization added that uses BCF/BSF to change a
5002         single bit,
5003         * (genAssign): fixed bug when assigning floating point literals,
5004         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5005         __sdcc_gsinit_startup label,
5006         * src/pic16/main.c (_pic16_init): removed search directory
5007         initialisations,
5008         * (_pic16_initPaths): NEW, used to initialise search directories,
5009         * (_hasNativeMulFor): support functions for all except char/int
5010         multiplication, and char division,
5011         * (PIC16_port struct): modified entry for native mul support,
5012         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5013         no_banksel option,
5014         * (buildCallTree): call to register_usage is ifdef'ed out,
5015
5016 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5017
5018         * device/include/string.h: applied Stas Sergeev's patch to make this
5019         header file compatible with the preprocessor -Wundef option
5020         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5021         failure (fixes bug #941458)
5022
5023 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5024
5025         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5026         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5027         that the variable, not the function, should be static
5028         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5029         to be consistent with non-literal case
5030
5031 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5032
5033         * src/SDCCast.c (isConformingBody): fixed bug #949967
5034         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5035         convilong): fixed bug #952086
5036
5037 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5038
5039         * src/SDCCmem.c (allocVariables): fixed bug #955321
5040
5041 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5042
5043         * src/hc08/main.c (_hc08_genAssemblerEnd),
5044         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5045         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5046         completely eliminated the use of a temporary file
5047         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5048         when more than one file linked
5049         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5050
5051 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5052
5053         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5054         which fixes bug #543481
5055         * support/regression/tests/bug-751703.c: fixed comments left from a
5056         cut and paste error
5057         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5058         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5059         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5060         scopes
5061         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5062         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5063         are now changed to underscores in moduleName
5064
5065 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5066
5067         * as/mcs51/lkmem.c: better fix for bug #954173
5068
5069 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5070         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5071
5072         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5073         * device/include/c8051f000.h,
5074         * device/include/c8051f120.h,
5075         * device/include/c8051f300.h,
5076         * device/include/c8051f310.h,
5077         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5078         PWM16) and detab'ed
5079
5080 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5081
5082         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5083         and mailing lists, doc'ed --no-peep-comments, removed reference
5084         to knoppix (newest version has no LyX/LaTeX), other minor changes
5085         * src/SDCCglue.c (glue): save 2 bytes stack space with
5086         option --main-return. The ljmp could probably be avoided too
5087
5088 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5089
5090         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5091
5092 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5093
5094         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5095         * src/SDCCopt.c (isLocalWithoutDef),
5096         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5097         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5098         (credit to Maarten Brock for patch #949363, on which this is based)
5099         * support/regression/tests/bug-751703.c: some test cases of extern used
5100         within inner scopes.
5101
5102 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5103
5104         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5105         SPEC_STRUCT
5106         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5107         struct definitions
5108         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5109         dwWriteLabel): fix to create valid debugger symbols even when
5110         the module name has non-alphanumeric symbols in it
5111         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5112         when a variable's allocation has been optimized away
5113
5114
5115 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5116
5117         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5118         * src/hc08/main.c,
5119         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5120         * src/mcs51/main.c,
5121         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5122         * src/ds390/main.c,
5123         * src/z80/gen.c (z80_emitDebuggerSymbol),
5124         * src/z80/main.c,
5125         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5126         * src/pic/main.c,
5127         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5128         * src/pic16/main.c,
5129         * src/avr/gen.c (avr_emitDebuggerSymbol),
5130         * src/avr/main.c,
5131         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5132         * src/xa51/main.c,
5133         * src/SDCCdebug.c (emitDebuggerSymbol),
5134         * src/SDCCdebug.h,
5135         * src/port.h: added a debugger struct to the port struct. Added a
5136         callback for defining debugger symbols
5137
5138         * src/SDCCast.c (createLabel),
5139         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5140         with isitmp = 1
5141         * src/SDCCicode.h,
5142         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5143         iCode back to the ast for the function
5144
5145         * src/hc08/ralloc.c (hc08_assignRegisters),
5146         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5147         unneeded fields from the regs struct.
5148         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5149         pushReg() & pullReg() functions instead of emitcode()
5150
5151         * src/hc08/gen.c (genLabel, genhc08Code),
5152         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5153
5154         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5155         debugger hooks
5156
5157         * src/hc08/gen.c (genEndFunction, genhc08Code),
5158         * src/hc08/gen.h,
5159         * src/mcs51/gen.c (genEndFunction, gen51Code),
5160         * src/mcs51/gen.h,
5161         * src/ds390/gen.c (genEndFunction, gen390Code),
5162         * src/ds390/gen.h,
5163         * src/z80/gen.c (genEndFunction, genZ80Code),
5164         * src/z80/gen.h,
5165         * src/z80/z80.h,
5166         * src/pic/gen.c (genEndFunction, genpic14Code),
5167         * src/pic/gen.h,
5168         * src/pic16/gen.c (genEndFunction, genpic16Code),
5169         * src/pic16/gen.h,
5170         * src/avr/gen.c (genEndFunction, genAVRCode),
5171         * src/avr/gen.h,
5172         * src/xa51/gen.c (genEndFunction, genXA51Code),
5173         * src/xa51/gen.h,
5174         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5175         specific code to cdbFile.c and out of the backend code generators
5176
5177         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5178         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5179         starting address is now 0
5180
5181         * as/hc08/asm.h,
5182         * as/hc08/m08pst.c,
5183         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5184         assembler directive for DWARF support
5185         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5186
5187         * src/src.dsp,
5188         * src/Makefile.in,
5189         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5190
5191 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5192
5193         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5194         and inappropriate peephole optimization in jump tables
5195
5196 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5197
5198         * as/hc08/m08pst.c,
5199         * src/SDCCglue.c: sdccopt works for the hc08 port now
5200
5201 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5202
5203         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5204
5205 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5206
5207         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5208
5209 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5210
5211         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5212         rules
5213         * src/SDCCmain.c,
5214         * src/SDCCglobl.h,
5215         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5216         comments from the peephole optimizer replacement rules
5217         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5218         symbols
5219         * src/SDCCcse.c (updateSpillLocation),
5220         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5221         equivalents
5222         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5223         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5224         objects far pointers
5225
5226 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5227
5228         * src/SDCCsymt.h: a missing part of my last change
5229         * src/pic/ralloc.c (regTypeNum),
5230         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5231
5232 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5233
5234         * src/SDCCicode.h,
5235         * src/SDCCicode.c (aggrToPtrDclType),
5236         * src/SDCCptropt.h,
5237         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5238         ptrPseudoSymConvert),
5239         * src/pic/ralloc.c (regTypeNum),
5240         * src/pic16/ralloc.c (regTypeNum),
5241         * src/hc08/ralloc.c (regTypeNum),
5242         * src/ds390/ralloc.c (regTypeNum),
5243         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5244         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5245
5246 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5247
5248         * link/z80/lkmain.c (afile),
5249         * as/hc08/lkmain.c (afile),
5250         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5251         prevent a pointer problem when a filename has no directory and
5252         no extension specified.
5253
5254 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5255
5256         * link/z80/lkmain.c (afile): allow periods in directory names
5257         * link/z80/lkmain.c (afile),
5258         * as/mcs51/lkmain.c (afile),
5259         * as/hc08/lkmain.c (afile): allow linker script file to have an
5260         extension other than ".lnk"
5261         * link/z80/lklex.c (getfid),
5262         * link/z80/lkmain.c (parse),
5263         * as/mcs51/lklex.c (getfid),
5264         * as/mcs51/lkmain.c (parse),
5265         * as/hc08/lklex.c (getfid),
5266         * as/hc08/lkmain.c (parse): Support comments in the linker script
5267         file on lines by themselves and after filenames
5268
5269 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5270
5271         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5272
5273 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5274
5275         * src/z80/peeph-z80.def: removed some peephole rules that don't
5276         work with multibyte arithmetic (fixed bug #937126)
5277         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5278         to registers and not global variables
5279         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5280         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5281         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5282         checking for assignments not internally generated (fixed bug #931895)
5283         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5284         structure member (fixed bug #930072)
5285
5286 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5287
5288         * src/SDCCmain.c (linkEdit),
5289         * src/hc08/main.c (_hc08_parseOptions),
5290         * as/hc08/Makefile.in,
5291         * as/hc08/aslink.h,
5292         * as/hc08/asm.h,
5293         * as/hc08/m08pst.c,
5294         * as/hc08/lkrloc.c (relr, rele),
5295         * as/hc08/lkarea.c (lnkarea)
5296         * as/hc08/lkmain.c (afile, parse),
5297         * as/hc08/lkelf.c: support for ELF output
5298         * as/hc08/lks19.c (s19),
5299         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5300
5301 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5302
5303         * as/mcs51/lkihx.c: Fixed bug #899105.
5304
5305 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5306
5307         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5308         .dsp files from Unix to DOS.
5309
5310 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5311
5312         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5313         function pointers; we have been compliant for several months now.
5314         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5315         change that was accidently commented out
5316         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5317         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5318         bug #922319
5319
5320 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5321
5322         * src/hc08/gen.c: output of all of the internal debugging information
5323         is now controlled by the D() macro; it is disabled by default
5324
5325 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5326
5327         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5328         harder to keep the same registers during a CAST iCode
5329         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5330         long via int can be done in a single cast, if the signedness is
5331         correct.
5332         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5333         putchar() in tinibios.c in ds390's library
5334
5335 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5336
5337         * src/SDCCast.c (decorateType): fixed bug #898889,
5338         cast result of a literal complement too
5339         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5340         fixed check for bitfields
5341
5342 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5343
5344         * src/SDCCicode.c (geniCodeLogic): made it static,
5345         (geniCodeLogicAndOr): added in order to fix bug #905492,
5346         (ast2iCode): fixed bug #905492
5347         * support/regression/tests/bug-905492.c: added
5348         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5349         (processParms): fixed bug #927659: don't copy parms, this will clear
5350         decorated flag
5351         * support/regression/tests/bug-927659.c: added
5352
5353 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5354
5355         * src/SDCCast.c (addCast): don't cast float to char
5356         * device/lib/libsdcc.lib: added _memmove
5357
5358 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5359
5360         * device/lib/large/Makefile: fixed parallel execution by
5361         replacing `make` by `$(MAKE)`
5362
5363 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5364
5365         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5366         offsets (fixes bug #923936)
5367
5368 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5369
5370         * device/lib/small/Makefile: fixed parallel execution by
5371         replacing `make` by `$(MAKE)`
5372
5373 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5374
5375         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5376
5377 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5378
5379         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5380         * src/regression/Makefile: Regression test was not running.
5381
5382 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5383
5384         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5385         complement if possible
5386         * src/SDCCval.c (valComplement),
5387         * src/SDCCicode.c (operandOperation): fixed complement of literal
5388         * support/regression/tests/onebyte.c (testComplement): added
5389
5390 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5391
5392         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5393         return an optimized tree; actually replace actParm with the new tree
5394         * src/SDCCast.h: added some parantheses to remove side effects
5395         * support/regression/tests/bug-920866.c
5396
5397 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5398         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5399         Bit operands were not being handled properly in the pic14 port.
5400         (now src/regression/add.c passes again).
5401
5402 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5403
5404         * src/SDCC.y (labeled_statement): case and default no longer require
5405         a following statement (RFE #893037)
5406
5407 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5408
5409         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5410         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5411         disabled (fixes bug #916294)
5412         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5413         "mov a,acc"; patch provided by Lenny Story
5414         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5415
5416 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5417
5418         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5419         functions
5420         * src/ds390/gen.c (genFunction, genEndFunction),
5421         * src/ds390/ralloc.c (ds390_assignRegisters),
5422         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5423         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5424         pushed if there are parameters passed on the stack. Also, a cleaner
5425         way to decide if r0/r1 should be pushed/popped. (Together they fix
5426         bug #918693)
5427
5428 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5429
5430         * doc/sdccman.lyx,
5431         * device/lib/mcs51/crtpagesfr.asm,
5432         * device/lib/mcs51/crtxinit.asm,
5433         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5434         to avoid confusion with Si Lab's SFRPAGE register.
5435
5436 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5437
5438         * src/SDCCglue.c (emitMaps): allow public sfr variables
5439         * src/SDCCglue.c (initialComments): include compiler build date
5440         with compiler version and put the timestamp of the generated
5441         assembly file on a serperate line to be less confusing.
5442         * src/port.h: added genInitStartup hook
5443         * src/avr/main.c,
5444         * src/ds390/main.c,
5445         * src/hc08/main.c,
5446         * src/pic/main.c,
5447         * src/pic16/main.c,
5448         * src/xa51/main.c,
5449         * src/z80/main.c: genInitStartup initialize as NULL (default to
5450         historical behaviour)
5451         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5452         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5453         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5454         library instead of hard coding it into the compiler.
5455         * support/regression/ports/mcs51-stack-auto/spec.mk,
5456         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5457         * device/lib/mcs51/Makefile,
5458         * device/lib/small/Makefile,
5459         * device/lib/large/Makefile,
5460         * device/lib/mcs51/crtpagesfr.asm,
5461         * device/lib/mcs51/crtstart.asm,
5462         * device/lib/mcs51/crtxclear.asm,
5463         * device/lib/mcs51/crtxinit.asm,
5464         * device/lib/mcs51/crtclear.asm,
5465         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5466         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5467         and into user configurable files.
5468         * device/lib/clean.mk: clean mcs51 directory too
5469         * support/regression/tests/longlit.c: added static to T1 declaration
5470         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5471         accesses in the initialization code
5472
5473 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5474
5475         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5476         OSCTRIMVAL as noted in bug #916008
5477
5478 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5479
5480         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5481         in loops with multiple exits (reported as incorrect registers
5482         used by Martin Helmling in Sdcc-user list)
5483
5484 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5485
5486         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5487         made ds390 register extensions look less like error messages
5488
5489 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5490
5491         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5492         reported by Adam Wozniak in Sdcc-user list
5493
5494 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5495
5496         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5497         arithmetic optimizations, added debug output
5498
5499 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5500
5501         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5502         * sdcc.spec: updated and split sdcc into 3 rpms
5503         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5504         needed for literals of LEFT_OP and '+'
5505         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5506         introduced RESULT_TYPE_NOPROM
5507         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5508         left shift
5509         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5510         limited promotion to int only for '*'
5511         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5512
5513 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5514
5515         * src/pic16/gen.c (genSkip),
5516         (genc16bit2lit), (gencjneshort): commented out
5517         (is_LitOp): new helper function, checks operand type
5518         (genCmpEq): rewritten
5519
5520 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5521
5522         * support/regression/tests/bug-908454.c: added
5523
5524 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5525
5526         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5527         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5528         (geniCodeCast): cosmetic, don't preserve bit storage class
5529         (geniCodeLeftShift): added promotion
5530         (geniCodeLogic): fixed regression
5531         * src/SDCCsymt.c (computeTypeOr): accept bits too
5532         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5533
5534 2004-03-07  Borut Razem <borut.razem AT siol.net>
5535
5536         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5537
5538 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5539
5540         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5541         version of pic16_genPackRegisters which does not check if ic is a
5542         CAST operator,
5543         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5544         function cause string1.c regression test fails
5545
5546 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5547
5548         * sim/ucsim/configure.in,
5549         * sim/ucsim/configure,
5550         * sim/ucsim/doc/Makefile.in: use docdir
5551         * src/SDCC.y: fixed sbit atrributes
5552         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5553         * src/SDCCast.c (decorateType): |^& need special promotion handling
5554         * src/SDCCast.h,
5555         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5556         * src/SDCCsymt.h (computeType),
5557         * src/SDCCicode.c: computeType() needs op
5558         * src/SDCCsymt.c (checkTypeSanity),
5559         * doc/sddman.lyx: "plain" bitfields are unsigned
5560         * src/SDCCsymt.c (computeTypeOr): added
5561         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5562         |^& ops
5563         * src/SDCCval.c (val*): computeType() needs op
5564         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5565         * support/regression/tests/onebyte.c: added tests for |^&
5566
5567 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5568
5569         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5570         for writing icode into asm output.
5571
5572 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5573
5574         * src/pic16/device.c: added some debug lines enabled
5575         with macro DEBUG_CHECK,
5576         * src/pic16/genarith.c: more debug in genPlus,
5577         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5578         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5579         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5580         * (aopForSym): onStack symbols are re-placed in data memspace,
5581         and onStack flag is cleared,
5582         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5583         copy temporary pcodeop,
5584         * (genPcall): added warning for not updating PCLATU,
5585         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5586         always true for pic16 port,
5587         * (genMultOneWord): NEW, supports integer multiplication,
5588         * (genMult): modified to call genMultOneWord,
5589         * (ifxForOp): added warning when return NULL,
5590         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5591         flag is set before call to operandFromSymbol for implicit
5592         added structures,
5593         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5594         options.intlong_rent are set by default,
5595         * (_hasNativeMulFor): modified to allow port generation of integer
5596         multiplication,
5597         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5598         set regtype to REG_SFR for all registers, restricting seting the
5599         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5600
5601 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5602
5603         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5604         more than 500 times in the regression tests
5605
5606 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5607
5608         * support/Util/SDCCerr.h,
5609         * support/Util/SDCCerr.c,
5610         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5611         enumerator_list),
5612         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5613         for symbol conflicts.
5614         * support/valdiags/tests/enum.c,
5615         * support/valdiags/tests/tentdecl.c,
5616         * support/valdiags/tests/struct.c: expect possible error messages
5617         referring to original symbol definitions.
5618         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5619         * src/SDCCsymt.h,
5620         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5621
5622 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5623
5624         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5625
5626 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5627
5628         * src/pic16/ralloc.c (newReg): fixed bug #908929
5629
5630 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5631
5632         * src/ds390/gen.c: added missing #include "main.h"
5633
5634 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5635
5636         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5637         checking if symbol is already in set,
5638         * src/pic16/device.h: prototype for checkAddSym,
5639         * src/pic16/gen.c: (_G): added entry interruptvector,
5640         * (assignResultValue): removed some commented out lines,
5641         * (genFunction): check for ISR via sym->type, absolute section for
5642         interrupt code is created via a new pBlock, the goto instruction is
5643         placed now correctly at the interrupt vector position, changed all
5644         references from ivec to _G.interruptvector,
5645         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5646         is the interrupt is a high priority one, same for return from ISR,
5647         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5648         externs to calls of checkAddSym,
5649         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5650         pic16_pcode_verbose flag is set,
5651         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5652         * src/pic16/pcoderegs.c: message about how many registers are saved
5653         will only be emitted if pic16_pcode_verbose flag is set,
5654
5655 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5656
5657         * src/ds390/ralloc.h,
5658         * src/ds390/ralloc.c (ds390_regWithIdx),
5659         * src/ds390/gen.c (emitcode),
5660         * src/ds390/main.h,
5661         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5662         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5663         ds390operandCompare, getRegsRead, getRegsWritten,
5664         initializeAsmLineNode): customized instruction size calculation for
5665         ds390, started basis for some register optimizations
5666         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5667         corresponding assembly output
5668         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5669         missing push/pop of r0/r1. Optimized push/pops
5670
5671 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5672
5673         * src/mcs51/main.c (instructionSize): fixed ACALL size
5674         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5675
5676 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5677
5678         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5679         the sorting of rlist with NULL elements
5680         * (print_idataType, print_idata): NEW to create idata sections
5681         * src/pic16/device.h: idataSymSet new variable
5682         * src/pic16/gen.c (genFunction): fixed some bugs in string
5683         comparing, improved the absolute section creation for ISRs,
5684         added FSR0L/FSR0H in registers that are saved in an ISR,
5685         * (genInline): fixed the processing of inline snippets,
5686         now they undergo no process by the peephole optimizer
5687         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5688         are placed in idataSymSet,
5689         * (pic16emitStaticSeg): extern symbols are added in externs,
5690         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5691         switching when aboslute variables are placed in access bank memory
5692         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5693         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5694         commented out with #if,
5695         * (pic16_packRegisters): reintroduce the check for CAST because some
5696         symbols are not correctly handled,
5697         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5698         pCodeInstruction instead of pCode,
5699         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5700         pCodeAsmDir definition,
5701         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5702         directive, then the argument directive is emitted without the leading
5703         tab, hack for inline labels which must be in the first column,
5704         * (compareLabel,pic16_findNextInstruction),
5705         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5706         * (insertBankSwitch): modified for the new pCodeAsmDir,
5707
5708 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5709         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5710
5711         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5712         instance,
5713         * (pushSide): commented out with #if,
5714         * (assignResultValue): fixed some typos in saving
5715         registers,
5716         * (genPcall): FIXED and sync'ed with genCall,
5717         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5718         * (genNearPointerGet): fixed to handle some more cases,
5719         implementation scheme via table reads,
5720         * (genConstPointerGet): modified to access code memory correct,
5721         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5722         and improved to handle some cases
5723         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5724         instead of "RETLW" for init data
5725         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5726         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5727         variables are placed in access bank memory (<0x80 and >=0xf80),
5728         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5729         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5730         TBLWT_POSTDEC,TBLWT_PREINC
5731         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5732         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5733         directives
5734         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5735         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5736         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5737         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5738
5739 2004-02-29  Borut Razem <borut.razem AT siol.net>
5740
5741         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5742         support/Util/findme.h, support/Util/system.h: enhance binary relative
5743         search for lib and include by using findProgramPath()
5744
5745 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5746
5747         * src/SDCCpeeph.h,
5748         * src/SDCCpeeph.c (pcDistance),
5749         * src/port.h,
5750         * src/mcs51/ralloc.h,
5751         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5752         * src/mcs51/main.h,
5753         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5754         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5755         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5756         size calculation port specific, started basis for some register
5757         optimizations
5758         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5759         missing push/pop of r0/r1. Optimized push/pops
5760         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5761         * device/lib/_modsint.c (_modsint),
5762         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5763         and stack version so regression tests pass
5764
5765 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5766
5767         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5768         * src/SDCCast.c (decorateType): catch another small optimization
5769         with '?' operator
5770         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5771         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5772         modified to finally use computeType() all over SDCC,
5773         see Feature Request #877103
5774         * src/SDCCval.h: cosmetic
5775         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5776         valCompare(); regression tested in muldiv.c
5777         * support/regression/tests/muldiv.c (testMod): mod sign follows
5778         dividend only
5779
5780 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5781
5782         * src/SDCCast.c (decorateType): fixed bug #902362
5783         * doc/INSTALL.txt: fixed install instructions for win32
5784
5785 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5786
5787         * device/include/Makefile.in (install): fixed by replacing spaces
5788         by tabs
5789         * doc/README.txt,
5790         * doc/INSTALL.txt: updated for release
5791         * doc/sdccman.lyx: added warning for --xstack being buggy
5792
5793 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5794
5795         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5796         to eliminate build warnings.
5797         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5798
5799 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5800            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5801
5802         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5803         removed -penable-stack, added comment for stack pragma, added
5804         warning for not initializing the stack/frame registers, removed
5805         comment at interrupts section
5806
5807         Stack is made permanent, there is no ability to disable stack usage.
5808         * src/pic16/device.h,
5809         * src/pic16/device.c: removed all references to USE_STACK macro,
5810         * src/pic16/device.c (pic16_dump_section): when no elements in
5811         rlist, free rlist before return,
5812         * (pic16_dump_int_registers): NEW, internal registers are a new set
5813         of general purpose registers reused by each function,
5814         * (checkAddReg): returns 1 if registers is added to set,
5815         * (pic16_groupRegistersInSection): when a registers is of type
5816         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5817         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5818         SRCASECMP macro is moved here from device.c
5819         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5820         PO_PCLATU, PO_PRODL, PO_PRODH,
5821         * (pic16_pCodeOpType, genMinus,
5822         changed compares to "a" register, with AOP_ACC,
5823         * (pic16_genPlus): fixed some bugs and indented properly,
5824         * (pic16_addSign): changed size to size+offset in the MOVWF
5825         instruction,
5826         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5827         multiply 8-bit operand by literal, result is 8-bit,
5828         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5829         multiply 2 8-bit operand, result is 8-bit,
5830         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5831         genUMult8X*_16,
5832         * src/pic16/gen.c: changed accUse to contain WREG only,
5833         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5834         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5835         true, do not use immediate addressing any more unless sym is a
5836         pointer in codespace,
5837         * (aopForRemat): do not use immediate addressing when symbol not in
5838         codespace and when symbol's address is requested,
5839         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5840         accUse size (= 1),
5841         * (aopGet): added case for AOP_ACC and don't return "accumulator
5842         bug" but WREG instead,
5843         * (popGetTempReg): pushes contents of temporary register in stack,
5844         * (popReleaseTempReg): pops contents of temporary register from
5845         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5846         * (pic16_popGet): separated case AOP_ACC to return register WREG
5847         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5848         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5849         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5850         the use of immediate pointers to certain cases only.
5851
5852         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5853         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5854         * (assignResultValue, genCall, genRet): modified to use the new
5855         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5856         genPcall is still broken,
5857         * (genFunction): added code to create 'A' type pBlocks when
5858         interrupt functions are generated, code not extensively tested yet,
5859         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5860         * (genEndFunction): modified so ISRs pop stored registers from stack,
5861         * (genMultOneByte): cleanup,
5862         * (AccRsh): added flag andmask, to and result with appropriate mask,
5863         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5864         * (genDataPointerGet): fixed and reenabled its use,
5865         * (genNearDataPointerGet): bugs fixed,
5866         * (genDataPointerSet): bugs fixed,
5867         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5868         pic16_DumpSymbol, pic16_DumpOp,
5869         * src/pic16/genutils.h: function prototypes for the above functions,
5870         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5871         pointers,
5872         * (pic16emitRegularMap): many many many improvements, but needs a
5873         major cleanup,
5874         * src/pic16/main.c: enable_stack in pic16_options is removed,
5875         * (_pic16_parseOptions): removed command line options -penable-stack,
5876         * (_process_pragma): emit stack symbol only when stack pragma is
5877         processed,
5878         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5879         redirected to FSR0L/FSR0H pair,
5880         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5881         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5882         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5883         for immediates,
5884         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5885         * (dumpPicOptype): NEW,
5886         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5887         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5888         with movff instruction,
5889         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5890         added pic16_int_regs, some packRegsFor* functions are commented out,
5891         because produce errors,
5892         * src/pic16/NOTES: minor modifications
5893
5894 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5895
5896         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5897         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5898         --pack-iram.
5899         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5900         * as/mcs51/lkaomf51.c: fixed bug #895763
5901
5902 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5903
5904         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5905
5906 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5907
5908         * doc/sdccman.lyx: added details about the HC08 storage classes and
5909         interrupts, fixed the register usage info for z80 & gbz80
5910
5911 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5912
5913         * doc/sdccman.lyx: added more pic16 port documentation
5914         * device/include/pic16/: added header pic18fregs.h
5915
5916 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5917
5918         * doc/sdccman.lyx: added Vangelis' contribution
5919
5920 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5921
5922         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5923         extend to the next CALL or PCALL, not just to the next CALL.
5924
5925 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5926
5927         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5928
5929 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5930
5931         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5932         bug #895752 and a better fix for bug #716790
5933
5934 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5935
5936         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5937
5938 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5939
5940         * doc/sdccman.lyx: minor changes, minor changed
5941
5942 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5943
5944         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5945         which can't handle SDCC_NEWONEBYTEOPS,
5946         (geniCodeMultiply): removed conversion from mult to shift for pic14
5947         and pic16
5948
5949 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5950
5951         * src/hc08/gen.h,
5952         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5953         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5954         thus fixing bug #895406
5955
5956 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5957
5958         * device/lib/_modsint.c,
5959         * device/lib/_modslong.c: sign follows divisor only
5960         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5961         signs or signedness can be ignored
5962         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5963         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5964         added optimization for IFX,
5965         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5966         arguments;
5967         reenabled optimization for IFX, which was removed on 2004-01-11
5968         * src/SDCCast.h: added return type IFX
5969         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5970         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5971         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5972         SDCC_OLDONEBYTEOPS selects the old behaviour
5973         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5974         changed again and commented promotion rule
5975         * src/SDCCval.c (valDiv): promotion no longer necessary
5976         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5977         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5978         rewritten
5979         * support/regression/tests/onebyte.c: added
5980
5981 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5982
5983         * gen.c (genInline): reverted to old code for assemnling inline
5984         code because of bug reported James Chadd
5985
5986 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5987
5988         * ralloc.h: missing declarations from previous patch,
5989         seems that patch for ralloc.h was never applied, fixed
5990
5991 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5992            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5993
5994         * pcode.c,
5995         * pcode.h,
5996         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5997         indirect addressing. Marked FSR0 as deprecated
5998         * gen.c (pointerCode): commented out, not needed now
5999         (pic16_popGet2p): new MOVFF helper function
6000         (genGenPointerGet),
6001         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6002         (shiftRLong): removed duplicate debugging info
6003
6004 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6005
6006         * src/ds390/gen.c (genNearPointerGet),
6007         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6008         optimization with bits, but not bitfields.
6009         * src/ds390/ralloc.c (packRegisters),
6010         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6011
6012 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6013
6014         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6015
6016 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6017
6018         * src/SDCCsymt.h,
6019         * src/SDCCicode.c (operandFromSymbol),
6020         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6021         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6022         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6023         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6024         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6025         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6026         bug #892038
6027         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6028         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6029         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6030         * src/SDCCsymt.c (newSymbol),
6031         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6032         enumerator_list),
6033         * src/SDCCval.h,
6034         * src/SDCCval.c (newiList): fixed bug #885705
6035
6036 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6037
6038         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6039         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6040
6041 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6042
6043         * device/include/c8051f120.h,
6044         * device/include/c8051f300.h,
6045         * device/include/c8051f310.h: added/updated header files for Silicon
6046         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6047         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6048         in new section Submitting patches
6049
6050 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6051
6052         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6053         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6054         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6055         genGenPointerSet),
6056         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6057         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6058         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6059         genGenPointerSet),
6060         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6061         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6062         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6063         genGenPointerSet),
6064         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6065         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6066         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6067         genGenPointerSet): fixed bug #892400
6068         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6069         to eliminate build warnings.
6070         * src/SDCCast.c (processParms),
6071         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6072         fixed bug 751859
6073         * support/valdiag/valdiag.py: added GCC to the list of defines active
6074         when compiling with gcc
6075
6076 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6077
6078         * support/Util/SDCCerr.h,
6079         * support/Util/SDCCerr.c,
6080         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6081         with an incomplete type (fixed bug #883734)
6082         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6083
6084 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6085
6086         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6087
6088 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6089
6090         * src/SDCCast.c (decorateType),
6091         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6092         function pointer implementation
6093         * support/regression/tests/funptrs.c: added tests to verify both forms
6094         of function pointers work correctly. Added tests to verify parameters
6095         are passed in the correct order.
6096
6097 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6098
6099         * device.c (regCompare): registers are sorted by ascending
6100         address and increasing size,
6101         * main.c (_pic16_finaliseOptions): removed the declaration
6102         of compiler macro MCU. Now a macro of the format pic18fxxxx
6103         will be defined from the command line
6104
6105 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6106             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6107
6108         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6109         PCOP_RLCF was overwritten!
6110         * gen.c (genSkip): commented out calls to pic16_emitcode,
6111         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6112         * (genlshTwo),
6113         * (genRRC): added debugging info,
6114         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6115         overwritten while shifting,
6116         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6117         overwritten while shifting,
6118         * (AccLsh),
6119         * (AccRsh),
6120         * (shiftLLeftOrResult),
6121         * (shiftRLeftOrResult),
6122         * (shiftRLong),
6123         * (shiftLLong): Implemented with pic16_emitpcode
6124         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6125         * (genLeftShift): Fixed bug, operand for shift by variable always
6126         was "and"ed with 0x0f,
6127         * (genLeftShiftLiteral),
6128         * (genrshTwo),
6129         * (genRightShiftLiteral): added debugging info,
6130         * (genrshFour): added comment,
6131         * (genRightShift): determined signedness from operand "left"
6132         instead of "result"
6133
6134 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6135
6136         * src/SDCCicode.c (geniCodeParms),
6137         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6138         function pointers, fixed function pointer bugs #861242 and #861896
6139
6140 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6141
6142         * device/include/c8051f000.h,
6143         * device/include/c8051f120.h,
6144         * device/include/c8051f300.h: added header files for Silicon
6145         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6146
6147 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6148
6149         * src/SDCCast.c (processParams): added new type flow and restructured
6150         (gatherAutoInit): added new type flow
6151         (addCast): cosmetic changes
6152         (getLeftResultType): added new type flow for array indices, patch
6153         provided by Stas, see FR #877103
6154         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6155         array index patch by Stas
6156         * src/SDCCast.h: added prototype getResultTypeFromType()
6157         * src/SDCCval.h,
6158         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6159         * src/pic/glue.c (pic14emitStaticSeg),
6160         * src/pic16/glue.c (pic16emitStaticSeg),
6161         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6162         for initialization of symbols
6163         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6164         * support/Util/SDCCerr.h:
6165         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6166         * .version: bumped version number to 2.3.8
6167         * device/include/Makefile.in (install),
6168         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6169         avoid warnings
6170
6171 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6172
6173         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6174         Slade Rich fixed an optimization bug
6175         * src/pic/pcodepeep.c,
6176         * src/pic/pcoderegs.c
6177         * doc/Makefile (install): added test for directory
6178
6179 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6180
6181         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6182         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6183         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6184         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6185         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6186         * as/mcs51/asexpr.c (term),
6187         * as/hc08/asexpr.c (term): fixed bug #887146
6188
6189 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6190
6191         * src/z80/gen.c (genMult): handle single byte result product
6192         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6193         DUMMY_READ_VOLATILE (fixed bug #886367)
6194
6195 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6196
6197         * support/regression/tests/libmullong.c: fixed logic, on little endian
6198         hosts we ended without a mullong_wrapper()
6199
6200 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6201
6202         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6203         virus/worm forged address usage.
6204
6205 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6206
6207         Fixed promotion, it should be done on AST level:
6208         * src/SDCCast.c (addCast): added promotion to int
6209         (decorateType): updated call to upCast()
6210         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6211         usualUnaryConversions()
6212
6213 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6214
6215         * support/regression/tests/literalop.c (mulWrapper): Added a
6216         wrapper to remove integer overflow warnings.
6217
6218         * support/regression/tests/float_trans.c: Made work on host.
6219
6220         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6221         location of sz80.
6222
6223         * support/regression/generate-cases.py (main): Changed from inline
6224         to a main method.
6225
6226         * doc/Makefile (install): Changed to depth first to get rid of
6227         missing directory install warning.
6228
6229         * as/Makefile (install-doc): Made work on Mac.
6230
6231 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6232
6233         * src/SDCCast.c: added an additional type flow in decorateType() of
6234         opposite direction, see feature request #860006; it's enabled at runtime
6235         by setting the environment variable SDCC_NEWTYPEFLOW
6236         * src/SDCCast.h: changed prototype of decorateType()
6237         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6238         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6239         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6240         see feature request #877103
6241         * src/SDCCval.c: updated call of decorateType()
6242         (valBitwise): fixed bug #882876
6243         (valMinus): added promotion
6244         (valLogicAndOr): result is unsigned
6245         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6246         * src/SDCCsymt.c (computeType),
6247         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6248         must not cause an unsigned operation
6249         * src/pic/glue (pic14emitRegularMap),
6250         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6251
6252 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6253
6254         * src/pic/pcode.c (PCodeID): commented out left over debug code
6255
6256 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6257
6258         * support/valdiag/tests/overflow.c: added shift tests
6259         * src/pic/device.c,
6260         * src/pic/gen.c,
6261         * src/pic/gen.h,
6262         * src/pic/glue.c,
6263         * src/pic/main.c,
6264         * src/pic/pcode.c,
6265         * src/pic/pcode.h,
6266         * src/pic/pcodepeep.c,
6267         * src/pic/pcoderegs.c,
6268         * src/pic/ralloc.c,
6269         * src/pic/ralloc.h: applied patch from Slade Rich;
6270         added support for multiple code pages and multiple RAM banks on the
6271         PIC 14 port. The ASM files now no longer simply assume all the
6272         code / RAM are in the same page / bank. This means the linker can
6273         safely allocate code/RAM of separate ASM files to different pages/banks.
6274         * doc/sdccman.lyx: added Slade's tips
6275         * src/mcs51/peeph.def: fixed bug #880768
6276
6277 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6278
6279         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6280         * src/SDCCast.c (decorateType): fixed bug #880197
6281
6282 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6283
6284         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6285         getopt.h.
6286
6287         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6288         strtof is not part of C89 and isn't included with Mac OS X.
6289
6290 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6291
6292         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6293         shiftL2Left2Result): fixed bug #879326
6294         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6295         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6296         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6297         address fetch for clr instruction
6298         * device/lib/hc08/_mulint.c: created optimized assembly version
6299         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6300
6301 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6302
6303         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6304         proposed in FR #877103
6305
6306 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6307
6308         * src/SDCCval.c (cheapestVal): added missing checks
6309         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6310         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6311
6312 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6313
6314         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6315         equal operands
6316
6317 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6318
6319         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6320         loaded with the linker search paths (-L arguments) and the libraries
6321         to be linked with the current source (-l arguments). Changes
6322         currently will affect only the pic16 port.
6323         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6324         include path the port specific paths and port specific libraries,
6325         * gplink command now contains the $3 argument,
6326         * src/pic16/device.h,
6327         * src/pic16/device.c,: structure PIC_device is made public and
6328         renamed to PIC16_device, the same for variable Pics which is renamed
6329         to Pics16. Updated all references to them.
6330         * src/pic16/glue.c (pic16glue): corrected bug with code
6331         initialization which bypassed the variable initializations block.
6332
6333         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6334         COMPILE_FLAGS and added the --nostdinc option
6335
6336 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6337
6338         * device/include/mc68hc908jb8.h: Register defs for another member
6339         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6340
6341 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6342
6343         Documenting changes from previous commits.
6344         * configure.in (version 1.56),
6345         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6346         when generating output files to configure the pic16 library,
6347         but now I've commented it out, since gputils aren't installed in the
6348         SF compile farm, so library won't compile
6349
6350         * device/lib/Makefile.in (version 1.56): initially I've added in
6351         target 'all' the prerequestive 'model-pic16' so it compiled the
6352         pic16 library, but now I've commented it out for the same reasons
6353         above,
6354         * added targets 'model-pic16' and 'objects-pic16' to compile the
6355         library
6356         * added target 'port-specific-objects-pic16' to handle the
6357         generated libraries and copy them into the build/ directory
6358         * added target 'clean-intermediate-pic16' to clean intermediate
6359         files into pic16 directory
6360         * in target 'installdirs' added line to create directory pic16 in
6361         the installation path
6362
6363         * device/include/Makefile.in (version 1.11): in target 'install'
6364         added lines to copy all header files to installation path,
6365         * in target 'installdirs' added line create directory for pic16
6366         headers in the installation path
6367
6368 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6369
6370         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6371          a function call
6372
6373 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6374
6375         * configure,
6376         * device/lib/configure.in,
6377         * device/lib/configure: fixed for autoconf 2.57
6378
6379 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6380
6381         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6382         option so that it actually works. Made it specific to the z80, since
6383         the gbz80 doesn't have these kinds of I/O ports.
6384
6385 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6386
6387         * device/include/z180.h,
6388         * device/lib/_memcpy.c,
6389         * device/lib/_memmove.c,
6390         * device/lib/_mulint.c,
6391         * device/lib/ser_ir.c,
6392         * device/lib/ser_ir_cts_rts.c,
6393         * device/lib/_strcmp.c,
6394         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6395         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6396         portmode; added deprecation warning for bank= and protmode= forms.
6397         Also, guard against buffer overflow.
6398         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6399
6400 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6401
6402         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6403         changed interrupt vector table generation to only emit declared vectors.
6404         * device/include/Makefile.in: added missing backslash
6405         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6406
6407 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6408
6409         Mainly changes to support compilation of the device libraries
6410         * src/pic16/device.c: stack is allocated via symbol and not
6411         via literal number. The symbol is placed in the corresponding
6412         position of the data ram
6413         * (pic16_dump_section): relocatable and absolute uninitialized
6414         data are now emitted in sorted order to reduce section naming,
6415         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6416         weren't marked as being in the access bank,
6417
6418 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6419
6420         Added portion of GNU PIC Library under the directory
6421         device/include/pic16 and device/lib/pic16. These files
6422         contain the declarations of SFRs for the PIC18Fxx2 devices.
6423         The directory is initialized via configure from toplevel.
6424
6425 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6426
6427         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6428         the spilllocations to be compared correctly
6429
6430 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6431
6432         * src/SDCCast.c (decorateType): fixed bug introduced today
6433
6434 2004-01-12  Borut Razem <borut.razem AT siol.net>
6435
6436         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6437         doc/sdccman.lyx: upper case pragmas are deprecated
6438
6439 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6440
6441         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6442         in simpler and even better code
6443
6444 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6445
6446         * src/SDCCicode.c (operandOperation): fixed bug #874819
6447         * src/SDCCast.c (decorateType): fixed
6448         char foo (unsigned long ul) { return ul > 0; }
6449
6450 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6451
6452         * doc/sdccman.lyx: Moved and added some sections, small changes
6453         all over. Telling LaTeX to be less strict with word spacing
6454         to better keep the right margin. Changed some notes about
6455         maintainance of the ports in section 3.2.1 - is it OK like this?
6456
6457 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6458
6459         SDCC source changes:
6460         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6461         convilong): modified to inform the pic16 port that builtin functions
6462         are external
6463
6464         PIC16 PORT specific changes:
6465         * src/pic16/device.c pic16_dump_equates() added,
6466         processor registers declared internally by the port are emitted in
6467         the translation as equates,
6468         * src/pic16/gen.c: inline code is passed unprocessed to the
6469         translation,
6470         * (pic16_popGetLit2): fnuction modified to take second operand as
6471         pCodeOp pointer and not as literal,
6472         * (popRegFromIdx): prefixed with pic16_,
6473         * (pic16_popCombine2): modified to receive already allocated pCode
6474         operands,
6475         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6476         * (genFunction): initializes local stack frame and pushes on stack
6477         all the registers used by this function,
6478         * (genEndFunction): restores all registers from stack and restores
6479         stack frame,
6480         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6481         improvements,
6482         * (pic16glue): changed the program startup sequence,
6483         * added new dbName code 'A' for functions placed in absolute section
6484         * src/pic16/main.c: added function attribute _naked,
6485         * added pragma 'code' to place a fnuction at an absolute address,
6486         * added command line arguments --debug-ralloc and --pcode-verbose,
6487         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6488         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6489         * (pic16_newpCodeOpLit2): modified to take the second operand as
6490         pCodeOp pointer,
6491         * (pic16_printpBlock): modified to emit each function in a separate
6492         section,
6493         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6494         UPPER for immediate operands,
6495         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6496         instruction,
6497         * src/pic16/peeph.def: all peepholes with movff are commented out,
6498         because there is a problem in the pcode peep optimizer,
6499         * src/pic16/ralloc.c: the register allocator can now reuse local
6500         function symbols for another function. This saves register usage.
6501         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6502
6503         Added file src/pic16/NOTES with information about program writing on
6504         the current port version.
6505
6506 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6507
6508         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6509         and peephole 252 (array access)
6510
6511 2004-01-09  Borut Razem <borut.razem AT siol.net>
6512
6513         * src/SDCCmain.c : fixed #872250: -l command line defined library
6514           files are scanned before standard library files
6515
6516 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6517
6518         * src/SDCCast.c (decorateType): fixed bug #874046
6519
6520 2004-01-09  Borut Razem <borut.razem AT siol.net>
6521
6522         * support/scripts/sdcc.nsi: remove previous installation
6523
6524 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6525
6526         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6527         bytes for last interrupt vector (mcs51)
6528         * sdcc.spec: fixed typo
6529
6530 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6531
6532         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6533         gen51Code): more efficient parameter receive for --model-large
6534         ("bug" #845294)
6535
6536 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6537
6538         * src/ds390/main.c,
6539         * src/z80/main.c: added missed needLinkerScript flags (more than
6540         one port structure defined in these file)
6541         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6542         bug #795325
6543
6544 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6545
6546         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6547         * src/port.h: added flag needLinkerScript in port->linker
6548         structure to inform whether to create a .lnk file or not,
6549         * src/avr/main.c,
6550         * src/ds390/main.c,
6551         * src/hc08/main.c,
6552         * src/mcs51/main.c,
6553         * src/pic/main.c,
6554         * src/pic16/main.c,
6555         * src/xa51/main.c,
6556         * src/z80/main.c: changed appropriately to configure
6557         needLinkerScript flag
6558         * src/pic/gen.c,
6559         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6560         * src/pic/glue.c: added variable udata_section_name to
6561         override default uninitialized data segment definition for
6562         devices only with SHAREBANK memory (reported from Erik Epetrich)
6563         * (pic14emitOverlay): modified to emit a commented overlay segment
6564         directive when no overlay data exist
6565         * (picglue): modified to emit uninitialized data segment
6566         according to udata_section_name
6567         * src/pic/main.c (_pic14_parseOptions): added command line
6568         options --udata-section-name=[name] to override default
6569         udata definition name
6570         * modified _linkCmd and _asmCmd to include compiler passed
6571         arguments via -W option
6572         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6573         object file from '.rel' to '.o' in port->linker structure,
6574         changed size of fptr from 2 to 3 in port structure
6575
6576 2004-01-07  Borut Razem <borut.razem AT siol.net>
6577
6578         * support/scripts/sdcc.nsi: update PATH
6579         * support/scripts/sdcc.ico: craeted
6580
6581 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6582
6583         * device/include/Makefile.in: fix install
6584         * doc/Makefile: fix install
6585
6586 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6587
6588         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6589         in bug #860505
6590         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6591         how the function variable allocation summary is displayed; also
6592         include information about variables allocated to the overlay
6593         segment
6594
6595 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6596
6597         * as/mcs51/lkmain.c: Help about -Y option
6598         * as/mcs51/lkarea.c: Fixed gcc warnings
6599
6600 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6601
6602         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6603         fixed warning
6604         * support/valdiag/tests/overflow.c: added
6605         * src/SDCCast.c (decorateType),
6606         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6607         LEFT_OP (left shift)
6608
6609 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6610
6611         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6612         (default behaviour).
6613
6614 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6615
6616         A python script to validate compiler diagnostic messages. It can be
6617         used to verify that sdcc complains about bad c source code and
6618         gives a good location of the error.
6619         * support/valdiag/Makefile,
6620         * support/valdiag/valdiag.py,
6621         * support/valdiag/tests/*
6622
6623 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6624
6625         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6626         * src/SDCCsymt.c (newEnumType),
6627         * src/SDCCsymt.h
6628         * support/Util/SDCCerr.c,
6629         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6630         enum related bugs.
6631         * support/regression/tests/enum.c: added test for enum values that
6632         require at least 2 bytes of storage.
6633
6634 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6635
6636         * src/common.h: added ifndef/define/endif macros
6637         around the header file.
6638         Bug reported from Jesus Calvino-Fraga
6639
6640 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6641
6642         * sdcc.spec: updated
6643         * device/include/Makefile.in: don't install CVS directories
6644         * device/lib/Makefile.in: added removal of CVS directories after install
6645         * doc/Makefile: fixed install, added local_icons
6646         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6647         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6648         * src/ds390/gen.c (genRightShift): fixed bug #870788
6649         * src/SDCCast.c (decorateType): fixed bug #870781
6650
6651 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6652
6653         PIC16 port related changes:
6654         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6655         added variable stackPos,
6656
6657         * gen.c: genCall, assignResultValue: added support for
6658         pushing/retrieving function parameters to/from stack,
6659         genFunction,genEndFunction: setup stack frame for the
6660         generated function,
6661         genAddrOf: will be changed according to bug 863624
6662
6663         * added files genutils.c and genutils.h which contain gen*
6664         debugged and optimised functions extracted from gen.c
6665
6666         * glue.c: added variable 'externs' which holds extern symbols,
6667         pic16emitRegularMap: is modified to properly handle relocatable
6668          symbols under the new scheme,
6669         pic16createInterruptVect: is modified
6670         pic16printPublics: is modified to emit 'global' assembler directives,
6671         added pic16_printExterns to print extern symbols,
6672         pic16glue: initializes stack/frame pointer in the beginning of
6673         the assembly output. Temporary hack, will be corrected later,
6674         because gplink yet does not support stack and SDCC does not
6675         yet support a type of crt0.o object to create the final binary.
6676
6677         * Removed many lines that contain 8051 legacy code.
6678         * The code is finally placed under a 'code' directive.
6679         * Added port specific options.
6680
6681         * _process_pragma: simplified since now we do not need *special*
6682         include file to define SFR registers. But a separate header
6683         will be needed. This will be developed later.
6684         * _pic16_parseOptions: added, parses port specific options:
6685         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6686         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6687         --preplace-udata-with=
6688
6689         * _pic16_setDefaultOptions: modified to initialize section names,
6690         but hack is temporarly out of order since it needs improvement.
6691         * _pic16_genAssemblerPreamble: configuration words are emitted by
6692         their address instead of their name. This part is incomplete and
6693         supports only the 18Fxx2 devices. Other devices will emit an error
6694         during assembly since they do not contain the same set of config
6695         registers
6696         * _pic16_genIVT: is modified,
6697
6698         * pcode.c: added definitions for some hardware registers that are needed
6699         for stack support
6700         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6701         All PCI entries are updated. Now LFSR is supported.
6702         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6703         * added pic16_newpCodeOpLit2 to support instructions with
6704         two literal arguments
6705         * pic16_pCode2str: corrected code that emits assembler instructions
6706         with two literal operands and those that have an access bit modifier
6707         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6708         this fixes a bug which caused some labels to be lost, when an
6709         assembler directive was added, i.e. banksel,
6710         * pic16_FixRegisterBanking: improved logic that causes the insertion
6711         of bank switching,
6712         * InlineFunction: functions that are called once, are not any more
6713         inlined. This can be a port option in the future,
6714
6715         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6716
6717         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6718         hold the corresponding uninitialized symbols,
6719         * pic16_allocProcessorRegister: registers have explicit marked the
6720         accessBank field,
6721         * pic16_allocInternalRegister: registers are explicit marked as
6722         not used,
6723         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6724         processing list, so bit registers were lost,
6725         *
6726
6727         * ralloc.h: added field 'accessBank' and original symbol operand
6728         in register definition,
6729         * removed the field isMapped from register definition,
6730
6731         ** Several functions have been removed from various sources:
6732         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6733         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6734         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6735         pic16_assignRelocatableRegisters
6736
6737         ** others have been introduced:
6738         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6739         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6740
6741 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6742
6743         * support/scripts/inc2h.pl: changed definition of BIT_AT
6744         to emit 'sbit at' instead of 'bit at'. This was a request.
6745
6746         PIC16 port related preliminary changes:
6747         * gen.c: prefixed function popRegFromString with
6748         pic16_ and all references to it corrected
6749         * pcode.c: all pic16_pc_* hardware registers prefixed
6750         with underscore (_),
6751         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6752         * ralloc.c: newReg(): when register is REG_SFR then
6753         set address to rIdx,
6754         pic16_allocProcessorRegister(): marks register wasUsed=0
6755         pic16_writeUsedRegs(): added a call to assign processor
6756         registers via pic16_assignFixedRegisters
6757
6758 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6759
6760         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6761         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6762         variables in unused register banks.  Also the SSEG is placed
6763         wherever there is enough space for it, and IDATA can be anywhere
6764         in internal RAM.  For now compile using -Wl-Y[stack_size].
6765         The mem file is different for this option as well, since it
6766         makes no sense of talking about DSEG lenght.
6767
6768 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6769
6770         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6771         in certain cases, e.g. when ROM assignment, patch provided
6772         from Albert den Haan.
6773
6774 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6775
6776         Many signedness and type propagation fixes:
6777         * src/SDCCicode.c: made geniCodeCast() static
6778         replaced SPEC_ by IS_ (cosmetic)
6779         (operandOperation): fixed div and mod operation
6780         (usualBinaryConversions): added support for promotion of char
6781         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6782         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6783         (geniCodeAdd): an array index will stay unsigned, even if promoted
6784         from char to int
6785         (geniCodeArray): ditto
6786         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6787         * src/SDCCsymt.c (computeType): added more support for char;
6788         promotion of char is selectable by promoteCharToInt, fixed signedness
6789         for all cases
6790         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6791         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6792         * src/SDCCval (val*): replaced signedness calculation by
6793         computeType()
6794         rearranged if-branches (cosmetic)
6795         (valShift): added warning W_SHIFT_CHANGED
6796         (valCompare): fixed problem with different types
6797         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6798         * support/regression/tests/literalop.c: added many cases
6799         * support/regression/tests/ast_constant_folding.c: changed finally to
6800         'unsigned int'
6801         * .version: new year, new version: 2.3.7
6802         * src/SDCCmain.c (main): applied patch #866468
6803         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6804         provided by Scott Bronson
6805         * doc/sdccman.lyx: updated documentation for sdcdb
6806         updated and added chapter tips
6807
6808 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6809
6810         * src/SDCCsymt.h: missing from yesterday's commits
6811
6812 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6813
6814         * src/SDCC.y (struct_or_union_specifier),
6815         * support/Util/SDCCerr.c,
6816         * support/Util/SDCCerr.h: verify that struct & union tags are used
6817         as declared.
6818
6819 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6820
6821         * src/SDCCglobl.h: missing from yesterday's commits
6822
6823 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6824
6825         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6826         sft_attributes, struct_declaration, parameter_declaration,
6827         type_name, start_block, declaration_list),
6828         * src/SDCC.lex (check_type): support redefinition of typedef names
6829
6830 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6831
6832         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6833         aligned xdata arrays. Erik helped me with the if clause.
6834
6835 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6836
6837         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6838         warning
6839
6840 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6841
6842         * src/SDCCast.h,
6843         * src/SDCCast.c (newAst_),
6844         * src/SDCCicode.h,
6845         * src/SDCCicode.c (ast2iCode, newiCode),
6846         * src/SDCCglobl.h,
6847         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6848         expr, statement, expression_statement, selection_statement,
6849         iteration_statement, expr_opt, jump_statement): foundation for tracking
6850         sequence points
6851         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6852         point code too)
6853
6854 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6855
6856         * support/Util/SDCCerr.c,
6857         * src/SDCCast.h,
6858         * src/SDCCast.c (createCase, createDefault, decorateType),
6859         * src/SDCClabel.c (labelUnreach),
6860         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6861         to error messages.
6862         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6863         (with thanks to Stas Sergeev)
6864         * device/include/time.h,
6865         * device/lib/time.c (CheckTime): suppress unreachable code warning
6866
6867 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6868
6869         * src/SDCCast.c (createIvalCharPtr),
6870         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6871         bug #753752)
6872         * support/regression/tests/nullstring.c: tests for these two bugs
6873
6874 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6875
6876         * support/Util/SDCCerr.h,
6877         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6878         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6879         about storage class and 'at' used inside struct or union
6880         * src/SDCCBBlock.c (iCodeFromeBBlock),
6881         * src/SDCCcse.c (ifxOptimize),
6882         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6883         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6884         printIval, emitStaticSeg, emitOverlay),
6885         * src/SDCClabel.c (deleteIfx),
6886         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6887         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6888         gatherAutoInit, processParms),
6889         * support/Util/SDCCerr.h,
6890         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6891         reporting for post-parse errors.
6892
6893 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6894
6895         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6896         implicit casts via union; they don't work on big endian systems
6897         (possible fix for bug #861138)
6898
6899 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6900
6901         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6902         * src/mcs51/main.c: fixed the fix for bug #737001
6903
6904 2003-12-15  Borut Razem <borut.razem AT siol.net>
6905
6906         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6907
6908 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6909
6910         * support/makebin/makebin.c: put output in binary mode
6911
6912 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6913
6914         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6915         xdata and data memory on startup. Set the environment variable
6916         SDCC_NOGENRAMCLEAR to disable this.
6917         * src/mcs51/peephole.def,
6918         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6919         (allows non-interrupt and interrupt code to safely compete for a resource
6920         without the non-interrupt code having to disable interrupts)
6921
6922 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6923
6924         * src/SDCCicode.c (geniCodeAdd),
6925         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6926         with valFromType if type might be a pointer and host is big endian).
6927         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6928         types, not just integer types.
6929         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6930         multiply defined with mismatching "at" address.
6931
6932 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6933
6934         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6935         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6936         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6937         with embedded nulls (fixed bug #753752)
6938
6939 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6940
6941         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6942         Apparently this did not see much testing (endless loop)
6943
6944 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6945
6946         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6947
6948 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6949
6950         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6951         gracefully handle NULL memmap pointers
6952
6953 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6954
6955         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6956         instead of deleting the iCode when an operand is volatile
6957         * src/z80/gen.c (genDummyRead),
6958         * src/mcs51/gen.c (genDummyRead),
6959         * src/ds390/gen.c (genDummyRead),
6960         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6961         not just IC_RIGHT
6962         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6963         * src/SDCC.y: fixed bug #850420
6964
6965 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6966
6967         Applied z80 i/o port patch from Peter Townson and fixed some operators
6968         to better handle operands in A register.
6969         * device/include/z180.h
6970         * src/SDCC.y
6971         * src/SDCCglue.c
6972         * src/z80/gen.c
6973         * src/z80/gen.h
6974         * src/z80/main.c
6975         * src/z80/peeph-z80.def
6976         * src/z80/peeph.def
6977         * src/z80/z80.h
6978
6979 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6980
6981         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6982
6983 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6984
6985         * device/lib/hc08/_mullong.c: Removed extra #endif
6986
6987 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6988
6989         * sim/ucsim/hc08.src/inst.cc,
6990         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6991         carries from x to h
6992         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6993         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6994         * device/include/stdarg.h: fixed varargs for hc08
6995         * device/lib/Makefile.in,
6996         * device/lib/hc08/Makefile,
6997         * device/lib/hc08/_mulint.c,
6998         * device/lib/hc08/_mullong.c: fixed some endian problems
6999
7000 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7001
7002         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7003         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7004         * device/lib/_gptrget.c,
7005         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7006
7007 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7008
7009         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7010         * src/SDCCast.c (astErrors): fixed bug #846007
7011         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7012
7013 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7014
7015         * src/SDCCast.c (decorateType): disabled a transformation I added in
7016         revision 1.188 (access to fields of a structure at an absolute address);
7017         it breaks with bitfields, extern declarations, and gcse analysis.
7018         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7019         could be assigned through a pointer, so don't complain.
7020         * src/SDCCast.c (astErrors),
7021         * src/SDCCast.h,
7022         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7023
7024 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7025
7026         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7027         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7028         output of __config directives, since gpasm now supports them
7029         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7030         pre-processor macro, i.e. -DMCU=p18f452
7031         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7032         and modified to handle 'cast' icode similarly to '=' icode
7033         * src/pic16/device.h (typedef struct PIC_device): added field
7034         'extMIface' to indicate that chip has external memory interface
7035         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7036         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7037         18F8720
7038
7039 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7040
7041         * src/SDCC.y (pointer): fixed bug #846006
7042         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7043         * src/SDCCast.c (decorateType): fixed bug #846009
7044         * src/ds390/peeph.def,
7045         * src/ds390/gen.c (genAnd, genOr),
7046         * src/mcs51/peeph.def,
7047         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7048
7049 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7050
7051         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7052         * src/SDCCdflow.c
7053         * src/SDCCcse.c
7054         * src/SDCCcse.h
7055         * src/SDCCBBlock.h
7056         * src/SDCCBBlock.c
7057
7058 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7059
7060         fixed bug #845089
7061         * src/SDCCbitv.h,
7062         * src/SDCCbitv.c: added function to free a bitvector
7063         * src/SDCClrange.h,
7064         * src/SDCClrange.c: added function to recompute the liveranges
7065         * src/avr/ralloc.c,
7066         * src/ds390/ralloc.c,
7067         * src/hc08/ralloc.c,
7068         * src/mcs51/ralloc.c,
7069         * src/pic/ralloc.c,
7070         * src/pic16/ralloc.c,
7071         * src/xa51/ralloc.c,
7072         * src/z80/ralloc.c: recompute the liveranges after register packing
7073
7074 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7075
7076         * src/SDCCloop.c (newInduction): fixed bug #845630
7077
7078 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7079
7080         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7081         inadvertantly left behind from my 2003-11-12 change
7082
7083 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7084
7085         Updated headers I neglected to commit yesterday.
7086         * src/SDCClrange.h,
7087         * src/SDCCicode.h
7088
7089 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7090
7091         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7092         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7093         * src/SDCCopt.c (eBBlockFromiCode),
7094         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7095         the creation of the key hash table from the sequencing so it can be used
7096         earlier (for some GCSE bug fixes still pending)
7097
7098 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7099
7100         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7101         * support/regression/tests/addsub.c: testing genPlus shortcut
7102
7103 2003-11-15  Borut Razem <borut.razem AT siol.net>
7104
7105         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7106
7107 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7108
7109         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7110         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7111         ordering is immaterial.
7112         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7113
7114 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7115
7116         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7117         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7118         (SIGSEV) of bug #840381
7119         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7120         unlink new file before rename if new and old filenames are the same)
7121
7122 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7123
7124         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7125         uninitialized variables) for the mcs51. Set environment variable
7126         SDCC_GENRAMCLEAR to test.
7127         xdata initialization slightly shorter
7128
7129 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7130
7131         * src/SDCCsymt.h,
7132         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7133         #838241 & 780691 (basicly the same bug)
7134         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7135         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7136
7137 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7138
7139         * src/SDCCmain.c (linkEdit): "fix" #834252
7140
7141 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7142
7143         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7144         * src/SDCCast.h,
7145         * src/SDCC.y: fixed bug #819403
7146
7147 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7148
7149         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7150         the reentrant attribute.
7151         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7152         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7153         simulation
7154         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7155         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7156         erroneously reduced to a literal.
7157         * src/hc08/ralloc.c (packRegisters, rematStr),
7158         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7159         some cases
7160
7161 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7162
7163         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7164         * doc/sdccman.lyx: changed from 'article' to 'book'
7165         * doc/Makefile: readded test_suite_spec and cdbfileformat
7166
7167 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7168
7169         * device/include/stdlib.h: include malloc.h to comply with ANSI
7170         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7171
7172 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7173
7174         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7175         * doc/clean.mk: also remove *.out files
7176         * doc/sdccman.lyx: some additions, larger top/bottom margins
7177
7178 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7179
7180         * src/SDCC.y: fixed bug #837365
7181         * support/regression/tests/bitopcse.c
7182         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7183         a symbol (might be valop instead)
7184         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7185         * device/lib/clean.mk: added hc08 to the cleaning list
7186
7187 2003-11-04  Borut Razem <borut.razem AT siol.net>
7188
7189         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7190           made 2003-11-04
7191         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7192           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7193           malloc is declared in standard stdlib.h
7194
7195 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7196
7197         * device/lib/hc08/Makefile: need to clean .rel not .o files
7198         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7199
7200 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7201
7202         * src/port.h,
7203         * src/hc08/main.c,
7204         * src/mcs51/main.c,
7205         * src/ds390/main.c,
7206         * src/z80/main.c,
7207         * src/avr/main.c,
7208         * src/pic/main.c,
7209         * src/pic16/main.c,
7210         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7211         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7212         tests (which uses the port's oclsExpense function)
7213         * src/SDCC.y,
7214         * src/SDCCast.c,
7215         * src/SDCCicode.c,
7216         * src/hc08/gen.c,
7217         * src/ds390/gen.c,
7218         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7219
7220 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7221
7222         * src/SDCCcse.c (ifxOptimize),
7223         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7224         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7225         deleting the IFX iCode.
7226         * src/hc08/ralloc.c: reduced unneeded slocs
7227         * src/hc08/gen.c: fixed bug in asmopToBoolean
7228
7229 2003-11-04  Borut Razem <borut.razem AT siol.net>
7230
7231         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7232           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7233           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7234           transferred to configure
7235
7236 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7237
7238         Use headers defined in the C[++] standards:
7239         * sim/ucsim/gui.src/serio.src/fileio.cc
7240         * sim/ucsim/gui.src/serio.src/frontend.cc
7241         * sim/ucsim/gui.src/serio.src/main.cc
7242         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7243         * support/Util/NewAlloc.c
7244         * as/hc08/lklibr.c
7245         * as/mcs51/lklibr.c
7246         * as/z80/aslist.c
7247         * as/z80/assym.c
7248
7249 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7250
7251         * Added MSVC projects for hc08 assembler and linker:
7252         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7253         /as/hc08/link_hc08.dsp
7254
7255 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7256
7257         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7258
7259 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7260
7261         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7262
7263 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7264
7265         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7266
7267 2003-10-31  Borut Razem <borut.razem AT siol.net>
7268
7269         * support/cpp2/cpplib.h,
7270           support/cpp2/cpplib.c,
7271           support/cpp2/cpplex.c,
7272           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7273           to switch _asm block preprocessing on / off. Default is
7274           #pragma preproc_asm +
7275
7276 2003-10-31  Borut Razem <borut.razem AT siol.net>
7277
7278         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7279           when outputting comment blocks (when executed with -C option) and
7280           _asm (SDCPP specific) blocks
7281
7282 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7283
7284         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7285
7286 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7287
7288         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7289
7290 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7291
7292         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7293         * src/SDCCast.c (decorateType): fixed bug #832664
7294
7295 2003-10-31  Borut Razem <borut.razem AT siol.net>
7296
7297         * support\cpp2\cpplex.c: fixed for SDCPP:
7298           comments(when executed with -C option) and _asm blocks
7299           were included even if they where in skipped #if block.
7300           Applied solution from GCC cpp 3.3.2
7301
7302 2003-10-31  Borut Razem <borut.razem AT siol.net>
7303
7304         * src/SDCC.lex: sdcc now understands both formats:
7305           '# <line_number> <file_name>' and
7306           '#line <line_number> <file_name>'
7307         * support/cpp2/cppmain.c: sdcpp now generates the standard
7308           '# <line_number> <file_name>' instead of former
7309           '#line <line_number> <file_name>'
7310
7311 2003-10-30  Borut Razem <borut.razem AT siol.net>
7312
7313         * support/cpp2/cpphash.h,
7314         * support/cpp2/cpplib.h
7315         * support/cpp2/cpplex.c,
7316         * support/cpp2/cppmain.c,
7317         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7318
7319 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7320
7321         Fixed a number of problems revealed by bug #827883.
7322         * src/SDCCloop.c (loopInvariants): Spill location of the
7323         result operand should be recomputed if extracted from
7324         a loop. Also, don't extract assignments of an iTemp
7325         from a literal.
7326         * src/SDCCast.c (isConformingBody): loop reversal should
7327         not occur if the control variable is involved with a
7328         relational operator.
7329
7330 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7331
7332         * .version: bumped to 2.3.6 to reflect the big improvements
7333         made by Erik and Klaus. Thanks!
7334
7335 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7336
7337         Replaced the livrange code.
7338         * src/SDCClrange.c: added new LR code
7339         * src/SDCCloop.c,
7340         * src/SDCCBBlock.h: removed remainig parts from old LR code
7341         * src/ds390/ralloc.c,
7342         * src/ds390/gen.c: minor fixes to make it work with new code
7343
7344 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7345
7346         * as/hc08/asm.h,
7347         * as/hc08/lkrloc.c,
7348         * src/hc08/gen.c,
7349         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7350         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7351         (tweaked fix for bug #818696)
7352
7353 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7354
7355         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7356
7357 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7358
7359         * src/SDCCmain.c,
7360         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7361         * src/mcs51/gen.c (gencjneshort),
7362         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7363         more efficient (per Scott Bronson's suggestion)
7364
7365 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7366
7367         Extended the semantics of the critical keyword to include
7368         individual statements. See RFE #827755 and #799831
7369         * src/SDCC.y
7370         * src/SDCCicode.c
7371         * src/SDCCopt.c
7372         * src/SDCCast.c
7373         * support/Util/SDCCerr.c
7374         * support/Util/SDCCerr.h
7375         * src/mcs51/gen.c
7376         * src/ds390/gen.c
7377         * src/hc08/gen.c
7378
7379 2003-10-19  Borut Razem <borut.razem AT siol.net>
7380
7381         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7382
7383 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7384
7385         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7386         Fixed bug #818696
7387         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7388         and predecrement operand is displayed
7389
7390 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7391
7392         * src/SDCCval.c (valMinus): fixed bug #826041
7393
7394 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7395
7396         Some hc08 related updates that I missed earlier
7397         * sim/ucsim/stypes.h
7398         * support/regression/ports/hc08/spec.mk
7399
7400 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7401
7402         New target "hc08" for the Motorola 68hc08 family of micros
7403
7404         * configure
7405         * configure.in
7406         * Makefile
7407         * src/hc08/*
7408         * src/SDCCmain.c
7409         * src/port.h
7410         * sim/ucsim/hc08.src/*
7411         * sim/ucsim/configure.in
7412         * src/ucsim/configure
7413         * sim/ucsim/packages_in.mk
7414         * as/hc08/*
7415         * as/Makefile
7416         * device/include/mc68hc908qy.h
7417         * device/lib/hc08/*
7418         * device/lib/Makefile.in
7419         * support/regression/ports/hc08/*
7420         * support/regression/Makefile
7421
7422 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7423
7424         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7425         regression test
7426         * src/ds390/gen.c (genCast): fixed bug #821957
7427
7428 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7429
7430         * device/lib/logf.c: "fixed" overlay bug
7431         * support/regression/ports/host/spec.mk: added m library
7432         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7433         * support/regression/tests/float_trans: added (for Eric)
7434
7435 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7436
7437         * src/mcs51/gen.c (genCpl): fixed bug
7438         http://sf.net/mailarchive/message.php?msg_id=6263915
7439
7440 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7441
7442         * src/SDCCast.c (decorateType): added extended constant folding
7443         * src/SDCCsymt.c (computeType): cleanup
7444         * src/SDCCval.c (valShift): minor optimization
7445         * support/regression/tests/ast_constant_folding.c: added
7446
7447 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7448
7449         * src/SDCCmain.c: removed some unintended changes
7450
7451 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7452
7453         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7454         * src/z80/gen.c: fixed part of bug #817589
7455         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7456
7457 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7458
7459         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7460         * src/SDCCcflow.c
7461         * src/SDCCcse.c
7462         * src/SDCCdflow.c
7463         * src/SDCClabel.c
7464         * src/SDCClrange.c
7465         * src/SDCCmem.c
7466         * src/SDCCopt.c
7467         * src/SDCCpeeph.c
7468         * src/SDCCset.c
7469         * src/avr/ralloc.c
7470         * src/ds390/ralloc.c
7471         * src/izt/ralloc.c
7472         * src/mcs51/ralloc.c
7473         * src/pic/ralloc.c
7474         * src/pic16/ralloc.c
7475         * src/xa51/ralloc.c
7476         * src/z80/ralloc.c
7477         * src/z80/gen.c: removed unused label "release:"
7478
7479 2003-10-06  Borut Razem <borut.razem AT siol.net>
7480
7481         * src/SDCC.lex: removed definition of unused variables
7482           save_optimize and save_options
7483
7484 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7485
7486         * clean.mk: removed '=' in "-maxdepth=1"
7487         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7488         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7489
7490 2003-10-06  Borut Razem <borut.razem AT siol.net>
7491
7492         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7493           my_unput() replaced by unput()
7494
7495 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7496
7497         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7498         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7499         type-punned pointer will break strict-aliasing rules"
7500         Old LR behaviour is again default; Klaus' LR can be choosen by
7501         defining the environment variable LRKLAUS
7502         * src/SDCCBBlock.h
7503         * src/SDCCloop.c
7504         * src/SDCClrange.c
7505         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7506         * clean.mk: fixed removal of files in bin/CVS/
7507         * device/lib/clean.mk: fixed removal of directories small and large
7508         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7509         * src/SDCCicode.c,
7510         * src/SDCCval.c: removed superflous test for pedantic
7511
7512 2003-10-05  Borut Razem <borut.razem AT siol.net>
7513
7514         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7515           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7516           message "unmatched #pragma SAVE and #pragma RESTORE"
7517
7518 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7519
7520         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7521           assembly, critical functions, atomic, nojtbound)
7522
7523 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7524
7525         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7526         * src/SDCCBBlock.h
7527         * src/SDCCloop.c
7528         * src/SDCCloop.h
7529         * src/SDCClrange.c
7530
7531 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7532
7533         * src/z80/gen.h,
7534         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7535         * src/mcs51/gen.h
7536         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7537         * src/ds390/gen.h
7538         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7539         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7540         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7541
7542 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7543
7544         * src/z80/gen.c (genRet): fixed bug #524753
7545         * src/z80/gen.c (genCast): fixed internal error on cast from
7546         pointer to long
7547         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7548         fix for bug #477835 to the z80
7549         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7550         for tracking iCodes in the peephole optimizer for z80
7551
7552 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7553
7554         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7555         the other part of bug #814548
7556         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7557
7558 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7559
7560         * src/SDCCcse.c: fixed part of bug #814548
7561
7562 2003-09-28  Borut Razem <borut.razem AT siol.net>
7563
7564         * src/asm.c: rewrite of printILine() to use temporary file instead
7565           a pipe
7566         * src/xa51/main.c: commented out declaration of int rewinds
7567
7568 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7569
7570         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7571
7572 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7573
7574         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7575         * src/asm.c (printILine): Fixed bug #811015
7576
7577 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7578
7579         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7580         freeing.
7581
7582 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7583
7584         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7585         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7586         to correctly handle general case of AOP_PAIRPTR
7587         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7588
7589 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7590
7591         * src/mcs51/ralloc.c (fillGaps),
7592         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7593         register positioning bug)
7594
7595 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7596
7597         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7598
7599 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7600
7601         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7602         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7603         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7604         (ralloc doesn't intentionally do this now, but perhaps later)
7605         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7606         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7607         register positioning bugs (Fixed bug #762602 and #795325)
7608         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7609         (Fixed bug #808779)
7610         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7611         lines that --i-code-in-asm generates
7612
7613 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7614
7615         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7616         trying to fclose a FILE* that was already closed.
7617
7618 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7619
7620         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7621         of const struct should be treated as if const themselves)
7622
7623 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7624
7625         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7626
7627 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7628
7629         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7630         Unix (/n) and DOS (/r/n) line terminations.
7631
7632 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7633
7634         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7635         bug #613775
7636
7637 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7638
7639         * src/mcs51/gen.c (genFunction, genEndFunction),
7640         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7641         and restore of EA so that stack offsets to parameters are
7642         correct when using both critical and reentrant/stack-auto.
7643         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7644         size (can be triggered in error if sloc is shared between
7645         different sized objects)
7646         * device/include/float.h: fixed macros to explicitly use
7647         unsigned long where needed
7648
7649 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7650
7651         Feature req. 799831: added code to allow nesting of critical functions
7652         * src/mcs51/gen.c (genFunction, genEndFunction)
7653         * src/ds390/gen.c (genFunction, genEndFunction)
7654
7655 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7656
7657         * src/SDCCsymt.c (sclsFromPtr),
7658         * src/SDCCsymt.h,
7659         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7660         support for standard C idiom of memory mapped variables; for
7661         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7662         to xdata int at 0x1234 tempvar = 1.
7663         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7664         provided by Akiya ISHIDA
7665
7666 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7667
7668         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7669         * src/SDCCval.c (constVal): added reduction from int to char
7670         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7671         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7672         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7673         to ignore the sign
7674         * support/regression/tests/shifts.c: fixed
7675
7676 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7677
7678         * src/z80/gen.c (genXor): Fixed bug #805445
7679
7680 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7681
7682         Fixed bug #621531 (const & volatile confusion in the type chain).
7683         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7684         refer to the const or volatile state of the pointer itself.
7685
7686         * src/SDCCast.c
7687         * src/SDCCglue.c
7688         * src/SDCCicode.c
7689         * src/SDCCsymt.c
7690         * src/SDCCval.c
7691         * src/SDCC.y
7692         * src/SDCCsymt.h
7693         * src/pic/gen.c
7694         * src/pic/ralloc.c
7695         * src/pic16/gen.c
7696         * src/pic16/ralloc.c
7697         * support/regression/tests/const.c
7698
7699 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7700
7701         When checking for duplicated modules, use absolute paths
7702         instead of relative paths.  Files changed:
7703
7704         * as/mcs51/lklib.c
7705         * link/z80/lklib.c
7706
7707 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7708
7709         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7710
7711 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7712
7713         * device/include/string.h: added size_t typedef, changed
7714         prototypes to use size_t, eliminated separate reentrant and
7715         non-reentrant declarations, added _memmove declaration
7716         * device/lib/_memcpy.c: changed to use size_t instead of int,
7717         changed /4 to >>2 to avoid division library call
7718         * device/lib/_memcmp.c,
7719         * device/lib/_memset.c,
7720         * device/lib/_strncat.c,
7721         * device/lib/_strncpy.c,
7722         * device/lib/_strncmp.c: changed to use size_t instead of int
7723         * device/lib/_memmove.c: new file (fixed bug #772294)
7724         * device/lib/Makefile.in: added _memmove.c
7725         * device/lib/z80/asm_strings.s: fixed bug #772290
7726         * support/regression/tests/bitfields.c: attempt to fix host assertion
7727         failure on amd64-unknown-linux2.2
7728
7729 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7730
7731         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7732         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7733         * as/z80/asmain.c (main): fixed bug #801766
7734
7735 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7736
7737         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7738         compilers
7739
7740 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7741
7742         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7743         reported in bug #800609
7744
7745 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7746
7747         * Top header beautifications in src/pic16 directory:
7748           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7749           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7750           pcoderegs.h, ralloc.c, ralloc.h
7751         * main.c: added top header and GPL license notice
7752         * pcode.c: fixed the if-conditional warning
7753
7754 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7755
7756         * device/lib/_mullong.c: replaced int by short for gcc
7757
7758 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7759
7760         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7761         and JUMPTABLE iCodes properly now (worked by accident before)
7762         * src/mcs51/gen.c (leftRightUseAcc),
7763         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7764         iCode properly now. Use getSize instead of nRegs since a & b
7765         aren't part of the nRegs tally.
7766
7767 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7768
7769         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7770         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7771           before instructions that use the _STATUS register
7772
7773 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7774
7775         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7776         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7777         fetching of the pointer
7778         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7779         copied from genNearPointerSet()
7780         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7781         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7782         If they pop r0/r1 they must be called in the opposite order than aopOp().
7783         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7784         (resp. --stack-auto), prepared for --xstack
7785
7786 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7787
7788         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7789
7790 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7791
7792         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7793         these ports have their own __sdcc_external_start()
7794
7795 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7796
7797         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7798         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7799         type for bits was changed. It resulted in bit variables becoming
7800         global, which is not permitted in PIC 14 assembly output.
7801
7802 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7803
7804         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7805
7806 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7807
7808         Z80 and MCS51 linkers complaint if a public symbol is defined
7809         in more than one library module:
7810
7811         * as/mcs51/lklib.c
7812         * link/z80/lklib.c
7813         * as/mcs51/Makefile.in
7814
7815 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7816
7817         A few small changes that speed up the peephole optimizer.
7818
7819         * src/SDCCpeeph.c
7820
7821 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7822
7823         Try to make the peephole optimizer smarter by maintaining
7824         an association between the assembly source code and the
7825         iCodes that originated them. Put this information to use
7826         with a new peephole rule condition "notVolatile" so that
7827         the rules can be aggressive yet still safe.
7828
7829         * src/SDCCpeeph.c
7830         * src/SDCCpeeph.h
7831         * src/mcs51/gen.c
7832         * src/mcs51/peeph.def
7833
7834 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7835
7836         Fixed bug #741761
7837
7838         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7839         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7840         if the left or right operand symbols have the accuse flag set.
7841
7842 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7843
7844         Changed the type of the result of the ! (NOT) operator to char;
7845         previously it returned the same type as the source. This allows
7846         us to eliminate all the genFloatNot functions (all of its target
7847         implementations were very buggy) since !float can use the same
7848         code as !long now.
7849
7850         * src/SDCCicode.c (ast2iCode): ! returns char
7851         * src/mcs51/gen.c (genNot, genNotFloat),
7852         * src/ds390/gen.c (genNot, genNotFloat),
7853         * src/z80/gen.c (genNot, genNotFloat),
7854         * src/pic/gen.c (genNot, genNotFloat),
7855         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7856
7857 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7858
7859         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7860         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7861            during interrupts. Ensure WSAVE is located at a shared bank address.
7862         2. Fixed page selection in some places
7863         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7864            the registers name strings.
7865         4. Fixed "signed / unsigned compare" compiler warnings.
7866         5. The PIC port manages its own allocation of the general purpose
7867            registers, but makes no attempt to reuse them. As a result when
7868            compiling it soon runs out of general purpose registers. Some
7869            additional code was added to the files pcode.c and device.c to walk
7870            through the function call tree and rename the registers so that they
7871            get reused.
7872
7873         * src/pic/device.c
7874         * src/pic/gen.c
7875         * src/pic/glue.c
7876         * src/pic/pcode.c
7877         * src/pic/pcode.h
7878         * src/pic/ralloc.c
7879         * src/pic/ralloc.h
7880         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7881         genPlus() & genMinus() when the result is the same as left or right
7882
7883 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7884
7885         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7886
7887 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7888
7889         Made bitfield a distinct type from bit so that bitfields
7890         convert as per ANSI C and bits retain their traditional
7891         boolean style behaviour. Implemented bitfield support in
7892         the z80 port.
7893
7894         * src/SDCCsymt.h,
7895         * src/SDCCsymt.c,
7896         * src/SDCCast.c,
7897         * src/cdbFile.c,
7898         * src/mcs51/gen.c,
7899         * src/ds390/gen.c: bit v bitfield split
7900         * src/z80/gen.c: New support for bitfields
7901         * support/regression/tests/bitfields.c: reenabled z80,
7902         added more tests
7903
7904 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7905
7906         Rules 246.x, 247.x relate to bitfields, the others speed up
7907         access to xdata mapped I/O devices.
7908
7909         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7910
7911 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7912
7913         Cleaned up genPackBits and genUnpackBits and added two helper
7914         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7915         for literal assignments in genPackBits (thanks to Frieder for
7916         reminding me).
7917
7918         * src/mcs51/gen.c
7919         * src/ds390/gen.c
7920
7921 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7922
7923         Fixed bug #748310 (pointer to function type mishandled when the
7924         function name is omitted). Also fixed a SIGSEGV when a function
7925         attribute (reentrant, etc) is used on a non-function or on a
7926         function but misplaced before the parameter list.
7927
7928         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7929         bug #748310
7930         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7931         * support/Util/SDCCerr.h,
7932         * support/Util/SDCCerr.c: Added func attr misuse error msg
7933
7934 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7935
7936         Fixed bug #787649 by anonymous
7937         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7938         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7939
7940 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7941
7942         Fixed numerous bitfield problems.
7943
7944         * src/SDCC.y: More bitfield related error checking
7945         * src/SDCCsymt.h,
7946         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7947         * support/Util/SDCCerr.h,
7948         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7949         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7950         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7951         * support/regression/tests/bitfields.c: tests added
7952
7953 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7954
7955         Made the constant following the "interrupt" keyword optional. If
7956         omitted, the function will not automatically be given an entry
7957         in the interrupt vector table (similar to #pragma NOIV, but
7958         less syntacticly kludgy). The interrupt number is also now
7959         range checked. Also fixed a bug in the high order bit example
7960         in the manual.
7961
7962         * src/SDCC.y
7963         * src/SDCCmem.c
7964         * src/SDCCglue.c
7965         * src/SDCCsymt.h
7966         * support/Util/SDCCerr.c
7967         * support/Util/SDCCerr.h
7968         * doc/sdccman.lyx
7969
7970 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7971
7972         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7973         * src/SDCCicode.c (operandOperation): rewritten some ops
7974         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7975         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7976         other type
7977         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7978         be re-activated by defining REDUCE_LITERALS)
7979         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7980         unsigned, but are signed by default
7981         * src/SDCCval.c (constVal): rearranged
7982         * src/SDCCval.c (valMod): preliminary fix
7983         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7984         * support/regression/literalop.c: added, work in progress
7985
7986 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7987
7988         Generate warnings for useless declarations like "char data;"
7989         that don't do what new users expect.
7990
7991         * src/SDCC.y
7992         * support/Util/SDCCerr.h
7993         * support/Util/SDCCerr.c
7994
7995 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7996
7997         * src/SDCCval.c (valMult): fix overflow detection of negative int
7998
7999 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8000
8001         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8002
8003         Changes to support big endian targets:
8004
8005         * src/ports.h
8006         * src/SDCCglue.c
8007         * src/avr/main.c
8008         * src/ds390/main.c
8009         * src/izt/i186.c
8010         * src/mcs51/main.c
8011         * src/pic/main.c
8012         * src/pic16/main.c
8013         * src/xa51/main.c
8014         * src/z80/main.c
8015
8016 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8017
8018         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8019         * device/lib/time.c: fixed warning "integer overflow in expression"
8020
8021 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8022
8023         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8024         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8025         constants are unsigned; added recognition of "u" flag for unsigned
8026         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8027         * src/SDCCval.c (valDiv, valMod): fixed signdness
8028         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8029         signedness of modulo, left and right shift
8030         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8031         * support/Util/SDCCerr.h: added warning W_INT_OVL
8032         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8033         * src/SDCCast.c (ast_print): improved output of constants
8034
8035 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8036
8037         Fixed some warnings when building with MSVC:
8038
8039         * as\mcs51\asdata.c
8040         * as\z80\asdata.c
8041         * as\mcs51\asm.h
8042         * as\z80\asm.h
8043         * link\z80\aslink.h
8044         * link\z80\lkdata.c
8045         * link\z80\lkeval.c
8046         * link\z80\lkgb.c
8047         * link\z80\lkihx.c
8048         * link\z80\lks19.c
8049         * link\z80\lksym.c
8050         * support\cpp2\cpplib.c
8051         * src\ds390\gen.c
8052         * src\mcs51\gen.c
8053
8054 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8055
8056         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8057
8058 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8059
8060         * support\librarian\clean.mk: Do not remove Makefile.
8061         * support\librarian\Makefile: added.
8062
8063 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8064
8065         Added librarian to MSVC build:
8066         * all.dsp
8067         * sdcc.dsw
8068         * support\librarian\librarian.dsp
8069
8070         'configure' not needed for librarian, removed:
8071         * support\librarian\configure
8072         * support\librarian\configure.in
8073         * support\librarian\config_in.h
8074         * support\librarian\Makefile.in
8075
8076         Hopefully these ones built the librarian and the rest of sdcc properly:
8077         * Makefile
8078         * Makefile.common.in
8079
8080         Messed up 'configure', so revert to previous version:
8081         * configure
8082         * configure.in
8083
8084 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8085
8086         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8087         there, while the mantissa of a double is "only" 53 bits wide.
8088
8089 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8090
8091         Adding sdcclib to the build.  MSVC project coming soon.
8092         Files added/changed:
8093
8094         * support\librarian\clean.mk
8095         * support\librarian\configure
8096         * support\librarian\configure.in
8097         * support\librarian\config_in.h
8098         * support\librarian\Makefile.bcc
8099         * support\librarian\Makefile.in
8100         * support\librarian\sdcclib.c
8101         * Makefile.bcc
8102         * Makefile
8103         * Makefile.common.in
8104         * configure
8105         * configure.in
8106
8107 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8108
8109         Linker now complaints if linked modules have conflicting options, for
8110         example, one compiled using --model-large and another one compiled with
8111         --model-small.  The following files were modified:
8112
8113         * as\mcs51\asdata.c
8114         * as\mcs51\aslink.h
8115         * as\mcs51\asm.h
8116         * as\mcs51\asmain.c
8117         * as\mcs51\asout.c
8118         * as\mcs51\i51pst.c
8119         * as\mcs51\lkdata.c
8120         * as\mcs51\lklibr.c
8121         * as\mcs51\lkmain.c
8122         * as\z80\asdata.c
8123         * as\z80\asm.h
8124         * as\z80\asmain.c
8125         * as\z80\asout.c
8126         * as\z80\z80pst.c
8127         * link\z80\aslink.h
8128         * link\z80\lkdata.c
8129         * link\z80\lklibr.c
8130         * link\z80\lkmain.c
8131         * src\SDCCglue.c
8132
8133 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8134
8135         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8136         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8137
8138 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8139
8140         * src/z80/mappings.i: fix _mul[us][int,long] entries
8141
8142 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8143
8144         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8145
8146 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8147
8148         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8149         * support/regression/tests/bitopcse.c: added
8150         fixed warning:
8151         * src/avr/gen.c:
8152         * src/pic/gen.c:
8153         * src/pic16/gen.c:
8154         * src/z80/gen.c:
8155         * src/xa51/gen.c:
8156
8157 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8158
8159         added support for new library format to z80, gbz80 linkers:
8160         *link/z80/aslink.h
8161         *link/z80/lklex.c
8162         *link/z80/lklib.c
8163         *link/z80/lklist.c
8164
8165 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8166
8167         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8168         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8169
8170 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8171
8172         added DUMMY_READ_VOLATILE:
8173         * src/SDCC.y:
8174         * src/avr/gen.c:
8175         * src/xa51/gen.c:
8176         * src/z80/gen.c:
8177         * src/pic/gen.c:
8178         * src/pic16/gen.c:
8179         * src/mcs51/gen.c:
8180         * src/ds390/gen.c:
8181         * src/SDCCcse.c (algebraicOpts): many improvements
8182         * src/SDCCcse.h: removed algebraicOpts()
8183         * src/SDCCicode.c (picDummyRead): added
8184
8185 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8186
8187         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8188         "Insufficient space in data memory".
8189
8190 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8191
8192         * src/mcs51/gen.c: fixed bug #771358
8193         * src/z80/gen.c: fixed bug #759087
8194
8195 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8196
8197         * src/pic16/glue.c: minor cleanup by Vangelis
8198
8199 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8200
8201         * device/include/regc515c.h: fixed #758477
8202         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8203         * device/lib/_gptrput.c: saved a few bytes
8204         * my tab spacing is 8, yours too?)
8205         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8206         * device/lib/serial.c: process RX bytes earlier than TX bytes
8207         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8208
8209 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8210
8211         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8212
8213 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8214
8215     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8216
8217 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8218
8219         * device/lib/Makefile.in: bad fix, reverted to 1.43
8220
8221 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8222
8223         * device/lib/Makefile.in: added missing z80 object files
8224
8225 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8226
8227         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8228         pic16 progress by Vangelis:
8229         * src/SDCCglobl.h:
8230         * src/SDCCmain.c:
8231         * src/pic/Makefile:
8232         * src/pic:
8233         * pic/Makefile:
8234         * pic16/device.c:
8235         * pic16/device.h:
8236         * pic16/gen.c:
8237         * pic16/gen.h:
8238         * pic16/genarith.c:
8239         * pic16/glue.c:
8240         * pic16/main.c:
8241         * pic16/pcode.c:
8242         * pic16/pcode.h:
8243         * pic16/pcodepeep.c:
8244         * pic16/peeph.def:
8245
8246 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8247
8248     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8249
8250 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8251
8252     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8253     added gbz80 build to MSVC project.
8254     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8255     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8256     from 8051 stuff and setup so it links using a .lnk file.
8257
8258 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8259
8260     * support/librarian/sdcclib.c: sdcc librarian.
8261     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8262     with sdcclib.
8263
8264 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8265
8266     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8267
8268 2003-07-02  Borut Razem <borut.razem AT siol.net>
8269
8270         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8271         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8272         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8273         src/xa51/main.c, src/z80/main.c:
8274         virtualization of glue() function: each port has it's own glue function,
8275         which is accessed by do_glue function pointer in PORT.general structure
8276
8277 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8278
8279         * DS800C400 fun, improved ROM interface and tinibios.
8280
8281 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8282
8283         * More support for DS80C400. Now includes beginning of interface to ROM.
8284
8285 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8286
8287         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8288
8289 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8290
8291         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8292
8293 2003-06-19  Borut Razem <borut.razem AT siol.net>
8294
8295         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8296
8297 2003-06-19  Borut Razem <borut.razem AT siol.net>
8298
8299         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8300         fixed Z80 port - crt0.o: cannot open.
8301
8302 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8303
8304         * support/Util/MySystem.c (merge_command): revert bad fix
8305
8306 2003-06-18  Borut Razem <borut.razem AT siol.net>
8307
8308         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8309
8310 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8311
8312         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8313         option --use-stdout sends errors to stdout instead of stderr.
8314
8315 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8316
8317         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8318
8319 2003-06-15  Borut Razem <borut.razem AT siol.net>
8320
8321         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8322         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8323         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8324         fixed width array of pointers replaced with sets;
8325         multiple include and lib paths ared transferred to preprocessor and linker
8326         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8327         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8328         fixed width array of pointers
8329         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8330         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8331         fixupPath(), getPathDifference()
8332         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8333         fixed width array of pointers
8334
8335 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8336
8337         * src/pic16/ralloc.c: fix warnings
8338         * src/pic16/pcode.c: fix warning
8339
8340 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8341
8342          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8343         know all the details, but essentially this set of changes enable
8344         the pic16 port to generate movff instructions and generate assembler
8345         directives,
8346         * src/SDCCmain.c:
8347         * src/pic16/gen.c:
8348         * src/pic16/glue.c:
8349         * src/pic16/pcode.c:
8350         * src/pic16/device.c:
8351         * src/pic16/main.c:
8352         * src/pic16/pcode.h:
8353         * src/pic16/pcoderegs.c:
8354         * src/pic16/ralloc.c:
8355         * src/pic16/ralloc.h:
8356
8357 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8358
8359         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8360         added option --vc, so sdcc errors and warnings are compatible with
8361         Microsoft Visual Studio.
8362
8363 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8364
8365         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8366           device/lib/libfloat.lib: added atof function.
8367
8368 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8369
8370         * doc/sdccman.lyx: updated to Lyx 1.3
8371         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8372         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8373         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8374
8375 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8376
8377         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8378
8379 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8380
8381         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8382           additions to the "related tools/documentation" section
8383
8384 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8385
8386         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8387
8388 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8389
8390         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8391         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8392
8393 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         * doc/sdccman.lyx: fix double dash and other minor things
8396         * doc/Makefile: fix double dash
8397
8398 2003-05-28  Karl Bongers(patches from Martin Helmling)
8399         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8400           condition and ignore commands.
8401
8402 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8403
8404         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8405           is in parts still quite out of date, I did changes as far as I felt makes sense
8406           for a non-native english speaker.
8407           Please feel free to add to the manual or to correct my changes.
8408         * doc/Makefile: undid touching the date of intermediate tex files.
8409
8410 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8411
8412         * doc/sdccman.lyx: Manual has an index now
8413
8414 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8415
8416         Finalize muluint/mulsint and mululong/mulslong merging:
8417         * device/lib/_mulint.c
8418         * device/lib/_mullong.c
8419         * device/lib/gbz80/mul.s
8420         * device/lib/gbz80/stubs.s
8421         * device/lib/z80/mul.s
8422         * device/lib/z80/stubs.s
8423         * src/SDCCsymt.c (initCSupport)
8424
8425 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8426
8427         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8428         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8429           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8430           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8431           instead of /Zm500.
8432
8433 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8434
8435         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8436           the regression tests I'm not brave enough to enable 245.b, 245.c
8437         * doc/sdccman.lyx: added latex preamble for hyperref package.
8438           Using pdflatex this will give you a hyperlinked pdf file with
8439           bookmarks. (prepend '%' before /usepackage if this breaks something)
8440
8441 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8442
8443          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8444
8445 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8446
8447         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8448
8449 2003-05-21    <johan AT balder>
8450
8451         * src/SDCCglue.c (printIval): fixed bug #739934
8452
8453 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8454
8455         Applied patch from bug 737905 (renamed yylineo to mylineno):
8456         * src/altlex.c
8457         * src/SDCCast.c
8458         * src/SDCglobl.h
8459         * src/SDCC.lex
8460         * src/SDCCsymt.c
8461         * src/SDCCval.c
8462         * src/pic16/pcode.c: Cleaned warnings
8463         * src/pic16/pcodeflow.c: Cleaned warnings
8464         * src/pic16/pcoderegs.c: Cleaned warnings
8465
8466 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8467
8468         * src/pic16/pcode.c: Cleaned warnings
8469         * src/pic16/pcodepeep.c: Cleaned warnings
8470         * src/pic16/ralloc.c: Cleaned warnings
8471
8472 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8473
8474         * doc/sdccman.lyx: fixed bug 739745
8475         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8476
8477 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8478
8479         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8480         it can be defined with CFLAGS when running configure
8481         * src/SDCCmain.c: fixed compiling + linking with object files
8482
8483 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8484
8485         * configure.in: configure for pic16 port,
8486             added --disable-pic16-port
8487         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8488         * src/SDCCmain.c: linkOptions is changed to set *,
8489             added if/endif conditional macros to remove options help
8490             messages from optionsTable when a port is not configured, added
8491             support for the PIc16 port in the ports table, when executing
8492             the compiler with no port specified on command line, a default
8493             port is selected with the new macro DEFAULT_PORT which is
8494             defined in port.h, in setDefaultOptions() linkOptions is removed
8495             from initialization assignment, since now it is a set,
8496             parseCmdLine uses setParseWithComma for linkOptions, in
8497             linkEdit() linkOptions are accessed with new function indexSet()
8498             which returns the i'th item of a set variable. See SDCCset.c, in
8499             linkEdit() when calling buildCmdLine(), added linkOptions as
8500             last argument. Now users can pass arguments to gplink via the
8501             -Wl option, main() uses pic16glue() to glue up pic16 programs
8502         * src/SDCCpeeph.c: various changes to support pic16
8503         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8504             return the i'th item of the set
8505         * src/SDCCset.h: added function prototype for indexSet()
8506         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8507         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8508         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8509             added macro DEFAULT_PORT
8510         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8511         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8512             generated
8513         * src/pic16/glue.c: commented out some error producing lines
8514         * src/pic16/main.c: __config directives are commented out to stop
8515             gpasm complaining and test the linkage with gplink, _linkCmd and
8516             _asmCmd changed to be more gplink and gpasm friendly
8517         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8518             produced an error when parsed, peep rule 12 is added to utilize
8519             movff, but it is commented out since the pCode does not support
8520             yet a command with 2 address arguments
8521
8522 2003-05-18    <johan AT balder>
8523
8524         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8525         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8526 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8527
8528         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8529   Added feature to script commands from file.
8530
8531 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8532
8533         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8534         * src/SDCCutil.c: include ctype.h for win32
8535
8536 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8537
8538         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8539
8540 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8541
8542         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8543   Fixed so you can set breakpoints prior to run, run does not stop
8544   on entry now.  Add tbreak.  Other enhancements and fixes for use
8545   with ddd.
8546
8547 2003-05-12  Borut Razem <borut.razem AT siol.net>
8548
8549         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8550
8551 2003-05-11  Borut Razem <borut.razem AT siol.net>
8552
8553         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8554         the path of bin directory, so that PATH is the only env. variable, which has to be set
8555         in case of standard installation.
8556         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8557         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8558         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8559
8560 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8561
8562         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8563         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8564         temp files are in the port dir; clean the gen/test directory when
8565         generating new test.c
8566         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8567         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8568         * support/regression/tests/zeropad.c: added
8569
8570 2003-05-09    <johan AT balder>
8571
8572         * src/SDCCglue.c: fixed bug #597940
8573
8574 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8575
8576         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8577   cache sfr, optimize next,step, fix off by one sourceline,
8578   support ddd list function.
8579         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8580
8581 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8582
8583         * support/regression/HTMLgen.py: added compare_s2f()
8584         * support/regression/Makefile: redo 1.27
8585         * support/regression/generate-cases.py: redo 1.5
8586
8587 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8588
8589         * support/regression/tests/float.c: workaround 33 bit hex constant
8590         * support/regression/tests/simplefloat.c: fix division for host
8591
8592 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8593
8594         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8595         that tame's the PIC's over-aggressive optimizer.
8596
8597 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8598
8599          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8600          support for MSVC.
8601
8602 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8603
8604         Initial support for DS80C400. "Hello world" runs on TINIm400
8605         (with polled I/O).
8606
8607 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8608
8609          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8610          * Some notes on ddd usage added in debugger/README
8611          Martin Helmling adding more features and fixes for ddd GUI debugger.
8612          Code added for nexti, stepi, up, down, and other adjustments.
8613
8614 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8615
8616         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8617         * src/pic/peeph.def Added two rules to optimize carry manipulation
8618         * src/pic/* removed debug printfs
8619
8620 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8621
8622         * debugger/mcs51/cmd.c: added header newalloc.h
8623
8624 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8625
8626         * as/Makefile: new EXEEXT
8627         * as/z80/Makefile: remove trailing slash of BUILDIR
8628         * as/z80/clean.mk: new EXEEXT
8629         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8630         * support/cpp2/Makefile.in: new EXEEXT
8631         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8632
8633 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8634
8635         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8636         EXEEXT was introduced to fix all related problems with targets
8637         "clean", "install" and "uninstall"; a couple of further flaws
8638         especially with "clean" have been fixed too
8639         * as/mcs51/Makefile.in
8640         * as/mcs51/clean.mk
8641         * as/z80/Makefile
8642         * Makefile
8643         * clean.mk
8644         * debugger/mcs51/Makefile.in
8645         * debugger/mcs51/clean.mk
8646         * link/z80/Makefile
8647         * link/z80/Makefile.in
8648         * link/z80/clean.mk
8649         * link/Makefile
8650         * packihx/Makefile.in
8651         * packihx/clean.mk
8652         * sim/ucsim/Makefile
8653         * sim/ucsim/clean.mk
8654         * sim/ucsim/avr.src/Makefile.in
8655         * sim/ucsim/avr.src/clean.mk
8656         * sim/ucsim/s51.src/Makefile.in
8657         * sim/ucsim/s51.src/clean.mk
8658         * sim/ucsim/xa.src/Makefile.in
8659         * sim/ucsim/xa.src/clean.mk
8660         * sim/ucsim/z80.src/Makefile.in
8661         * sim/ucsim/z80.src/clean.mk
8662         * sim/ucsim/main_in.mk
8663         * sim/ucsim/packages_in.mk
8664         * sim/ucsim/gui.src/Makefile.in
8665         * sim/ucsim/gui.src/serio.src/Makefile.in
8666         * sim/ucsim/gui.src/serio.src/clean.mk
8667         * src/Makefile.in
8668         * src/clean.mk
8669         * support/cpp2/Makefile.in
8670         * support/cpp2/clean.mk
8671         * support/makebin/Makefile
8672         * support/makebin/clean.mk
8673         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8674         * doc/sdccman.lyx: --program-suffix no longer needed
8675
8676 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8677
8678          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8679          Martin Helmling added support for ddd GUI debugger.
8680          Code added to display assembly, set variables, and other commands
8681          to interface to ddd.
8682
8683 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8684
8685         * as/Makefile: fix target clean
8686         * as/clean.mk: fix target clean
8687         * as/z80/clean.mk: fix target clean
8688
8689 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8690
8691         * Makefile.common.in: added  AT EXEEXT AT
8692         * configure.in: removed all mingw32 stuff
8693         * configure: rebuilt from configure.in
8694         * doc/sdccman.lyx: updated section "installation"
8695         * support/scripts/sdcc_mingw32: adapted to configure
8696         * support/scripts/sdcc_cygwin_mingw32: added
8697
8698 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8699
8700         * src/pic Added object file support for the PIC port
8701         * src/pic Applied patch from Craig Franklin (this started the object file support)
8702         * src/regression Updated the PIC regression tests for object files
8703
8704 2003-04-20  Borut Razem <borut.razem AT siol.net>
8705
8706         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8707           lklex.c: In function `getfid':
8708           lklex.c:203: warning: array subscript has type `char'
8709         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8710           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8711         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8712           stack handling macros
8713
8714 2003-04-19  Borut Razem <borut.razem AT siol.net>
8715
8716         * "handling space characters in file path" task:
8717         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8718         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8719         * support/Util/MySystem.h: make it self-sufficient
8720         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8721           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8722           handling space characters in file path
8723         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8724           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8725         * support/Util/MySystem.c: handling space characters in executable's path
8726
8727 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8728
8729         * as/z80/Makefile: fix permanent rebuild of z80
8730         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8731         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8732
8733 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8734
8735         * src/SDCCopt.c: add special case optimization to replace modulo by
8736           a power of two with a bitwise AND.
8737
8738 2003-04-18    <johan AT balder>
8739
8740         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8741
8742 2003-04-17    <johan AT balder>
8743
8744         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8745         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8746
8747 2003-04-13  Borut Razem <borut.razem AT siol.net>
8748
8749         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8750         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8751           fixed mingw problem in adl_NORMALIZE_PATH
8752
8753 2003-04-12  Borut Razem <borut.razem AT siol.net>
8754
8755         * fixed "#pragma SAVE/RESTORE can not be nested":
8756         * src/SDCC.lex: reworked pragma handling functions
8757         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8758         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8759
8760 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8761
8762         * src/SDCCutil.c (pathEquivalent): defined but not used
8763         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8764         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8765         * configure: rebuilt from configure.in
8766         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8767         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8768         * device/include/Makefile.in: replace sdcc_datadir
8769         * device/lib/Makefile.in: replace sdcc_datadir
8770         * Makefile.common.in: add LDFLAGS from configure
8771         * packihx/Makefile.in: use LDFLAGS
8772         * src/Makefile.in: use LDFLAGS
8773         * support/cpp2/Makefile.in: add LDFLAGS from configure
8774         * support/makebin/Makefile: use LDFLAGS
8775         * .version: bumped version number to 2.3.5
8776
8777 2003-04-12  Borut Razem <borut.razem AT siol.net>
8778
8779         * completed "different paths" task:
8780         * src/SDCCmacro.c: fixed bug in handling quotes
8781         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8782         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8783
8784 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8785
8786         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8787
8788 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8789
8790         * ds390/gen.c ds390/peeph.def: fix bug 706781
8791
8792 2003-04-11  Borut Razem <borut.razem AT siol.net>
8793
8794         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8795
8796 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8797
8798         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8799         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8800          set - this bit used to not be set...).
8801         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8802           bad code in PIC Port
8803         * src/regression/and2.c added to test bug 609268
8804         * src/regression/Makefile added and2.c to regression test
8805
8806
8807 2003-04-08    <johan AT CP255758-A>
8808
8809         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8810         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8811         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8812
8813 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8814
8815         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8816         fix bug #487815
8817         * support/cpp2/Makefile.in: fix bug #487815
8818         * configure: rebuilt from configure.in
8819         * Makefile.common.in: docdir changed, new path suffixes
8820         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8821         * sdcc_vc_in.h: reflect changes from sdccconf.h
8822         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8823         * src/SDCCutil.h: remove BINDIR hack
8824         * doc/sdccman.lyx: update new path hierarchy
8825
8826 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8827
8828         * src/SDCCpeeph.c: added okToRemoveSLOC test
8829
8830 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8831
8832         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8833
8834 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8835
8836         * src/SDCCpeeph.c: added labelIsReturnOnly test
8837         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8838
8839 2003-04-05    <johan AT balder>
8840
8841         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8842         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8843         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8844         * src/SDCCast.c: fixed a warning
8845         * src/SDCCast.h: fixed a warning
8846         * src/SDCCicode.c (operandFromAst): fixed a warning
8847
8848 2003-04-04    <johan AT balder>
8849
8850         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8851         * src/SDCCast.c (decorateType): fixed bug #715076
8852         * src/SDCC.y: fixed bug #702907
8853
8854 2003-04-03    <johan AT balder>
8855
8856         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8857         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8858         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8859         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8860         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8861
8862 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8863
8864         * _decdptr.c: fix return values
8865         * _gptrget.c: fix return values
8866         * _gptrgetc.c: fix return values
8867         * _gptrput.c: fix return values
8868         * _mulint.c: fix return values
8869         * as/z80/Makefile: fix 'make -j' problem
8870
8871 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8872
8873         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8874         * configure.in: big cleanup, updated to autoconf 2.5x
8875         * configure: rebuilt from configure.in
8876         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8877         * sdcc_vc_in.h: reflect changes from sdccconf.h
8878         * doc/Makefile: fixed a flaw in "make install"
8879
8880 2003-04-02    <johan AT balder>
8881
8882         * src/ds390/gen.c (genCmp): no comments
8883         * src/mcs51/gen.c (genCmp): no comments
8884         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8885         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8886
8887 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8888
8889         * support/regression/generate-cases.py: place generated file in given sub directory
8890         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8891         * support/regression/Makefile: improvements for 'make -j';
8892         side effect: it's simpler and faster now
8893
8894 2003-03-31  Borut Razem <borut.razem AT siol.net>
8895
8896         * src/z80/main.c: link-{port} and as-{port} defined without path
8897         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8898
8899 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8900
8901         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8902
8903 2003-03-30  Borut Razem <borut.razem AT siol.net>
8904
8905         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8906           changed type of list parameter to set
8907         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8908         * src/port.h: changed type of do_assemble() parameter to set
8909         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8910           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8911           definition of "cppoutfilename" macro with NULL value in preProcess()
8912         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8913         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8914         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8915           replaced with set *binPathSet
8916         * shash_add() deallocates the item, if allready exsists, before adding the new one
8917         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8918
8919 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8920
8921         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8922           a nested for loop bug in the PIC port
8923         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8924           for loops
8925
8926 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8927
8928         * support/Util/dbuf.h: remove C++ stuff to make it portable
8929
8930 2003-03-28  Borut Razem <borut.razem AT siol.net>
8931
8932         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8933           literal strings in stringLiteral()
8934         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8935         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8936           to the project
8937
8938 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8939
8940         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8941
8942 2003-03-26    <johan AT balder>
8943
8944         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8945         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8946         * src/SDCCast.c (decorateType): fixed " -v < 3"
8947
8948 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8949
8950         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8951         Added Lenny Story's debug infrastructure changes:
8952         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8953         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8954         * src/cdbFile.c: added
8955         * src/SDCCdebug.c: added
8956         * src/SDCCdebug.h: added
8957         * src/SDCCast.c (createFunction)
8958         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8959         * src/SDCCmain.c (parseCmdLine, main)
8960         * src/SDCCmem.c (redoStackOffsets)
8961         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8962         * src/SDCCsymt.h
8963         * src/common.h
8964         * src/avr/gen.c (genAVRCode)
8965         * src/ds390/gen.c (gen390Code)
8966         * src/mcs51/gen.c (gen51Code)
8967         * src/pic/gen.c (genpic14Code)
8968         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8969         * src/xa51/gen.c (genXA51Code)
8970         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8971
8972 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8973
8974         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8975         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8976
8977 2003-03-22    <johan AT balder>
8978
8979         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8980
8981 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8982
8983         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8984         * doc/cdbfileformat.lyx: added, written by Lenny Story
8985         * doc/Makefile: added cdbfileformat.lyx
8986         * doc/clean.mk: added cdbfileformat.lyx
8987
8988 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8989
8990         * src/mcs51/peeph.def: fix bug #705773
8991
8992 2003-03-20    <johan AT balder>
8993
8994         An sfr/sbit can have an "at #" AND an initializer
8995         * src/SDCCsymt.c (checkSClass):
8996         * src/SDCCmem.c (allocGlobal):
8997         * src/SDCCmem.c (allocLocal):
8998         * src/SDCCast.c (createBlock):
8999
9000 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9001
9002         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9003
9004 2003-03-16    <johan AT balder>
9005
9006         Undid the hackup of const and volatile, the problem is much bigger
9007         * src/SDCC.y:1.65
9008         * src/SDCCast.c:1.171
9009         * src/SDCCglue.c:1.138
9010         * src/SDCCicode.c:1.146
9011         * src/SDCCsymt.c:1.150
9012         * src/SDCCval.c:1.65
9013
9014 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9015
9016         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9017         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9018
9019 2003-03-13    <johan AT balder>
9020
9021         Hackup const and volatile modifiers in type chains a bit:
9022         * src/SDCC.y:1.63
9023         * src/SDCCast.c:1.169
9024         * src/SDCCglue.c:1.136
9025         * src/SDCCicode.c:1.143
9026         * src/SDCCsymt.c1.146
9027         * src/SDCCsymt.h1.59
9028         * src/SDCCval.c:1.63
9029
9030 2003-03-12    <johan AT balder>
9031
9032         * src/SDCCBBlock.h: more LRH debugging junk
9033         * src/SDCCcflow.h: more LRH debugging junk
9034         * src/SDCCloop.c: more LRH debugging junk
9035         * src/SDCC.y (struct_declaration): fixed bug #697590
9036         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9037         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9038         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9039
9040 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9041         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9042         test function names must now match exactly).
9043         * src/SDCCcse.c: added special case in findCheaperOp to allow
9044         extending a short integer. Makes less awful code for bug 700121 test case.
9045
9046 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9047
9048         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9049         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9050
9051 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9052
9053         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9054         actually called (operandsNotEqual() was called for all
9055         operandsNotEqualX tests).
9056
9057 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9058
9059         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9060         with shorter literals. Fixes bug 700121.
9061
9062 2003-03-11    <johan AT balder>
9063
9064         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9065
9066 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9067
9068         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9069         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9070
9071 2003-03-10  Borut Razem <borut.razem AT siol.net>
9072
9073         * src/SDCCmain.c: pipe preprocessor's output
9074         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9075         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9076         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9077         which closes all pipes in pipeSet set
9078         * src/SDCCset.c: free deleted item in function deleteSetItem()
9079         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9080         moved from z80 to src subproject
9081         * .version: increased version number to 2.3.4
9082
9083 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9084
9085         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9086         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9087         * support/regression/ports/xa51/spec.mk: fix typo
9088
9089 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9090
9091         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9092
9093 2003-03-09  Borut Razem <borut.razem AT siol.net>
9094
9095         * src/SDCCmain.c: pipe preprocessor's output
9096         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9097         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9098         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9099         which closes all pipes in pipeSet set
9100         * src/SDCCset.c: free deleted item in function deleteSetItem()
9101         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9102         moved from z80 to src subproject
9103
9104 2003-03-09  Borut Razem <borut.razem AT siol.net>
9105
9106         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9107         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9108         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9109         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9110         * src/SDCCglobl.h: unification of WIN32 native definitions
9111
9112 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9113
9114         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9115
9116 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9117
9118         * src/configure.in:   check for endianess (even while cross-compiling)
9119         * src/configure:      check for endianess (even while cross-compiling)
9120         * src/configure_in.h: check for endianess (even while cross-compiling)
9121         * src/avr/gen.c:        remove old endianess stuff
9122         * src/mcs51/gen.c:      remove old endianess stuff
9123         * src/ds390/gen.c:      remove old endianess stuff
9124         * src/pic/gen.c:        remove old endianess stuff
9125         * src/pic/genarith.c:   remove old endianess stuff
9126         * src/pic/glue.c:       fix endianess check
9127         * src/pic16/gen.c:      remove old endianess stuff
9128         * src/pic16/genarith.c: remove old endianess stuff
9129         * src/pic16/glue.c:     fix endianess check
9130         * src/xa51/gen.c:       remove old endianess stuff
9131         * src/z80/gen.c:        fix endianess check
9132         * src/SDCCglue.c:       fix endianess check
9133         * src/ds390/peeph.def: fix bug 700036
9134
9135 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9136
9137         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9138         * src/configure: find appropriate data-types on host for SDCC's int and long
9139         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9140         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9141         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9142
9143 2003-03-07    <johan AT balder>
9144
9145         Just a big NOOP:
9146                 some minor cleanups before the big shot
9147                 OP_DEFS and OP_USES now use Kevin's protection
9148                 new option --nolabelopt
9149
9150         * src/SDCCBBlock.c:
9151         * src/SDCCast.c,:
9152         * src/SDCCcflow.c:
9153         * src/SDCCcse.c:
9154         * src/SDCCicode.c:
9155         * src/SDCCicode.h:
9156         * src/SDCClabel.c:
9157         * src/SDCCloop.c:
9158         * src/SDCCmain.c:
9159         * src/ds390/ralloc.c:
9160         * src/mcs51/ralloc.c:
9161         * src/pic/ralloc.c:
9162         * src/xa51/ralloc.c:
9163         * src/z80/ralloc.c:
9164
9165 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9166
9167         * src/pic/pcode.c (get_op): fix 64 bit warnings
9168         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9169         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9170         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9171         * support/regression/tests/malloc.c: fix 64 bit warnings
9172
9173 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9174
9175         * src/mcs51/gen.c (genMinus): fixed bug 696436
9176
9177 2003-03-02  Borut Razem <borut.razem AT siol.net>
9178
9179         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9180
9181 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9182
9183         * configure.in: test for mkstemp
9184         * sdccconf_in.h: add HAVE_MKSTEMP
9185
9186 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9187
9188         * device/include/ctype.h: removed warning while using --stack-auto
9189         * device/include/malloc.h: removed warning while using --stack-auto
9190         * device/include/string.h: removed warning while using --stack-auto
9191
9192 2003-02-23  Borut Razem <borut.razem AT siol.net>
9193
9194         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9195         because NDEBUG is defined (see man assert)
9196         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9197
9198 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9199
9200         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9201         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9202
9203 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9204
9205         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9206         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9207
9208 2003-02-18    <johan AT balder>
9209
9210         * as/mcs51/asmain.c (asmbl): module can start with a digit
9211         * as/z80/asmain.c (asmbl): module can start with a digit
9212
9213 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9214
9215         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9216         * src/asm.c: fix pipe() for Mingw32
9217
9218 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9219
9220         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9221         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9222         make -V work again; --c1mode reads now from stdin
9223         * doc/sdccman.lyx: added --c1mode
9224         * support/Util/SDCCerr.c: new messages for c1 mode
9225         * support/Util/SDCCerr.h: new messages for c1 mode
9226         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9227
9228 2003-02-15    <johan AT balder>
9229
9230         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9231
9232 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9233
9234         * doc/sdccman.lyx: Environment variables, -o and other minor things
9235
9236 2003-02-14    <johan AT balder>
9237
9238         * src/xa51/main.c: before anyone really tries to use it :)
9239
9240         * Install doc's in share/sdcc/doc
9241         * removed some obsolete files
9242         * Do a proper make distclean and uninstall
9243         M Makefile.common.in
9244         R sdccbuild.sh
9245         M as/Makefile
9246         M device/include/Makefile.in
9247         M device/lib/Makefile.in
9248         M doc/sdccman.lyx
9249         M link/Makefile
9250         M sim/ucsim/doc/Makefile.in
9251         M src/clean.mk
9252         R src/avr/peeph.rul
9253         R src/xa51/peeph.rul
9254         M support/cpp2/Makefile.in
9255         M support/makebin/Makefile
9256
9257
9258 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9259
9260         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9261
9262 2003-02-10  Borut Razem <borut.razem AT siol.net>
9263
9264         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9265         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9266         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9267         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9268         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9269         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9270         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9271         src/z80/Makefile.bcc: Borland Makefile cleanup
9272         * as/z80/Makefile.bcc: Added Borland Makefile
9273         * support/cpp2/borland.h: Removed
9274
9275 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9276
9277         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9278         * src/SDCC.lex: new pragma NOIV
9279         * src/SDCCglobl.h: new pragma NOIV
9280         * src/SDCCmem.c: new pragma NOIV
9281
9282 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9283
9284         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9285
9286 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9287
9288         * src/SDCCmain.c: signal handling is switched off by --debug
9289         * doc/Makefile: small fix for install; use clean.mk again
9290         * doc/clean.mk: clean *.pdf and *.html too
9291
9292 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9293
9294         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9295         * device/lib/printfl.c: fix a ds390 bug by making it portable
9296         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9297         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9298         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9299         * debugger/mcs51/cmd.c: converted multi-line string literals
9300         * sim/ucsim/globals.cc: converted multi-line string literals
9301         * src/SDCCmain.c: introduced signal handler to remove temp files
9302         * doc/Makefile: small tweaks, implement clean
9303         * doc: removed generated files
9304
9305 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9306
9307         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9308         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9309         Address Record is not correctly generated for DS390."
9310
9311 2003-02-02  Borut Razem <borut.razem AT siol.net>
9312
9313         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9314         * as/mcs51/asm.h: fixed compilation with Borland C
9315         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9316         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9317         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9318         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9319         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9320         src/z80/Makefile.bcc: delete $(LIB) only if exist
9321         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9322
9323 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9324
9325         * device/include/malloc.h: introduced NULL
9326         * device/include/string.h: introduced NULL
9327         * device/include/stdlib.h: introduced NULL
9328         * device/lib/_memcpy.c: removed NULL
9329         * device/lib/_strcat.c: removed NULL
9330         * device/lib/_strchr.c: removed NULL
9331         * device/lib/_strcmp.c: removed NULL
9332         * device/lib/_strcpy.c: removed NULL
9333         * device/lib/_strcspn.c: removed NULL
9334         * device/lib/_strlen.c: removed NULL
9335         * device/lib/_strncat.c: removed NULL
9336         * device/lib/_strncmp.c: removed NULL
9337         * device/lib/_strncpy.c: removed NULL
9338         * device/lib/_strpbrk.c: removed NULL
9339         * device/lib/_strrchr.c: removed NULL
9340         * device/lib/_strspn.c: removed NULL
9341         * device/lib/_strstr.c: removed NULL
9342         * device/lib/_strtok.c: removed NULL
9343         * device/lib/malloc.c: removed NULL, include own header
9344
9345 2003-02-02    <johan AT balder>
9346
9347         * 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
9348         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9349         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9350         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9351         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9352         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9353
9354 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9355
9356         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9357         area 'DATA'"
9358
9359 2003-02-01    <johan AT balder>
9360
9361         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9362
9363 2003-01-31    <johan AT CP255758-A>
9364
9365         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9366
9367 2003-01-30    <johan AT balder>
9368
9369         * src/SDCCBBlock.c: automatic bug detection
9370         * src/SDCCicode.c: automatic bug detection
9371
9372 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9373
9374         * src/SDCCglobl.h:   now --xram-size 0 works
9375         * src/SDCCmain.c:    now --xram-size 0 works
9376
9377 2003-01-29    <johan AT balder>
9378
9379         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9380
9381 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9382
9383         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9384         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9385         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9386         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9387         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9388         * src/SDCCmain.c:    Added options --xram-size and --code-size
9389
9390 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9391
9392         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9393         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9394
9395 2003-01-27    <johan AT balder>
9396
9397         * src/SDCC.y: fixed bug #613764
9398
9399 2003-01-26    <johan AT balder>
9400
9401         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9402         * src/SDCCsymt.h: fixed bug #673374
9403         * src/SDCCglue.c: fixed bug #661910
9404         * src/SDCCast.c: fixed bug #458099 and 673374
9405
9406 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9407
9408         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9409         * as/mcs51/strcmpi.h: added
9410         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9411         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9412         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9413         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9414         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9415         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9416         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9417         * as/mcs51/Makefile.aslink: new module strcmpi
9418         * as/mcs51/Makefile.asx8051: new module strcmpi
9419         * as/mcs51/Makefil.bcc: new module strcmpi
9420         * as/mcs51/Makefile.in: new module strcmpi
9421         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9422
9423 2003-01-26    <johan AT balder>
9424
9425         * src/SDCCglue.c: reverted back to 1.124
9426         * src/SDCCast.c: reverted back to 1.156
9427         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9428
9429 2003-01-25    <johan AT balder>
9430
9431         * src/SDCCglue.c: A better fix for bug #661910
9432         * src/SDCCast.c: A better fix for bug #661910
9433         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9434
9435 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9436
9437         * src/Makefile.in: remove spawn.o
9438         * src/SDCCmain.c: remove spawn.h
9439         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9440         * src/spawn.c: removed
9441         * src/spawn.h: removed
9442         * support/regression/ports/ds390/spec.mk: link with -r
9443
9444 2003-01-24    <johan AT CP255758-A>
9445
9446         * src/ds390/gen.c (aopOp): fixed bug #667458
9447         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9448         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9449         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9450
9451 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9452
9453         * src/mcs51/peeph.def: better assembler identation by Frieder
9454         * src/mcs51/gen.c: better assembler identation by Frieder
9455
9456 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9457
9458         * as/z80/string.h: removed for gcc 3.2
9459         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9460         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9461
9462 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9463
9464         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9465         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9466         * support/regression/Makefile: separate temp files for ports
9467         * support/regression/generate-cases.py: separate temp files for ports
9468         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9469         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9470
9471 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9472
9473         * moved tinitalk to device/examples/ds390
9474
9475 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9476
9477         * as/mcs51/lkmem.c: rflag is for DS390
9478         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9479         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9480                          (linkEdit): move mem- and map-files the same way as ihx-files
9481         * src/z80/main.c (_setDefaultOptions): removed --generic
9482         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9483         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9484         * src/pic/glue.c (picglue): --c1mode works again
9485         * src/pic16/glue.c (pic16glue): --c1mode works again
9486         * src/asm.c (printCLine): fix #660034
9487
9488 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9489
9490         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9491         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9492         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9493         * as/mcs51/lkmem (summary): better fix for sp problem
9494         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9495         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9496         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9497                                               remove --stack-after-data
9498
9499 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9500
9501         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9502         * src/SDCCutil.c (join): ugly bug: missing '\0'
9503         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9504
9505 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9506
9507         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9508         * src/port.h: typo
9509         * src/pic/main.c (_asmCmd): gpasm supports -o
9510         * src/z80/main.c: more general macros
9511         * device/lib/Makefile.in: remove intermediate files
9512
9513 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9514
9515         * .version: Bumped version number to 2.3.3
9516         * src/SDCCBBlock.c: new option -o
9517         * src/SDCCglobl.h: new option -o
9518         * src/SDCCglue.c: new option -o
9519         * src/SDCCmain.c: new option -o
9520         * src/asm.c: new option -o
9521         * src/ds390/main.c: new option -o
9522         * src/pic/glue.c: new option -o
9523         * src/pic/pcode.c: new option -o
9524         * src/pic/ralloc.c: new option -o
9525         * src/pic16/glue.c: new option -o
9526         * src/pic16/pcode.c: new option -o
9527         * src/pic16/ralloc.c: new option -o
9528         * src/z80/main.c: new option -o
9529         * device/lib/Makefile.in: use -o
9530         * support/regression/ports/ds390/spec.mk: use -o
9531         * support/regression/ports/gbz80/spec.mk: use -o
9532         * support/regression/ports/mcs51/spec.mk: use -o
9533         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9534         * support/regression/ports/z80/spec.mk: use -o
9535         * support/regression/ports/ucz80/spec.mk: use -o
9536         * support/regression/ports/xa51/spec.mk: use -o
9537         * support/regression/fwk/lib/timeout.c: fix usage string
9538
9539 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9540         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9541
9542 2003-01-07    <johan AT balder>
9543
9544         * src/SDCCast.c (decorateType): fixed bug #600035
9545
9546 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9547         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9548         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9549         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9550         * src/pic/pcode.c: outcommented unused variable to remove warnings
9551         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9552
9553 2003-01-06    <karl AT turbobit.com>
9554         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9555    regression tests.
9556
9557 2003-01-06    <johan AT balder>
9558
9559         * src/SDCCicode.c: fixed array add
9560
9561 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9562         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9563         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9564
9565 2003-01-04    <johan AT balder>
9566
9567         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9568
9569 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9570         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9571
9572 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9573         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9574         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9575
9576 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9577         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9578
9579 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9580         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9581
9582 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9583         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9584
9585 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9586
9587     * in \sdcc\as\mcs51\ changed these files in order to create an
9588     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9589     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9590     following files to include the previous two files: aslink.dsp,
9591     Makefile.aslink, Makefile.bcc, and Makefile.in.
9592
9593     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9594     .adb instead of .cdb
9595
9596 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9597
9598         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9599         value from option --iram-size.
9600
9601 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9602
9603         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9604         dram[] array.
9605
9606 2002-09-18    <wiml AT hhhh.org>
9607
9608         * SDCClrange.h: exposed setFromRange() and setToRange()
9609         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9610           packRegsForAccUse() (bug 542397)
9611         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9612           multiple times and emitting the fetch operations more than once
9613           added aopGetUsesAcc() function to allow binary operators to
9614           fetch their operands in the correct order; made genMinus() emit
9615           compact code for X = LITERAL - Y
9616
9617 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9618         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9619         sprintf() in line 1267.
9620
9621 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9622         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9623         like ports.
9624
9625 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9626         Changes to aslink (All the changes are marked with 'JCF'):
9627
9628         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9629         summary().
9630
9631         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9632         area BSEG.  Also moves, if possible, the DATA area down into the internal
9633         ram so more space is available.
9634
9635         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9636         sflag.
9637
9638         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9639         not bytes.  Function summary() which creates a memory usage summary
9640         file with extension .mem.  Reports of overlaping stack and small stack
9641         size.  If the space for the stack is less than 16 bytes aslink trows a
9642         warning.
9643
9644         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9645         the 8051.  Option 'y' for memory summary output file.
9646
9647         Changes to sdcc (All the changes are marked with 'JCF'):
9648
9649         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9650
9651         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9652         overlaying area for it (uses RegBankUsed[4]).
9653
9654         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9655         bank zero as used by default.  By default aslink locates the stack
9656         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9657         the creation of the .mem file.  Delegates the allocation of data area
9658         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9659         the begining of the stack area to aslink.
9660
9661         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9662         glue() in SDCCglue.c creates an area for it.
9663
9664 2002-09-03  Borut Razem <borut.razem AT siol.net>
9665         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9666         sdcc/src/pic/glue.c:
9667         introduced atexit() handler for teporay files removal in case of
9668         errors, assertions, ...
9669
9670 2002-08-29  Borut Razem <borut.razem AT siol.net>
9671         * sdcc/support/cpp2/auto-host_vc_in.h:
9672         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9673         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9674         Maybe there is a similar problem with BORLANDC? It should be checked!
9675
9676         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9677         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9678         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9679         was not executed, and the compiler (cl) launched a warning:
9680         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9681
9682 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9683         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9684
9685 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9686         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9687
9688         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9689           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9690           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9691           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9692           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9693           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9694           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9695         - added Release configuration in VS projects
9696         - review of compiler an linker options
9697         - VC .exe files are generated in bin_vc directory, not to interfere
9698           with binaries generated from other projects (cygwin, mingw, bcc ...)
9699
9700         * sdcc/src/yacc.dsp: added
9701
9702         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9703         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9704         and insert the version number definitions from .version
9705
9706         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9707
9708         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9709         added - genarate auto-host.h using auto-host_vc_in.h as template
9710
9711         * sdcc/sdcc_vc.h,
9712         removed from CVS, generated automatically
9713
9714 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9715         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9716
9717 2002-08-11  Borut Razem <borut.razem AT siol.net>
9718         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9719
9720 2002-08-10  Borut Razem <borut.razem AT siol.net>
9721         * src/SDCCmain.c (main):
9722         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9723         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9724         The consequence was that some temporary files were not removed.
9725
9726         * src/SDCCglue.c:
9727         unification of code in functions tempfilename() and tempfile():
9728         function tempnam() is defined in Visual Studio 6.0 and .NET
9729
9730         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9731
9732         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9733           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9734         - removed compiler command line option /WX: Treats all warnings as errors
9735         - update a list of source files, included into the project
9736
9737         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9738           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9739         changed project type to Generic Project so that can be correcly converted to VS.NET project
9740
9741         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9742
9743         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9744
9745         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9746
9747         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9748         added return 0 statements after assert() to make compiler happy
9749
9750         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9751         added newline in the def file to keep MSC compiler satisfied
9752
9753         * sdcc/src/z80/gen.c:
9754         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9755           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9756         - solved MSC error in function aopDump()
9757
9758         * sdcc_vc.h: define PREFIX as "\\sdcc"
9759
9760 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9761         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9762
9763 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9764         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9765         - Rewrote the register banking algorithm.
9766         - Added pCode live-range analysis to registers (for now, only non-used and
9767         singly-used registers optimized away)
9768
9769         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9770
9771         * 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.
9772
9773 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9774         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9775
9776 2002-04-22  Michael Hope  <michaelh AT vroom>
9777
9778         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9779
9780         * configure.in (DD_COPT): Added include support required for gbdk.
9781
9782         * .version: Bumped version number just to increase it.
9783
9784         * src/SDCCmain.c: Added -nostdinc to the default options.
9785
9786 2002-04-15  Michael Hope  <michaelh AT vroom>
9787
9788         * device/lib/z80/printf.c (sprintf): Added.
9789
9790         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9791
9792         * src/z80/peeph.def: Added transpose redundent load rule.
9793
9794         * src/z80/main.c: Added force callee saves for jaune.
9795
9796         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9797
9798         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9799
9800 2002-03-28  Johan Knol  <johan AT balder>
9801
9802         * src/SDCCval.c: fixed bug #532436
9803
9804 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9805         * /src/port.h:
9806         Added "char *Processor" field to the port structure.
9807
9808         * /src/SDCCmain.c:
9809         Added -p option. Allows port dependent processor to be specified.
9810
9811         * all ports:
9812         Initialized the new field char *Processor field to NULL in all ports
9813
9814         * /src/pic/*:
9815         Compiler generated registers for interrupt context saving
9816         were not getting allocated.
9817
9818 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9819
9820         * /src/SDCCast.c:
9821         Fixed left shift. Will promote the left side of a left shift
9822         if a) left shifting more than size of operand or b) when assigned
9823         to something size > size of left side
9824
9825 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9826         * src/pic/*
9827         tons of changes. Register allocation has been
9828         rewritten. Added customization for the various PICs. Flow
9829         analysis is restructured. ...
9830
9831         * src/pic/device.h:
9832         Added
9833
9834         * src/pic/device.c:
9835         Added. device.c is a PIC port hack to accomodate variations
9836         in PIC devices.
9837
9838 2002-03-13  Michael Hope  <michaelh AT vroom>
9839
9840         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9841
9842 2002-03-04  johanknol  <johanknol AT manik>
9843
9844         * /src/SDCCval.c: fixed
9845
9846         const unsigned char arr[][2] = { { 0, 1 } };
9847         t18.c:1: error: Initializer element is not constant
9848
9849 2002-03-04  bela  <bela AT manik>
9850
9851         * /device/include/mcs51reg.h:
9852         ds89c420 register definition update
9853
9854 2002-03-03    <johan AT FRIJA>
9855
9856         * support/Util/SDCCerr.c: did something, but don't no why anymore
9857
9858         * support/regression/tests/bug-524691.c: made it a little less shy
9859
9860         * src/SDCCast.c (decorateType): fixed bug #524697
9861
9862         * src/SDCCast.c: made some lineno improvements
9863
9864         * src/SDCCval.c (getNelements): changed warning to error
9865
9866         * src/SDCCglue.c (printIvalArray): changed warning to error
9867
9868         * src/SDCCicode.c: fixed a warning for mingw
9869
9870         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9871
9872         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9873
9874 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9875
9876         * src/ds390/peeph.def:
9877         Added some more peephole rules
9878
9879         * src/ds390/gen.c: Various fixes & enhancements
9880
9881         * src/SDCClrange.c, src/SDCClrange.h:
9882         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9883
9884         * src/ds390/ralloc.c:
9885         various fixes & enhancements (ds390) specific
9886
9887         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9888         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9889         from rallocs.
9890
9891         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9892
9893 2002-03-02    <johan AT FRIJA>
9894
9895         * src/SDCCast.c (decorateType): fixed bug #524708
9896
9897         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9898
9899         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9900
9901 2002-03-01  Michael Hope  <michaelh AT vroom>
9902
9903         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9904
9905         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9906
9907 2002-03-01    <johan AT FRIJA>
9908
9909         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9910
9911         * src/SDCCast.c (decorateType): fixed bug #524209
9912
9913         * src/SDCCval.c (valNot): fixed bug #524195
9914
9915 2002-02-26    <johan AT balder>
9916
9917         * src/xa51/gen.c: fixed a warning
9918
9919         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9920
9921         * src/SDCCast.c (decorateType): fixed bug #522534
9922
9923 2002-02-23    <johan AT balder>
9924
9925         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9926
9927 2002-02-22    <johan AT balder>
9928
9929         * src/SDCCast.c: fixed bug #514865
9930
9931         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9932
9933 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9934
9935         * sdcc/src/SDCCloop.c:
9936         Previous fix was not good. basic blocks that have "break" or "return" are
9937         not really partof a loop , but live ranges used in these blocks should
9938         be live thru the entire loop, so set partOfLoop but don't add them to
9939         loop region
9940
9941 2002-02-21    <johan AT FRIJA>
9942
9943         * src/SDCCcse.c: fixed bug #514308
9944
9945 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9946
9947         * src/SDCCloop.c:
9948         Fixed BUG #519583. If a conditional block ended in a return/break
9949         statement inside a loop, it was not being considered part of the loop.
9950
9951         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9952
9953 2002-02-10  Karl Bongers <karl AT turbobit.com>
9954
9955         * debugger/*:
9956         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9957         with lots of comments and notes.
9958
9959         * device/examples/test2.c:
9960         Fix bug, "red" variable not being initialized(compiler complained).
9961
9962         * device/examples/Makefile, examples/test3.c:
9963         Add Makefile in device/examples folder, compiles test3.c
9964         for use as a multiple module SDCDB test case.
9965
9966         * sim/ucsim/cmd.src/cmdset.cc:
9967         Took out debug printfs in ucsim "next" command.
9968
9969         * sim/ucsim/xa.src:
9970         Karl and Johan start ucsim XA support.  Most dissassembly working,
9971         about 75% emulation done(plenty of work remaining).
9972
9973         * sim/ucsim/z80.src:
9974         Add Z80 support to ucsim, add test-ucz80 regression test,
9975         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9976         Notice z80 compiler fails on examples/test3.c/crc code.
9977
9978 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9979
9980         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9981         Added support for --parms-in-bank1
9982
9983         * src/ds390/peeph.def:
9984         added a few more peephole optimzations
9985
9986         * src/ds390/main.c:
9987         1) added __builtin_inp & __builtin_outp used to read in data of given length
9988            from a memory mapped port
9989         2) added __builtin_memcmp
9990         3) added __builtin_swapw swap bytes of a short
9991
9992         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9993         1) handle multiple send & receives from register bank1
9994         2) ralloc can now allocate DPTR1 to some liveRanges
9995
9996         * src/SDCCsymt.c, src/SDCCsymt.h:
9997         changes to handle multiple sends & receives
9998
9999         * src/SDCCptropt.h:
10000         added some pointer arithmetic optimization
10001
10002         * src/SDCCptropt.c:
10003         added some pointer arithmetic optimizations but not stable yet so not
10004         called from anywhere (will get this working shortly)
10005
10006         * src/SDCCopt.c: fixed for multiple sends & receives
10007
10008         * src/SDCCmain.c:
10009         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10010         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10011            set preprocessor defines (depending on options)
10012
10013         * src/SDCCicode.c, src/SDCCicode.h:
10014         changes made to handle multiple sends & receives
10015
10016         * src/SDCCglobl.h:
10017         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10018
10019         * src/SDCCcse.c, src/SDCCcse.h:
10020         added function findbackward def (to be used in upcoming optimization)
10021
10022         * src/SDCCcflow.c, src/SDCCcflow.h:
10023         added function returnAtEnd - to determine if a basic block terminates with
10024         a RETURN iCode
10025
10026         * src/SDCCast.c, src/SDCCast.h:
10027         added option parms-in-bank1
10028
10029         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10030         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10031         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10032         adjusted for --parms-in-bank1 option
10033
10034         * device/include/string.h:
10035         donot redefine "reentrant" keyword
10036
10037         * device/include/ds80c390.h: Added some more SFRs
10038
10039 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10040
10041         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10042
10043 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10044
10045         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10046
10047 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10048
10049         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10050
10051 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10052
10053         * Added --xram-movc option
10054
10055 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10056
10057         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10058
10059 2002-01-11  Johan Knol
10060
10061         * Added math lib of Jesus Calvino-Fraga
10062
10063 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10064
10065         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10066         * support/regression/Makefile: new target test-mcs51-stack-auto
10067         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10068
10069 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10070
10071         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10072
10073 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10074
10075         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10076
10077 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10078
10079         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10080
10081         * src/SDCCglue.h: add definition for printIvalChar()
10082
10083 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10084
10085         * src/SDCCast.c: fix #498138 by Johan
10086
10087         * src/SDCCglue.c: fix #498138 by Johan
10088
10089 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10090
10091         * support/regression/Makefile: fix clean
10092
10093         * support/regression/ports/ds390/support.c: fix transmission of last character
10094
10095 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10096
10097         * /sdcc/src/ds390/gen.c:
10098         a) improved computing address of stack variable
10099         b) took out some #if 0 code
10100         c) improved parmBytes adjustment
10101         d) improved genPlusIncr & genMinusIncr
10102         e) genCmp could generate bad code (when left assigned to DPTR)
10103         f) Fixed bug in hasInc
10104
10105         * /sdcc/src/ds390/ralloc.c:
10106         a) packRegsForSupport could mess up live information (Fixed)
10107         b) packRegsDPTRuse could be incorrect for left & right shift
10108
10109         * /sdcc/src/mcs51/ralloc.c:
10110         packRegsForSupport could mess up the live information (Fixed)
10111
10112         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10113
10114         * /sdcc/src/SDCCast.c:
10115         can reverse a loop even if function call is present as long
10116         as the loop control variable is local & is not passed as parameter
10117
10118 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10119
10120         * /sdcc/ChangeLog: *** empty log message ***
10121
10122         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10123         More builtin function additions for TININative
10124
10125         * /sdcc/src/ds390/ralloc.c:
10126         Had broken the regression testsuite
10127
10128         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10129
10130         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10131         Added funcattr hasStackParms will be set for reentrant functions when there
10132         are paramteres on the stack, this helps in minimizing frame pointer generation
10133         typeFromStr can handle function pointers now
10134
10135         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10136         *** empty log message ***
10137
10138 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10139
10140         * /src/ds390/gen.c, /src/ds390/main.c:
10141         More builtin function additions for TININative
10142
10143         * /src/ds390/ralloc.c:
10144         Had broken the regression testsuite
10145
10146         * /src/SDCCast.c: Fixed a bug in dumptree
10147
10148         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10149         Added funcattr hasStackParms will be set for reentrant functions when there
10150         are paramteres on the stack, this helps in minimizing frame pointer generation
10151         typeFromStr can handle function pointers now
10152
10153         * /doc/builtins.txt, /doc/TININative.txt:
10154         *** empty log message ***
10155
10156
10157 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10158
10159         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10160         ALPHA version for -mTININative
10161
10162         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10163         updated to reflect changes in the port structure
10164
10165         * /src/port.h:
10166         added function do_assemble (similar to do_link) if non-null this function
10167         will be called to do assembly (-mTININative) requires a multi command
10168         assembly
10169         added function genAssemblerEnd will be called to generate assembler Epilogue
10170
10171         * /src/SDCCsymt.c:
10172         added _JavaNative to debug info printing
10173
10174         * /src/SDCCmain.c: added option --tini-libid
10175         added port->do_assemble function (-mTININative) has a multi command assemble
10176
10177         * /src/SDCCglue.c: Disabled "constExpr" check
10178         added port->genAssemblerEnd function
10179
10180         * /src/SDCCglobl.h: Added option --tini-libid value
10181
10182         * /src/SDCCast.h:
10183         tookout optimizeCompare from the header (has no external references)
10184
10185         * /src/SDCCast.c: made one more function "static"
10186
10187 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10188
10189         * src/z80/mappings.i: Added z80asm support.
10190
10191         * src/z80/main.c: Added z80asm support on --asm=z80asm
10192
10193         * src/z80/gen.c: Fixed asm portability issues.
10194
10195         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10196
10197         * src/SDCCglue.c (printExterns): Added global/extern split.
10198
10199 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10200
10201         * support/regression/Makefile: added test for mcs51 model large
10202
10203         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10204
10205         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10206
10207 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10208
10209         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10210
10211 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10212
10213         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10214
10215         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10216
10217 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10218
10219         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10220
10221         * support/regression/tests/simplefloat.c: Port to mcs51.
10222
10223 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10224         * support/regression/tests/bug-485362.c: Added.
10225
10226         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10227
10228         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10229
10230         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10231
10232         * src/z80/gen.c (aopDump): Added a dump function.
10233
10234 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10235         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10236
10237         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10238
10239         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10240
10241         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10242
10243         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10244
10245         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10246
10247         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10248
10249         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10250
10251         * support/regression/ports/ds390/support.c: Use tinibios.
10252
10253         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10254
10255 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10256
10257         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10258         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10259
10260         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10261
10262         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10263
10264 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10265
10266         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10267
10268         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10269         (packRegsForIYUse): Created and optimised.
10270
10271 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10272
10273         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10274 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10275
10276         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10277
10278         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10279
10280         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10281
10282 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10283
10284         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10285
10286         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10287
10288 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10289
10290         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10291
10292         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10293
10294         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10295
10296 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10297
10298         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10299         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10300         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10301
10302         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10303
10304         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10305         (genNotFloat): Added.
10306         (genUminusFloat): Added.
10307
10308         * device/lib/z80/Makefile: Added floating pt stubs.
10309
10310         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10311
10312         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10313
10314         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10315
10316 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10317
10318         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10319
10320         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10321
10322         * sdcc/support/regression/Makefile: Add port ds390.
10323
10324         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10325
10326         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10327
10328         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10329
10330         * sdcc/support/regression/ports/ds390/support.c: Added.
10331
10332         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10333
10334         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10335
10336         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10337
10338 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10339
10340         * device/include/malloc.h: Added z80 and gbz80 support.
10341
10342         * device/lib/gbz80/heap.s: Added.
10343
10344         * device/lib/z80/heap.s: Added.
10345
10346         * device/lib/malloc.c: Added z80 and gbz80 support.
10347
10348         * support/regression/tests/malloc.c (testMalloc): Added.
10349
10350         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10351
10352         * support/regression/tests/bug-478094.c: Added.
10353
10354         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10355
10356 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10357
10358         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10359
10360         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10361
10362         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10363
10364         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10365
10366         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10367
10368 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10369
10370         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10371
10372 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10373
10374         * support/regression/tests/bug-477927.c: Added.
10375
10376         * src/z80/peeph.def: Added minor rules.
10377
10378         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10379
10380         * src/z80/peeph.def: Added jump optimisation modification.
10381
10382 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10383
10384         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10385
10386 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10387
10388         * support/regression/tests/funptrs.c: Added.
10389
10390 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10391
10392         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10393
10394 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10395
10396         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10397
10398         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10399
10400         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10401         (movLeft2ResultLong): Created.
10402
10403         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10404         (joinPushes): Added.  Joins two char pushes into a word push.
10405
10406 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10407
10408         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10409
10410         * support/makebin/Makefile (install): Added creation of dest dir.
10411
10412 2001-10-24 Karl Bongers <karl AT turbobit.com>
10413
10414         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10415
10416 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10417
10418         * src/z80/ralloc.c: Turned off faulty pack for one use.
10419
10420         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10421
10422         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10423
10424 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10425
10426         * support/regression/Makefile: Improved clean
10427
10428         * support/regression/ports/gbz80/spec.mk: Added clean
10429
10430         * support/regression/ports/host/spec.mk: Added clean
10431
10432         * support/regression/ports/z80/spec.mk: Added clean
10433
10434         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10435
10436         * support/regression/ports/mcs51/timeout.c: little improvements
10437
10438 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10439
10440         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10441
10442         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10443
10444         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10445
10446 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10447
10448         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10449
10450         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10451
10452 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10453         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10454
10455         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10456
10457         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10458
10459         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10460
10461         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10462
10463         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10464
10465         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10466
10467         * support/regression/tests/longor.c: Added.
10468
10469 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10470
10471         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10472
10473         * as/mcs51/aslink.h: define PATH_MAX
10474
10475         * as/mcs51/asm.h: define PATH_MAX
10476
10477         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10478
10479         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10480
10481         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10482
10483         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10484
10485         * src/SDCCglobl.h: define PATH_MAX
10486
10487         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10488
10489         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10490
10491 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10492
10493         * src/z80/gen.c (gencjneshort): Fixed
10494
10495         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10496
10497 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10498
10499         * support/regression/tests/bug-469671.c: Added.
10500
10501         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10502
10503 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10504
10505         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10506
10507         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10508
10509 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10510
10511         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10512
10513         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10514
10515         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10516
10517         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10518
10519         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10520
10521         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10522
10523         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10524
10525 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10526
10527         * 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.
10528
10529         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10530
10531         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10532
10533 2001-10-07    <johan AT FRIJA>
10534
10535         * device/lib/gets.c (gets): fixed the return value.
10536
10537 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10538         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10539
10540         * 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.
10541
10542         * 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.
10543
10544         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10545
10546         * src/pic/gen.c: Removed Safe_strdup.
10547
10548         * configure.in: Added option to enable libgc support.
10549
10550         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10551         (bitVectUnion): Optimised.
10552         (bitVectIntersect): Optimised.
10553         (bitVectBitsInCommon): Optimised.
10554         (bitVectCplAnd): Optimised.
10555
10556         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10557
10558 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10559
10560         * src/SDCCmain.c: distinguish between assembler debug and plain options
10561
10562         * src/avr/main.c:   remove standard assembler options
10563
10564         * src/ds390/main.c: remove standard assembler options
10565
10566         * src/mcs51/main.c: remove standard assembler options
10567
10568         * src/port.h: removed "PENDING" comment
10569
10570 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10571
10572         * src/device/lib/_mulint.c  : new, with assember functions
10573
10574         * src/device/lib/_mullong.c : new, with assember functions
10575
10576         * src/device/lib/_divuint.c : with assember functions
10577
10578         * src/device/lib/_divsint.c : with assember functions
10579
10580         * src/device/lib/_divulong.c: with assember functions
10581
10582         * src/device/lib/_divslong.c: with assember functions
10583
10584         * src/device/lib/_moduint.c : with assember functions
10585
10586         * src/device/lib/_modsint.c : with assember functions
10587
10588         * src/device/lib/_modulong.c: with assember functions
10589
10590         * src/device/lib/_modslong.c: with assember functions
10591
10592         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10593
10594         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10595
10596         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10597                                       replaced _mululong.c and _mulslong.c by _mullong.c
10598
10599 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10600
10601         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10602
10603 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10604
10605         * src/SDCCglue.c: test, if win32api is available for MINGW
10606
10607 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10608
10609         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10610         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10611         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10612         * support/regression/ports/host/spec.mk: removed GENERIC
10613         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10614         * support/regression/ports/z80/spec.mk: removed GENERIC
10615
10616 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10617
10618         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10619
10620         * support/regression/tests/bug-467035.c: Created.
10621
10622 2001-10-01    <johan AT FRIJA>
10623
10624         * src/SDCC.y: fixed bug #466586 part 1
10625
10626 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10627
10628         * SDCCicode.c: z80 has no generic pointers
10629         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10630
10631 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10632
10633         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10634
10635 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10636
10637         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10638
10639         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10640
10641 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10642
10643         * configure.in: Fixed up so that ucsim is only configured once.
10644
10645         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10646
10647         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10648         (getPathDifference): As above.
10649
10650         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10651
10652         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10653
10654 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10655         * .version: Updated to 2.3.1
10656
10657         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10658         Added copyright header.
10659
10660         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10661         (assemble): Added support for macro based assembler commands.
10662         (linkEdit): Added support for macro based linker commands.
10663         (preProcess): Changed the pre-processor to use macros.
10664         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10665         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10666
10667         * device/lib/z80/crt0.s: Added module name for debugging.
10668
10669 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10670
10671         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10672
10673         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10674
10675         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10676
10677         * src/Makefile.in: Added SDCCmacro and SDCCutil
10678
10679 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10680
10681         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10682
10683 2001-09-16    <johan AT FRIJA>
10684
10685         * 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.
10686
10687 2001-09-15    <johan AT FRIJA>
10688
10689         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10690         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10691
10692 2001-09-11    <johan AT FRIJA>
10693
10694         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10695
10696 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10697
10698         * support/regression/tests/bug-460444.c: Added test case.
10699
10700         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10701         (genCast): Added justification for all of the asserts.
10702
10703 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10704
10705         * support/regression/support.c: _xdata replaced by xdata
10706
10707         * support/regression/spec.mk: removed _generic
10708
10709 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10710
10711         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10712
10713         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10714         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10715
10716         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10717
10718         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10719
10720         * support/regression/tests/bug-460010.c: Added test case.
10721
10722         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10723
10724 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10725
10726         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10727
10728         * support/regression/testfwk.c: removed workaround for bug #436344
10729
10730         * support/regression/tests/bp.c: use less memory with mcs51
10731
10732         * support/regression/tests/bug-441448.c: use less memory
10733
10734         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10735
10736         * support/regression/collate-results.py: typo
10737
10738 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10739
10740         * support/regression/tests/fetchoverlap.c: Added new test case.
10741
10742         * support/regression/tests/bp.c: Added new test case.
10743
10744         * support/regression/tests/bug-448984.c: Added new test case.
10745
10746         * support/regression/tests/pow2shifts.c: Added new test case.
10747
10748         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10749         (genlshTwo): Fixed right shift for count > 8.
10750
10751         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10752
10753 2001-09-08    <johan AT FRIJA>
10754
10755         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10756
10757 2001-09-07    <johan AT FRIJA>
10758
10759         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10760
10761         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10762
10763 2001-09-06    <johan AT FRIJA>
10764
10765         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10766         * bernhard noted me at this: "() equals to (void)" (1.38)
10767
10768 2001-09-05    <johan AT FRIJA>
10769
10770         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10771
10772 2001-09-04    <johan AT FRIJA>
10773
10774         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10775
10776
10777 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10778
10779         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10780
10781 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10782
10783         * link/z80/aslink.h: Fixed path for PATH_MAX
10784
10785 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10786
10787         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10788
10789         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10790
10791         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10792
10793         * 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.
10794
10795 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10796
10797         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10798         (genCmp): Fixed up genCmp for the GB with longs.
10799
10800         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10801
10802         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10803
10804         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10805
10806         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10807
10808 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10809
10810         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10811
10812 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10813
10814         * 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.
10815
10816         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10817
10818 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10819
10820         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10821
10822         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10823
10824 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10825
10826   * sim/ucsim/configure:    little improvement of Cygwin-detection
10827   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10828   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10829   * support/regression/tests/bug-221100.c: small changes for mcs51
10830   * support/regression/tests/bug-221168.c: small changes for mcs51
10831   * support/regression/tests/bug-227710.c: small changes for mcs51
10832   * support/regression/tests/staticinit.c: small changes for mcs51
10833   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10834   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10835   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10836
10837 $Revision$