* src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
[fw/sdcc] / ChangeLog
1 2006-03-23 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
4           implemented patch 1120823 Thanks to Willy De la Court (normal
5           interrupts need an interrupt number now if they are made critical),
6           and enabled nesting of critical functions though not for gbz80
7           (genCritical, genEndCritical): added functions
8           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
9         * src/z80/mappings.i: added "ei" to all mappings
10
11 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
12
13         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
14         submitted by the Debian SDCC maintainer Aurelien Jarno:
15         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
16         archive with gcc 4.1 on mips and wrote the patch"
17
18 2006-03-16 Raphael Neider <rneider AT web.de>
19
20         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
21           the left operand is shorter than the result (c* = lit-c* + int),
22           fixes bug #1450796
23         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
24           OP_SYMBOL
25
26 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
27
28         * src/.version: increased version number to 2.5.5
29         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
30         linking is done manually in pic16 port's _linkEdit,
31         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
32         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
33         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
34         allocate asmop as AOP_ACC,
35         (aopForRemat): added parameter 'bool result' in function declaration,
36         (pic16_aopGet): return AOP_ACC when accessing WREG,
37         (pic16_popGetTempReg): minor modification,
38         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
39         'pic16_allocWithIdx',
40         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
41         calling function in absolute addresses,
42         (genAssign): take into account AOP_ACC asmop,
43         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
44         * src/pic16/pcoderegs.c: some debug functions and lines added,
45         * src/pic16/ralloc.c (decodeRegType): added but commented out,
46         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
47         register too,
48         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
49         call to allocReg, not by manually allocating a new one,
50         (pic16_assignRegisters): now before going through the register
51         allocating functions mark all registers as free. This eliminates some
52         side effects resulting from peephole parser done earlier in the backbone
53
54 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
55
56         * src/SDCCicode.c (geniCodeLogic),
57         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
58
59 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
60
61         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
62           (genSend): bugfix, do not allocate and free twice,
63           (shiftRLong): handle partially overlapping aops
64         * support/regression/tests/bitopcse.c: fixed warning redefined idata
65
66 2006-03-08 Borut Razem <borut.razem AT siol.net>
67
68         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
69           for pic16
70
71 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
72
73         * support/regression/tests/bug1409955.c: new, added
74         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
75         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
76           (aopForSym, aopOp): increment asmop.allocated if reused,
77           (freeAsmop): decrement asmop.allocated and check for zero instead of
78           using asmop.freed,
79           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
80           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
81            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
82            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
83            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
84            genSignedRightShift, genRightShift, genDataPointerGet,
85            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
86            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
87             in reverse order from allocation,
88           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
89             added swappedLR to keep track
90         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
91           pdata & code for GCC, z80, gbz80 & hc08
92         * support/regression/tests/zeropad.c: moved defines to testfwk.h
93
94 2006-03-08 Raphael Neider <rneider AT web.de>
95
96         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
97
98 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
99
100         * device/include/mcs51/c8051f410.h: new SiLabs mcu
101         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
102         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
103
104 2006-03-06 Borut Razem <borut.razem AT siol.net>
105
106         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
107           made the linker quiet
108
109 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
110
111         * src/pic16/gen.c (genPcall): fixed bug #1443644
112         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
113         which dumps before the function entry point a data byte which represents
114         the number of the local variables used by the specified function, added
115         'xinst' for initial support for Extended Instruction Support,
116         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
117         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
118         port->fun_prefix anymore (may change later),
119         (genFunction, genEndFunction): do not store/restore local registers for
120         _main (this should take care the --main-return command line option in
121         the future),
122         (genOr): removed some legacy pic-port instructions,
123         * src/pic16/genarith.c (genAddLit): re-enabled old code because
124         performing operations with SFR's causes data to be written more than
125         once to each SFR. Perhaps SFRs should be handled in special cases...
126         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
127         pcode.h
128         * src/pic16/main.c (_process_pragma): stack bound checking did not take
129         into account for stack starting position,
130         (struct OPTIONS pic16_optionsTable): added command line argument
131         --extended or -y for Extended Instruction Support,
132         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
133         (deassignLRs): *** perhaps the most important change, old 'for' code
134         (commented out for reference), didn't account for some registers which
135         were left marked 'not free' after a pointer operation. The change
136         reduces register usage a lot in some cases
137
138 2006-03-04 Borut Razem <borut.razem AT siol.net>
139
140         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
141           _clean
142         * support/regression/tests/bug-524697.c: decreased array size for
143           mcs51 to fit into the internal RAM
144         * support/regression/Makefile.in: a little bit more verbose
145
146 2006-03-03 Borut Razem <borut.razem AT siol.net>
147
148         * support/regression/fwk/lib/testfwk.c,
149           support/regression/fwk/include/testfwk.h: introduced function
150           _prints(), nonrecursive _printn(), call _initEmu() from main()
151         * support/regression/ports/gbz80/support.asm,
152           support/regression/ports/ucz80/support.asm,
153           support/regression/ports/z80/support.asm,
154           support/regression/ports/ds390/support.c,
155           support/regression/ports/hc08/support.c,
156           support/regression/ports/host/support.c,
157           support/regression/ports/mcs51/support.c,
158           support/regression/ports/xa51/support.c: added empty _initEmu()
159           function
160         * support/regression/ports/pic16/gpsim.cmd,
161           support/regression/ports/pic16/spec.mk,
162           support/regression/ports/pic16/support.c,
163           support/regression/Makefile.in: added pic16 regression test
164
165 2006-03-01 Raphael Neider <rneider AT web.de>
166
167         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
168           genConstPointerGet): use safe way of generating MOVFF to cover
169             literals as well as registers, fixes bug #1440527
170         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
171             dereference
172           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
173             more correctly, fixes bug #1232186
174           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
175         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
176             gplink guess the correct processor in more cases, applied patch
177             from Till Riedel attached to and fixing bug #1436552
178
179 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
180
181         * support/regression/tests/array.c: added, contains check for #1434401
182         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
183
184 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
185
186         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
187         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
188         * device/include/mcs51/c8051f326.h,
189         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
190         * device/include/mcs51/c8051f000.h,
191         * device/include/mcs51/c8051f018.h,
192         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
193           PCON_IDLE,PCON_STOP and added sfr16 definitions
194
195 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
196
197         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
198           genGetWord): fixed bug 1409955
199
200 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
201
202         * device/include/hc08/mc68hc908gp32.h,
203         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
204
205 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
206
207         * src/SDCCast.c (constExprValue): return NULL if not a value
208         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
209         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
210         * support/regression/tests/bitfields.c: enabled signed bitfield for all
211
212 2006-02-13 Borut Razem <borut.razem AT siol.net>
213
214         * src/regression/ptrarg.c: added, fails due to bug #1430967
215         * src/regression/Makefile: ptrarg.c added, ...
216
217 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
218
219         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
220         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
221
222 2006-02-11 Borut Razem <borut.razem AT siol.net>
223
224         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
225           print "Processor: xxx" message to stdout only if --verbose
226
227 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
228
229         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
230         * support/regression/tests/bug1426356.c: added
231         * support/regression/tests/bitfields.c: removed 2 tests
232
233 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
234
235         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
236         * device/include/mcs51/c8051f330.h,
237         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
238           PCON_IDLE,PCON_STOP and added sfr16 definitions
239         * device/lib/_divsint.c,
240         * device/lib/_divuint.c,
241         * device/lib/_divulong.c,
242         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
243           register bank bug for small stackauto
244
245 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
246
247         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
248
249 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
250
251         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
252         * all.dsp: corrected several bin paths
253         * device/include/mcs51/c8051f120.h,
254         * device/include/mcs51/c8051f300.h,
255         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
256           to PCON_IDLE,PCON_STOP
257         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
258         * device/lib/printf_large.c (output_float): fixed bug 1388703
259         * support/regression/tests/bug1057979.c: added test for bug 1388703
260
261 2006-02-08 Raphael Neider <rneider AT web.de>
262
263         * src/pic/pcode.c (pciTRIS): fixed typo,
264           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
265           (LinkFlow): fixed handling of flows that end in a call,
266           (ReuseReg): perform safety check earlier
267         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
268             to work with flows at the beginning of a pBlock,
269             fixes #1426557 (Symbol not previously defined),
270           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
271             usage information
272           (RemoveUnusedRegisters): update register usage info
273         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
274             created, reuse existing ones instead
275         * src/pic/gen.c (genPcall): fixed #1424719
276
277 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
278
279         * link/z80/lkmain.c,
280         * link/z80/lklex.c,
281         * link/z80/lkdata.c,
282         * link/z80/aslink.h: fixed build on current cygwin:
283         replaced getline() by lk_getline()
284
285 2006-02-01 Borut Razem <borut.razem AT siol.net>
286
287         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
288           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
289           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
290           src/regression/bool1.c, src/regression/bool2.c,
291           src/regression/bool3.c, src/regression/call1.c,
292           src/regression/compare.c, src/regression/compare10.c,
293           src/regression/compare2.c, src/regression/compare3.c,
294           src/regression/compare4.c, src/regression/compare5.c,
295           src/regression/compare6.c, src/regression/compare7.c,
296           src/regression/compare8.c, src/regression/compare9.c,
297           src/regression/configword.c, src/regression/for.c,
298           src/regression/inline.c, src/regression/mult1.c,
299           src/regression/nestfor.c, src/regression/or1.c,
300           src/regression/pointer1.c, src/regression/ptrfunc.c,
301           src/regression/rotate1.c, src/regression/rotate2.c,
302           src/regression/rotate3.c, src/regression/rotate4.c,
303           src/regression/rotate5.c, src/regression/rotate6.c,
304           src/regression/rotate7.c, src/regression/string1.c,
305           src/regression/struct1.c, src/regression/sub.c,
306           src/regression/sub2.c, src/regression/switch1.c,
307           src/regression/while.c, src/regression/xor.c,
308           src/regression/create_stc, src/regression/simulate,
309           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
310           regression tests
311         * src/regression/gpsim_assert.h: added
312
313 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
314
315         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
316         ((void (code *) (void)) 0) ();
317         * as/hc08/aslex.c,
318         * as/hc08/aslink.h,
319         * as/hc08/asm.h,
320         * as/hc08/asmain.c,
321         * as/hc08/lkdata.c,
322         * as/hc08/lklex.c,
323         * as/hc08/lkmain.c,
324         * as/mcs51/aslex.c,
325         * as/mcs51/aslink.h,
326         * as/mcs51/asm.h,
327         * as/mcs51/asmain.c,
328         * as/mcs51/lkdata.c,
329         * as/mcs51/lklex.c,
330         * as/mcs51/lkmain.c,
331         * as/z80/aslex.c,
332         * as/z80/asm.h,
333         * as/z80/asmain.c: fixed build on current cygwin:
334         replaced getline() by as_getline()
335
336 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
337
338         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
339         declarator in the symbol chain
340         * src/SDCCsymt.h,
341         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
342         parameter list for function pointers
343         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
344         * support/regression/tests/bug-716242.c: added
345
346 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
347
348         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
349         offset if possible
350         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
351
352 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
353
354         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
355         inifinitely recurseable, added static
356         * support/regression/tests/bug-1408066.c: added
357
358 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
359
360         * src/SDCCicode.h,
361         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
362         renamed, added possibility to create "postLoopLbl"-labels
363         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
364         newiTempLoopHeaderLabel
365         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
366         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
367         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
368         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
369         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
370         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
371         (basicInduction): fixed bug #136564, made static,
372         (loopInduction): changed parameter of basicInduction, made static,
373         (addPostLoopBlock): added
374         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
375         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
376         findLoopEndSeq
377         * support/regression/tests/bug-136564.c: added
378         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
379         --std-sdcc99 to LIBSDCCFLAGS
380
381 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
382
383         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
384         while loop
385         * support/regression/tests/bug-1406131.c: added
386
387 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
388
389         * src/SDCCast.c (decorateType): fix promotion of unary minus
390         * src/SDCCsymt.c (computeType): beautified
391         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
392         (valUnaryPM, valComplement): fix sign and promotion,
393         (valNot): ANSI: result type is int (SDCC: unsigned char)
394         * support/regression/tests/uminus.c: speedup by removing superflous
395         test case 'int'
396         * support/regression/tests/onebyte.c: added promotion and signedness
397         tests for unary minus
398         * support/regressions/tests/bug-477927.c: disable warning about
399         uninitialized variables
400         * support/regression/tests/not.c: added
401
402 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
403
404         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
405         * src/mcs51/gen.c (gen51Code): show final register usage after
406         fillGaps in asm with --i-code-in-asm
407         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
408         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
409         incUsed, rliveClear, adjustIChain): made static,
410         (setFromRange): excluded because it's unused,
411         (findPrevUseSym, markWholeLoop): added,
412         (findPrevUse): rewritten; fixes bug 895992; now a complete search
413         through all branches of predecessors enables sdcc to emit the warning
414         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
415         (rlivePoint): made static, added parameter emitWarnings which is only
416         true during the first run out of two,
417         (findRecursiveSucc, findRecursivePred): removed,
418         (computeLiveRanges): made static, added parameter emitWarnings,
419         (dumpIcRlive): added for debugging only
420         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
421         removed prototype of setFromRange()
422         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
423         in call of computeLiveRanges()
424         * support/regression/tests/bug-895992.c: added
425         * support/regression/tests/bug-971834.c: added
426         * support/valdiag/tests/bug-895992.c: added
427         * support/valdiag/tests/bug-971834.c: added
428
429 2005-12-18 Raphael Neider <rneider AT web.de>
430
431         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
432           (genUnpackBits): improved code for direct operands,
433           (genPackBits): improved code for literal assignment to bitfields
434             and for direct destination operands (no FSR indirection),
435             prevented redundant AND, fixes #1362800,
436           (AccLsh): added parameter to disable masking of the result
437         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
438           skip instructions with side-effects (like incfsz),
439           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
440         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
441         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
442           fixes #1375263
443
444 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
445
446         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
447         volatile variables as spill location
448
449 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
450
451         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
452         replacing literals
453         * support/regression/tests/bug-1376320.c: added
454
455 2005-12-08 Raphael Neider <rneider AT web.de>
456
457         * src/pic/device.c: renamed is_shared to pic14_is_shared
458         * src/pic/gen.c (genIfx): re-enabled handling of sbits
459         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
460           (is_valid_identifier): added for above workaround
461
462 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
463
464         * device/lib/Makefile.in: fixed to enable port-specific-objects
465         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
466           char, thanks Hubert Sack
467         * doc/sdccman.lyx: documented --xstack-loc,
468           elaborated a bit more on interrupts and pitfalls,
469           removed "setjmp/longjmp unsupported",
470           documented some unsupported C99 features
471         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
472         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
473           if, thanks Hubert Sack
474         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
475         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
476           make make_library
477         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
478           regression tests can report resource usage (rfe 700441)
479         * support/regression/collate-results.py: report resource usage
480         * support/regression/ports/ds390/spec.mk,
481         * support/regression/ports/hc08/spec.mk,
482         * support/regression/ports/mcs51/spec.mk,
483         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
484         * support/regression/ports/ds390/uCsim.cmd,
485         * support/regression/ports/hc08/uCsim.cmd,
486         * support/regression/ports/mcs51/uCsim.cmd,
487         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
488         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
489           library, use the default one
490         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
491           building the library
492
493 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
494
495         * config.dsp: added dependency on .version and configure_vc.awk
496         * device/include/setjmp.h: updated for --stack-auto and --xstack
497         * device/include/mcs51/at89c51snd1c.h: corrected line endings
498         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
499         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
500         * device/lib/libsdcc.lib: added _setjmp
501         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
502           (decorateType): fixed bug 1372851,
503           (optimizeGetHbit): fixed warning
504         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
505           array initialisation
506         * support/regression/tests/bug1057979.c: added test for bug 1358192
507         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
508
509 2005-12-03 Borut Razem <borut.razem AT siol.net>
510
511         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
512           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
513
514 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
515
516         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
517         createIval): implement symbol independant "flexible array member",
518         (createIvalCharPtr): implemented flexible array initialisation with a
519         string
520         * src/SDCCsymt.c (copyStruct): removed,
521         (getSize): fixed misleading comment,
522         (getAllocSize): removed, the additional allocation size is now in
523         sym->flexArrayLength,
524         (checkStructFlexArray): new, syntax checks for flexible array members,
525         (compStructSize): added syntax checks for "flexible array members"
526         (copyStruct): removed,
527         (copyLinkChain): removed inefficient fix for bug 770487
528         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
529         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
530         symbol->flexArrayLength
531         * src/SDCCerr.c,
532         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
533         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
534         * support/regression/tests/structflexarray.c: added
535         * support/valdiag/tests/structflexiblearray.c: added
536
537 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
538
539         * src/SDCCast.c (decorateType): fixed bug 1368489
540         * support/Util/SDCCerr.c,
541         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
542
543 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
544
545         * device/include/mcs51/at89c51snd1c.h: added file submitted by
546           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
547
548 2005-11-27 Borut Razem <borut.razem AT siol.net>
549
550         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
551           support/cpp2/mkdeps.h: added command line option
552           -obj-ext=<extension> to SDCPP to define object file externion, used
553           for generation of make dependencies (-M)
554         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
555
556 2005-11-26 Borut Razem <borut.razem AT siol.net>
557
558         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
559           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
560           added pic and pic16 libraries
561
562 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
563
564         * device/include/float.h: Corrected typo in prototype of __fsgt
565
566 2005-11-25 Borut Razem <borut.razem AT siol.net>
567
568         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
569           added creation of model-mcs51-stack-auto libraries
570
571 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
572
573         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
574         and fields-list too
575         * src/SDCCast.c (createIvalArray): removed obsolete comment
576
577 2005-11-24 Borut Razem <borut.razem AT siol.net>
578
579         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
580           added missing device/lib/mcs51/crt*.asm sources
581
582 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
583
584         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
585
586 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
587
588         * device/lib/_fs2schar.c,
589         * device/lib/_fs2sint.c,
590         * device/lib/_fs2slong.c: optimized inline asm
591
592 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
593
594         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
595           Better handling of floats between -1.0 and 0.0.
596
597 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
598
599         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
600           (the missing "if"s prohibited removal of redundant labels)
601
602 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
603
604         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
605           Properly convert floats between -1.0 and 0.0 to long, int, and char
606           types (max integer value of negative floats tends to zero).
607         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
608           Removed changes made so to work properly with floats between
609           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
610           and _fs2char.c
611
612 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
613
614         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
615         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
616         (genCast) cosmetic change
617         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
618         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
619         from mcs51
620         * support/regression/tests/bitfields (testSignedBitfields): added
621
622 2005-11-18 Borut Razem <borut.razem AT siol.net>
623
624         * sdcc/device/lib/Makefile.in: remove all unnecessary files
625         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
626           introduced SILENT option to make building of pic16 libraries less
627
628 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
629
630         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
631           Now they work properly with floats between -1.0 and 0.0
632         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
633
634 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
635
636         * src/SDCCicode.c (printOperand): added missing else
637
638 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
639
640         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
641         reformatted for better readability
642         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
643         signed bitfields
644
645 2005-11-17 Borut Razem <borut.razem AT siol.net>
646
647         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
648           introduced SILENT option to make building of pic16 libraries less
649           verbose - used for nightly snapshot build
650         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
651           available on Win32 platforms.
652         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
653           medium, large, pic and pic16
654
655 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
656
657         * device/lib/printf_large.c: Temporary patch for bug 1358192:
658           printf("%f"...) sets fraction to zero.
659
660 2005-11-16 Raphael Neider <rneider AT web.de>
661
662         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
663           fixes #1357221
664         * src/pic/gen.c (genIfx): implemented for CARRY bit
665         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
666           to generic pointers, fixes #1357332,
667           (pic16_movLit2f): NEW,
668           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
669
670 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
671
672         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
673
674 2005-11-11 Raphael Neider <rneider AT web.de>
675
676         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
677         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
678           compute pointer's type from operand,
679           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
680           improved single bit reads, fixes bug #1353379
681
682 2005-11-09 Borut Razem <borut.razem AT siol.net>
683
684         * support/scripts/sdcc.nsi: added lib/pic to the package
685
686 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
687
688         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
689
690 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
691
692         * support/regression/tests/bug1348008.c: added
693         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
694         * support/regression/tests/bug1337835.c: updated comment
695
696 2005-11-06 Borut Razem <borut.razem AT siol.net>
697
698         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
699           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
700           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
701           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
702           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
703           dynamic construction of cl_error_class and derivates - 2.nd try
704
705 2005-11-05 Borut Razem <borut.razem AT siol.net>
706
707         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
708           bug, which caused Bus Errors on sparc solaris
709
710 2005-11-04 Borut Razem <borut.razem AT siol.net>
711
712         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
713           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
714           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
715           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
716           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
717           and derivates to resolve the initialization problem on OSX
718
719 2005-11-02 Borut Razem <borut.razem AT siol.net>
720
721         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
722           corrected typo - #include <winsock2.h>
723
724 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
725
726         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
727           (_asxxxx_mapping): added org directive for future enhancements
728
729 2005-11-01 Borut Razem <borut.razem AT siol.net>
730
731         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
732           enabled sockets on WIN32
733         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
734
735 2005-10-31 Borut Razem <borut.razem AT siol.net>
736
737         * support/regression/generate-cases.py: escape backslashes in {testcase}:
738           WIN32 backslash path delimiters should be escaped when used in C strings
739         * support/regression/tests/bitfields.c: exclude failing assertions for
740           __CYGWIN32__ and __MINGW32__ hosts
741
742 2005-10-30 Borut Razem <borut.razem AT siol.net>
743
744         * src/SDCCutil.c: corrected double comparison typo
745
746 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
747
748         * device/lib/medium/Makefile: added for new memory model medium
749         * device/include/asm/mcs51/features.h: updated for medium/pdata
750         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
751           added Multiply & Accumulate sbit's and MAC0_PAGE define
752         * device/include/mcs51/c8051f300.h: added sfr16 definitions
753         * device/include/mcs51/c8051f310.h: added sfr16 definitions
754         * device/lib/_mullong.c: update for medium model
755         * device/lib/incl.mk: added medium model
756         * doc/sdccman.lyx: documented medium model
757         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
758         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
759         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
760         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
761           (allocParms): set SCLS and OCLS to pdata for medium model
762         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
763           for pdata,
764           (powof2): return <0 if not power of 2
765         * src/avr/gen.c (genBitWise): use updated powof2
766         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
767           (shiftR2Left2Result): small optimization in setup, save acc when storing,
768           (shiftLLeftOrResult): use B if necessary
769         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
770         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
771         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
772         * support/regression/Makefile.in: added test-mcs51-medium
773         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
774
775 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
776
777         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
778         specifier unsigned
779         * device/lib/time.c (mktime): fixed bug 1334315
780
781 2005-10-28 Raphael Neider <rneider AT web.de>
782
783         * device/include/pic/p16f_common.inc: added common declarations
784         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
785
786 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
787
788         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
789           (aopPutUsesAcc): added to predict accumulator use,
790           (assignResultValue): save acc if necessary,
791           (genMinusDec): store result if indirectly addressed,
792           (genDivOneByte):  save acc if necessary,
793           (movLeft2Result): bugfix if left already in acc,
794           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
795             attention to accumulator use (esp. pdata),
796           (genReceive): receive pdata correctly
797         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
798         * src/SDCCicode.h: added isOperandInPagedSpace prototype
799
800 2005-10-27 Raphael Neider <rneider AT web.de>
801
802         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
803
804 2005-10-27 Raphael Neider <rneider AT web.de>
805
806         * .version: changed version to 2.5.4
807         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
808         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
809           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
810             arithmetics support routines
811         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
812         * device/lib/Makefile.in: also create installdir for pic
813
814         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
815           pic14 port as well
816         * src/pic/device.c (dump_sfr): rewritten to delegate register
817           placement to the linker (use `extern sym' rather than sym EQU addr),
818           (validAddress): fixed to check last specified address
819         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
820           (popGetLit): truncate literal value to 8 bit,
821           (popGet): moved assert to more appropriate place
822           (popGetExternal): create pCode operand from and mark the according
823             symbol as being `extern'
824           (popGetAddr): added sanity check on immediate's offset, provide
825             GPOINTER tag on demand
826           (aopPut): fixed for immediates,
827           (mov2w_op): move operand's address or contents to WREG (depending on
828             operand type), safer variant of mov2w,
829           (movwf,call_libraryfunc): NEW, handy abbreviations,
830           (get_argument_pcop,get_return_val_pcop,pass_argument,
831           get_returnvalue): interface for accessing function parameters and
832             return values,
833           (assignResultValuei,genRet): use new parameter/return value interface
834           (pic14_getDataSize): back to old version handling generic pointers,
835           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
836             provided implementation and/or fixed old one,
837           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
838             calls, removed legacy 8051 reference code
839           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
840           (loadSignToC): NEW, move the operands sign bit to CARRY,
841           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
842             genRightShiftSigned, accepts negative shift counts,
843           (setup_fsr): load FSR and adjust IRP (indirect memory access),
844           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
845             generic pointers, __data pointers and __code pointers,
846           (genUnpackBits,genPackBits): rewritten to work with generic pointers
847             and signed bitfields, limit bitfields to 8 bit,
848           (genDataPointerGet): fixed number of bytes read,
849           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
850           (genPointerGet,genPointerSet): fixed handling of __code pointers,
851             pointers to constant data are no longer assumed to point to __code
852             space, removed invalid pointer types,
853           (bitpatternFromVal): retrieve the PICs representation of an integer
854             or float literal,
855           (genDataPointerSet): fixed assigning to po_immediate operands,
856           (genGenPointerSet): implemented as library call,
857           (genIfx): fixed incorrect condition,
858           (genAddrOf): limit generic pointers' addresses to 2 bytes,
859             provide GPOINTER tag according to destination's storage class,
860           (genCast): added code to handle casting to generic pointers, added
861             sign-/zero extension of the result
862           (aop_isLitLike,op_isLitLike): fixed handling of immediates
863         * src/pic/gen.h: added macros to access IRP bit in STATUS register
864         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
865           extend the result
866         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
867           address/register resides in the shared banks
868           (emitSymbolToFile): improved to handle global and `pinned' symbols,
869             put all variables into separate sections (have the linker arrange
870             them)
871           (picglue): put init code and interrupt handlers in separate sections
872         * src/pic/main.c: added port specific options table, modified to PORT
873           structure to make GPOINTERs 3 byte, added pic14_options
874           (_pic14_do_link): private linking routine (update paths to libraries,
875             add libsdcc.lib by default)
876         * src/pic/main.h: declare pic14_options
877         * src/pic/pcode.c: fixed instructions i/o relations,
878           (RegCond): reverted to correct version,
879           (newpCodeOpLit): truncate literals to 8 bit,
880           (genericPrint): added debug output,
881           (getRegFromInstruction): fixed for various operand types, simplified
882           (BuildFlow): fixed broken handling of isntructions with labels
883           (LinkFlow): start at last instruction in flow (skip trailing comments),
884             pass the flow on to the next instruction after CALL
885           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
886           (insertPCodeInstruction): fixed inserting after a skip instruction,
887           (DoBankSelect): fixed for labeled instructions
888           (OptimizepBlock): honor --nopeep switch
889           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
890         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
891         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
892           (pCodeOptime2pCodes): allow disabling this optimization via
893             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
894             but is still buggy), started implementation of a dataflow based
895             pCode optimization (CSE + dead code elimination)
896           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
897         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
898           names are independant of the stack location and therefore portable across
899           devices
900
901 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
902
903         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
904           (selectSpil): fixed bug 1337835 by not spilling bit variables
905         * support/regression/tests/bug1337835.c: added test for this bug
906         * src/mcs51/peeph.def: restart after rule 3.c,
907           addded rules 263.x to optimize loading constants
908
909 2005-10-26 Raphael Neider <rneider AT web.de>
910
911         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
912         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
913           (genAssign): emit warning when casting literals to generic pointer
914             type, also applies when taking the address of a fixed variable,
915           (genCast): improved casting to generic pointers
916         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
917           extern variables, added verbose error message
918         * device/include/pic16/{string.h,errno.h}: added #pragma library c
919
920 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
921
922         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
923         carry must be complemented too
924         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
925         could be emitted by genMinus
926         * src/SDCCval.c (constVal): fixed bug 1305065
927
928 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
929
930         * src/SDCCast.c (addCast): added promotion for bit variables
931         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
932         promotion casts + optimisation
933         (optimizeGetWord): fix warning 'i' might be used uninitialized
934         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
935         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
936
937 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
938
939         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
940         all chars are promoted to int; promotion should be handled in SDCCast.c
941
942 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
943
944         * device/lib/_strcmp.c: Fixed bug 1326457
945
946 2005-10-11 Raphael Neider <rneider AT web.de>
947
948         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
949         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
950
951 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
952
953         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
954         * support/regression/tests/sfr16.c: added test for the sfr32 bug
955
956 2005-10-04 Raphael Neider <rneider AT web.de>
957
958         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
959           device/lib/pic16/pics.all: added pic18f1320
960         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
961
962 2005-09-30 Raphael Neider <rneider AT web.de>
963
964         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
965         * src/pic16/devices.inc: NEW, provides device descriptions
966         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
967
968 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
969
970         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
971           GETHBIT
972
973 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
974
975         * doc/sdccman.lyx: updated Highest Order Bit documentation,
976           documented Any Order Bit, Higher Order Byte and Higher Order Word
977         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
978         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
979           (optimizeGetAbit): new, to get any bit, not only the high bit,
980           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
981           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
982           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
983           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
984             RIGHT_OP: also try GETBYTE, GETWORD optimization,
985             GETABIT, GETBYTE, GETWORD: decorate them,
986           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
987           (ast_print): added GETABIT, GETBYTE, GETWORD
988         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
989         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
990           (geniCodeBinary): new generic binary icode,
991           (ast2iCode): added GETABIT, GETBYTE, GETWORD
992         * src/port.h: updated comment for PORT.hasExtBitOp
993         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
994           (genGetByte): new, to get a single byte,
995           (genGetWord): new, to get a word from a long,
996           (gen51Code): added GETABIT, GETBYTE, GETWORD
997         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
998
999 2005-09-23 Raphael Neider <rneider AT web.de>
1000
1001         * configure.in, configure: have device/lib/pic configured
1002         * device/lib/Makefile.in: added model-pic14
1003         * device/lib/clean.mk: added pic/ to clean rule
1004         * device/lib/pic: added rudimentary pic14 library providing support
1005           functions for multiplication/division/generic pointer access
1006         * src/SDCCopt.c (convilong): mark support functions as extern
1007           for pic14 port as well
1008         * src/pic/gen.c (genMult): added assertions,
1009           (genpic14Code): emit warning on unhandled iCodes
1010         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1011         * src/pic/pcode.c (pCodeOpCopy),
1012         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1013           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1014           SFR_REGISTER}), made safe for future extensions
1015         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1016           instructions even if preceeded by SKIP instructions (also remove
1017           them); removed unused code
1018         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1019           prevents leaving parts of the structure uninitialized after copying
1020
1021 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1022
1023         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1024           ago by me
1025         * support/regression/tests/addsub.c: added test for the bug
1026
1027 2005-09-21 Raphael Neider <rneider AT web.de>
1028
1029         * device/include/pic16/pic18f1220.h,
1030           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1031         * device/lib/pic16/Makefile.rules: added missing opening paren
1032         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1033           are provided in genutils.c,
1034           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1035           operand/result sizes,
1036           (genCmp): assert on NULL pointers first, then check deref'ed values
1037         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1038           result size
1039
1040 2005-09-18 Raphael Neider <rneider AT web.de>
1041
1042         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1043           as these are now unused,
1044           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1045         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1046           local, avoids uninitialized pointer dereference on r->name
1047         * src/pic16/ralloc.c (newReg): fixed indentation
1048
1049 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1050
1051         * src/SDCCval.c (constVal): fixed bug 730366
1052         * support/Util/SDCCerr.c,
1053         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1054
1055 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1056
1057         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1058
1059 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1060
1061         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1062
1063 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1064
1065         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1066           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1067         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1068           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1069         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1070         * packihx/packihx.c (hexDigit): made c unsigned char
1071         * as/mcs51/lklibr.c (fndsym),
1072         * link/z80/lkgb.c (gb),
1073         * link/z80/lklibr.c (fndsym),
1074         * link/z80/lkrloc.c (relr),
1075         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1076         * src/SDCC.lex (checkCurrFile, process_pragma),
1077         * src/SDCCglue.c (spacesToUnderscores),
1078         * src/SDCCmain.c (setParseWithComma, processFile),
1079         * src/asm.c (tvsprintf, printCLine),
1080         * src/avr/gen.c (emitcode, aopPut),
1081         * src/ds390/gen.c (emitcode),
1082         * src/hc08/gen.c (emitcode, emitinline),
1083         * src/mcs51/gen.c (emitcode, genInline),
1084         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1085           tokenizeLineNode),
1086         * src/pic/ralloc.c (debugLog),
1087         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1088           tokenizeLineNode),
1089         * src/pic16/ralloc.c (debugLog),
1090         * src/z80/main.c (_process_pragma):
1091            made all ctype.h function calls safe
1092         * src/SDCCopt.c: include math.h for fabs
1093         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1094           and used them throughout the code to make ctype.h function calls safe
1095         * src/ds390/main.c (asmLineNodeFromLineNode),
1096         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1097         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1098            unsigned char*
1099         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1100           (newpCodeAsmDir): made ctype.h function calls safe
1101         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1102           pic16_emitcode):  made lbp unsigned char*
1103         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1104           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1105         * src/xa51/gen.c (emitcode),
1106         * src/z80/gen.c (_emit2): made lbp unsigned char*
1107         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1108            char*
1109
1110 2005-09-05 Raphael Neider <rneider AT web.de>
1111
1112         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1113           access bank splitpoint
1114
1115 2005-09-05 Raphael Neider <rneider AT web.de>
1116
1117         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1118
1119 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1120
1121         * .version: changed to version 2.5.3
1122         * doc/sdccman.lyx: changed version to 2.5.3,
1123           documented --codeseg and --constseg and pragma codeseg and constseg,
1124           documented bit parameters (reentrant) and bit returning
1125         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1126            currFunc->recvSize, but is this ok for all ports?
1127           (ast2iCode): result of ~ on unsigned char must be cast to int for
1128            bool to work
1129         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1130           function pointers in bit space
1131         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1132           (processFuncArgs): call port.reg_parm() with reentrancy info
1133         * src/port.h,
1134         * src/avr/main.c,
1135         * src/ds390/main.c,
1136         * src/hc08/main.c,
1137         * src/pic/main.c,
1138         * src/pic16/main.c,
1139         * src/xa51/main.c,
1140         * src/z80/main.c: port.reg_parm prototype extended with
1141           "bool reentrant" parameter
1142         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1143           options.stackAuto for allocating bit register parameters
1144         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1145           (genSend): set BitBankUsed if it is,
1146           (selectRegBank): factored out of genCall for use in genPcall,
1147           (genCall): removed redundant dtype assignmen, use selectRegBank,
1148           (genPcall): handle returning in Carry properly, save in F0 if needed,
1149           (genReceive): handle bit register parameters
1150         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1151           (mcs51_assignRegisters): enable bit registers for all reentrant
1152            functions and don't set BitBankUsed unconditionally
1153         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1154         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1155         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1156
1157 2005-08-27 Borut Razem <borut.razem AT siol.net>
1158
1159         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1160         ppc-osx (Darwin) does not support -u option. It seems that it is
1161         supported only on Linux - GNU cp
1162
1163 2005-08-25 Borut Razem <borut.razem AT siol.net>
1164
1165         * sim/ucsim/gui.src/serio.src/Makefile.in,
1166           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1167           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1168           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1169           install and strip, since the strip at /usr/ccs/bin should be used
1170           on solaris
1171
1172 2005-08-24 Borut Razem <borut.razem AT siol.net>
1173
1174         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1175
1176 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1177
1178         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1179         ffffffffu
1180
1181 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1182
1183         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1184         * as/mcs51/lkmain.c (link_main): fixed warning
1185         * device/include/stdbool.h: ds390 has no advanced bit support yet
1186         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1187         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1188         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1189           and updated their macros
1190         * src/SDCCval.c (constVal): updated comment for renamed b_long
1191
1192 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1193
1194         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1195         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1196           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1197           (oprio): set priority for '['
1198         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1199            and adb_24_bit
1200         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1201         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1202         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1203         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1204           added overlayable BIT_BANK area
1205         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1206           (summary2): explain 'T' in legenda
1207         * as/mcs51/lkrloc.c: replaced old K&R style,
1208           (relr): added R_BIT processing,
1209           (errmsg): added "Bit-addressable relocation error",
1210           (adb_bit): added for converting from byte- to bit-addressable space,
1211           (adb_24_bit): added for converting from byte- to bit-addressable space
1212         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1213            used in reentrant functions now even as return value
1214         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1215         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1216           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1217         * src/SDCCglobl.h: added indicator BitBankUsed
1218         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1219            the bit registers b0-b7
1220         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1221           (geniCodeCast): fixed bug 1263853,
1222           (geniCodeLogicAndOr): put result in bool or char,
1223           (geniCodeReceive): added parameter func for accessing the return type,
1224           (geniCodeFunctionBody): pass func to geniCodeReceive
1225         * src/SDCCmain.c: added indicator BitBankUsed
1226         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1227         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1228           (checkSClass): don't put automatic bool/bit on stack,
1229           (checkFunction): removed check on function cannot return bit
1230         * src/SDCCsymt.h: added newBoolLink prototype
1231         * src/mcs51/gen.c (rb1regs): added bit registers,
1232           (movc): created for assigning to carry,
1233           (pushReg, popReg): created for pushing registers,
1234           (sameRegs): check both AOP_REG and AOP_CRY types,
1235           (aopOp): handle bit registers,
1236           (aopPut): optimization no self-assign,
1237           (saveRegisters): push reg->base (bits) only once for bit registers,
1238            and use pushReg,
1239           (unsaveRegisters): pop reg->base only once and use popReg,
1240           (assignResultValue): added parameter func and return in carry for bits,
1241           (genIpush): optimization no reload in A if not changed,
1242           (genSend): bit parameters in reentrant functions are passed in bit
1243            registers by first assigning to bits in B, then save registers and
1244            copy B to bits,
1245           (genCall): handle returning in Carry properly, save it in F0 if needed,
1246           (genPcall): updated assignResultValue call, this is not safe yet for bit
1247            returning function !!!
1248           (genFunction): don't generate equ's for bit registers and use pushReg,
1249           (genEndFunction): take care of bit returning functions and use popReg,
1250           (genRet): return bit in Carry,
1251           (genIfx): optimize bit registers and other directly addressable bits,
1252           (genReceive): updated assignResultValue call
1253         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1254           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1255            registers when using stack-auto
1256         * src/mcs51/ralloc.c (_G): added allBitregs,
1257           (regs8051): added the bit registers,
1258           (createStackSpil): use macro IS_BIT,
1259           (getRegBit): added to allocate a bit register, else spill,
1260           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1261           (updateRegUsage): factored out to ease stepping while debugging,
1262           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1263            also allocate bit registers,
1264           (fillGaps): handle bit registers,
1265           (findAllBitregs): added to create bit vector with all bit registers,
1266           (mcs51_allBitregs): returns this bit vector,
1267           (mcs51_assignRegisters): when using stack-auto use bit registers for
1268            passing parameters and creating local variables
1269         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1270
1271 2005-08-22 Borut Razem <borut.razem AT siol.net>
1272
1273         * device/lib/Makefile.in: replaced find option -or with -o
1274           to make it run on solaris
1275
1276 2005-08-22 Raphael Neider <rneider AT web.de>
1277
1278         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1279           fixes #1265442 (crash on Solaris)
1280
1281 2005-08-20 Borut Razem <borut.razem AT siol.net>
1282
1283         * configure, configure.in: added tests for libsocket and libnsl libraries,
1284           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1285           from support/regression/Makefile.in
1286         * support/regression/Makefile.in: added
1287         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1288         * sim/ucsim/libtool: regenerated on sparc-solaris
1289         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1290           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1291           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1292           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1293           sparc-solaris, which doesn't use GNU ld linker
1294         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1295         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1296
1297 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1298
1299         * src/mcs51/peeph.def: updated comments
1300
1301 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1302
1303         * device/lib/_gptrget.c,
1304         * device/lib/_gptrput.c: slightly shorter
1305         * doc/sdccman.lyx: incremented version
1306         * src/mcs51/peeph.def: moved peephole comments to the line of first
1307           change to better keep line correlation, reanimated 186.e
1308         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1309
1310 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1311
1312         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1313           David Saxton with quotes around file name.
1314
1315 2005-08-15 Borut Razem <borut.razem AT siol.net>
1316
1317         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1318           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1319           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1320           make tests run on x86_64 platform
1321
1322 2005-08-13 Raphael Neider <rneider AT web.de>
1323
1324         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1325           as it might be executed DURING a build (parallel make is wonderful)
1326
1327 2005-08-13 Raphael Neider <rneider AT web.de>
1328
1329         * device/lib/Makefile.in (port-specific-objects-pic16):
1330           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1331         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1332           dependency
1333         * device/lib/pic16/Makefile.rules: build subdirs before creating
1334           the library, removed builddir rule, create $(builddir) early in
1335           recurse rule, use empty recurse rule for leaf directories
1336         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1337           mkdir errors (race condition), removed duplicate suffix "hex"
1338           from clean rules
1339         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1340         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1341           prevents mkdir -p from aborting on Alpha
1342
1343 2005-08-12 Raphael Neider <rneider AT web.de>
1344
1345         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1346           db-statements in order to allow for arrays of pointers in code
1347           sections to be placed without interspersed 0-padding, fixes
1348           bug #1256215
1349         * (emitStatistics): fixed division by zero for pic18f1220
1350         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1351           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1352         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1353         * (pic16_pCodeConstString): keep track of already emitted string
1354           literals to prevent "duplicate definitions of symbol _str_NR"
1355         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1356           debug message
1357         * device/lib/Makefile.in: ignore failing PIC16 library builds
1358         * device/lib/pic16/Makefile: do not build if gputils are missing
1359         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1360
1361 2005-08-10 Raphael Neider <rneider AT web.de>
1362
1363         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1364           my last commit)
1365
1366 2005-08-10 Raphael Neider <rneider AT web.de>
1367
1368         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1369           Rokas' patch to add the new fixed point type "__fixed16x16"
1370         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1371           functions for __fixed16x16 arithmetics
1372         * device/lib/pic16: reimplemented the build system to support
1373           a separate build directory, better handling of libio (create
1374           the library in a separate subdir for each architecture) and
1375           easier configuration (centralized in Makefile.common)
1376
1377 2005-08-07 Raphael Neider <rneider AT web.de>
1378
1379         * src/pic16/gen.c (genrshTwo): fixed sign extension
1380         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1381         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1382           added T0CONbits
1383         * device/include/pic16/pic18f4220.h: NEW, header for
1384           pic18f4220 and pic18f4320
1385         * device/include/pic16/pic18fregs.h: added new devices,
1386           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1387         * device/include/pic16/signal.h: resolved name clashes
1388           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1389           to also allow testing for interrupt enable bits, added
1390           comments on how to use the macros
1391         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1392         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1393           register definitions for the devices
1394         * device/lib/pic16/pics.all: added new devices
1395         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1396           allocated memory
1397         * device/lib/pic16/libc/stdlib/memfree: do not count
1398           the block header as free memory
1399         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1400           simplified and added missing end-of-blocklist-marker
1401           (reported by Peter Onion, fixes #1252814)
1402         * (_mergeHeapBlock): fixed loop condition
1403         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1404           len==0, restructured code
1405         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1406           up a bit, reduced bitfield accesses, prevent endless loops
1407           in case of heap corruption
1408         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1409           "unreferenced arguments/must return a value" warnings
1410         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1411           replaced BAUDREG with SPBRG
1412         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1413           device/lib/pic16/debug/gstack/gstack.c: replaced
1414           _naked, _asm, _endasm with __naked, __asm, __endasm
1415
1416 2005-08-05 Raphael Neider <rneider AT web.de>
1417
1418         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1419           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1420
1421 2005-08-05 Borut Razem <borut.razem AT siol.net>
1422
1423         * device/lib/Makefile.in: added missing ';'
1424         * configure: removed ^M characters
1425
1426 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1427
1428         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1429           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1430           License
1431
1432 2005-08-04 Borut Razem <borut.razem AT siol.net>
1433
1434         * configure.in: pic16 libraries build 2nd try - enable running
1435           configure in device/lib/pic16
1436         * configure: regenerated from configure.in
1437         * device/lib/Makefile.in: create $(PORT)/bin directory
1438
1439 2005-08-03 Raphael Neider <rneider AT web.de>
1440
1441         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1442           to get/set values via pointers
1443         * (genUnpackBits,genPackBits): changed detection of
1444           ptr->bitfield vs. sym.bitfield, fixed access via generic
1445           pointers, removed dead (wrong) code for multibyte bitfields
1446         * (genNearPointerGet, genGenPointerGet): removed useless code,
1447           fixed bitfield detection, fixes #1250594
1448         * (genNearPointerSet): removed useless code
1449         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1450           and introduced macro pic16_emitpcode that conditionally emits
1451           the origin of the following pCode (useful for debugging SDCC)
1452         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1453         * (createDefmap): fixed handling of LFSR for --optimize-df
1454
1455 2005-08-02 Borut Razem <borut.razem AT siol.net>
1456
1457         * device/lib/Makefile.in: pic16 libraries build enabled since
1458           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1459
1460 2005-08-02 Raphael Neider <rneider AT web.de>
1461
1462         * src/pic16/gen.c (genPackBits): removed deprecated warning
1463         * (genGenPointerSet): fixed bitfield detection
1464
1465 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1466
1467         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1468
1469 2005-07-31 Raphael Neider <rneider AT web.de>
1470
1471         * device/lib/pic16/libdev/pic18f458.c,
1472           device/include/pic16/pic18f458.h: added missing T0CONbits
1473
1474 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1475
1476         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1477
1478 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1479
1480         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1481
1482 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1483
1484         * device/include/mcs51/at89c51ed2.h: added.
1485
1486 2005-07-23 Raphael Neider <rneider AT web.de>
1487
1488         * src/pic/gen.h: added emitpcode macro for debugging
1489         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1490           and replace by macro adding debug information on demand
1491         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1492         * (gencjne): tried to fix; replaced with correct (slower) code
1493         * (gen{Unp,P}ackBits): fixed single bit access
1494         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1495         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1496           previous instruction
1497         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1498           register has to be handled with care (forbidding movement
1499           of assignments/uses, removing assignments completely, ...)
1500         * (pCodeOptime2pCodes): make use of regIsSpecial
1501         * added lots of debugging output (commented out)
1502         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1503           from being reused as result UNLESS it is known to work
1504
1505 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1506
1507         * support/Util/dbuf.h: include <stddef.h> for size_t
1508         * .version: changed to version 2.5.2
1509
1510 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1511
1512         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1513
1514 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1515
1516         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1517           (genModOneByte): removed needless psha/pula
1518
1519 2005-07-22 Raphael Neider <rneider AT web.de>
1520
1521         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1522           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1523         * src/pic/gen.c (resolveIfx): do not "invent" labels
1524         * (genSkipc): changed to positive logic
1525         * (genSkipCond): removed as no longer needed
1526         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1527           backport from PIC16
1528         * (genLeftShift): check operands are in different registers
1529         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1530           INCF does not update CARRY...
1531         * src/pic/main.c: fixed _linkCmd
1532         * src/pic/pcode.c (unlinkpCode): added inactive code
1533         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1534           alive (do not assign result and operand overlapping registers)
1535
1536 2005-07-22 Raphael Neider <rneider AT web.de>
1537
1538         * src/pic/device.c (dump_sfr): replaced register declaration with
1539           call to emitSymbolToFile() to avoid duplicate symbols
1540         * (assignRelocatableRegisters): do not declare external symbols
1541         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1542           right (take size of type, not etype)
1543         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1544         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1545         * (packRegsForAccUse): disabled assignment of WREG as
1546           the result reg to prevent occurence of just fixed #1235003,
1547           fixes #1242954
1548         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1549           symbols (avoids duplicate symbols in .asm file)
1550         * (pic14emitRegularMap): use emitSymbolToFile()
1551         * src/pic/gen.c (aopOp): fixed spillLocation handling
1552         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1553         * (genDataPointerSet): removed unneccessary variables/output
1554
1555 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1556
1557         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1558         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1559
1560 2005-07-21 Raphael Neider <rneider AT web.de>
1561
1562         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1563           architecture cannot handle them efficiently, fixes bug #1235003
1564         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1565           check for empty sets before using them (fixes bug #1232190)
1566
1567 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1568
1569         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1570           (lnksect2): generate warnings for memory overlap
1571         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1572           constseg to set the name of these segments so you can instruct the linker
1573           to place them in banks
1574         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1575         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1576           added code_seg and const_seg to options
1577         * src/SDCCglue.c (emitMaps): use options.const_seg,
1578           (createInterruptVect): put interrupt vectors in segment HOME,
1579           (glue): put HOME before static segment and put the main glue in HOME,
1580           (glue): use options.code_seg
1581         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1582         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1583           these segments so you can instruct the linker to place them in banks
1584           (linkEdit): use code_loc for HOME segment which should be the first
1585           segment in code memory now
1586         * src/SDCCmem.c: fixed more stuff like bug 1238386
1587         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1588           (changePointer): don't change function pointers to code pointers for
1589           banked functions,
1590           (compareType): added exceptional check for banked function pointers
1591         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1592         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1593           after static in code memory
1594         * src/mcs51/gen.c: added aopLiteralLong prototype,
1595           (aopForSym): use getSize for functions,
1596           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1597           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1598           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1599           the segment,
1600           (genPcall): use call for literal function pointers and generate banked
1601           calls over the one trampoline so there's only one place for the user to
1602           modify according to his/hers hardware,
1603           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1604           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1605         * src/mcs51/main.c: added keyword banked,
1606           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1607         * support/Util/SDCCerr.c,
1608         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1609           needed for passing the bank and address to the trampoline
1610         * device/lib/mcs51/crtbank.asm: added for bankswitching
1611         * device/lib/mcs51/Makefile: added crtbank
1612
1613 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1614
1615         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1616           for fields at offset 0 of a struct or union as reported
1617           on 2005-07-07 in the developer mailing list.
1618
1619 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1620
1621         * src/SDCCmem.c: fixed bug 1238386
1622
1623 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1624
1625         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1626           (patch #1144962), added peephole 300, enabled 259.x
1627         * doc/sdccman.lyx: removed screenshot and provided link instead
1628
1629 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1630
1631         * doc/sdccman.lyx: added section about debugging with ddd
1632         * doc/figures/ddd_example.eps: screenshot of debugging session
1633
1634 2005-07-04 Raphael Neider <rneider AT web.de>
1635
1636         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1637           like CODE pointers, fixes #1115683
1638         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1639           call, fixes bugs #1232211, #1228110,
1640           fixed wrong casts to pCodeFlow from pCodeInstructions
1641
1642 2005-07-04 Raphael Neider <rneider AT web.de>
1643
1644         * src/pic/gen.c (popGet): changed assert to allow for
1645           bit operands
1646         * (popGetAddr): changed signature to provide
1647           an additional index, patched all call sites
1648         * (genCmpEq): handle literal-like operands correctly
1649         * (genAddrOf): added sanity checks on __code/__data pointers
1650         * (genAssign): added handling of symbols from __code section
1651         * (gencjne): do not generate code for comparisons whose result
1652           is neither stored nor used, fixes bug #1171114
1653         * (AccLsh, AccRsh): operate on operand instead of WREG
1654         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1655           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1656           by known count
1657         * rewrote complete shift-by-literal logic, commented unused
1658           functions out
1659         * (genConstPointerGet): get multiple bytes (if result size > 1),
1660           fixed handling of non-immediate addresses
1661         * (genPointerGet): handle CODE pointers like CONST pointers
1662         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1663         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1664           operand is to be treated as a literal or not
1665         * (mov2w,genPcall,genCmpEq),
1666           src/pic/genarith.c: use aop_isLitLike() to decide between
1667           literal/register contents
1668         * (addSign): added missing offset
1669         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1670           only emit comment in debug-mode,
1671           use {aop,op}_isLitLike throughout the file
1672         * src/pic/glue.c: fix initializers for pointers (work in progress)
1673         * src/pic/pcode.c (get_op): honor index on _const symbols
1674         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1675         * (dumppBlock): added pCode size estimation
1676         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1677           check for IS_SYMOP before OP_SYMBOL'ing
1678         * fixed indentation, compacted switch-statements
1679         * (allocReg): find free register and allocate it instead of
1680           allocating new registers all the time
1681         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1682           registers as its operands (necessary only for multibyte GETs)
1683
1684 2005-07-01 Raphael Neider <rneider AT web.de>
1685
1686         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1687           debugging .asm-output macros FENTRY + FEXIT
1688         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1689           way... I wonder...
1690         * (emitpComment): NEW, printf to pCode
1691         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1692           offset handling
1693         * (popGetAddr): NEW, variant of popGet to access an immediates
1694           high(er) bytes instead of the n'th byte of memory they reference,
1695           replaced popGet with popGetAddr where neccessary
1696         * (genDataPointerGet): reactivated and fixed implementation
1697         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1698           accesses
1699         * (genDataPointerSet): fixed multibyte assignments
1700         * (genpic14Code): fixed --i-code-in-asm handling
1701         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1702         * (genPlus): fixed index-out-of-bounds error
1703         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1704         * src/pic/ralloc.c: added debugging output macro FENTRY2
1705         * (spillThis): fixed indentation, enbraced for-body for clarity
1706         * (rematStr): commented out as now unused
1707         * (regTypeNum): commented out special spill case (overwrites
1708           arbitrary values)
1709         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1710
1711 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1712
1713         * doc/sdccman.lyx: documented sfr16/sfr32,
1714           added example for using storage class with function pointers
1715         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1716
1717 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1718
1719         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1720         * device/lib/_itoa.c,
1721         * device/lib/_ltoa.c: optimized codesize
1722         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1723           but don't know how to suppress the double warning.
1724         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1725         * support/Util/SDCCerr.c,
1726         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1727
1728 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1729
1730         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1731           fixed old K&R prototypes
1732         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1733         * device/lib/_gptrget.c,
1734         * device/lib/_gptrgetc.c,
1735         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1736           also new versions for small generic pointers and banked generic pointers
1737         * src/port.h: added const_name
1738         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1739         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1740         * src/SDCCcse.c (findPrevIc): check all associative operators
1741         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1742         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1743         * src/SDCCmem.c: updated comments,
1744           set far-space to 0 for pdata, results in optimized code
1745         * src/SDCCmem.h: added macro CONST_NAME
1746         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1747           moving the info into the highest bits, see also gptrget/gptrput
1748         * src/src.dsp: added sdcc.ico to project files
1749         * src/avr/gen.c (genCast): fixed bug 0x%d
1750         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1751         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1752           relation between ptr_type and DCL_TYPE,
1753           (genCast): fixed bug 0x%d
1754         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1755           (CODE)" for const_name
1756         * src/hc08/gen.c (genCast): fixed bug 0x%d
1757         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1758           (hc08_port): added "CONST (CODE)" for const_name
1759         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1760           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1761           between ptr_type and DCL_TYPE,
1762           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1763           operand* and took AOP() inside function so sfr-ness can be checked,
1764           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1765           new prototype,
1766           (genFunction, genEndFunction): optimized stack setup,
1767           (genMinus): optimized for literals with ending zeroes (in bytes),
1768           (genCast): fixed bug 0x%d
1769         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1770           (mcs51_port): added "CONST (CODE)" for const_name
1771         * src/mcs51/peeph.def: made rule 226 more generic
1772         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1773         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1774         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1775         * src/z80/main.c (z80_port): added NULL for const_name,
1776           (gbz80_port): added NULL for const_name
1777         * support/regression/tests/bug663539.c,
1778         * support/regression/tests/sfr16.c: new tests
1779
1780 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1781
1782         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1783
1784 2005-06-24 Raphael Neider <rneider AT web.de>
1785
1786         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1787           corrected typos...
1788         * device/include/pic16/signal.h: added USBIF
1789           and SIG_USB
1790
1791 2005-06-24 Raphael Neider <rneider AT web.de>
1792
1793         * device/lib/pic16/libdev/pic18f2455.c,
1794           device/include/pic16/pic18f2455.h: NEW
1795         * device/include/pic16/pic18fregs.h,
1796           device/lib/pic16/pics.all,
1797           src/pic16/device.c: added 18f2455
1798         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1799           device/include/pic16/{pic18f[68][567].h,usart.h}:
1800           replaced MULTIPLE_USARTS define with more relaible
1801           compatibility sfrs (for USART access)
1802
1803 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1804
1805         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1806           and the output asm file line is printed on two lines.
1807
1808 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1809
1810         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1811           BGT, BLE, BHI, and BLS instructions
1812         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1813           genCmpEq): removed
1814         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1815           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1816           fixes bug #1216342
1817         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1818
1819 2005-06-15 Raphael Neider <rneider AT web.de>
1820
1821         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1822         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1823         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1824           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1825           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1826
1827 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1828
1829         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1830           Marcel Telka in bug #1215704
1831
1832 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1833
1834         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1835           located in shared memory bank.
1836
1837 2005-05-31 Raphael Neider <rneider AT web.de>
1838
1839         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1840           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1841           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1842
1843 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1844
1845         * device/lib/_strncpy.c: fixed the fix
1846
1847 2005-05-26 Raphael Neider <rneider AT web.de>
1848
1849         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1850           initializers with \0, bug #1208187
1851         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1852           intializers with \0, bug #1208187
1853
1854 2005-05-26 Raphael Neider <rneider AT web.de>
1855
1856         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1857           initializers with \0, bug #1208187
1858         * src/pic16/main.c (_process_pragma): added sanity checks
1859           for stack position and size, emit warnings when appropriate
1860
1861 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1862
1863         * device/lib/_strncpy.c: fixed not filling with \0
1864
1865 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1866
1867         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1868           createFunction),
1869         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1870           compound_statement),
1871         * src/SDCCsymt.h,
1872         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1873
1874 2005-05-24 Raphael Neider <rneider AT web.de>
1875
1876         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1877
1878 2005-05-24 Raphael Neider <rneider AT web.de>
1879
1880         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1881           TRISE definitions, closes bug #1162453
1882
1883 2005-05-22 Raphael Neider <rneider AT web.de>
1884
1885         * src/pic16/main.c (_process_pragma): check for missing
1886           arguments to pragmas code and udata
1887         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1888           consistency fixes to match other headers (thanks to Jim Paris)
1889         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1890
1891 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1892
1893         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1894
1895 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1896
1897         * support/regression/tests/bug1198642.c: new test
1898         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1899         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1900         * support/scripts/resource.h,
1901         * support/scripts/resource.rc,
1902         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1903         * support/scripts/sdcc.ico: added 32x32 icon
1904
1905 2005-05-18 Raphael Neider <rneider AT web.de>
1906
1907         * device/lib/pic16/libdev/pic18f*.c,
1908         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1909           keywords to "__sfr" and "__at (X)"
1910         * device/include/pic16/pic18fregs.h: added pic18f4520
1911         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1912           #1203088 (MPLAB compatibility)
1913
1914 2005-05-17 Raphael Neider <rneider AT web.de>
1915
1916         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1917         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1918         * device/lib/pic16/pics.all: added new devices
1919         * src/pic16/device.c: added support for pic18f4520
1920
1921 2005-05-16 Raphael Neider <rneider AT web.de>
1922         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1923         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1924         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1925           convenience function for bit access
1926
1927 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1928
1929         * device/lib/printf_large.c: fixed bug 1193299
1930         * support/regression/tests/bug1057979.c: added test %3.3s
1931
1932 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1933
1934         * device/include/mcs51/8051.h,
1935         * device/include/mcs51/8052.h: made parseable with lint
1936         * device/include/mcs51/lint.h: added include file for (sp)lint
1937         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1938         * doc/cdbfileformat.lyx,
1939         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1940
1941 2005-05-14 Raphael Neider <rneider AT web.de>
1942
1943         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1944         * device/lib/pic16/libc/stdlib/itoa.c (new)
1945         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1946         * device/lib/pic16/libio/Makefile: exclude subdir according to
1947           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1948         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1949         * src/pic16/gen.c (genFunction): prevent annoying warning
1950         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1951           nameclashes on BeOS
1952         * support/cpp2/cppmain.c (cpp_output_string): new
1953         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1954           fixes bug 1116802
1955
1956 2005-05-13 Borut Razem <borut.razem AT siol.net>
1957
1958         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1959
1960 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1961
1962         * .version: changed to version 2.5.1; back to bleeding edge development
1963
1964 2005-05-11 Borut Razem <borut.razem AT siol.net>
1965
1966         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1967           generate PDF version 1.3 documents
1968
1969 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1970
1971         * .version: changed to version 2.5.0
1972
1973 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1974
1975         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1976
1977 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1978
1979         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1980         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1981         well as many smaller updates.
1982         * .version: changed to version 2.5.0-pre1
1983
1984 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1985
1986         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1987
1988 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1989
1990         * support/regression/tests/bug1185672.c: added
1991         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1992           bug 1185672
1993         * src/mcs51/gen.c (genCall): added comments, made it look safer
1994         * src/mcs51/gen.c (genEndFunction): simplified
1995
1996 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1997
1998         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1999
2000 2005-04-14 Borut Razem <borut.razem AT siol.net>
2001
2002         * fixed bug 1045046 - SIGSEGV with really simple code?:
2003           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2004           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2005
2006 2005-04-14 Borut Razem <borut.razem AT siol.net>
2007
2008         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2009           src/pic16/device.h: temporarily disabled experimental #inline pragma
2010           for 2.5.0 release
2011
2012 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2013
2014         * device/include/z80/stdio.h,
2015         * device/include/z80/string.h: removed these highly incomplete files so
2016           SDCC can use the default ones in device/include/
2017
2018 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2019
2020         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2021         gcc warning.
2022         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2023         fix sdcpp warnings.
2024
2025 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2026
2027         * device/include/malloc.h: removed redundant __reentrant prototypes
2028         * device/lib/_mullong.c: added working xstack variant in asm (C version
2029           doesn't pass regression tests)
2030         * device/lib/bpx.c: used __data and made bpx char for mcs51
2031         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2032           (createFunction): fixed bug with xstackPtr
2033         * src/SDCCcse.c: corrected comments
2034         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2035           (killDeadCode, eBBlockFromiCode): removed unused code
2036         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2037           corrected comments
2038         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2039           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2040           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2041           (genModOneByte): fixed warning in MSVC
2042         * src/mcs51/main.c (): added comments
2043         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2044
2045 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2046
2047         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2048
2049 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2050
2051         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2052
2053 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2054
2055         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2056         characters arrays of larger size than the declared one.
2057
2058 2005-04-10 Borut Razem <borut.razem AT siol.net>
2059
2060         * src/pic/gen.c (genInline),
2061           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2062           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2063           (findNextInstruction), (findPrevInstruction),
2064           (findInstructionUsingLabel),
2065           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2066         * src/pic/pcode.c (findLabel): added missing '\n'
2067         * src/src.dsp: added SDCCdwarf2.c to the project
2068
2069 2005-04-09 Borut Razem <borut.razem AT siol.net>
2070
2071         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2072
2073 2005-04-08 Raphael Neider <rneider AT web.de>
2074
2075         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2076           into the chain after a given one) and mergeDefmapSymbols (combine
2077           defmap entries for each symbol per pcode)
2078         * (createDefmap): have defmap entries merged in the end
2079         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2080           a symbol before replacing one access type's symbol, merge symbols in
2081           the end (replacement symbol might already have an entry)
2082         * (assignValnums): keep reference to written WREG intact
2083
2084 2005-04-08 Raphael Neider <rneider AT web.de>
2085
2086         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2087           Alpha)
2088
2089 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2090
2091         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2092         bytes
2093
2094 2005-04-07 Raphael Neider <rneider AT web.de>
2095
2096         * device/include/pic16/usart.h: added compatibility defines for
2097           devices with more than one USART
2098         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2099
2100 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2101
2102         * device/lib/Makefile.in: updated for port specific include
2103
2104 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2105
2106         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2107
2108 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2109
2110         * device/include/8051.h,
2111         * device/include/8052.h,
2112         * device/include/at89S8252.h,
2113         * device/include/at89c55.h,
2114         * device/include/at89x051.h,
2115         * device/include/at89x51.h,
2116         * device/include/at89x52.h,
2117         * device/include/mcs51reg.h,
2118         * device/include/reg51.h,
2119         * device/include/reg764.h,
2120         * device/include/regc515c.h,
2121         * device/include/sab80515.h: (re)moved these 12 files
2122         * device/include/mcs51/8051.h,
2123         * device/include/mcs51/8052.h,
2124         * device/include/mcs51/at89S8252.h,
2125         * device/include/mcs51/at89c55.h,
2126         * device/include/mcs51/at89x051.h,
2127         * device/include/mcs51/at89x51.h,
2128         * device/include/mcs51/at89x52.h,
2129         * device/include/mcs51/mcs51reg.h,
2130         * device/include/mcs51/reg51.h,
2131         * device/include/mcs51/reg764.h,
2132         * device/include/mcs51/regc515c.h,
2133         * device/include/mcs51/sab80515.h: and added them here
2134
2135 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2136
2137         * device/include/stdarg.h: changed SDCC specific keywords to double
2138           underlined form.
2139         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2140           mcs51 and ds390.
2141         * device/include/hc08/mc68hc908gp32.h,
2142         * device/include/hc08/mc68hc908jb8.h,
2143         * device/include/hc08/mc68hc908jkjl.h,
2144         * device/include/hc08/mc68hc908qy.h: fixed comments
2145         * device/include/mcs51/README: updated
2146         * device/include/mcs51/c8051f120.h: added PINRSF
2147         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2148         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2149           amidst code. Also inline is not supported.
2150
2151 2005-04-06 Raphael Neider <rneider AT web.de>
2152
2153         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2154         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2155           callers stack/frame pointers
2156
2157 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2158
2159         * device/include/pic16/usart.h: added, missing in previous commit,
2160         * device/include/pic16/adc.h: fixed typo,
2161         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2162         commit,
2163         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2164         <p18fxxx.inc>
2165         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2166         uninitialized because a bug appears with gplink
2167         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2168         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2169         complains for unrecognised option
2170
2171 2005-04-05 Raphael Neider <rneider AT web.de>
2172
2173         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2174           structs as well (using memcpy)
2175         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2176           on ISRs (GOTO has no label)
2177         * src/pic16/device.h: added OF_OPTIMIZE_DF
2178         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2179           new data flow analysis/optimization
2180         * src/pic16/pcode.c: added (prototypes for and implementation of)
2181           dataflow analysis functions, fixed pCodeInstructions' inCond and
2182           outCond values, made RCALL a branch instruction
2183         * (pic16_unlinkpCode): keep C line if possible
2184         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2185           C line moved if possible
2186         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2187         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2188           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2189         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2190           new flow)
2191         * (pic16_getJumptabpCode): NEW, needed in...
2192         * (LinkFlow): fixed handling of jumptables, calls and conditional
2193           branches
2194         * (pic16_InsertCommentAfter): NEW
2195         * (pic16_pCodeReplace): made verbose and flow preserving
2196         * (AnalyzeFlow): added call to data flow analysis
2197         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2198         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2199         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2200
2201 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2202
2203         * src/SDCCast.c (decorateType): fixed bug #1105626
2204
2205 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2206
2207         * device/include/asm/pic16/features.h,
2208         * pic18f*.h headers,
2209         * device/include/pic16/adc.h,
2210         * device/include/pic16/delay.h,
2211         * device/include/pic16/i2c.h,
2212         * device/include/pic16/malloc.h,
2213         * device/include/pic16/stdio.h,
2214         * device/include/pic16/stdlib.h,
2215         * device/include/pic16/string.h,
2216         * device/lib/pic16/libc/stdio/printf_tiny.c,
2217         * device/lib/pic16/libc/stdio/printf_small.c,
2218         * device/lib/pic16/libc/stdio/strmgpsim.c,
2219         * device/lib/pic16/libc/stdio/strmmssp.c,
2220         * device/lib/pic16/libc/stdio/strmusart.c,
2221         * device/lib/pic16/libc/stdio/vfprintf.c,
2222         * device/lib/pic16/libc/stdlib/ltoa.c,
2223         * device/lib/pic16/libc/stdlib/putchar.c,
2224         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2225         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2226         * device/lib/pic16/libc/stdlib/memchrram.c,
2227         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2228         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2229         * device/lib/pic16/libio/adc/adcbusy.c,
2230         * device/lib/pic16/libio/adc/adcread.c,
2231         * device/lib/pic16/libio/adc/adcsetch.c,
2232         * device/lib/pic16/libio/usart/ubaud.c,
2233         * device/lib/pic16/libio/usart/ubusy.c,
2234         * device/lib/pic16/libio/usart/udrdy.c,
2235         * device/lib/pic16/libio/usart/uopen.c,
2236         * device/lib/pic16/libio/usart/uputc.c,
2237         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2238         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2239         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2240         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2241         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2242         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2243         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2244         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2245         specific keywords to double underlined form,
2246         * device/lib/pic16/libc/Makefile.rules,
2247         * device/lib/pic16/libsdcc/Makefile.rules,
2248         * device/lib/pic16/libm/Makefile,
2249         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2250         to compile with C standard set in Makefile.common
2251         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2252         rand.c and crc.c in compilation process,
2253         * device/lib/pic16/libsdcc/int/divuint.c,
2254         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2255         `c' from signed to unsigned,
2256         * device/lib/pic16/startup/crt0.c,
2257         * device/lib/pic16/startup/crt0i.c,
2258         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2259         keywords to double underlined form, bug fixes in _do_cinit function
2260         which prevented the correct initialization of the .idata segment,
2261         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2262         core to enter a infinite loop
2263         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2264
2265 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2266
2267         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2268
2269 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2270
2271         * device/include/Makefile.in: add support for hc08 subdirectory
2272         * device/include/hc08/: new subdirectory
2273         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2274         Lucas Loizaga, thanks!
2275         * device/include/hc08/mc68hc908qy.h,
2276         * device/include/hc08/mc68hc908gp32.h,
2277         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2278         their own directory. Changed internal macro names to use the compiler
2279         reserved namespace. Changed SDCC specific keywords to double
2280         underlined form.
2281         * device/include/math.h,
2282         * device/include/malloc.h,
2283         * device/include/stdarg.h,
2284         * device/include/stdbool.h
2285         * device/include/string.h,
2286         * device/include/tinibios.h,
2287         * device/include/ds400rom.h,
2288         * device/include/8051.h,
2289         * device/include/8052.h,
2290         * device/include/80c51xa.h,
2291         * device/include/at89c55.h,
2292         * device/include/at89S8252.h,
2293         * device/include/at89x51.h,
2294         * device/include/at89x52.h,
2295         * device/include/ds80c390.h,
2296         * device/include/reg764.h,
2297         * device/include/regc515c.h,
2298         * device/include/sab80515.h,
2299         * device/include/mcs51/c8051f000.h,
2300         * device/include/mcs51/c8051f018.h,
2301         * device/include/mcs51/c8051f020.h,
2302         * device/include/mcs51/c8051f040.h,
2303         * device/include/mcs51/c8051f060.h,
2304         * device/include/mcs51/c8051f120.h,
2305         * device/include/mcs51/c8051f300.h,
2306         * device/include/mcs51/c8051f310.h,
2307         * device/include/mcs51/c8051f320.h,
2308         * device/include/mcs51/c8051f330.h,
2309         * device/include/mcs51/c8051f350.h,
2310         * device/include/z180.h: Changed SDCC specific keywords to double
2311         underlined form.
2312
2313 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2314
2315         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2316         18F4455,
2317         * (pic16_assignConfigWordValue): disable testing of configuration
2318         register value with config mask,
2319         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2320         function with port->fun_prefix,
2321         * (genFunction): when generating a naked interrupt function never
2322         create an absolute segment placed in interrupt vector address, place
2323         the actual interrupt function at IVA instead, when an interrupt
2324         function is generated with unspecified interrupt then do not create
2325         the absolute section,
2326         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2327         code for generating a call to generic pointer get/put function with
2328         a call to function pic16_callGenericPointer(),
2329         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2330         the call to the generic pointer get/put functions with prefixing the
2331         function name with port->fun_prefix,
2332         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2333         * src/pic16/main.c (_process_pragma): prefix function with
2334         port->fun_prefix,
2335         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2336         calling assembler, old 18Fxxxx macro is deprecated,
2337         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2338         PC_ASMDIR in while condition,
2339         * (findInstruction): add PC_ASMDIR in while condition,
2340         * (buildCallTree): prefix main with port->fun_prefix,
2341         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2342         identifier for variable with banked access in instructions BTFSS,
2343         BTFSC, BCF, BSF, BTG
2344         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2345         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2346         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2347         perform optimization when enviroment variable NO_REG_OPT is set,
2348         * (insideLRBlock): NEW, return 1 if register is inside an
2349         INF_LOCALREGS block,
2350         * (RemoveRegFromLRBlock): remove a register that is completely
2351         eliminated by register optimization, but it is still left in local
2352         register store/restore in/from stack block,
2353         * (Remove2pcodes): after removing register, check to see if it
2354         should be removed from local register store/restore in/from stack
2355         block,
2356         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2357         DUMMY_READ_VOLATILE,
2358
2359         * device/include/pic16/adc.h: minor prototype modifications and
2360         update,
2361         * device/include/pic16/malloc.h: added GPL notice various
2362         modifications,
2363         * device/include/pic16/stdint.h: NEW, standard header for ints
2364         * device/include/pic16/delay.h: NEW, header for delay functions,
2365         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2366         delay1mtcy,
2367         * device/include/pic16/signal.h: NEW, header providing helper macros
2368         for implementing signal handlers,
2369         * device/include/pic16/stdio.h: added prototypes for functions,
2370         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2371         prototypes for stdin and stdout, added macro PUTCHAR to
2372         automatically implement putchar function prototype,
2373         * device/include/pic16/usart.h: modified and updated USART library,
2374         * device/lib/pic16/libio/adc/,
2375         * device/lib/pic16/libio/i2c: some modifications to improve library
2376         performance,
2377         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2378         family of functions,
2379         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2380         family of functions and other sources,
2381         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2382         of the PIC18Fxx[28] devices,
2383         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2384         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2385         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2386         _do_cinit function, because the previous failed when local variables
2387         where not placed in the same memory bank,
2388         * device/lib/pic16/libsdcc/char/: various modifications to improve
2389         library performance,
2390         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2391         information on the new functions of the c library and more...
2392
2393 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2394
2395         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2396
2397 2005-03-26 Raphael Neider <rneider AT web.de>
2398
2399         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2400           if condition == CARRY)
2401         * (genCmp): adapted to new genSkipc semantics
2402         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2403           on rIfx (genCmp was broken)
2404
2405 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2406
2407         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2408         * src/z80/main.c (_keywords[]),
2409         * src/SDCCglobal.h (struct options),
2410         * src/SDCC.y,
2411         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2412         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2413         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2414         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2415         always available in leading double underscore form. The C99 support is
2416         mostly missing, but it's a start.
2417         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2418         reserved identifier "__data".
2419
2420 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2421
2422         * src/mcs51/peeph.def: fixed bug 1170013
2423
2424 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2425
2426         * device/include/mcs51reg.h: fixed bug 842007
2427
2428 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2429
2430         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2431         last time.
2432
2433 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2434
2435         * src/port.h (struct PORT),
2436         * src/avr/ralloc.c (avr_assignRegisters),
2437         * src/avr/main.c,
2438         * src/ds390/ralloc.c (ds390_assignRegisters),
2439         * src/ds390/main.c,
2440         * src/hc08/ralloc.c (hc08_assignRegisters),
2441         * src/hc08/main.c,
2442         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2443         * src/mcs51/main.c,
2444         * src/pic/ralloc.c (pic14_assignRegisters),
2445         * src/pic/main.c,
2446         * src/pic16/ralloc.c (pic16_assignRegisters),
2447         * src/pic16/main.c,
2448         * src/xa51/ralloc.c (xa51_assignRegisters),
2449         * src/xa51/main.c,
2450         * src/z80/ralloc.c (z80_assignRegisters),
2451         * src/z80/ralloc.h,
2452         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2453         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2454         * src/SDCCcse.h,
2455         * src/SDCCdflow.c (computeDataFlow),
2456         * src/SDCCdflow.h,
2457         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2458         * src/SDCCloop.h,
2459         * src/SDCCcflow.c (*),
2460         * src/SDCCcflow.h,
2461         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2462         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2463         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2464         immedDom() returning wrong block; probably fixes bug #1160833)
2465
2466 2005-03-20 Borut Razem <borut.razem AT siol.net>
2467
2468         * support/scripts/inc2h.pl: WIN32 port
2469
2470 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2471
2472         * device/lib/makefile.in: added abs.c and labs.c
2473
2474 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2475
2476         * device/include/stdint.h: added
2477         * device/lib/abs.c: added
2478         * device/lib/labs.c: added
2479         * device/include/stdlib.h: added abs() and labs() prototypes
2480         * device/lib/libsdcc.lib: added abs and labs
2481         * device/include/float.h,
2482         * device/lib/_fsmul.c,
2483         * device/lib/printf_fast.c,
2484         * device/lib/printf_tiny.c: updated comments
2485
2486 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2487
2488         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2489         bug #1164313
2490
2491 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2492
2493         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2494         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2495
2496 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2497
2498         * device/lib/printf_large.c: removed inline assembly for portability and
2499           readability. Use printf_fast if speed or size are more important.
2500         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2501         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2502
2503 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2504
2505         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2506         prevent compiler warning
2507
2508 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2509
2510         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2511         moved to level 0 and declared as static. Also they are explicit
2512         placed in access bank. This was necessery because some times they
2513         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2514         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2515         optimizations. Currently only compare to unsigned char is implemented,
2516         * src/pic16/gen.c: added fReturnIdx array,
2517         * (struct resolvedIfx) is moved to gen.h and made public,
2518         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2519         * (aopForSym): added an optimization to directly store in stack of
2520         the operand of a SEND iCode,
2521         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2522         but as registers instead (AOP_REG) using the fReturnIdx array,
2523         * (pic16_freeAsmop): remove the freed register from the
2524         _G.sregsAlloc field,
2525         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2526         a compare of 'WREG',
2527         * (pic16_popGetTempRegCond): changed function prototype, now
2528         function takes also a bitVector argument v which holds the current
2529         set of registers that are allocated for stack access by aopForSym,
2530         registers allocated in aopForSym for accessing stack symbols are not
2531         any more part of the functions usedRegs field,
2532         * (genCall): some times aopOp is called for a stack variable to be
2533         send, aopForSym might perform the push, if this is true make sure
2534         that genCall doesn't push the variable twice by testing _G.resDirect,
2535         * (genFunction): changed testing for unspecified interrupt number
2536         from 256 to INTNO_UNSPEC,
2537         * modified selection scheme of frame pointer generation. Previously
2538         if function did use local registers a frame pointer was generated,
2539         now a frame pointer is generated only if function has arguments
2540         (that need PLUSW2 register access), or has stack arguments, or the
2541         compiler is not instructed to omit the frame pointer,
2542         * (genEndFunction): before restoring local registers that were saved
2543         in the function preamble, also restore the registers that *might*
2544         have been allocated for stack access,
2545         * (genRet): removed some old comments,
2546         * (genCmp, the active (RN's) version): added a call to the
2547         pic16_genCmp_special function to perform the compare with a more
2548         robust and optimized way,
2549         * (genInline): a feature has been added in inline code generation,
2550         which allows a wildcard variable substitution when writing inline
2551         assembly. Code is incomplete and experimental therefore undocumented,
2552         * (genCast): changed order of aopOp for result and right to allow
2553         aopForSym to directly load the result if possible,
2554         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2555         perform an optimized compare on some selected special occasions,
2556         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2557         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2558         generate an IVT any more,
2559         * src/pic16/main.c (pic16_optionsTable): added command line option
2560         --optimize-cmp,
2561         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2562         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2563         macros,
2564         * src/pic16/NOTES: Raphael Neider added in list of active developers
2565         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2566         jumptable_end to prevent bug #,
2567         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2568         inCond and outCond fields,
2569         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2570         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2571         turn off register spilling,
2572         * (packRegsForOneUse): synced with other ports' versions although it
2573         is not used currently,
2574         * (pic16_packRegisters): added an optimization while reading
2575         structure bitfields, some registers may be saved (malloc code is
2576         decreased by 80 bytes)
2577
2578 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2579
2580         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2581         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2582         this can be optimized more?
2583
2584 2005-03-10 Raphael Neider <rneider AT web.de>
2585
2586         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2587           genNearPointerGet): (hopefully) fixed access to bitfields via
2588           pointers (p->bitN = x; and x = p->bitN; failed)
2589
2590 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2591
2592         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2593
2594 2005-03-09 Raphael Neider <rneider AT web.de>
2595
2596         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2597
2598 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2599
2600         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2601         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2602           (regTypeNum): set REG_BIT type if necessary
2603         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2604         * support/regression/tests/critical.c: check bug 1144613
2605
2606 2005-03-02 Raphael Neider <rneider AT web.de>
2607
2608         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2609
2610 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2611
2612         * src/avr/ralloc.c (serialRegAssign),
2613         * src/ds390/ralloc.c (serialRegAssign),
2614         * src/hc08/ralloc.c (serialRegAssign),
2615         * src/mcs51/ralloc.c (serialRegAssign),
2616         * src/pic/ralloc.c (serialRegAssign),
2617         * src/pic16/ralloc.c (serialRegAssign),
2618         * src/xa51/ralloc.c (serialRegAssign),
2619         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2620
2621 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2622
2623         * src/SDCCast.c (decorateType): fixed bug 1124787
2624
2625 2005-02-20 Hubert Sack <sack AT digiplan.de>
2626         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2627
2628         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2629         patch #1121755
2630
2631 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2632
2633         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2634         to keep the correct label reference count when adding/removing references
2635         to labels. A peephole file using this is appended to patch #1144962.
2636
2637 2005-02-14 Raphael Neider <rneider AT web.de>
2638
2639         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2640         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2641         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2642           retrievals of result operand's value on assignment
2643
2644 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2645
2646         * device/include/pic16/string.h: modified prototype for memccpy()
2647         to memccpy(void *, void *, char, size_t)
2648         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2649         check whether to omit frame pointer or not,
2650         * (genInline): convert all occurences of "\n" to LF in inline
2651         assembler blocks, this helps formatting the inline text,
2652         * (pic16_loadFSR0): modified prototype,
2653         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2654         removed some 8051 legacy code,
2655         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2656         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2657         before allocating temporary registers in functions,
2658
2659 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2660
2661         * support/regression/tests/bitvars.c: corrected the "fix"
2662
2663 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2664
2665         * support/regression/tests/bitvars.c,
2666         * support/regression/tests/bitwise.c,
2667         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2668
2669 2005-02-10 Raphael Neider <rneider AT web.de>
2670
2671         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2672           different size for Alpha
2673         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2674
2675 2005-02-09 Raphael Neider <rneider AT web.de>
2676
2677         * src/SDCC.lex(doPragma) : save and restore warning options as well
2678           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2679         * have #pragma less_pedantic set the errorlevel to WARNING
2680           (fixes #1117001)
2681         * (cloneOptimize) : fixed wrong malloc's size
2682         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2683           facilitate correct handling of #pragma (save|restore)
2684
2685 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2686
2687         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2688
2689 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2690
2691         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2692
2693 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2694
2695         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2696
2697 2005-02-02 Raphael Neider <rneider AT web.de>
2698
2699         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2700         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2701         * (pic16_storeForReturn): fixed to allow returning function pointers
2702         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2703         * device/include/pic16/{stddef.h,stdbool.h}: added
2704
2705 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2706
2707         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2708
2709 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2710
2711         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2712         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2713          appeared to be required
2714
2715 2005-01-31 Borut Razem <borut.razem AT siol.net>
2716
2717         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2718           include/mcs51 and include/z80 directories to the package
2719
2720 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2721
2722         * src/hc08/gen.c (genFunction): fixed bug #1112752
2723
2724 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2725
2726         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2727
2728 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2729
2730         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2731
2732 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2733
2734         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2735
2736 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2737
2738         * device/include/c8051fxxx.h: removed these 6 files
2739         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2740
2741 2005-01-26 Raphael Neider <rneider AT web.de>
2742
2743         * src/pic16/gen.c (genAssign): fixed assignment from longs
2744           in codespace (were cut to three bytes)
2745         * (genDummyRead): implemented (except for CODESPACE...),
2746           fixed bug #1108575
2747         * src/pic16/glue.c (emitStatistics): beautified
2748         * device/lib/pic16/libm/Makefile: added include path
2749
2750 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2751
2752         * src/z80/gen.c (aopPut): fixed bug #1103902
2753
2754 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2755
2756         * device/lib/expf.c: fixed bug #1095792
2757
2758 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2759
2760         * device/lib/pic16/libm: added Math library sources
2761
2762 2005-01-24 Raphael Neider <rneider AT web.de>
2763
2764         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2765           to enable upcast to pCodeOpReg2 (there is no type tag to
2766           differenciate the two and pic16_popGet2p cast into PCOR2)
2767         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2768           (sizeof(sectNames) changed to sizeof(sectName))
2769           Both patches fix segfaults under MinGW.
2770
2771 2005-01-23 Raphael Neider <rneider AT web.de>
2772
2773         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2774           Safe_[mc]?alloc()'ed variables
2775         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2776           of (byte sized) temporaries (assign them to WREG for now)
2777         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2778           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2779           this might fix SIGSEGVs on MinGW...
2780         * src/SDCCopt.c (killDeadCode): restored original behaviour
2781           (volatile operands might get thrown away though)
2782
2783 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2784
2785         * src/pic16/gen.c: fixed bug #1106975,
2786         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2787         pointer update, INTCON is saved, global interrupts are disabled and
2788         restored after updateing TOS.
2789         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2790         * added function attribute 'shadowregs' to take advantage of shadow
2791         registers,
2792         * added function attribute 'wparam' as an alternative to the wparam
2793         pragma,
2794         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2795         user declares a non-ISR function as 'shadowregs',
2796         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2797
2798 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2799
2800         * .version: bumped version number to 2.4.8
2801         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2802         pic16 port,
2803         * device/lib/pic16/libio/i2c/: I2C module support library,
2804         * device/include/pic16/i2c.h: I2C support library header,
2805         * device/lib/pic16/libc/stdio/: standard IO support sources,
2806         * (printf_small.c): printf_small() source, supports float print,
2807         * (printf_tiny.c): printf_tiny() source, does not support floats,
2808         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2809         enable global optimizations for entire library source, other
2810         Makefiles in the source tree are also modified to reflect this,
2811         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2812         function,
2813         * doc/sdccman.lyx: updated to reflect new changes,
2814         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2815         sym->onStack if-case,
2816         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2817         sbit, idata, _idata, xdata, _xdata,
2818         * added pragma library, to link an external library, (see doc),
2819         * removed command line options, --pomit-config-words, --pomit-ivt,
2820         --pleave-reset-vector,
2821         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2822         when calling assembler to reflect memory model used, also define
2823         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2824         reflect stack model used,
2825         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2826         on stack return NULL,
2827
2828 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2829
2830         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2831           of the operands is volatile. Fixes #1020220
2832
2833 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2834
2835         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2836         * (OptimizeRegUsage): make sure that there is really no other flow where
2837           the first pCode is used
2838
2839 2005-01-22 Raphael Neider <rneider AT web.de>
2840
2841         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2842           to fix #1106967 (pCode->seq are not set up correctly)
2843
2844 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2845
2846         * src/SDCCglue.c (glue): make sure code area is declared before the
2847         static initialization area.
2848
2849 2005-01-21 Raphael Neider <rneider AT web.de>
2850
2851         * device/lib/Makefile.in: fixed test for pic16 install dir
2852         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2853           optimizations
2854         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2855           added --optimize-goto compiler switch and pragma wparam documentation
2856         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2857         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2858           and PRODH closing bug #1071770 (peephole optimizer)
2859
2860 2005-01-19 Raphael Neider <rneider AT web.de>
2861
2862         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2863           cmdLine buffers (used when calling sdcpp...) are large enough
2864           (MAX_PATH=256 truncates arguments leading to system halts when
2865           used in MinGW...)
2866         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2867         * (genUminus): rewritten to for efficiency
2868         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2869           used uninitialized in some cases)
2870         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2871           copy the third byte from the int -- now assumes 0x80 (data memory)
2872         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2873           operands (genAddLit expects the iCode's operands to swapped as
2874           well), fixed leftover bytes (crashed for short left operands)
2875         * (pic16_genMinusDec): performance improvements, removed false
2876           PIC14 emitSKPNCs
2877         * (pic16_genMinus): fixed to cope with differently sized operands
2878         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2879           for --obanksel > 1
2880         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2881         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2882           new banksel optimization
2883         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2884           analysis for temporary registers (segfaults...)
2885         * src/pic16/peeph.def: added rule
2886
2887 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2888
2889         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2890         which converts a float number to its ASCII representation
2891         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2892         functions to convert the fractional and integer part of a float to ASCII,
2893         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2894         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2895         ram
2896         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2897         _STATMEM macros,
2898         * device/include/pic16/adc.h: added GPL info,
2899         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2900         a pCodeOp as tested operand,
2901         * (genNearPointerGet): optimized bit testing, does not use
2902         intermediate register for bit value, test directly instead with
2903         BTFSS, BTFSC, works only for single bits,
2904         * (genpic16Code): dump the name of the iCode in the asm,
2905         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2906         renamed to pic16_decodeOp,
2907         * (serialRegAssign): do not allocate a temporary register for iCode
2908         sequences that test a single bit for 1/0
2909
2910 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2911
2912         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2913         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2914         access stack and frame pointers. They are initially assigned to
2915         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2916         accessing SFRs. Updated all occurences of modification of stack or
2917         frame pointer in gen.c and pcode.c,
2918         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2919         assigning of a literal value to pointers,
2920         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2921         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2922         selected
2923
2924 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2925
2926         * doc/sdccman.lyx: update documentation about stack pragma, added
2927         some info for stack memory models
2928
2929 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2930
2931         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2932
2933 2005-01-08 Raphael Neider <rneider AT web.de>
2934
2935         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2936           udata sections to fix bug #1097823
2937
2938 2005-01-05 Raphael Neider <rneider AT web.de>
2939
2940         * src/pic16/gen.c (genGenericShift): added handling of differently
2941           sized left operand and result
2942
2943 2005-01-04 Raphael Neider <rneider AT web.de>
2944
2945         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2946         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2947           to hold the condition bit)
2948         * added new version of genCmp (old code available via #define)
2949         * added new version of genShiftLeft/genShiftRight in a generic
2950           way, now supports shifting by negative values
2951         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2952           shiftCount (expected by genGenericShift)
2953         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2954         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2955           dump
2956         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2957           is an invalid literal too...)
2958
2959 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2960
2961         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2962         from Raphael Neider,
2963         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2964         for 8-bit literals. This fixes some literal operands which are sign
2965         extended to 16-bits ints when instruction needs only 8-bits.
2966
2967 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2968
2969         * device/lib/logf.c: added mcs51 assembly version
2970         * device/lib/expf.c: added mcs51 assembly version
2971         * device/lib/_logexpf.c: new shared asm code for expf and logf
2972         * device/include/math.h: add defines for assembly math library
2973         * device/lib/Makefile.in: build new _logexpf.c
2974         * device/lib/libfloat.lib: use new _logexpf.c
2975
2976 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2977
2978         * src/pic/device.c
2979         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2980           device types which have less than 0x7f registers.
2981
2982 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2983
2984         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2985
2986 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2987
2988         * device/lib/printf_fast.c: only build on supported arch.
2989         * device/lib/printf_tiny.c: only build on supported arch.
2990         * device/lib/printf_fast_f.c: only build if asm float lib
2991         * device/lib/_fsget1arg.c: only build if asm float lib
2992         * device/lib/_fsget2args.c: only build if asm float lib
2993         * device/lib/_fsnormalize.c: only build if asm float lib
2994         * device/lib/_fsreturnval.c: only build if asm float lib
2995         * device/lib/_fsrshift.c: only build if asm float lib
2996         * device/lib/_fsswapargs.c: only build if asm float lib
2997         * device/include/stdio.h: don't provide print_fast,
2998           print_fast_f, print_tiny prototypes if --xstack used
2999
3000 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3001
3002         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3003         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3004           to the SOURCES
3005
3006 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3007
3008         * device/lib/printf_fast_f.c: same as printf_fast, but
3009           with floating point enabled
3010         * device/lib/printf_fast.c: minor tweaks
3011         * device/include/stdio.h: add printf_fast_f
3012
3013 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3014
3015         * src/SDCCmain.c: make --float-reent default for mcs51
3016         * device/lib/_fsadd.c: added mcs51 assembly version
3017         * device/lib/_fssub.c: added mcs51 assembly version
3018         * device/lib/_fsmul.c: added mcs51 assembly version
3019         * device/lib/_fsdiv.c: added mcs51 assembly version
3020         * device/lib/_fseq.c: added mcs51 assembly version
3021         * device/lib/_fsneq.c: added mcs51 assembly version
3022         * device/lib/_fsgt.c: added mcs51 assembly version
3023         * device/lib/_fslt.c: added mcs51 assembly version
3024         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3025         * device/lib/Makefile.in: add _fscmp to build
3026         * device/lib/libfloat.lib: add _fscmp to build
3027
3028 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3029
3030         * device/lib/_fs2slong.c: added mcs51 assembly version
3031         * device/lib/_fs2sint.c: added mcs51 assembly version
3032         * device/lib/_fs2schar.c: added mcs51 assembly version
3033         * device/lib/_fs2ulong.c: added mcs51 assembly version
3034         * device/lib/_fs2uint.c: added mcs51 assembly version
3035         * device/lib/_fs2uchar.c: added mcs51 assembly version
3036         * device/lib/_slong2fs.c: added mcs51 assembly version
3037         * device/lib/_sint2fs.c: added mcs51 assembly version
3038         * device/lib/_schar2fs.c: added mcs51 assembly version
3039         * device/lib/_ulong2fs.c: added mcs51 assembly version
3040         * device/lib/_uint2fs.c: added mcs51 assembly version
3041         * device/lib/_uchar2fs.c: added mcs51 assembly version
3042         * device/include/float.h: added #define to select asm vs c
3043
3044 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3045
3046         * device/lib/printf_fast.c: improvements to float output
3047         * device/include/float.h: add defines for assembly float library
3048         * device/lib/_fsget1arg.c: receive 1 float arg
3049         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3050         * device/lib/_fsnormalize.c: normalize a float
3051         * device/lib/_fsreturnval.c: return float, various helper routines
3052         * device/lib/_fsrshift.c: right shift a float's mantissa
3053         * device/lib/_fsswapargs.c: swap 2 floats
3054         * device/lib/Makefile.in: build these 6 new files for mcs51
3055         * device/lib/libfloat.lib: add these 6 files to the library
3056
3057 2004-12-26 Borut Razem <borut.razem AT siol.net>
3058
3059         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3060           built by gcc 3.4.2
3061
3062 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3063
3064         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3065           and fully reentrant and register bank neutral.
3066         * device/lib/printf_fast.c: added float (not enabled by default),
3067           added compact/slower integer (also not enabled by default),
3068           improved size/speed of fast integer code, other minor changes
3069         * device/include/stdio.h, device/lib/Makefile.in,
3070           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3071
3072 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3073
3074         * src/pic16/pcode.c: declaring variables other than at the start of a
3075           block is not supported in C by VC6.
3076
3077 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3078
3079         * applied a previous patch from Raphael Neider that wasn't included
3080         in the previous commits, which fixes infinite loops within jumptable
3081         improvements,
3082         * made some fixes that previous patches introduced
3083
3084 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3085
3086         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3087         that fixes an issue with AOP_PCODE asmop's offset,
3088         * (pic16_popCopyReg): update instance field too,
3089         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3090         function of pic port,
3091         * (genCmp, genAnd, genAssign),
3092         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3093
3094 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3095
3096         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3097         variables initial values to idata section,
3098         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3099         variables in some functions. This utilizes parmBytes field of iCode
3100         structure to hold the offset of the variable in stack. (might be
3101         able to use the stack field too?)
3102         * applied patch from Raphael Neider # ### , # ###
3103         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3104         variable initial values in idata section,
3105         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3106         for static variables with initial value
3107         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3108         applied fix in while loop from Raphael Neider.
3109
3110 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3111
3112         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3113         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3114         * src/ds390/ralloc.c (serialRegAssign): spill bits
3115         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3116         * support/Util/SDCCerr.c,
3117         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3118         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3119         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3120
3121 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3122
3123         * device/include/sdcc-lib.h: inserted LGPL, added includes
3124           asm/ds390/features.h and asm/mcs51/features.h
3125         * device/include/asm/default/features.h,
3126         * device/include/asm/gbz80/features.h,
3127         * device/include/asm/z80/features.h: added empty _AUTOMEM
3128           and _STATMEM
3129         * device/include/asm/ds390/features.h,
3130         * device/include/asm/mcs51/features.h: added files with defines for
3131           _AUTOMEM and _STATMEM indicating automatic and static storage class
3132         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3133         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3134         * src/SDCCicode.c (geniCodeCast),
3135         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3136         * src/SDCCloop.c (loopInduction): removed unused variable lr
3137         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3138           to convertToFcall to include char modulo (RFE 1065037), added check
3139           if left operand is unsigned and use abs of literal value
3140         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3141           as it doesn't work after conversion from peephole.def to peephole.rul
3142         * src/mcs51/gen.c (toBoolean): added check for size,
3143           (genModOneByte): optimized code for signed char modulo a literal
3144           power of 2 (thanks to Hubert Sack),
3145           (genRRC): removed unnecessary "clr c",
3146           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3147         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3148           jump optimization,
3149           swapped rules 256.c and 256.d,
3150           extended 256.d by using new multiple checks (thanks Erik),
3151           added rules 256.e and 256.f,
3152           updated rule 261.a and 261.b to new generated code
3153         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3154
3155 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3156
3157         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3158           induction related bugs, including first part of bug #1074377
3159
3160 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3161
3162         * applied patch from bug-report #1076292,
3163         * applied patches for genAnd and Goto-optimizations for Raphael
3164         Neider,
3165         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3166         dump a less iCode information,
3167         * src/pic16/device.h (pic16_options_t): added field debgen,
3168         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3169         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3170         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3171         puclic,
3172         * (various functions): added macros FENTRY and FENTRY2 to functions,
3173         to emit function prologue,
3174         * (various functions): fixed indentation,
3175         * (genNearPointerGet): fixed loading of FSR0,
3176         * (genPackBits): applied patch from Raphael Neider to fix updating
3177         of FSR0 and touching only the modified bits,
3178         * src/pic16/genarith.c (various functions): added macros FENTRY to
3179         emit function prologue in comments,
3180         * src/pic16/pcode.h: added functions debugf2, debugf3,
3181         * src/pic16/ralloc.c: partial fix for packForPush caused
3182         segmentation fault,
3183
3184 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3185
3186         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3187           <stsp AT users.sourceforge.net> with reversed byte order
3188         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3189
3190 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3191
3192         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3193           bug #1074377
3194         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3195         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3196
3197 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3198
3199         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3200
3201 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3202
3203         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3204           conditions,
3205           (setFromConditionArgs): friendly operand parser for peephole rules,
3206           (operandBaseName, operandsNotRelated): new peephole condition
3207           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3208           architecture specific register naming into account, handles n-way
3209           comparisons, and supports quoted literals
3210         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3211
3212 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3213
3214         * src/mcs51/peeph.def: fixed bug #1076940
3215
3216 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3217
3218         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3219
3220 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3221
3222         Adding support for replacing ljmps with sjmps in jumptables
3223         generated for switch statements. For now you need to set the
3224         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3225         Now 4 algorithms for mcs51 jumptable generation are used:
3226         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3227         addresses loaded pc-relative for up to 112 cases and stack-pushing
3228         target addresses loaded with offset from dptr for up to 256 cases.
3229
3230         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3231         * src/mcs51/main.c: adapted constants for switch table generation
3232         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3233
3234 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3235
3236         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3237         * support/regression/tests/bug1057979.c: added test for bug 1073386
3238
3239 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3240
3241         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3242         compilers
3243
3244 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3245
3246         * src/pic16/device.h,
3247         * src/pic16/genarith.c,
3248         * src/pic16/glue.c,
3249         * src/pic16/main.c,
3250         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3251
3252 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3253
3254         Large cummulative patch for pic16 port.
3255         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3256         to call when a stack overflow occurs,
3257         * (malloc.h): added CVS Id tag,
3258         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3259         variable,
3260         * added libc directory. The current version of LibC contains string
3261         functions, ctype functions and macros and some functions of the
3262         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3263         be extensively tested in the future. Standard disclaimer here.
3264         Library is not automatically build yet. But one can build it by
3265         invoking 'make' inside the libc directory.
3266         * added ADC library under libio. Preliminary version yet.
3267
3268         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3269         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3270         aopForRemat() now and not by pic16_aopOp(),
3271         * (pic16_popGetTempReg): removed warning messgae when allocating
3272         temporary registers, its a buggy feature and will be removed,
3273         * (pic16_popGet): set register instance field in AOP_CRY,
3274         * (pic16_outBitC): fixed for results in size greater than 1,
3275         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3276         * (pic16_storeForReturn): optimized return of 0,
3277         * (genCmp): experimental code for new genCmp which uses PIC18's
3278         special compare&skip instructions. Initial tests fail some times
3279         with variables grater than 1 byte in size, so new code is disabled,
3280         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3281         a single bit,
3282         * (genCast): began a fix to optimize the casting of a bit to another
3283         bit, now assigning a bitfield to another bitfield will fail, sorry,
3284         * src/pic16/main.c: disabled the use of lr-support feature,
3285         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3286         * added some function prototypes, added function _debugf prototype,
3287         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3288         bits with offset (case PO_GPR_BIT),
3289         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3290         command line,
3291         * (isBankInstruction): modified to return 0 for no banking instruction,
3292         and 1 for banking instruction,
3293         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3294         caused stop processing pCodes after a inline assembly block,
3295         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3296         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3297         registers when it shouldn't,
3298         * src/pic16/ralloc.c (allocReg): add preliminary support for
3299         supporting a limited set of temporary registers,
3300
3301 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3302
3303         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3304           genDataPointerSet): ensure assignments always copy in MSB to LSB
3305           order,
3306           (loadRegFromAop): recognize CLRH optimization,
3307           (genFunction): optimize RECEIVE iCodes in reentrant functions
3308
3309 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3310
3311         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3312           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3313           selected.
3314         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3315         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3316           contiguous with data
3317
3318 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3319
3320         * device/lib/_gptrget.c (_gptrget),
3321         * device/lib/_gptrgetc.c (_gptrgetc),
3322         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3323           instead of sjmp to ret
3324         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3325           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3326
3327 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3328
3329         * .version: bumped version to 2.4.7
3330         * device/lib/_gptrget.c (_gptrget): is now _naked
3331         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3332         * device/lib/_gptrput.c (_gptrput): is now _naked
3333         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3334           (createFunction): fixed xstack
3335         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3336         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3337           or bit either,
3338           (geniCodeCritical): store original interrupt state in an iTemp bit
3339           var unless stack-auto
3340         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3341         * src/SDCCmain.c (setIncludePath): added include/target to search path
3342         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3343         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3344           prototype,
3345           (processFuncArgs): put bit vars in bit area
3346         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3347           unsaveRBank): fixed xstack,
3348           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3349           (genFunction, genEndFunction): fixed xstack,
3350           (genAssign): optimization don't walk backwards through mem
3351         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3352         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3353         * support/regression/Makefile: also make library (for stack-auto) when
3354           making "all" and added "test-mcs51-xstack-auto"
3355         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3356         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3357         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3358         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3359         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3360           make-library by MAKE_LIBRARY
3361         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3362           regression tests for xstack
3363         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3364         * support/regression/tests/critical.c: test for critical on mcs51
3365
3366 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3367
3368         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3369           built version of sdcc instead of installed version
3370
3371 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3372
3373         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3374         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3375           vprintf.c now
3376         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3377         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3378           WARNING: remove device/lib/build/z80/printf.o by hand when
3379           updating from previous build!
3380         * device/lib/z80/printf.c: updated comment
3381         * support/regression/tests/bug1057979.c: test all ports now
3382         * support/regression/tests/bug1065458.c: file added
3383
3384 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3385
3386         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3387           *_start and *_end symbols for static functions
3388
3389 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3390
3391         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3392           and search crt0.o in all library paths,
3393           (setIncludePath): proper handling of --nostdinc,
3394           (setLibPath): proper handling of --nostdlib
3395         * support/regression/Makefile,
3396         * support/regression/ports/ds390/spec.mk,
3397         * support/regression/ports/gbz80/spec.mk,
3398         * support/regression/ports/hc08/spec.mk,
3399         * support/regression/ports/mcs51/spec.mk,
3400         * support/regression/ports/mcs51-large/spec.mk,
3401         * support/regression/ports/mcs51-stack-auto/spec.mk,
3402         * support/regression/ports/z80/spec.mk: use include and lib files from
3403           built version of sdcc instead of installed version
3404         * doc/sdccman.lyx: fixed typo in --nostdinc
3405
3406 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3407
3408         * src/pic/pcode.c,
3409         * src/pic/device.c,
3410         * src/pic/ralloc.c,
3411         * src/pic/gen.c : added support to generate code for struct bit fields.
3412
3413 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3414
3415         * as/xa51/xa_version.h,
3416         * device/include/errno.h,
3417         * device/include/regc515c.h,
3418         * device/lib/_itoa.c,
3419         * device/lib/_ltoa.c,
3420         * device/lib/ser_ir_cts_rts.c,
3421         * sim/ucsim/xa.src/glob.cc,
3422         * sim/ucsim/xa.src/inst_gen.cc,
3423         * sim/ucsim/xa.src/xa_bit.cc,
3424         * sim/ucsim/xa.src/xa_sfr.cc,
3425         * sim/ucsim/z80.src/inst_dd.cc,
3426         * sim/ucsim/z80.src/inst_fdcb.cc,
3427         * support/scripts/keil2sdcc.pl,
3428         * src/pic16/pic16.dsp,
3429         * src/pic16/pic16a.dsp: corrected cvs line endings
3430         * device/lib/printf_large.c: fixed bug 1057979
3431         * src/pic16/gen.c: fixed non-C standard code
3432         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3433         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3434         * support/regression/ports/mcs51/support.c: reload T1 asap
3435         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3436           pdata use and clear idata startup behaviour
3437         * support/regression/tests/bug1057979.c: added
3438
3439 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3440
3441         * device/examples/ds390/ow390/ad26.h,
3442         * device/examples/ds390/ow390/cnt1d.h,
3443         * device/examples/ds390/ow390/crcutil.c,
3444         * device/examples/ds390/ow390/ownet.h,
3445         * device/examples/ds390/ow390/owsesu.c,
3446         * device/examples/ds390/ow390/swt12.h,
3447         * device/examples/ds390/ow390/swtoper.c,
3448         * device/examples/ds390/ow390/temp10.h,
3449         * device/examples/ds390/ow390/thermodl.c,
3450         * device/examples/ds390/tinitalk/tinitalk.dsp,
3451         * device/examples/ds390/tinitalk/tinitalk.dsw,
3452         * device/examples/mcs51/clock/hw.h,
3453         * device/examples/mcs51/simple2/go.bat,
3454         * device/examples/serialcomm/windows/serial.h,
3455         * device/examples/xa51/dummy.c,
3456         * device/examples/xa51/hello.c,
3457         * device/include/80c51xa.h,
3458         * device/include/at89x051.h: corrected cvs line endings
3459
3460 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3461
3462         * src/pic16/main.c (options): added command line --gstack, to trace
3463         stack over/under flows,
3464         * added pragma 'wparam' to allow passing first byte of function
3465         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3466         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3467         call to __gstack_test function and sets up the symbol as extern,
3468         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3469         * popaop): added call to pic16_testStackOverflow,
3470         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3471         wparamList list,
3472         * (genCall, genPcall): now all parameters are passed via stack
3473         except in functions that are pass to wparam pragma in which WREG is
3474         used too,
3475         * (genPcall): REENTRANT flag is checked to see if variable prototype
3476         contains reentrant keyword, don't call a non-reentrant function, via
3477         a reentrant function pointer or vice versa, functions are never
3478         passed via WREG,
3479         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3480         D.Winkler,
3481         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3482         SIGSEGV when accessing a NULL register stucture,
3483         * (pic16_printGPointerType): modified to handle UPPER modifier for
3484         function initializers, changed prototype of function to simpler one,
3485         * (pic16_printIvalFuncPtr): check to see if function is already
3486         added in externs list,
3487         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3488         optimized a move from W to SFR with a move to the same register
3489         later after a CALL,
3490         * device/lib/pic16/debug: NEW directory, contains debug features
3491         which are enabled when linking with libdebug.lib, currently command
3492         line option --gstack enables stack pointer tracing for over/under
3493         flow, corresponding sources are in debug/gstack
3494
3495 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3496
3497         * doc/sdccman.lyx: updated SDCC version,
3498         * (PIC16 port): update list of command line options,
3499         * src/pic16/device.h (structure pic16_options_t): added field gstack
3500         to enable stack overflow tracing on push/pops,
3501         * src/pic16/device.c (statistics structure): added statistics
3502         structure,
3503         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3504         pic16_dump_int_registers): increase statistics counters for each
3505         * variable which is encountered
3506         * (pic16_dump_usection): emit each .udata variable to its own udata
3507         section,
3508         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3509         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3510         parameters via stack, otherwise use old scheme,
3511         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3512         assembler output file,
3513         * src/pic16/main.c: added command line options --gstack to enable
3514         push/pop tracing for stack overflow,
3515         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3516         instructions): added size of each instruction,
3517         * (pic16_countInstruction): estimate size of instructions in
3518         the_pFile list, inline assembly blocks are not counted,
3519         * (pic16_FixRegisterBanking): trace previous register usage, when
3520         banksel optimizations is greater than 0, don't emit a redudant
3521         banksel directive,
3522
3523 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3524
3525         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3526         * src/pic16/ralloc.c : applied same fix for pic16.
3527         * src/pic/gen.c : tidied it up a little.
3528
3529 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3530
3531         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3532         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3533
3534 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3535
3536         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3537
3538 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3539
3540         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3541         non-reentrant function __modsint in the interrupt function (thus
3542         corrupting math operations during serial I/O)
3543         * device/lib/ser_ir.c: as above, changed buffersize
3544         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3545         256.c,d for zeroing
3546         * doc/Makefile: added option -t for rsync
3547
3548 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3549
3550         * src/SDCCast.h (struct ast),
3551         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3552
3553 2004-10-20 Borut Razem <borut.razem AT siol.net>
3554
3555         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3556         package
3557
3558 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3559
3560         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3561         makefile targets,
3562         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3563         support functions to replace long sequences of MOVFF's from access
3564         bank registers to stack and vice versa,
3565         * src/pic16/device.h: added new field opt_flags, where optimization
3566         flags can be set to enable certain features,
3567         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3568         * pBlock, (genFunction, genEndFunction): surroung loop for
3569         saving/loading used registers in stack with PC_INFO pCodes,
3570         INF_LREGS. Code in between can then be optimized by pCode optimizer
3571         to support function calls,
3572         * (genDataPointerSet): fixed bug which loaded float fields in
3573         structures with corrupt data,
3574         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3575         in a standard way debug info on stderr. Feature used for developing
3576         and debugging only,
3577         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3578         obsolete chunks of code,
3579         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3580         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3581         * pic16/src/pcode.c (pic16_newpCodeInfo,
3582         * (pic16_newpCodeOpLocalRegs),
3583         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3584         feature,
3585         * (pic16_pCodeConstString): printing of the initial value of a
3586         symbol as a comment is inhibited since parsing was already done by
3587         copyStr and output is corrupt,
3588         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3589
3590 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3591
3592         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3593
3594 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3595
3596         * as/mcs51/lkarea.c: removed old K&R style,
3597           (lnksect): changed check on boundary error,
3598           (lnksect2): changed check on boundary error,
3599           (lnksect2): extend XSTK to end of page if size = 1
3600         * as/mcs51/lkmain.c: removed old K&R style,
3601           (Areas51): create l_IRAM symbol
3602         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3603         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3604           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3605         * device/lib/_mullong.c: added version to be compiled with xstack
3606         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3607         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3608         * device/lib/mcs51/crtxstack.asm: fixed comment
3609         * src/SDCCglue.c: maxInterrupts defaults to 0,
3610           (emitMaps): added pdata,
3611           (createInterruptVect): (re)moved default,
3612           (glue): added pdata,
3613           (glue): moved __start__xstack to XSTK with default size 1
3614         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3615           and options.float_rent when options.stackAuto is set,
3616           (linkEdit): only write XDATA_NAME if provided on command line
3617         * src/SDCCmem.h,
3618         * src/SDCCmem.c: added pdata
3619         * src/port.h: added pdata_name to PORT
3620         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3621           (saveRegisters, unsaveRegisters): removed usage of B,
3622           (genMinus): fixed accumulator clash,
3623           (genJumpTab): added comment, this needs another look
3624         * src/mcs51/gen.c: added check for "B in use" paranoia,
3625           added pushB() and popB()
3626         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3627           chance
3628         * src/avr/main.c,
3629         * src/ds390/main.c,
3630         * src/hc08/main.c,
3631         * src/mcs51/main.c,
3632         * src/pic/main.c,
3633         * src/pic16/main.c,
3634         * src/xa51/main.c,
3635         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3636           added PSEG (PAG,XDATA) or NULL to port specifier
3637         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3638         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3639           (_mcs51_genInitStartup): removed __start__xstack equ,
3640           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3641         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3642         * src/z80/gen.c (_rleAppend): fixed warnings
3643         * support/regression/tests/zeropad.c: added pdata test
3644         * .version: bumped to 2.4.6
3645
3646 2004-10-17 Borut Razem <borut.razem AT siol.net>
3647
3648         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3649         as a part of nightly build
3650
3651 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3652
3653         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3654         WREG holds the first byte function parameters,
3655         * (aopForSym): take special case for symbols which are in FARSPACE
3656         but in CODESPACE too,
3657         * (assignResultValue): modified to take into account _G.useWreg,
3658         * (genCall): don't use wreg for parameter passing when function is
3659         declared as reentrant, too, added optimization INCF to stack
3660         pointer when stack parameter count is 1,
3661         * (genFunction, genEndFunction): refurnished and fixed to not using
3662         wreg for passing parameters when function has varargs or is
3663         reentrant, fixed bug with symbol name compare for generating
3664         functions in absolute address,
3665         * (pic16_storeForReturn): refurnished,
3666         * (genCmp): began writing a new version of the function, not ready
3667         yet, therefore it is disabled,
3668         * (genAssign): do not read code memory when assigning a function to
3669         a pointer function,
3670         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3671         array of characters, not pointer,
3672         * (pic16initialComments): in debug mode emit an .ident directive for
3673         the assembler,
3674         * (_process_pragma): emit a new warning type (internal to pic16)
3675         when setting stack to default length, emit a similar warning when
3676         placing a function at absolute address and address is not word aligned
3677         * (_pic16_parseOptions): added 'return TRUE' statement,
3678         * (_pic16_linkEdit): if compiling a source, then add the source's
3679         file object, first in the list of objects to link,
3680
3681 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3682
3683         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3684         * src/pic/main.c : removed VC warning.
3685         * src/pic/gen.c : changed comment.
3686
3687 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3688
3689         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3690         reference to a deprecated symbol _GPTRREG was causing failure to
3691         link. Thanks G. M. Gallant for the info.
3692
3693 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3694
3695         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3696         comments for Bugs item #954788.
3697
3698 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3699
3700         * src/pic16/device.c (pic16_dump_gsection,
3701         * pic16_groupRegistersInSection): handle symbols declared to be in
3702         access bank differently,
3703         * src/pic16/gen.c (struct _G): added field resDirect,
3704         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3705         send values read from stack directly to result and don't allocate
3706         temporary values,
3707         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3708         same registers,
3709         * (pic16_sameRegsOfs): NEW,
3710         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3711         free because they were not allocated from temporary pool,
3712         * pic16_popRegFromString): workaround to fix a problem with
3713         allocating variables twice or never,
3714         * (genGenPointerGet): using PRODL instead of FSR0H,
3715         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3716         instead of FSR0H,
3717         * (genAssign): take advantage of the _G.resDirect flag,
3718         * (genCast): around line 11844, use mov2f instead of directly
3719         MOVFF'ing between operands to account for literal values,
3720         * src/pic16/genutils.c: some new debug functions for gpsim have been
3721         added,
3722         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3723         float with integer part only,
3724         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3725         place variables in access bank
3726         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3727         updated sources to reflect recent changes in gen.c
3728
3729 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3730
3731         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3732         sources that searched for headers in installation path, now the
3733         device/include/pic16 is used,
3734         * src/pic16/glue.c (pic16glue),
3735         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3736         .line directives if not in debug mode, this suppresses assembler's
3737         warnings for ignored directives
3738
3739 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3740
3741         * src/port.h: made reset_regparms prototype void parameter explicit.
3742         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3743         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3744         * doc/sdccman.lyx: documented warning disabling and how to use
3745           printf_large to make it print floats.
3746         * device/include/stdbool.h: NEW
3747         * device/lib/_atof.c,
3748         * device/lib/_divuint.c,
3749         * device/lib/_divulong.c,
3750         * device/lib/expf.c,
3751         * device/lib/printf_large.c,
3752         * device/lib/sincosf.c,
3753         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3754         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3755           a completely reentrant lib.
3756
3757 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3758
3759         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3760         * device/include/pic16/stdio.h: fixed bug with colon
3761
3762 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3763
3764         * device/include/pic16/stdio.h,
3765         * device/include/pic16/stdlib.h,
3766         * device/include/pic16/math.h: NEW
3767         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3768         declared as _naked to reduce overhead
3769         * device/lib/Makefile.in (target port-specific-objects-pic16):
3770         changed * to *.* so to ignore the CVS directory,
3771         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3772         stacked variables back in stack,
3773         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3774         corruption
3775
3776 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3777
3778         * .version: bumped version number to 2.4.5
3779         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3780         * support/Util/SDCCerr.c (messages structure): added entry for
3781         W_POSSBUG2
3782
3783         Large cumulative patch for pic16 port and libraries.
3784         * device/include/pic16/sdcc-lib.h,
3785         * device/include/pic16/stdarg.h,
3786         * device/include/asm/pic16/features.h,
3787         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3788         * device/include/pic16/float.h: changes reentrant keyword with
3789         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3790         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3791         updated target build-libraries to include objects from gptr,
3792         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3793         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3794         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3795         all function headings,
3796         * src/SDCCmain.c: added global parameter userIncDirsSet,
3797         * (parseCmdLine): when option -I is encountered add directory to
3798         userIncDirsSet too,
3799         * src/version.awk: added space between control and long,
3800         * src/pic16/NOTES: added some notes for the port,
3801         * src/pic16/gen.c: added prototype for mov2fp function,
3802         * (fReturnpic16[]): properly named return value registers,
3803         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3804         * (aopForSym): added code to handle symbols with onStack flag set,
3805         symbols onStack are allocated PTRSIZE bytes,
3806         * (aopFreeAsmop): handles special case where asmops are stack objects,
3807         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3808         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3809         added argument lock to trace flaws in allocating temporary registers
3810         when developing port,
3811         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3812         * (pic16_popRegFromString): reenabled allocating a direct register
3813         from string,
3814         * (assignResultValue): various beautifications,
3815         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3816         referenced function argument,
3817         * (genIpush): reenabled to allow stacked arguments, handles only
3818         ic->parmPush iCodes,
3819         * (genCall, genPcall): major changes to allow for variable argument
3820         functions, fixed a bug with falsely restoring stack pointer after
3821         returning from call,
3822         * (genFunction): pending code for critical function,
3823         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3824         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3825         * (genNearPointerGet): fixed bug with indirect reading, was always
3826         reading from INDF0
3827         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3828         pointers,
3829         * (genAddrOf): rewrote code to take address of a stacked function parameter
3830         * (genCast): fixed casting to generic pointer type,
3831         * src/pic16/gen.h: added AOP_STA,
3832         * (struct asmop): added field stk,
3833         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3834         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3835         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3836         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3837         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3838         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3839         generic pointers,
3840         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3841         and library paths,
3842         * (pic16_port structure): generic pointer size is set to 3,
3843         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3844         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3845         compiler warning,
3846         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3847         operand is an iTemp,
3848
3849 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3850
3851         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3852         * debugger/mcs51/simi.c: addapt new syntax of s51
3853
3854 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3855
3856         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3857         * src/pic16/pcode.c: commented out some calls to free() in order to
3858         fix bug #989576,
3859
3860 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3861
3862         * src/SDCCicode.h,
3863         * src/SDCCicode.c (isiCodeInFunctionCall),
3864         * src/avr/ralloc.c (selectSpil),
3865         * src/pic/ralloc.c (selectSpil),
3866         * src/pic16/ralloc.c (selectSpil),
3867         * src/ds390/ralloc.c (selectSpil),
3868         * src/hc08/ralloc.c (selectSpil),
3869         * src/xa51/ralloc.c (selectSpil),
3870         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3871         stack in the middle of a function call sequence (fixes bug #1020268)
3872         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3873         costs associated with the minimum switch case.
3874
3875 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3876
3877         * src/SDCC.lex: fixed bug #1030549
3878
3879 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3880
3881         * src/SDCCcse.h (struct cseDef),
3882         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3883         over a function call if the CSE is derived from a symbol whose
3884         address has been taken (fixes bug #1029883)
3885         * support/regression/tests/bug-1029883: a new regression test for
3886         this bug
3887
3888 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3889
3890         * src/hc08/gen.c (emitinline): fixed bug #1029778
3891         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3892         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3893         and starts toward RFE #905167)
3894
3895 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3896
3897         * src/pic16/gen.c (mov2f): New function to move an operand to
3898         another without considering if it is a literal or a register,
3899         * (pic16_sameRegs): don't check if they are both AOP_REG,
3900         * (AccRsh): removed andmask=0 lines,
3901         * (genLeftShift): duplicated to be improved in future versions,
3902         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3903         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3904         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3905         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3906         * (insertBankSwitch): fixed inserting banksel directives algorithm
3907         for instructions that follow a skip instruction, this fixes a report
3908         for broken subtraction code generation,
3909         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3910         iCode is a left op, just in case result and right share the same
3911         registers
3912
3913 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3914
3915         * src/hc08/main.c,
3916         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3917         preservation of HX
3918         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3919         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3920         on 2004-09-12; it was buggy
3921
3922 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3923
3924         * src/SDCCsymt.h: removed RESULT_CHECK
3925         * src/SDCCast.c,
3926         * src/SDCCglue.c,
3927         * src/SDCCval.c,
3928         * src/pic/glue.c,
3929         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3930
3931 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3932
3933         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3934         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3935         configuration values no more rejected by compiler, they are assigned
3936         to configuration registers with a warning message instead,
3937         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3938         the for-loop so last conf register is emitted too,
3939         * (_pic16_initPaths): link library libsdcc.lib by default,
3940         * (_hasNativeMulFor): modified test for multiplication according to
3941         Raphael Neider's remarks. Integer multiplication is also done with
3942         support functions,
3943         * device/include/pic16/pic18fregs.h: corrected type error in while
3944         testing and including 18f6720 header file
3945
3946 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3947
3948         * src/pic16/device.h (pic16_options): removed field use_crt,
3949         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3950         until an optimization to handle single bits is added,
3951         * (pic16_loadFSR0): moved before genUnpackBits,
3952         * (genAnd): some white lines removed,
3953         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3954         leave_reset flags in pic16_options when using crt modules,
3955
3956 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3957
3958         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3959           for bugs 898889 & 979599. Also used some safer print instructions.
3960
3961 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3962
3963         * src/pic16/device.h (pic16_options_t): added field use_crt,
3964         crt_name, no_crt,
3965         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3966         catch a probable future bug,
3967         * src/pic16/gen.c: aopIdx function commented out,
3968         * (genAssign): commented out old code which used aopIdx,
3969         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3970         code, added if conditionals to take into account the --use-crt
3971         command line options,
3972         * src/pic16/main.c (pic16_optionsTable): added new command line
3973         options, --use-crt= and --no-crt,
3974         * (_pic16_linkEdit): now the proper crt object is added in the
3975         linker command line except than when --no-crt is specified,
3976         * src/pic16/pcode.c,
3977         * src/pic16/pcode.h: added some structures and functions for a new
3978         optimization scheme to compansate for instruction overhead between
3979         same iCodes, this scheme is currently under development and is not
3980         working in any way,
3981         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3982         to && operator,
3983         * device/lib/pic16/startup/crt0i.c,
3984         * device/lib/pic16/startup/crt0iz.c: added global char variable
3985         __uflags to force the generation of an idata section
3986
3987 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3988
3989         * doc/Makefile,
3990         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3991         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3992
3993 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3994
3995         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3996         Frieder) and clarified the default code optimization mode
3997
3998 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3999
4000         * src/SDCC.lex (doPragma, process_pragma),
4001         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4002         "opt_code_size", and "opt_code_balanced"
4003         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4004         regrouped options by category, added support for category headers
4005         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4006         and "--opt-code-size"
4007         * doc/sdccman.lyx: documented these new options and pragmas
4008         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4009         preference into account
4010
4011 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4012
4013         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4014           geniCodePreDec): Fixed bug 904237 by generating a warning
4015         * src/SDCCerr.h,
4016         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4017
4018 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4019
4020         * src/pic/device.c : When no max ram set validate full memory range.
4021         * src/pic/pcode.c,
4022         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4023
4024 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4025
4026         * device/lib/_gptrget.c,
4027         * device/lib/_gptrput.c: updated comment
4028         * device/lib/calloc.c,
4029         * device/lib/free.c,
4030         * device/lib/malloc.c,
4031         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4032         * src/SDCCcse.c (cseBBlock),
4033         * src/SDCCicode.c (printOperand, geniCodeArray),
4034         * src/SDCCicode.h (struct operand): fixed bug 868103
4035         * support/regression/tests/bug-868103.c: added
4036         * src/SDCCast.c (searchLitOp),
4037         * src/SDCCcse.h (struct cseDef),
4038         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4039         * src/SDCCicode.h (struct operand),
4040         * src/SDCCsymt.h (struct sym_link),
4041         * src/avr/gen.c (hasInc),
4042         * src/ds390/gen.c (hasInc),
4043         * src/hc08/gen.c (genPlusIncr, hasInc),
4044         * src/mcs51/gen.c (hasInc),
4045         * src/pic16/glue.c (pic16_printIvalChar),
4046         * src/pic16/ralloc.c (regWithIdx),
4047         * src/xa51/gen.c (hasInc) : removed warnings
4048         * src/SDCCast.c (createBlock): added comment ???
4049         * src/hc08/ralloc.c: updated comments
4050
4051 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4052
4053         * doc/sdccman.lyx: updated section on switch statements, added
4054         section about semaphore locking
4055         * doc/Makefile: added option -info for latex2html
4056         * device/lib/_gptrget.c,
4057         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4058
4059 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4060
4061         * src/pic/device.h,
4062         * src/pic/device.c,
4063         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4064          maxram is less than 0x100.
4065
4066 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4067
4068         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4069
4070 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4071
4072         * src/port.h,
4073         * src/mcs51/main.c,
4074         * src/ds390/main.c,
4075         * src/z80/main.c,
4076         * src/hc08/main.c,
4077         * src/pic/main.c,
4078         * src/pic16/main.c,
4079         * src/avr/main.c,
4080         * src/xa51/main.c
4081         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4082         a jump table is the best form for a switch statement, including
4083         automatic insertion of missing cases to make the case range
4084         continuous. Developed in collaboration with Frieder Ferlemann.
4085
4086 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4087
4088         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4089         accumulator result if it needs sign extension
4090
4091 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4092
4093         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4094
4095 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4096
4097         * device/lib/gbz80/printf.c,
4098         * device/lib/z80/printf.c: removed define for NULL
4099
4100 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4101
4102         * as/xa51/xa_link.c,
4103         * device/examples/ds390/ow390/ad26.c,
4104         * device/examples/ds390/ow390/cnt1d.c,
4105         * device/examples/ds390/ow390/counter.c,
4106         * device/examples/ds390/ow390/ds2480.h,
4107         * device/examples/ds390/ow390/ds2480ut.c,
4108         * device/examples/ds390/ow390/findtype.c,
4109         * device/examples/ds390/ow390/gethumd.c,
4110         * device/examples/ds390/ow390/owllu.c,
4111         * device/examples/ds390/ow390/ownetu.c,
4112         * device/examples/ds390/ow390/swt12.c,
4113         * device/examples/ds390/ow390/swtloop.c,
4114         * device/examples/ds390/ow390/temp.c,
4115         * device/examples/ds390/ow390/temp10.c,
4116         * device/examples/ds390/ow390/thermo21.c,
4117         * device/examples/ds390/ow390/tinilnk.c,
4118         * device/examples/ds390/ow390/tstfind.c,
4119         * device/examples/serialcomm/windows/serial.cpp,
4120         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4121         * device/include/reg51.h: fixed line endings for cvs
4122
4123 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4124
4125         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4126         packRegsForAccUse, packRegisters): new accumulator register
4127         packing algorithm
4128         * support/regression/ports/hc08/support.c (_putchar): suppress
4129         warning of unused variable
4130         * src/SDCCicode.c: added SWAP entry to codeTable
4131
4132 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4133
4134         * device/lib/sprintf.c: forgot to add this file before previous commit
4135
4136 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4137
4138         * src/pic16/gen.c (genPackBits): added operand right in function
4139         parameters, load result directly if p_type is POINTER (that is
4140         called by genNearPointerSet)
4141         * (genUnPackBits): added operand left in function parameters,
4142         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4143         FSR0 if accessing bitfields,
4144
4145 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4146
4147         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4148           _print_format; updated printf, sprintf, vsprintf
4149         * device/include/asm/default/features.h: corrected comment/define
4150         * device/lib/Makefile.in: added sprintf.c
4151         * device/lib/libsdcc.lib: added sprintf module
4152         * device/lib/printf_large.c,
4153         * device/lib/vprintf.c,
4154         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4155           into these 3 files
4156         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4157         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4158         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4159           hc08 test
4160         * support/regression/tests/zeropad.c: define idata as data for hc08
4161
4162 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4163
4164         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4165         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4166         labels are referenced at least once (even if a reference is not found)
4167         * src/hc08/gen.c (emitcode): set isComment flag for comments
4168         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4169         loads), rules 6a..6b (optimize jumps to return)
4170
4171 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4172
4173         * device/lib/acosf.c (acosf),
4174         * device/lib/asinf.c (asinf),
4175         * device/lib/atanf.c (atanf),
4176         * device/lib/ceilf.c (ceilf),
4177         * device/lib/cosf.c (cosf),
4178         * device/lib/coshf.c (coshf),
4179         * device/lib/cotf.c (cotf),
4180         * device/lib/fabsf.c (fabsf),
4181         * device/lib/floorf.c (floorf),
4182         * device/lib/log10f.c (log10f),
4183         * device/lib/logf.c (logf),
4184         * device/lib/sinf.c (sinf),
4185         * device/lib/sinhf.c (sinhf),
4186         * device/lib/sqrtf.c (sqrtf),
4187         * device/lib/tanf.c (tanf),
4188         * device/lib/tanhf.c (tanhf),
4189         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4190         replaced all instances of "reentrant" in the library functions
4191         defined in math.h with this macro.
4192         * support/regression/tests/float_trans.c: reenabled test for hc08
4193
4194 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4195
4196         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4197         erroneously deleted
4198
4199 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4200
4201         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4202         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4203         multi-byte volatile operands are used
4204         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4205         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4206         initialization to area GSINIT0 so that it would always precede
4207         any static initializers in GSINIT
4208         * support/regression/tests/zeropad.c: fixed idata define for hc08
4209         * support/regression/tests/bug-927659.c,
4210         * support/regression/tests/float_trans.c: disabled tests for hc08
4211         pending missing library routines
4212         * .version: increased version number to 2.4.4 - hc08 port now passes
4213         regression tests
4214
4215
4216 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4217
4218         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4219         * Makefile.common.in,
4220         * as/Makefile,
4221         * as/hc08/Makefile.in,
4222         * as/mcs51/Makefile.in,
4223         * as/z80/Makefile.in,
4224         * debugger/mcs51/Makefile.in,
4225         * device/include/Makefile.in,
4226         * device/lib/Makefile.in,
4227         * doc/Makefile,
4228         * link/Makefile,
4229         * link/z80/Makefile.in,
4230         * packihx/Makefile.in,
4231         * sim/ucsim/main_in.mk,
4232         * sim/ucsim/avr.src/Makefile.in,
4233         * sim/ucsim/doc/Makefile.in,
4234         * sim/ucsim/gui.src/serio.src/Makefile.in,
4235         * sim/ucsim/hc08.src/Makefile.in,
4236         * sim/ucsim/s51.src/Makefile.in,
4237         * sim/ucsim/xa.src/Makefile.in,
4238         * sim/ucsim/z80.src/Makefile.in,
4239         * src/Makefile.in,
4240         * support/cpp2/Makefile.in,
4241         * support/librarian/Makefile,
4242         * support/makebin/Makefile: added DESTDIR to the install path proposed
4243         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4244         * doc/sdccman.lyx: added DESTDIR documentation
4245
4246 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4247
4248         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4249         instruction for interrupt handlers, use fast returns when returning
4250         from high priority interrupts
4251
4252 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4253
4254         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4255         code generation
4256         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4257         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4258         bugs, ported much of Bernhard's code from mcs51
4259         * src/mcs51/gen.c (genSend),
4260         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4261         than one when calling a reentrant function
4262         * device/lib/_mullong.c: defined an alternate struct layout for big
4263         endian ports (hc08)
4264
4265 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4266
4267         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4268         test
4269
4270 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4271
4272         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4273         are sane and complete before asking the port its prefered parameter
4274         passing method (fixes bug #1017633)
4275         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4276         and _ret3
4277
4278 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4279
4280         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4281         problem in bitfields >= 8 bits.
4282
4283 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4284
4285         * src/SDCCsymt.c: undid changes that were not meant to be committed
4286
4287 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4288
4289         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4290
4291 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4292
4293         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4294           copied and wrong bit got inverted
4295
4296 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4297
4298         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4299         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4300         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4301         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4302         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4303         assignments to bitfields at known addresses
4304         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4305         reads from bitfields at known addresses
4306         * src/hc08/ralloc.c (packRegisters),
4307         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4308         genhc08Code): optimize pointer get values used as conditionals
4309         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4310         and branch
4311
4312 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4313
4314         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4315         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4316         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4317         as conditionals
4318
4319 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4320
4321         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4322
4323 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4324
4325         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4326         related problems
4327
4328 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4329
4330         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4331
4332 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4333
4334         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4335         mcs51 port
4336
4337 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4338
4339         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4340
4341 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4342
4343         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4344         cases use more compact code.
4345
4346 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4347
4348         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4349
4350 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4351
4352         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4353
4354 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4355
4356         * src/SDCCsymt.h,
4357         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4358         parameter of changePointer() from symbol* to sym_link*
4359         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4360         * src/SDCCsymt.c (compareType): void* type is castable to other
4361         pointers, but not necesarily an exact match.
4362         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4363         is no longer blindly treated as an exact match.
4364         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4365
4366 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4367
4368         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4369
4370 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4371
4372         * src/pic/gen.c,
4373         * src/pic/pcode.c,
4374         * src/pic/ralloc.h,
4375         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4376
4377 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4378
4379         * src/pic/device.c,
4380         * src/pic/device.h,
4381         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4382
4383 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4384
4385         * src/mcs51/gen.c (emitcode): fixed bug #992819
4386
4387 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4388
4389         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4390           there's no need to make it worse
4391
4392 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4393
4394         * src/mcs51/ralloc.c (deassignLR),
4395         * src/ds390/ralloc.c (deassignLR),
4396         * src/hc08/ralloc.c (deassignLR),
4397         * src/z80/ralloc.c (deassignLR),
4398         * src/pic/ralloc.c (deassignLR),
4399         * src/pic16/ralloc.c (deassignLR),
4400         * src/avr/ralloc.c (deassignLR),
4401         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4402         rlivePoint): fixed another part of bug #971834
4403
4404 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4405
4406         * src/z80/main.c: enabled "critical" keyword
4407         * src/z80/mappings.i,
4408         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4409         functions (fixes bug #979646)
4410         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4411
4412 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4413
4414         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4415           such as c:\mydir.
4416
4417 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4418
4419         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4420           doesn't disable too much optimizations
4421
4422 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4423
4424         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4425
4426 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4427
4428         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4429
4430 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4431
4432         * src/pic/gen.c tidied up tabs
4433         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4434         * src/pic/main.c tidied up tabs
4435         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4436         * src/pic/pcoderegs.c tidied up tabs
4437         * src/pic/ralloc.c tidied up tabs
4438
4439 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4440
4441         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4442         to S_FIXED for pic16 port and when symbol is not in level 0,
4443         allocate for S_REGISTER storage class and pic16 port, too,
4444         * src/pic16/device.h: prototype for checkSym,
4445         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4446         * (pic16_assignConfigWordValue): test the value and the mask to
4447         validate that the value is suitable for the configuration word,
4448         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4449         collect extern declared symbols, don't emit symbol twice, check
4450         first if symbol is in publics set first,
4451         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4452         * added command line '--fstack' which enables an experimental
4453         feature for stack access, too buggy to be used yet...
4454         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4455         * (pic16_allocDirReg): when register has storage class S_REGISTER
4456         allocate in pic16_dynAccessRegs,
4457         * device/include/pic16/pic18f????.h: modified configuration word
4458         naming convention, words started as CONFIG0H but should be CONFIG1H
4459
4460 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4461
4462         * device/include/mcs51reg.h: fixed bug 970993
4463
4464 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4465
4466         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4467         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4468         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4469         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4470         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4471         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4472           error/warning numbers,
4473           added function setWarningDisabled()
4474         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4475         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4476           _memcmp.c _memmove.c calloc.c realloc.c free.c
4477         * support/regression/tests/malloc.c: added tests for new functionality
4478         * support/regression/tests/zeropad.c: added tests for truncated initializers
4479           and initialized char arrays starting with '\x0'
4480         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4481
4482 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4483
4484         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4485
4486 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4487
4488         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4489         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4490         peephole 177.e. Thanks to anonymous
4491
4492 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4493
4494         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4495         function isn't used in the source but referenced as a
4496         variable initializer then declare it as extern in .asm file
4497
4498 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4499
4500         * .version: increased version number to 2.4.3
4501
4502         Adding version extension according to ChangeLog CVS revision
4503         * src/Makefile.in (target all): added dependency 'version.h'
4504         * (rule version.h): added rule to create version.h from ChangeLog,
4505         * (rule dep): added dependency version.h,
4506         * src/version.awk: AWK script to create version.h
4507         * src/SDCCdwarf2.c (dwWriteModule),
4508         * src/SDCCglue.c (initialComments),
4509         * src/SDCCmain.c (printVersionInfo): modified to write after
4510         version string the version extension number,
4511         * src/SDCCutil.c: included "version.h"
4512         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4513         number,
4514         * src/SDCCutil.h: added prototype for getBuildNumber
4515
4516         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4517         includeDirsSet, too,
4518         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4519         const char [] is found in function prototype...
4520
4521         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4522         moving to WREG with source is already in WREG,
4523         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4524         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4525         * (aopForSym): stack'ed symbols are partially supported, added
4526         if-clause to support symbols in FARSPACE,
4527         * (sameRegs): added test for AOP_ACC to see if registers are same,
4528         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4529         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4530         * (pic16_popRegFromString): will not allocate a new register if it
4531         doesn't find one by name, bug may have introduced...
4532         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4533         * (genIpush): revived to use pic16 port's stack,
4534         * (genAddrOf): added incomplete case for stack'ed operand,
4535         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4536         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4537         can handle multibyte operands,
4538         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4539         * (pic16initialComments): added message for MPLAB compatibility
4540         mode enabled,
4541         * src/pic16/main.h: prototype for pic16_mplab_comp,
4542         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4543         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4544         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4545         because of increased complexity of procedure,
4546         * (_process_pragma): stack pragma changed to format 'stack pos len',
4547         emit symbol '_stack_end' to conform with gplink,
4548         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4549         to search for register,
4550         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4551         PO_GPR_REGISTER,
4552         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4553         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4554         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4555         case for PO_GPR_REGISTER,
4556         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4557         dies, the new era is ahead !...
4558         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4559         pic16_dynInternalRegs,
4560         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4561         * (pic16_allocDirReg): minor optimizations and bug fixes,
4562         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4563
4564         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4565         load stack and frame pointer with address of 'stack_end' symbol
4566
4567 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4568
4569         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4570         without source code but only variable initializers
4571
4572 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4573
4574         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4575         external are not declared as extern to reduce overhead while linking
4576
4577 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4578
4579         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4580
4581 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4582
4583         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4584           Yee Keat for the patch
4585         * src/SDCCast.c (decorateType): fixed bug #979599
4586         * src/ds390/gen.h: removed local fReturnSizeDS390
4587         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4588         * src/ds390/gen.c (genAnd, genOr, genXor),
4589         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4590
4591 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4592
4593         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4594         add relFilesSet to $3, manipulate $2 to handle linking of object
4595         files without source files in command line,
4596         * device/include/pic16 (all headers): added ID location macros,
4597         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4598         entries for ID location bytes,
4599         * (pic16_assignIdByteValue): NEW,
4600         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4601         added field dumpcalltree to pic16_options_t,
4602         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4603         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4604         emitting rFalseIfx label after check_carry label,
4605         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4606         pic16_emitDIRegs), NEW
4607         * (pic16glue): dump .calltree file when option --calltree found,
4608         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4609         * (_pic16_genAssemblerPreamble): emit ID locations after
4610         configuration registers,
4611         * (pic16_linkCmd): modifications of the link command,
4612         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4613         * (pic16_pCodeInitRegisters): don't init stack registers,
4614         * (pic16_findPrevInstruction): fixed bug,
4615         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4616         bug with immediate registers,
4617         * (buildCallTree): traces stack push and pop,
4618         * (pct2): dump also stack usage for each function,
4619         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4620         * (pic16_allocDirReg): various modifications,
4621         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4622         fixed to 1,
4623
4624 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4625
4626         * src/pic16/pcode.c: removed buggy double colon
4627
4628 2004-07-01 Borut Razem <borut.razem AT siol.net>
4629
4630         * support/scripts/sdcc.nsi: added include/pic16 to setup
4631
4632 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4633
4634         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4635         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4636         target 'clean',
4637         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4638         specific command line arguments. Also added sample lkr script
4639         for placing a variable at a specific memory bank.
4640         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4641         at a specific memory bank,
4642         * (pic16_dump_isection): fixed bug which caused string literals to
4643         be omitted when dumping idata section,
4644         * (pic16_groupRegistersInSection): added code to handle registers
4645         in specific memory banks,
4646         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4647         public, all references are renamed too,
4648         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4649         AOP_DPTR2,
4650         * (pic16_storeForReturn): added case to handle when dest is WREG,
4651         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4652         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4653         pic16_rel_udata, check to see if that register is marked as being
4654         a member of a specific memory bank,
4655         * (pic16_printIvalCharPtr): added code to add string literals either
4656         to code or the idata sections,
4657         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4658         also accept the 'udata' pragma,
4659         * src/pic16/main.h: new structure types sectName and sectSym
4660         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4661         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4662         * (pic16_findPrevInstruction): fixed, it returned nothing,
4663         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4664         instruction combinations,
4665         * (pic16_FixRegisterBanking): heavily reorganised,
4666         * (pic16_AnalyzeBanking): if generating banksel directives is
4667         disabled, then don't call FixRegisterBanking at all,
4668         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4669         completely removed,
4670         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4671
4672 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4673
4674         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4675         Phuah Yee Keat <yk.phuah AT nestac.com>
4676
4677 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4678
4679         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4680         correctly the IVT even if it is relocated to some other location
4681
4682 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4683
4684         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4685         * device/include/pic16/pic18f2220.h: NEW,
4686         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4687         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4688         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4689         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4690         nodefaultlibs, ivt_loc is the location of the interrupt vector
4691         table, and nodefaultlibs signs that default libraries should not be
4692         linked in link stage,
4693         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4694         according to --ivt-loc argument,
4695         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4696         when pragma stack is found,
4697
4698 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4699
4700         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4701         256 (range check), 257 (do while), 258.a-f (bit banging
4702         f.e. on 3-wire SPI bus)
4703
4704 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4705
4706         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4707         variables used exclusively within a loop
4708
4709 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4710
4711         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4712
4713 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4714
4715         * src/SDCClrange.c (computeClash): fixed bug #971834
4716
4717 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4718
4719         * src/mcs51/gen.c (genCmp): fixed bug #975903
4720         * src/hc08/gen.c (operandsEqu),
4721         * src/ds390/gen.c (operandsEqu),
4722         * src/z80/gen.c (operandsEqu),
4723         * src/pic/gen.c (operandsEqu),
4724         * src/pic16/gen.c (operandsEqu),
4725         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4726         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4727
4728 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4729
4730         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4731
4732 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4733
4734         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4735         default case in switch statement,
4736         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4737         to eliminate problem with initialisation of pointers, but problem
4738         still exists,
4739         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4740         * (emitStaticSegment): removed various lines emitting debug info,
4741         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4742         added processor registers for utilizing EEPROM,
4743         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4744         configurable and set 8
4745
4746 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4747
4748         * .version: increased version number to 2.4.2,
4749
4750         Cumulative patch for pic16 port
4751         * src/pic16/device.c: changed scheme to dump initial values for
4752         variables in idata segment, all print_idata* functions were removed,
4753         now the pic16_printIval* will be called,
4754         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4755         * _pic16_printPointerType, pic16_printPointerType,
4756         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4757         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4758         NEW, similar to the respective functions in SDCCglue.c,
4759         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4760         way, emitting hex bytes,
4761         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4762
4763 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4764
4765         * src/avr/ralloc.c (serialRegAssign),
4766         * src/xa51/ralloc.c (serialRegAssign),
4767         * src/pic/ralloc.c (serialRegAssign),
4768         * src/pic16/ralloc.c (serialRegAssign),
4769         * src/hc08/ralloc.c (serialRegAssign),
4770         * src/z80/ralloc.c (serialRegAssign),
4771         * src/ds390/ralloc.c (serialRegAssign),
4772         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4773
4774 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4775
4776         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4777         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4778
4779 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4780
4781         Cumulative patch for pic16 port:
4782         * src/pic16/device.h (typedef PIC16_device) modified fields for
4783         defining microcontrollers,
4784         * src/pic16/device.c: added new info for all devices in Pics16 array,
4785         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4786         to be optimised out by the pCode optimiser,
4787         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4788         specially, bug reported by G.M. Gallant,
4789         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4790         as force'd so that cannot be optimised out by pCode optimiser,
4791         * src/pic16/pcode.c,
4792         * src/pic16/pcodepeeph.c,
4793         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4794         they are disabled by default, but can be enabled explicit with
4795         command argument --denable-peeps, for testing,
4796         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4797         --pomit-ivt in COMPILE_FLAGS
4798
4799 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4800
4801         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4802           compilation on MSVC
4803
4804 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4805
4806         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4807
4808 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4809
4810         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4811         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4812
4813 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4814
4815         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4816         would only assign 0x300001 register.
4817
4818 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4819
4820         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4821         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4822
4823 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4824
4825         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4826         for ds80c400
4827         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4828         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4829         added peephole 254 (left shift), 255 (jump table)
4830
4831 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4832
4833         * device/lib/Makefile.in: removed comment line with model-pic16,
4834         * (target port-specific-objects-pic16): the libraries and objects
4835         are copied to the build directory form the device/lib/pic16/bin
4836         directory
4837
4838         Cumulative patch concerning pic16 port:
4839         * library directory has been re-organized,
4840         * added support for PIC18F1220,
4841         * added headers and library sources for chips 18f1220,18f6520,
4842         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4843
4844         * configuration registers setting has changed, now each supported
4845         device has a complete description of the registers it uses,
4846         * all initialisations are moved to idata sections, these section
4847         can be absolute or relocatable,
4848         * fixed initialisation of codespace variables,
4849         * fixed warning about PCLATU and gpsim,
4850         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4851         * (genAssign): use table reads when assigning from variables in codespace,
4852         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4853         char/int variables placed in codespace,
4854         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4855         registers set in .asm file, no need for --pomit-config-words anymore,
4856         * (pic16glue): some 8051 legacy segments are commented out
4857         (to be removed completely),
4858         * added support for alternative assembler and linker with --asm=
4859         and --link= command line arguments,
4860         * peepholes are disabled automatically in the port, no need to
4861         specify on command line,
4862         * port supports natively char/int/long multiplication, but converts
4863         all divisions to support functions,
4864         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4865         to the file set in variable $2,
4866         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4867         strings in ASCII format and not in hex,
4868         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4869         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4870         allocate proper register if iCodes aren't temporary,
4871
4872 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4873
4874         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4875
4876 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4877
4878         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4879         is commented out
4880
4881 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4882
4883         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4884         computed address is reused
4885         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4886         multi-byte bitfields
4887
4888 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4889
4890         * src/z80/gen.c: (genArrayInit): must check for pointers too
4891
4892 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4893
4894         * support/regression/tests/zeropad.c: never meant to commit the
4895           nestedstruct test: removed, added check for GCC version
4896
4897 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4898
4899         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4900         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4901         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4902           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4903           bugs 928906 and 954082 half-empty initializers
4904         * src/SDCCsymt.h,
4905         * src/SDCCsymt.c (getAllocSize): added for above fix
4906         * src/z80/gen.c (genArrayInit): fixed bug 741044
4907         * support/regression/tests/zeropad.c: added tests
4908
4909 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4910
4911         * src/pic16/device.c (pic16_dump_section): corrected bug which
4912         caused some symbols of the libraries to be misplaced
4913
4914 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4915
4916         * src/pic16/glue.c,
4917         * src/pic16/ralloc.h,
4918         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4919         to fix conflict with pic port
4920
4921 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4922
4923         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4924         externs configuration variables,
4925         * src/pic16/ralloc.h,
4926         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4927         prototype in header, commented out some debug messages
4928
4929 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4930
4931         * src/pic16/glue.c,
4932         * src/pic16/main.c,
4933         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4934         for gpasm COFF object generation. Thanks to D. Hawkins for
4935         his patch info
4936
4937 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4938
4939         * src/ds390/main.c,
4940         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4941         Brock for spotting this)
4942         * src/ds390/gen.c (genEndFunction),
4943         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4944         interrupt handler and critical. Disable push/pop optimizations when
4945         peephole optimizations disabled.
4946
4947 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4948
4949         Updated pic16 library sources and headers.
4950         * device/lib/pic16/pic18f*/ ,
4951         * device/include/pic16/*.h: modified to handle structured SFR
4952         definitions
4953
4954 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4955
4956         * src/port.h (PORT structure): added hook initPaths, now each
4957         port can declare its own default search paths,
4958         which can been seen with the --print-search-dirs option,
4959         see pic16 port for example,
4960         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4961         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4962         * (doPrintSearchDirs): NEW, replaces in a central manner the
4963         printing of search dirs which was split in set*Paths functions,
4964         * (main): added call to port->initPaths and doPrintSearchDirs,
4965         * src/avr/main.c,
4966         * src/ds390/main.c,
4967         * src/hc08/main.c,
4968         * src/izt/i186.c,
4969         * src/izt/tlcs900h.c,
4970         * src/mcs51/main.c,
4971         * src/pic/main.c,
4972         * src/pic16/main.c: modified port structures to reflect addition of
4973         initPaths hook,
4974
4975         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4976         * (pic16_dump_section): for registers in same address reserve memory once,
4977         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4978         to no_banksel,
4979         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4980         result is greater in size than right or left,
4981         * (pic16_genUMult8X8_8): there are some cases where the result can
4982         be 16 bits size, so handle these,
4983         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4984         * (pic16_outBitC): modified to emit pcodes,
4985         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4986         or not,
4987         * (genDivOneByte): implemented algorithm to divide 8-bits,
4988         * (genCmp): uncommented goto, but issues still exist,
4989         * (genAnd): fixed a bug with variables >8bits,
4990         * (genPackBits): optimization added that uses BCF/BSF to change a
4991         single bit,
4992         * (genAssign): fixed bug when assigning floating point literals,
4993         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4994         __sdcc_gsinit_startup label,
4995         * src/pic16/main.c (_pic16_init): removed search directory
4996         initialisations,
4997         * (_pic16_initPaths): NEW, used to initialise search directories,
4998         * (_hasNativeMulFor): support functions for all except char/int
4999         multiplication, and char division,
5000         * (PIC16_port struct): modified entry for native mul support,
5001         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5002         no_banksel option,
5003         * (buildCallTree): call to register_usage is ifdef'ed out,
5004
5005 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5006
5007         * device/include/string.h: applied Stas Sergeev's patch to make this
5008         header file compatible with the preprocessor -Wundef option
5009         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5010         failure (fixes bug #941458)
5011
5012 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5013
5014         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5015         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5016         that the variable, not the function, should be static
5017         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5018         to be consistent with non-literal case
5019
5020 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5021
5022         * src/SDCCast.c (isConformingBody): fixed bug #949967
5023         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5024         convilong): fixed bug #952086
5025
5026 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5027
5028         * src/SDCCmem.c (allocVariables): fixed bug #955321
5029
5030 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5031
5032         * src/hc08/main.c (_hc08_genAssemblerEnd),
5033         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5034         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5035         completely eliminated the use of a temporary file
5036         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5037         when more than one file linked
5038         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5039
5040 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5041
5042         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5043         which fixes bug #543481
5044         * support/regression/tests/bug-751703.c: fixed comments left from a
5045         cut and paste error
5046         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5047         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5048         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5049         scopes
5050         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5051         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5052         are now changed to underscores in moduleName
5053
5054 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5055
5056         * as/mcs51/lkmem.c: better fix for bug #954173
5057
5058 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5059         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5060
5061         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5062         * device/include/c8051f000.h,
5063         * device/include/c8051f120.h,
5064         * device/include/c8051f300.h,
5065         * device/include/c8051f310.h,
5066         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5067         PWM16) and detab'ed
5068
5069 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5070
5071         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5072         and mailing lists, doc'ed --no-peep-comments, removed reference
5073         to knoppix (newest version has no LyX/LaTeX), other minor changes
5074         * src/SDCCglue.c (glue): save 2 bytes stack space with
5075         option --main-return. The ljmp could probably be avoided too
5076
5077 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5078
5079         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5080
5081 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5082
5083         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5084         * src/SDCCopt.c (isLocalWithoutDef),
5085         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5086         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5087         (credit to Maarten Brock for patch #949363, on which this is based)
5088         * support/regression/tests/bug-751703.c: some test cases of extern used
5089         within inner scopes.
5090
5091 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5092
5093         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5094         SPEC_STRUCT
5095         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5096         struct definitions
5097         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5098         dwWriteLabel): fix to create valid debugger symbols even when
5099         the module name has non-alphanumeric symbols in it
5100         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5101         when a variable's allocation has been optimized away
5102
5103
5104 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5105
5106         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5107         * src/hc08/main.c,
5108         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5109         * src/mcs51/main.c,
5110         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5111         * src/ds390/main.c,
5112         * src/z80/gen.c (z80_emitDebuggerSymbol),
5113         * src/z80/main.c,
5114         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5115         * src/pic/main.c,
5116         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5117         * src/pic16/main.c,
5118         * src/avr/gen.c (avr_emitDebuggerSymbol),
5119         * src/avr/main.c,
5120         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5121         * src/xa51/main.c,
5122         * src/SDCCdebug.c (emitDebuggerSymbol),
5123         * src/SDCCdebug.h,
5124         * src/port.h: added a debugger struct to the port struct. Added a
5125         callback for defining debugger symbols
5126
5127         * src/SDCCast.c (createLabel),
5128         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5129         with isitmp = 1
5130         * src/SDCCicode.h,
5131         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5132         iCode back to the ast for the function
5133
5134         * src/hc08/ralloc.c (hc08_assignRegisters),
5135         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5136         unneeded fields from the regs struct.
5137         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5138         pushReg() & pullReg() functions instead of emitcode()
5139
5140         * src/hc08/gen.c (genLabel, genhc08Code),
5141         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5142
5143         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5144         debugger hooks
5145
5146         * src/hc08/gen.c (genEndFunction, genhc08Code),
5147         * src/hc08/gen.h,
5148         * src/mcs51/gen.c (genEndFunction, gen51Code),
5149         * src/mcs51/gen.h,
5150         * src/ds390/gen.c (genEndFunction, gen390Code),
5151         * src/ds390/gen.h,
5152         * src/z80/gen.c (genEndFunction, genZ80Code),
5153         * src/z80/gen.h,
5154         * src/z80/z80.h,
5155         * src/pic/gen.c (genEndFunction, genpic14Code),
5156         * src/pic/gen.h,
5157         * src/pic16/gen.c (genEndFunction, genpic16Code),
5158         * src/pic16/gen.h,
5159         * src/avr/gen.c (genEndFunction, genAVRCode),
5160         * src/avr/gen.h,
5161         * src/xa51/gen.c (genEndFunction, genXA51Code),
5162         * src/xa51/gen.h,
5163         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5164         specific code to cdbFile.c and out of the backend code generators
5165
5166         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5167         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5168         starting address is now 0
5169
5170         * as/hc08/asm.h,
5171         * as/hc08/m08pst.c,
5172         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5173         assembler directive for DWARF support
5174         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5175
5176         * src/src.dsp,
5177         * src/Makefile.in,
5178         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5179
5180 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5181
5182         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5183         and inappropriate peephole optimization in jump tables
5184
5185 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5186
5187         * as/hc08/m08pst.c,
5188         * src/SDCCglue.c: sdccopt works for the hc08 port now
5189
5190 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5191
5192         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5193
5194 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5195
5196         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5197
5198 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5199
5200         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5201         rules
5202         * src/SDCCmain.c,
5203         * src/SDCCglobl.h,
5204         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5205         comments from the peephole optimizer replacement rules
5206         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5207         symbols
5208         * src/SDCCcse.c (updateSpillLocation),
5209         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5210         equivalents
5211         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5212         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5213         objects far pointers
5214
5215 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5216
5217         * src/SDCCsymt.h: a missing part of my last change
5218         * src/pic/ralloc.c (regTypeNum),
5219         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5220
5221 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5222
5223         * src/SDCCicode.h,
5224         * src/SDCCicode.c (aggrToPtrDclType),
5225         * src/SDCCptropt.h,
5226         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5227         ptrPseudoSymConvert),
5228         * src/pic/ralloc.c (regTypeNum),
5229         * src/pic16/ralloc.c (regTypeNum),
5230         * src/hc08/ralloc.c (regTypeNum),
5231         * src/ds390/ralloc.c (regTypeNum),
5232         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5233         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5234
5235 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5236
5237         * link/z80/lkmain.c (afile),
5238         * as/hc08/lkmain.c (afile),
5239         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5240         prevent a pointer problem when a filename has no directory and
5241         no extension specified.
5242
5243 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5244
5245         * link/z80/lkmain.c (afile): allow periods in directory names
5246         * link/z80/lkmain.c (afile),
5247         * as/mcs51/lkmain.c (afile),
5248         * as/hc08/lkmain.c (afile): allow linker script file to have an
5249         extension other than ".lnk"
5250         * link/z80/lklex.c (getfid),
5251         * link/z80/lkmain.c (parse),
5252         * as/mcs51/lklex.c (getfid),
5253         * as/mcs51/lkmain.c (parse),
5254         * as/hc08/lklex.c (getfid),
5255         * as/hc08/lkmain.c (parse): Support comments in the linker script
5256         file on lines by themselves and after filenames
5257
5258 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5259
5260         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5261
5262 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5263
5264         * src/z80/peeph-z80.def: removed some peephole rules that don't
5265         work with multibyte arithmetic (fixed bug #937126)
5266         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5267         to registers and not global variables
5268         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5269         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5270         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5271         checking for assignments not internally generated (fixed bug #931895)
5272         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5273         structure member (fixed bug #930072)
5274
5275 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5276
5277         * src/SDCCmain.c (linkEdit),
5278         * src/hc08/main.c (_hc08_parseOptions),
5279         * as/hc08/Makefile.in,
5280         * as/hc08/aslink.h,
5281         * as/hc08/asm.h,
5282         * as/hc08/m08pst.c,
5283         * as/hc08/lkrloc.c (relr, rele),
5284         * as/hc08/lkarea.c (lnkarea)
5285         * as/hc08/lkmain.c (afile, parse),
5286         * as/hc08/lkelf.c: support for ELF output
5287         * as/hc08/lks19.c (s19),
5288         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5289
5290 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5291
5292         * as/mcs51/lkihx.c: Fixed bug #899105.
5293
5294 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5295
5296         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5297         .dsp files from Unix to DOS.
5298
5299 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5300
5301         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5302         function pointers; we have been compliant for several months now.
5303         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5304         change that was accidently commented out
5305         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5306         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5307         bug #922319
5308
5309 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5310
5311         * src/hc08/gen.c: output of all of the internal debugging information
5312         is now controlled by the D() macro; it is disabled by default
5313
5314 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5315
5316         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5317         harder to keep the same registers during a CAST iCode
5318         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5319         long via int can be done in a single cast, if the signedness is
5320         correct.
5321         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5322         putchar() in tinibios.c in ds390's library
5323
5324 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5325
5326         * src/SDCCast.c (decorateType): fixed bug #898889,
5327         cast result of a literal complement too
5328         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5329         fixed check for bitfields
5330
5331 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5332
5333         * src/SDCCicode.c (geniCodeLogic): made it static,
5334         (geniCodeLogicAndOr): added in order to fix bug #905492,
5335         (ast2iCode): fixed bug #905492
5336         * support/regression/tests/bug-905492.c: added
5337         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5338         (processParms): fixed bug #927659: don't copy parms, this will clear
5339         decorated flag
5340         * support/regression/tests/bug-927659.c: added
5341
5342 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5343
5344         * src/SDCCast.c (addCast): don't cast float to char
5345         * device/lib/libsdcc.lib: added _memmove
5346
5347 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5348
5349         * device/lib/large/Makefile: fixed parallel execution by
5350         replacing `make` by `$(MAKE)`
5351
5352 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5353
5354         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5355         offsets (fixes bug #923936)
5356
5357 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5358
5359         * device/lib/small/Makefile: fixed parallel execution by
5360         replacing `make` by `$(MAKE)`
5361
5362 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5363
5364         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5365
5366 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5367
5368         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5369         * src/regression/Makefile: Regression test was not running.
5370
5371 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5372
5373         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5374         complement if possible
5375         * src/SDCCval.c (valComplement),
5376         * src/SDCCicode.c (operandOperation): fixed complement of literal
5377         * support/regression/tests/onebyte.c (testComplement): added
5378
5379 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5380
5381         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5382         return an optimized tree; actually replace actParm with the new tree
5383         * src/SDCCast.h: added some parantheses to remove side effects
5384         * support/regression/tests/bug-920866.c
5385
5386 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5387         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5388         Bit operands were not being handled properly in the pic14 port.
5389         (now src/regression/add.c passes again).
5390
5391 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5392
5393         * src/SDCC.y (labeled_statement): case and default no longer require
5394         a following statement (RFE #893037)
5395
5396 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5397
5398         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5399         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5400         disabled (fixes bug #916294)
5401         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5402         "mov a,acc"; patch provided by Lenny Story
5403         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5404
5405 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5406
5407         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5408         functions
5409         * src/ds390/gen.c (genFunction, genEndFunction),
5410         * src/ds390/ralloc.c (ds390_assignRegisters),
5411         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5412         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5413         pushed if there are parameters passed on the stack. Also, a cleaner
5414         way to decide if r0/r1 should be pushed/popped. (Together they fix
5415         bug #918693)
5416
5417 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5418
5419         * doc/sdccman.lyx,
5420         * device/lib/mcs51/crtpagesfr.asm,
5421         * device/lib/mcs51/crtxinit.asm,
5422         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5423         to avoid confusion with Si Lab's SFRPAGE register.
5424
5425 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5426
5427         * src/SDCCglue.c (emitMaps): allow public sfr variables
5428         * src/SDCCglue.c (initialComments): include compiler build date
5429         with compiler version and put the timestamp of the generated
5430         assembly file on a serperate line to be less confusing.
5431         * src/port.h: added genInitStartup hook
5432         * src/avr/main.c,
5433         * src/ds390/main.c,
5434         * src/hc08/main.c,
5435         * src/pic/main.c,
5436         * src/pic16/main.c,
5437         * src/xa51/main.c,
5438         * src/z80/main.c: genInitStartup initialize as NULL (default to
5439         historical behaviour)
5440         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5441         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5442         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5443         library instead of hard coding it into the compiler.
5444         * support/regression/ports/mcs51-stack-auto/spec.mk,
5445         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5446         * device/lib/mcs51/Makefile,
5447         * device/lib/small/Makefile,
5448         * device/lib/large/Makefile,
5449         * device/lib/mcs51/crtpagesfr.asm,
5450         * device/lib/mcs51/crtstart.asm,
5451         * device/lib/mcs51/crtxclear.asm,
5452         * device/lib/mcs51/crtxinit.asm,
5453         * device/lib/mcs51/crtclear.asm,
5454         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5455         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5456         and into user configurable files.
5457         * device/lib/clean.mk: clean mcs51 directory too
5458         * support/regression/tests/longlit.c: added static to T1 declaration
5459         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5460         accesses in the initialization code
5461
5462 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5463
5464         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5465         OSCTRIMVAL as noted in bug #916008
5466
5467 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5468
5469         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5470         in loops with multiple exits (reported as incorrect registers
5471         used by Martin Helmling in Sdcc-user list)
5472
5473 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5474
5475         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5476         made ds390 register extensions look less like error messages
5477
5478 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5479
5480         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5481         reported by Adam Wozniak in Sdcc-user list
5482
5483 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5484
5485         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5486         arithmetic optimizations, added debug output
5487
5488 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5489
5490         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5491         * sdcc.spec: updated and split sdcc into 3 rpms
5492         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5493         needed for literals of LEFT_OP and '+'
5494         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5495         introduced RESULT_TYPE_NOPROM
5496         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5497         left shift
5498         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5499         limited promotion to int only for '*'
5500         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5501
5502 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5503
5504         * src/pic16/gen.c (genSkip),
5505         (genc16bit2lit), (gencjneshort): commented out
5506         (is_LitOp): new helper function, checks operand type
5507         (genCmpEq): rewritten
5508
5509 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5510
5511         * support/regression/tests/bug-908454.c: added
5512
5513 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5514
5515         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5516         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5517         (geniCodeCast): cosmetic, don't preserve bit storage class
5518         (geniCodeLeftShift): added promotion
5519         (geniCodeLogic): fixed regression
5520         * src/SDCCsymt.c (computeTypeOr): accept bits too
5521         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5522
5523 2004-03-07  Borut Razem <borut.razem AT siol.net>
5524
5525         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5526
5527 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5528
5529         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5530         version of pic16_genPackRegisters which does not check if ic is a
5531         CAST operator,
5532         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5533         function cause string1.c regression test fails
5534
5535 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5536
5537         * sim/ucsim/configure.in,
5538         * sim/ucsim/configure,
5539         * sim/ucsim/doc/Makefile.in: use docdir
5540         * src/SDCC.y: fixed sbit atrributes
5541         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5542         * src/SDCCast.c (decorateType): |^& need special promotion handling
5543         * src/SDCCast.h,
5544         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5545         * src/SDCCsymt.h (computeType),
5546         * src/SDCCicode.c: computeType() needs op
5547         * src/SDCCsymt.c (checkTypeSanity),
5548         * doc/sddman.lyx: "plain" bitfields are unsigned
5549         * src/SDCCsymt.c (computeTypeOr): added
5550         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5551         |^& ops
5552         * src/SDCCval.c (val*): computeType() needs op
5553         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5554         * support/regression/tests/onebyte.c: added tests for |^&
5555
5556 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5557
5558         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5559         for writing icode into asm output.
5560
5561 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5562
5563         * src/pic16/device.c: added some debug lines enabled
5564         with macro DEBUG_CHECK,
5565         * src/pic16/genarith.c: more debug in genPlus,
5566         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5567         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5568         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5569         * (aopForSym): onStack symbols are re-placed in data memspace,
5570         and onStack flag is cleared,
5571         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5572         copy temporary pcodeop,
5573         * (genPcall): added warning for not updating PCLATU,
5574         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5575         always true for pic16 port,
5576         * (genMultOneWord): NEW, supports integer multiplication,
5577         * (genMult): modified to call genMultOneWord,
5578         * (ifxForOp): added warning when return NULL,
5579         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5580         flag is set before call to operandFromSymbol for implicit
5581         added structures,
5582         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5583         options.intlong_rent are set by default,
5584         * (_hasNativeMulFor): modified to allow port generation of integer
5585         multiplication,
5586         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5587         set regtype to REG_SFR for all registers, restricting seting the
5588         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5589
5590 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5591
5592         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5593         more than 500 times in the regression tests
5594
5595 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5596
5597         * support/Util/SDCCerr.h,
5598         * support/Util/SDCCerr.c,
5599         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5600         enumerator_list),
5601         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5602         for symbol conflicts.
5603         * support/valdiags/tests/enum.c,
5604         * support/valdiags/tests/tentdecl.c,
5605         * support/valdiags/tests/struct.c: expect possible error messages
5606         referring to original symbol definitions.
5607         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5608         * src/SDCCsymt.h,
5609         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5610
5611 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5612
5613         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5614
5615 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5616
5617         * src/pic16/ralloc.c (newReg): fixed bug #908929
5618
5619 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5620
5621         * src/ds390/gen.c: added missing #include "main.h"
5622
5623 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5624
5625         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5626         checking if symbol is already in set,
5627         * src/pic16/device.h: prototype for checkAddSym,
5628         * src/pic16/gen.c: (_G): added entry interruptvector,
5629         * (assignResultValue): removed some commented out lines,
5630         * (genFunction): check for ISR via sym->type, absolute section for
5631         interrupt code is created via a new pBlock, the goto instruction is
5632         placed now correctly at the interrupt vector position, changed all
5633         references from ivec to _G.interruptvector,
5634         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5635         is the interrupt is a high priority one, same for return from ISR,
5636         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5637         externs to calls of checkAddSym,
5638         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5639         pic16_pcode_verbose flag is set,
5640         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5641         * src/pic16/pcoderegs.c: message about how many registers are saved
5642         will only be emitted if pic16_pcode_verbose flag is set,
5643
5644 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5645
5646         * src/ds390/ralloc.h,
5647         * src/ds390/ralloc.c (ds390_regWithIdx),
5648         * src/ds390/gen.c (emitcode),
5649         * src/ds390/main.h,
5650         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5651         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5652         ds390operandCompare, getRegsRead, getRegsWritten,
5653         initializeAsmLineNode): customized instruction size calculation for
5654         ds390, started basis for some register optimizations
5655         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5656         corresponding assembly output
5657         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5658         missing push/pop of r0/r1. Optimized push/pops
5659
5660 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5661
5662         * src/mcs51/main.c (instructionSize): fixed ACALL size
5663         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5664
5665 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5666
5667         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5668         the sorting of rlist with NULL elements
5669         * (print_idataType, print_idata): NEW to create idata sections
5670         * src/pic16/device.h: idataSymSet new variable
5671         * src/pic16/gen.c (genFunction): fixed some bugs in string
5672         comparing, improved the absolute section creation for ISRs,
5673         added FSR0L/FSR0H in registers that are saved in an ISR,
5674         * (genInline): fixed the processing of inline snippets,
5675         now they undergo no process by the peephole optimizer
5676         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5677         are placed in idataSymSet,
5678         * (pic16emitStaticSeg): extern symbols are added in externs,
5679         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5680         switching when aboslute variables are placed in access bank memory
5681         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5682         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5683         commented out with #if,
5684         * (pic16_packRegisters): reintroduce the check for CAST because some
5685         symbols are not correctly handled,
5686         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5687         pCodeInstruction instead of pCode,
5688         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5689         pCodeAsmDir definition,
5690         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5691         directive, then the argument directive is emitted without the leading
5692         tab, hack for inline labels which must be in the first column,
5693         * (compareLabel,pic16_findNextInstruction),
5694         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5695         * (insertBankSwitch): modified for the new pCodeAsmDir,
5696
5697 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5698         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5699
5700         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5701         instance,
5702         * (pushSide): commented out with #if,
5703         * (assignResultValue): fixed some typos in saving
5704         registers,
5705         * (genPcall): FIXED and sync'ed with genCall,
5706         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5707         * (genNearPointerGet): fixed to handle some more cases,
5708         implementation scheme via table reads,
5709         * (genConstPointerGet): modified to access code memory correct,
5710         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5711         and improved to handle some cases
5712         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5713         instead of "RETLW" for init data
5714         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5715         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5716         variables are placed in access bank memory (<0x80 and >=0xf80),
5717         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5718         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5719         TBLWT_POSTDEC,TBLWT_PREINC
5720         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5721         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5722         directives
5723         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5724         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5725         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5726         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5727
5728 2004-02-29  Borut Razem <borut.razem AT siol.net>
5729
5730         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5731         support/Util/findme.h, support/Util/system.h: enhance binary relative
5732         search for lib and include by using findProgramPath()
5733
5734 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5735
5736         * src/SDCCpeeph.h,
5737         * src/SDCCpeeph.c (pcDistance),
5738         * src/port.h,
5739         * src/mcs51/ralloc.h,
5740         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5741         * src/mcs51/main.h,
5742         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5743         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5744         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5745         size calculation port specific, started basis for some register
5746         optimizations
5747         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5748         missing push/pop of r0/r1. Optimized push/pops
5749         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5750         * device/lib/_modsint.c (_modsint),
5751         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5752         and stack version so regression tests pass
5753
5754 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5755
5756         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5757         * src/SDCCast.c (decorateType): catch another small optimization
5758         with '?' operator
5759         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5760         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5761         modified to finally use computeType() all over SDCC,
5762         see Feature Request #877103
5763         * src/SDCCval.h: cosmetic
5764         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5765         valCompare(); regression tested in muldiv.c
5766         * support/regression/tests/muldiv.c (testMod): mod sign follows
5767         dividend only
5768
5769 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5770
5771         * src/SDCCast.c (decorateType): fixed bug #902362
5772         * doc/INSTALL.txt: fixed install instructions for win32
5773
5774 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5775
5776         * device/include/Makefile.in (install): fixed by replacing spaces
5777         by tabs
5778         * doc/README.txt,
5779         * doc/INSTALL.txt: updated for release
5780         * doc/sdccman.lyx: added warning for --xstack being buggy
5781
5782 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5783
5784         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5785         to eliminate build warnings.
5786         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5787
5788 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5789            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5790
5791         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5792         removed -penable-stack, added comment for stack pragma, added
5793         warning for not initializing the stack/frame registers, removed
5794         comment at interrupts section
5795
5796         Stack is made permanent, there is no ability to disable stack usage.
5797         * src/pic16/device.h,
5798         * src/pic16/device.c: removed all references to USE_STACK macro,
5799         * src/pic16/device.c (pic16_dump_section): when no elements in
5800         rlist, free rlist before return,
5801         * (pic16_dump_int_registers): NEW, internal registers are a new set
5802         of general purpose registers reused by each function,
5803         * (checkAddReg): returns 1 if registers is added to set,
5804         * (pic16_groupRegistersInSection): when a registers is of type
5805         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5806         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5807         SRCASECMP macro is moved here from device.c
5808         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5809         PO_PCLATU, PO_PRODL, PO_PRODH,
5810         * (pic16_pCodeOpType, genMinus,
5811         changed compares to "a" register, with AOP_ACC,
5812         * (pic16_genPlus): fixed some bugs and indented properly,
5813         * (pic16_addSign): changed size to size+offset in the MOVWF
5814         instruction,
5815         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5816         multiply 8-bit operand by literal, result is 8-bit,
5817         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5818         multiply 2 8-bit operand, result is 8-bit,
5819         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5820         genUMult8X*_16,
5821         * src/pic16/gen.c: changed accUse to contain WREG only,
5822         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5823         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5824         true, do not use immediate addressing any more unless sym is a
5825         pointer in codespace,
5826         * (aopForRemat): do not use immediate addressing when symbol not in
5827         codespace and when symbol's address is requested,
5828         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5829         accUse size (= 1),
5830         * (aopGet): added case for AOP_ACC and don't return "accumulator
5831         bug" but WREG instead,
5832         * (popGetTempReg): pushes contents of temporary register in stack,
5833         * (popReleaseTempReg): pops contents of temporary register from
5834         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5835         * (pic16_popGet): separated case AOP_ACC to return register WREG
5836         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5837         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5838         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5839         the use of immediate pointers to certain cases only.
5840
5841         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5842         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5843         * (assignResultValue, genCall, genRet): modified to use the new
5844         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5845         genPcall is still broken,
5846         * (genFunction): added code to create 'A' type pBlocks when
5847         interrupt functions are generated, code not extensively tested yet,
5848         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5849         * (genEndFunction): modified so ISRs pop stored registers from stack,
5850         * (genMultOneByte): cleanup,
5851         * (AccRsh): added flag andmask, to and result with appropriate mask,
5852         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5853         * (genDataPointerGet): fixed and reenabled its use,
5854         * (genNearDataPointerGet): bugs fixed,
5855         * (genDataPointerSet): bugs fixed,
5856         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5857         pic16_DumpSymbol, pic16_DumpOp,
5858         * src/pic16/genutils.h: function prototypes for the above functions,
5859         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5860         pointers,
5861         * (pic16emitRegularMap): many many many improvements, but needs a
5862         major cleanup,
5863         * src/pic16/main.c: enable_stack in pic16_options is removed,
5864         * (_pic16_parseOptions): removed command line options -penable-stack,
5865         * (_process_pragma): emit stack symbol only when stack pragma is
5866         processed,
5867         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5868         redirected to FSR0L/FSR0H pair,
5869         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5870         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5871         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5872         for immediates,
5873         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5874         * (dumpPicOptype): NEW,
5875         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5876         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5877         with movff instruction,
5878         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5879         added pic16_int_regs, some packRegsFor* functions are commented out,
5880         because produce errors,
5881         * src/pic16/NOTES: minor modifications
5882
5883 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5884
5885         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5886         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5887         --pack-iram.
5888         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5889         * as/mcs51/lkaomf51.c: fixed bug #895763
5890
5891 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5892
5893         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5894
5895 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5896
5897         * doc/sdccman.lyx: added details about the HC08 storage classes and
5898         interrupts, fixed the register usage info for z80 & gbz80
5899
5900 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5901
5902         * doc/sdccman.lyx: added more pic16 port documentation
5903         * device/include/pic16/: added header pic18fregs.h
5904
5905 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5906
5907         * doc/sdccman.lyx: added Vangelis' contribution
5908
5909 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5910
5911         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5912         extend to the next CALL or PCALL, not just to the next CALL.
5913
5914 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5915
5916         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5917
5918 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5919
5920         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5921         bug #895752 and a better fix for bug #716790
5922
5923 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5924
5925         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5926
5927 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5928
5929         * doc/sdccman.lyx: minor changes, minor changed
5930
5931 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5932
5933         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5934         which can't handle SDCC_NEWONEBYTEOPS,
5935         (geniCodeMultiply): removed conversion from mult to shift for pic14
5936         and pic16
5937
5938 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5939
5940         * src/hc08/gen.h,
5941         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5942         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5943         thus fixing bug #895406
5944
5945 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5946
5947         * device/lib/_modsint.c,
5948         * device/lib/_modslong.c: sign follows divisor only
5949         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5950         signs or signedness can be ignored
5951         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5952         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5953         added optimization for IFX,
5954         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5955         arguments;
5956         reenabled optimization for IFX, which was removed on 2004-01-11
5957         * src/SDCCast.h: added return type IFX
5958         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5959         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5960         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5961         SDCC_OLDONEBYTEOPS selects the old behaviour
5962         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5963         changed again and commented promotion rule
5964         * src/SDCCval.c (valDiv): promotion no longer necessary
5965         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5966         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5967         rewritten
5968         * support/regression/tests/onebyte.c: added
5969
5970 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5971
5972         * gen.c (genInline): reverted to old code for assemnling inline
5973         code because of bug reported James Chadd
5974
5975 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5976
5977         * ralloc.h: missing declarations from previous patch,
5978         seems that patch for ralloc.h was never applied, fixed
5979
5980 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5981            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5982
5983         * pcode.c,
5984         * pcode.h,
5985         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5986         indirect addressing. Marked FSR0 as deprecated
5987         * gen.c (pointerCode): commented out, not needed now
5988         (pic16_popGet2p): new MOVFF helper function
5989         (genGenPointerGet),
5990         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5991         (shiftRLong): removed duplicate debugging info
5992
5993 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5994
5995         * src/ds390/gen.c (genNearPointerGet),
5996         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5997         optimization with bits, but not bitfields.
5998         * src/ds390/ralloc.c (packRegisters),
5999         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6000
6001 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6002
6003         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6004
6005 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6006
6007         * src/SDCCsymt.h,
6008         * src/SDCCicode.c (operandFromSymbol),
6009         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6010         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6011         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6012         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6013         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6014         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6015         bug #892038
6016         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6017         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6018         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6019         * src/SDCCsymt.c (newSymbol),
6020         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6021         enumerator_list),
6022         * src/SDCCval.h,
6023         * src/SDCCval.c (newiList): fixed bug #885705
6024
6025 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6026
6027         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6028         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6029
6030 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6031
6032         * device/include/c8051f120.h,
6033         * device/include/c8051f300.h,
6034         * device/include/c8051f310.h: added/updated header files for Silicon
6035         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6036         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6037         in new section Submitting patches
6038
6039 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6040
6041         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6042         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6043         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6044         genGenPointerSet),
6045         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6046         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6047         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6048         genGenPointerSet),
6049         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6050         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6051         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6052         genGenPointerSet),
6053         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6054         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6055         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6056         genGenPointerSet): fixed bug #892400
6057         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6058         to eliminate build warnings.
6059         * src/SDCCast.c (processParms),
6060         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6061         fixed bug 751859
6062         * support/valdiag/valdiag.py: added GCC to the list of defines active
6063         when compiling with gcc
6064
6065 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6066
6067         * support/Util/SDCCerr.h,
6068         * support/Util/SDCCerr.c,
6069         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6070         with an incomplete type (fixed bug #883734)
6071         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6072
6073 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6074
6075         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6076
6077 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6078
6079         * src/SDCCast.c (decorateType),
6080         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6081         function pointer implementation
6082         * support/regression/tests/funptrs.c: added tests to verify both forms
6083         of function pointers work correctly. Added tests to verify parameters
6084         are passed in the correct order.
6085
6086 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6087
6088         * device.c (regCompare): registers are sorted by ascending
6089         address and increasing size,
6090         * main.c (_pic16_finaliseOptions): removed the declaration
6091         of compiler macro MCU. Now a macro of the format pic18fxxxx
6092         will be defined from the command line
6093
6094 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6095             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6096
6097         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6098         PCOP_RLCF was overwritten!
6099         * gen.c (genSkip): commented out calls to pic16_emitcode,
6100         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6101         * (genlshTwo),
6102         * (genRRC): added debugging info,
6103         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6104         overwritten while shifting,
6105         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6106         overwritten while shifting,
6107         * (AccLsh),
6108         * (AccRsh),
6109         * (shiftLLeftOrResult),
6110         * (shiftRLeftOrResult),
6111         * (shiftRLong),
6112         * (shiftLLong): Implemented with pic16_emitpcode
6113         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6114         * (genLeftShift): Fixed bug, operand for shift by variable always
6115         was "and"ed with 0x0f,
6116         * (genLeftShiftLiteral),
6117         * (genrshTwo),
6118         * (genRightShiftLiteral): added debugging info,
6119         * (genrshFour): added comment,
6120         * (genRightShift): determined signedness from operand "left"
6121         instead of "result"
6122
6123 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6124
6125         * src/SDCCicode.c (geniCodeParms),
6126         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6127         function pointers, fixed function pointer bugs #861242 and #861896
6128
6129 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6130
6131         * device/include/c8051f000.h,
6132         * device/include/c8051f120.h,
6133         * device/include/c8051f300.h: added header files for Silicon
6134         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6135
6136 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6137
6138         * src/SDCCast.c (processParams): added new type flow and restructured
6139         (gatherAutoInit): added new type flow
6140         (addCast): cosmetic changes
6141         (getLeftResultType): added new type flow for array indices, patch
6142         provided by Stas, see FR #877103
6143         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6144         array index patch by Stas
6145         * src/SDCCast.h: added prototype getResultTypeFromType()
6146         * src/SDCCval.h,
6147         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6148         * src/pic/glue.c (pic14emitStaticSeg),
6149         * src/pic16/glue.c (pic16emitStaticSeg),
6150         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6151         for initialization of symbols
6152         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6153         * support/Util/SDCCerr.h:
6154         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6155         * .version: bumped version number to 2.3.8
6156         * device/include/Makefile.in (install),
6157         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6158         avoid warnings
6159
6160 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6161
6162         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6163         Slade Rich fixed an optimization bug
6164         * src/pic/pcodepeep.c,
6165         * src/pic/pcoderegs.c
6166         * doc/Makefile (install): added test for directory
6167
6168 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6169
6170         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6171         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6172         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6173         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6174         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6175         * as/mcs51/asexpr.c (term),
6176         * as/hc08/asexpr.c (term): fixed bug #887146
6177
6178 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * src/z80/gen.c (genMult): handle single byte result product
6181         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6182         DUMMY_READ_VOLATILE (fixed bug #886367)
6183
6184 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6185
6186         * support/regression/tests/libmullong.c: fixed logic, on little endian
6187         hosts we ended without a mullong_wrapper()
6188
6189 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6190
6191         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6192         virus/worm forged address usage.
6193
6194 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6195
6196         Fixed promotion, it should be done on AST level:
6197         * src/SDCCast.c (addCast): added promotion to int
6198         (decorateType): updated call to upCast()
6199         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6200         usualUnaryConversions()
6201
6202 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6203
6204         * support/regression/tests/literalop.c (mulWrapper): Added a
6205         wrapper to remove integer overflow warnings.
6206
6207         * support/regression/tests/float_trans.c: Made work on host.
6208
6209         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6210         location of sz80.
6211
6212         * support/regression/generate-cases.py (main): Changed from inline
6213         to a main method.
6214
6215         * doc/Makefile (install): Changed to depth first to get rid of
6216         missing directory install warning.
6217
6218         * as/Makefile (install-doc): Made work on Mac.
6219
6220 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6221
6222         * src/SDCCast.c: added an additional type flow in decorateType() of
6223         opposite direction, see feature request #860006; it's enabled at runtime
6224         by setting the environment variable SDCC_NEWTYPEFLOW
6225         * src/SDCCast.h: changed prototype of decorateType()
6226         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6227         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6228         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6229         see feature request #877103
6230         * src/SDCCval.c: updated call of decorateType()
6231         (valBitwise): fixed bug #882876
6232         (valMinus): added promotion
6233         (valLogicAndOr): result is unsigned
6234         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6235         * src/SDCCsymt.c (computeType),
6236         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6237         must not cause an unsigned operation
6238         * src/pic/glue (pic14emitRegularMap),
6239         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6240
6241 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6242
6243         * src/pic/pcode.c (PCodeID): commented out left over debug code
6244
6245 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6246
6247         * support/valdiag/tests/overflow.c: added shift tests
6248         * src/pic/device.c,
6249         * src/pic/gen.c,
6250         * src/pic/gen.h,
6251         * src/pic/glue.c,
6252         * src/pic/main.c,
6253         * src/pic/pcode.c,
6254         * src/pic/pcode.h,
6255         * src/pic/pcodepeep.c,
6256         * src/pic/pcoderegs.c,
6257         * src/pic/ralloc.c,
6258         * src/pic/ralloc.h: applied patch from Slade Rich;
6259         added support for multiple code pages and multiple RAM banks on the
6260         PIC 14 port. The ASM files now no longer simply assume all the
6261         code / RAM are in the same page / bank. This means the linker can
6262         safely allocate code/RAM of separate ASM files to different pages/banks.
6263         * doc/sdccman.lyx: added Slade's tips
6264         * src/mcs51/peeph.def: fixed bug #880768
6265
6266 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6267
6268         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6269         * src/SDCCast.c (decorateType): fixed bug #880197
6270
6271 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6272
6273         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6274         getopt.h.
6275
6276         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6277         strtof is not part of C89 and isn't included with Mac OS X.
6278
6279 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6280
6281         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6282         shiftL2Left2Result): fixed bug #879326
6283         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6284         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6285         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6286         address fetch for clr instruction
6287         * device/lib/hc08/_mulint.c: created optimized assembly version
6288         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6289
6290 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6291
6292         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6293         proposed in FR #877103
6294
6295 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6296
6297         * src/SDCCval.c (cheapestVal): added missing checks
6298         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6299         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6300
6301 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6302
6303         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6304         equal operands
6305
6306 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6307
6308         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6309         loaded with the linker search paths (-L arguments) and the libraries
6310         to be linked with the current source (-l arguments). Changes
6311         currently will affect only the pic16 port.
6312         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6313         include path the port specific paths and port specific libraries,
6314         * gplink command now contains the $3 argument,
6315         * src/pic16/device.h,
6316         * src/pic16/device.c,: structure PIC_device is made public and
6317         renamed to PIC16_device, the same for variable Pics which is renamed
6318         to Pics16. Updated all references to them.
6319         * src/pic16/glue.c (pic16glue): corrected bug with code
6320         initialization which bypassed the variable initializations block.
6321
6322         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6323         COMPILE_FLAGS and added the --nostdinc option
6324
6325 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6326
6327         * device/include/mc68hc908jb8.h: Register defs for another member
6328         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6329
6330 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6331
6332         Documenting changes from previous commits.
6333         * configure.in (version 1.56),
6334         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6335         when generating output files to configure the pic16 library,
6336         but now I've commented it out, since gputils aren't installed in the
6337         SF compile farm, so library won't compile
6338
6339         * device/lib/Makefile.in (version 1.56): initially I've added in
6340         target 'all' the prerequestive 'model-pic16' so it compiled the
6341         pic16 library, but now I've commented it out for the same reasons
6342         above,
6343         * added targets 'model-pic16' and 'objects-pic16' to compile the
6344         library
6345         * added target 'port-specific-objects-pic16' to handle the
6346         generated libraries and copy them into the build/ directory
6347         * added target 'clean-intermediate-pic16' to clean intermediate
6348         files into pic16 directory
6349         * in target 'installdirs' added line to create directory pic16 in
6350         the installation path
6351
6352         * device/include/Makefile.in (version 1.11): in target 'install'
6353         added lines to copy all header files to installation path,
6354         * in target 'installdirs' added line create directory for pic16
6355         headers in the installation path
6356
6357 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6358
6359         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6360          a function call
6361
6362 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6363
6364         * configure,
6365         * device/lib/configure.in,
6366         * device/lib/configure: fixed for autoconf 2.57
6367
6368 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6369
6370         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6371         option so that it actually works. Made it specific to the z80, since
6372         the gbz80 doesn't have these kinds of I/O ports.
6373
6374 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6375
6376         * device/include/z180.h,
6377         * device/lib/_memcpy.c,
6378         * device/lib/_memmove.c,
6379         * device/lib/_mulint.c,
6380         * device/lib/ser_ir.c,
6381         * device/lib/ser_ir_cts_rts.c,
6382         * device/lib/_strcmp.c,
6383         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6384         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6385         portmode; added deprecation warning for bank= and protmode= forms.
6386         Also, guard against buffer overflow.
6387         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6388
6389 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6390
6391         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6392         changed interrupt vector table generation to only emit declared vectors.
6393         * device/include/Makefile.in: added missing backslash
6394         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6395
6396 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6397
6398         Mainly changes to support compilation of the device libraries
6399         * src/pic16/device.c: stack is allocated via symbol and not
6400         via literal number. The symbol is placed in the corresponding
6401         position of the data ram
6402         * (pic16_dump_section): relocatable and absolute uninitialized
6403         data are now emitted in sorted order to reduce section naming,
6404         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6405         weren't marked as being in the access bank,
6406
6407 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6408
6409         Added portion of GNU PIC Library under the directory
6410         device/include/pic16 and device/lib/pic16. These files
6411         contain the declarations of SFRs for the PIC18Fxx2 devices.
6412         The directory is initialized via configure from toplevel.
6413
6414 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6415
6416         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6417         the spilllocations to be compared correctly
6418
6419 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6420
6421         * src/SDCCast.c (decorateType): fixed bug introduced today
6422
6423 2004-01-12  Borut Razem <borut.razem AT siol.net>
6424
6425         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6426         doc/sdccman.lyx: upper case pragmas are deprecated
6427
6428 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6429
6430         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6431         in simpler and even better code
6432
6433 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6434
6435         * src/SDCCicode.c (operandOperation): fixed bug #874819
6436         * src/SDCCast.c (decorateType): fixed
6437         char foo (unsigned long ul) { return ul > 0; }
6438
6439 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6440
6441         * doc/sdccman.lyx: Moved and added some sections, small changes
6442         all over. Telling LaTeX to be less strict with word spacing
6443         to better keep the right margin. Changed some notes about
6444         maintainance of the ports in section 3.2.1 - is it OK like this?
6445
6446 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6447
6448         SDCC source changes:
6449         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6450         convilong): modified to inform the pic16 port that builtin functions
6451         are external
6452
6453         PIC16 PORT specific changes:
6454         * src/pic16/device.c pic16_dump_equates() added,
6455         processor registers declared internally by the port are emitted in
6456         the translation as equates,
6457         * src/pic16/gen.c: inline code is passed unprocessed to the
6458         translation,
6459         * (pic16_popGetLit2): fnuction modified to take second operand as
6460         pCodeOp pointer and not as literal,
6461         * (popRegFromIdx): prefixed with pic16_,
6462         * (pic16_popCombine2): modified to receive already allocated pCode
6463         operands,
6464         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6465         * (genFunction): initializes local stack frame and pushes on stack
6466         all the registers used by this function,
6467         * (genEndFunction): restores all registers from stack and restores
6468         stack frame,
6469         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6470         improvements,
6471         * (pic16glue): changed the program startup sequence,
6472         * added new dbName code 'A' for functions placed in absolute section
6473         * src/pic16/main.c: added function attribute _naked,
6474         * added pragma 'code' to place a fnuction at an absolute address,
6475         * added command line arguments --debug-ralloc and --pcode-verbose,
6476         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6477         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6478         * (pic16_newpCodeOpLit2): modified to take the second operand as
6479         pCodeOp pointer,
6480         * (pic16_printpBlock): modified to emit each function in a separate
6481         section,
6482         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6483         UPPER for immediate operands,
6484         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6485         instruction,
6486         * src/pic16/peeph.def: all peepholes with movff are commented out,
6487         because there is a problem in the pcode peep optimizer,
6488         * src/pic16/ralloc.c: the register allocator can now reuse local
6489         function symbols for another function. This saves register usage.
6490         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6491
6492         Added file src/pic16/NOTES with information about program writing on
6493         the current port version.
6494
6495 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6496
6497         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6498         and peephole 252 (array access)
6499
6500 2004-01-09  Borut Razem <borut.razem AT siol.net>
6501
6502         * src/SDCCmain.c : fixed #872250: -l command line defined library
6503           files are scanned before standard library files
6504
6505 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6506
6507         * src/SDCCast.c (decorateType): fixed bug #874046
6508
6509 2004-01-09  Borut Razem <borut.razem AT siol.net>
6510
6511         * support/scripts/sdcc.nsi: remove previous installation
6512
6513 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6514
6515         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6516         bytes for last interrupt vector (mcs51)
6517         * sdcc.spec: fixed typo
6518
6519 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6520
6521         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6522         gen51Code): more efficient parameter receive for --model-large
6523         ("bug" #845294)
6524
6525 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6526
6527         * src/ds390/main.c,
6528         * src/z80/main.c: added missed needLinkerScript flags (more than
6529         one port structure defined in these file)
6530         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6531         bug #795325
6532
6533 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6534
6535         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6536         * src/port.h: added flag needLinkerScript in port->linker
6537         structure to inform whether to create a .lnk file or not,
6538         * src/avr/main.c,
6539         * src/ds390/main.c,
6540         * src/hc08/main.c,
6541         * src/mcs51/main.c,
6542         * src/pic/main.c,
6543         * src/pic16/main.c,
6544         * src/xa51/main.c,
6545         * src/z80/main.c: changed appropriately to configure
6546         needLinkerScript flag
6547         * src/pic/gen.c,
6548         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6549         * src/pic/glue.c: added variable udata_section_name to
6550         override default uninitialized data segment definition for
6551         devices only with SHAREBANK memory (reported from Erik Epetrich)
6552         * (pic14emitOverlay): modified to emit a commented overlay segment
6553         directive when no overlay data exist
6554         * (picglue): modified to emit uninitialized data segment
6555         according to udata_section_name
6556         * src/pic/main.c (_pic14_parseOptions): added command line
6557         options --udata-section-name=[name] to override default
6558         udata definition name
6559         * modified _linkCmd and _asmCmd to include compiler passed
6560         arguments via -W option
6561         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6562         object file from '.rel' to '.o' in port->linker structure,
6563         changed size of fptr from 2 to 3 in port structure
6564
6565 2004-01-07  Borut Razem <borut.razem AT siol.net>
6566
6567         * support/scripts/sdcc.nsi: update PATH
6568         * support/scripts/sdcc.ico: craeted
6569
6570 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6571
6572         * device/include/Makefile.in: fix install
6573         * doc/Makefile: fix install
6574
6575 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6576
6577         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6578         in bug #860505
6579         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6580         how the function variable allocation summary is displayed; also
6581         include information about variables allocated to the overlay
6582         segment
6583
6584 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6585
6586         * as/mcs51/lkmain.c: Help about -Y option
6587         * as/mcs51/lkarea.c: Fixed gcc warnings
6588
6589 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6590
6591         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6592         fixed warning
6593         * support/valdiag/tests/overflow.c: added
6594         * src/SDCCast.c (decorateType),
6595         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6596         LEFT_OP (left shift)
6597
6598 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6599
6600         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6601         (default behaviour).
6602
6603 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6604
6605         A python script to validate compiler diagnostic messages. It can be
6606         used to verify that sdcc complains about bad c source code and
6607         gives a good location of the error.
6608         * support/valdiag/Makefile,
6609         * support/valdiag/valdiag.py,
6610         * support/valdiag/tests/*
6611
6612 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6613
6614         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6615         * src/SDCCsymt.c (newEnumType),
6616         * src/SDCCsymt.h
6617         * support/Util/SDCCerr.c,
6618         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6619         enum related bugs.
6620         * support/regression/tests/enum.c: added test for enum values that
6621         require at least 2 bytes of storage.
6622
6623 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6624
6625         * src/common.h: added ifndef/define/endif macros
6626         around the header file.
6627         Bug reported from Jesus Calvino-Fraga
6628
6629 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6630
6631         * sdcc.spec: updated
6632         * device/include/Makefile.in: don't install CVS directories
6633         * device/lib/Makefile.in: added removal of CVS directories after install
6634         * doc/Makefile: fixed install, added local_icons
6635         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6636         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6637         * src/ds390/gen.c (genRightShift): fixed bug #870788
6638         * src/SDCCast.c (decorateType): fixed bug #870781
6639
6640 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6641
6642         PIC16 port related changes:
6643         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6644         added variable stackPos,
6645
6646         * gen.c: genCall, assignResultValue: added support for
6647         pushing/retrieving function parameters to/from stack,
6648         genFunction,genEndFunction: setup stack frame for the
6649         generated function,
6650         genAddrOf: will be changed according to bug 863624
6651
6652         * added files genutils.c and genutils.h which contain gen*
6653         debugged and optimised functions extracted from gen.c
6654
6655         * glue.c: added variable 'externs' which holds extern symbols,
6656         pic16emitRegularMap: is modified to properly handle relocatable
6657          symbols under the new scheme,
6658         pic16createInterruptVect: is modified
6659         pic16printPublics: is modified to emit 'global' assembler directives,
6660         added pic16_printExterns to print extern symbols,
6661         pic16glue: initializes stack/frame pointer in the beginning of
6662         the assembly output. Temporary hack, will be corrected later,
6663         because gplink yet does not support stack and SDCC does not
6664         yet support a type of crt0.o object to create the final binary.
6665
6666         * Removed many lines that contain 8051 legacy code.
6667         * The code is finally placed under a 'code' directive.
6668         * Added port specific options.
6669
6670         * _process_pragma: simplified since now we do not need *special*
6671         include file to define SFR registers. But a separate header
6672         will be needed. This will be developed later.
6673         * _pic16_parseOptions: added, parses port specific options:
6674         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6675         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6676         --preplace-udata-with=
6677
6678         * _pic16_setDefaultOptions: modified to initialize section names,
6679         but hack is temporarly out of order since it needs improvement.
6680         * _pic16_genAssemblerPreamble: configuration words are emitted by
6681         their address instead of their name. This part is incomplete and
6682         supports only the 18Fxx2 devices. Other devices will emit an error
6683         during assembly since they do not contain the same set of config
6684         registers
6685         * _pic16_genIVT: is modified,
6686
6687         * pcode.c: added definitions for some hardware registers that are needed
6688         for stack support
6689         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6690         All PCI entries are updated. Now LFSR is supported.
6691         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6692         * added pic16_newpCodeOpLit2 to support instructions with
6693         two literal arguments
6694         * pic16_pCode2str: corrected code that emits assembler instructions
6695         with two literal operands and those that have an access bit modifier
6696         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6697         this fixes a bug which caused some labels to be lost, when an
6698         assembler directive was added, i.e. banksel,
6699         * pic16_FixRegisterBanking: improved logic that causes the insertion
6700         of bank switching,
6701         * InlineFunction: functions that are called once, are not any more
6702         inlined. This can be a port option in the future,
6703
6704         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6705
6706         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6707         hold the corresponding uninitialized symbols,
6708         * pic16_allocProcessorRegister: registers have explicit marked the
6709         accessBank field,
6710         * pic16_allocInternalRegister: registers are explicit marked as
6711         not used,
6712         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6713         processing list, so bit registers were lost,
6714         *
6715
6716         * ralloc.h: added field 'accessBank' and original symbol operand
6717         in register definition,
6718         * removed the field isMapped from register definition,
6719
6720         ** Several functions have been removed from various sources:
6721         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6722         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6723         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6724         pic16_assignRelocatableRegisters
6725
6726         ** others have been introduced:
6727         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6728         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6729
6730 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6731
6732         * support/scripts/inc2h.pl: changed definition of BIT_AT
6733         to emit 'sbit at' instead of 'bit at'. This was a request.
6734
6735         PIC16 port related preliminary changes:
6736         * gen.c: prefixed function popRegFromString with
6737         pic16_ and all references to it corrected
6738         * pcode.c: all pic16_pc_* hardware registers prefixed
6739         with underscore (_),
6740         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6741         * ralloc.c: newReg(): when register is REG_SFR then
6742         set address to rIdx,
6743         pic16_allocProcessorRegister(): marks register wasUsed=0
6744         pic16_writeUsedRegs(): added a call to assign processor
6745         registers via pic16_assignFixedRegisters
6746
6747 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6748
6749         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6750         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6751         variables in unused register banks.  Also the SSEG is placed
6752         wherever there is enough space for it, and IDATA can be anywhere
6753         in internal RAM.  For now compile using -Wl-Y[stack_size].
6754         The mem file is different for this option as well, since it
6755         makes no sense of talking about DSEG lenght.
6756
6757 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6758
6759         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6760         in certain cases, e.g. when ROM assignment, patch provided
6761         from Albert den Haan.
6762
6763 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6764
6765         Many signedness and type propagation fixes:
6766         * src/SDCCicode.c: made geniCodeCast() static
6767         replaced SPEC_ by IS_ (cosmetic)
6768         (operandOperation): fixed div and mod operation
6769         (usualBinaryConversions): added support for promotion of char
6770         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6771         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6772         (geniCodeAdd): an array index will stay unsigned, even if promoted
6773         from char to int
6774         (geniCodeArray): ditto
6775         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6776         * src/SDCCsymt.c (computeType): added more support for char;
6777         promotion of char is selectable by promoteCharToInt, fixed signedness
6778         for all cases
6779         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6780         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6781         * src/SDCCval (val*): replaced signedness calculation by
6782         computeType()
6783         rearranged if-branches (cosmetic)
6784         (valShift): added warning W_SHIFT_CHANGED
6785         (valCompare): fixed problem with different types
6786         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6787         * support/regression/tests/literalop.c: added many cases
6788         * support/regression/tests/ast_constant_folding.c: changed finally to
6789         'unsigned int'
6790         * .version: new year, new version: 2.3.7
6791         * src/SDCCmain.c (main): applied patch #866468
6792         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6793         provided by Scott Bronson
6794         * doc/sdccman.lyx: updated documentation for sdcdb
6795         updated and added chapter tips
6796
6797 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6798
6799         * src/SDCCsymt.h: missing from yesterday's commits
6800
6801 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6802
6803         * src/SDCC.y (struct_or_union_specifier),
6804         * support/Util/SDCCerr.c,
6805         * support/Util/SDCCerr.h: verify that struct & union tags are used
6806         as declared.
6807
6808 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6809
6810         * src/SDCCglobl.h: missing from yesterday's commits
6811
6812 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6813
6814         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6815         sft_attributes, struct_declaration, parameter_declaration,
6816         type_name, start_block, declaration_list),
6817         * src/SDCC.lex (check_type): support redefinition of typedef names
6818
6819 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6820
6821         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6822         aligned xdata arrays. Erik helped me with the if clause.
6823
6824 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6825
6826         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6827         warning
6828
6829 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6830
6831         * src/SDCCast.h,
6832         * src/SDCCast.c (newAst_),
6833         * src/SDCCicode.h,
6834         * src/SDCCicode.c (ast2iCode, newiCode),
6835         * src/SDCCglobl.h,
6836         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6837         expr, statement, expression_statement, selection_statement,
6838         iteration_statement, expr_opt, jump_statement): foundation for tracking
6839         sequence points
6840         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6841         point code too)
6842
6843 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6844
6845         * support/Util/SDCCerr.c,
6846         * src/SDCCast.h,
6847         * src/SDCCast.c (createCase, createDefault, decorateType),
6848         * src/SDCClabel.c (labelUnreach),
6849         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6850         to error messages.
6851         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6852         (with thanks to Stas Sergeev)
6853         * device/include/time.h,
6854         * device/lib/time.c (CheckTime): suppress unreachable code warning
6855
6856 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6857
6858         * src/SDCCast.c (createIvalCharPtr),
6859         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6860         bug #753752)
6861         * support/regression/tests/nullstring.c: tests for these two bugs
6862
6863 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6864
6865         * support/Util/SDCCerr.h,
6866         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6867         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6868         about storage class and 'at' used inside struct or union
6869         * src/SDCCBBlock.c (iCodeFromeBBlock),
6870         * src/SDCCcse.c (ifxOptimize),
6871         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6872         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6873         printIval, emitStaticSeg, emitOverlay),
6874         * src/SDCClabel.c (deleteIfx),
6875         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6876         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6877         gatherAutoInit, processParms),
6878         * support/Util/SDCCerr.h,
6879         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6880         reporting for post-parse errors.
6881
6882 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6883
6884         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6885         implicit casts via union; they don't work on big endian systems
6886         (possible fix for bug #861138)
6887
6888 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6889
6890         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6891         * src/mcs51/main.c: fixed the fix for bug #737001
6892
6893 2003-12-15  Borut Razem <borut.razem AT siol.net>
6894
6895         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6896
6897 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6898
6899         * support/makebin/makebin.c: put output in binary mode
6900
6901 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6902
6903         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6904         xdata and data memory on startup. Set the environment variable
6905         SDCC_NOGENRAMCLEAR to disable this.
6906         * src/mcs51/peephole.def,
6907         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6908         (allows non-interrupt and interrupt code to safely compete for a resource
6909         without the non-interrupt code having to disable interrupts)
6910
6911 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6912
6913         * src/SDCCicode.c (geniCodeAdd),
6914         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6915         with valFromType if type might be a pointer and host is big endian).
6916         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6917         types, not just integer types.
6918         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6919         multiply defined with mismatching "at" address.
6920
6921 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6922
6923         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6924         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6925         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6926         with embedded nulls (fixed bug #753752)
6927
6928 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6929
6930         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6931         Apparently this did not see much testing (endless loop)
6932
6933 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6934
6935         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6936
6937 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6938
6939         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6940         gracefully handle NULL memmap pointers
6941
6942 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6943
6944         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6945         instead of deleting the iCode when an operand is volatile
6946         * src/z80/gen.c (genDummyRead),
6947         * src/mcs51/gen.c (genDummyRead),
6948         * src/ds390/gen.c (genDummyRead),
6949         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6950         not just IC_RIGHT
6951         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6952         * src/SDCC.y: fixed bug #850420
6953
6954 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6955
6956         Applied z80 i/o port patch from Peter Townson and fixed some operators
6957         to better handle operands in A register.
6958         * device/include/z180.h
6959         * src/SDCC.y
6960         * src/SDCCglue.c
6961         * src/z80/gen.c
6962         * src/z80/gen.h
6963         * src/z80/main.c
6964         * src/z80/peeph-z80.def
6965         * src/z80/peeph.def
6966         * src/z80/z80.h
6967
6968 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6969
6970         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6971
6972 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6973
6974         * device/lib/hc08/_mullong.c: Removed extra #endif
6975
6976 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6977
6978         * sim/ucsim/hc08.src/inst.cc,
6979         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6980         carries from x to h
6981         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6982         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6983         * device/include/stdarg.h: fixed varargs for hc08
6984         * device/lib/Makefile.in,
6985         * device/lib/hc08/Makefile,
6986         * device/lib/hc08/_mulint.c,
6987         * device/lib/hc08/_mullong.c: fixed some endian problems
6988
6989 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6990
6991         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6992         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6993         * device/lib/_gptrget.c,
6994         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6995
6996 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6997
6998         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6999         * src/SDCCast.c (astErrors): fixed bug #846007
7000         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7001
7002 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7003
7004         * src/SDCCast.c (decorateType): disabled a transformation I added in
7005         revision 1.188 (access to fields of a structure at an absolute address);
7006         it breaks with bitfields, extern declarations, and gcse analysis.
7007         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7008         could be assigned through a pointer, so don't complain.
7009         * src/SDCCast.c (astErrors),
7010         * src/SDCCast.h,
7011         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7012
7013 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7014
7015         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7016         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7017         output of __config directives, since gpasm now supports them
7018         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7019         pre-processor macro, i.e. -DMCU=p18f452
7020         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7021         and modified to handle 'cast' icode similarly to '=' icode
7022         * src/pic16/device.h (typedef struct PIC_device): added field
7023         'extMIface' to indicate that chip has external memory interface
7024         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7025         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7026         18F8720
7027
7028 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         * src/SDCC.y (pointer): fixed bug #846006
7031         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7032         * src/SDCCast.c (decorateType): fixed bug #846009
7033         * src/ds390/peeph.def,
7034         * src/ds390/gen.c (genAnd, genOr),
7035         * src/mcs51/peeph.def,
7036         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7037
7038 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7039
7040         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7041         * src/SDCCdflow.c
7042         * src/SDCCcse.c
7043         * src/SDCCcse.h
7044         * src/SDCCBBlock.h
7045         * src/SDCCBBlock.c
7046
7047 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7048
7049         fixed bug #845089
7050         * src/SDCCbitv.h,
7051         * src/SDCCbitv.c: added function to free a bitvector
7052         * src/SDCClrange.h,
7053         * src/SDCClrange.c: added function to recompute the liveranges
7054         * src/avr/ralloc.c,
7055         * src/ds390/ralloc.c,
7056         * src/hc08/ralloc.c,
7057         * src/mcs51/ralloc.c,
7058         * src/pic/ralloc.c,
7059         * src/pic16/ralloc.c,
7060         * src/xa51/ralloc.c,
7061         * src/z80/ralloc.c: recompute the liveranges after register packing
7062
7063 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7064
7065         * src/SDCCloop.c (newInduction): fixed bug #845630
7066
7067 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7068
7069         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7070         inadvertantly left behind from my 2003-11-12 change
7071
7072 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7073
7074         Updated headers I neglected to commit yesterday.
7075         * src/SDCClrange.h,
7076         * src/SDCCicode.h
7077
7078 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7079
7080         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7081         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7082         * src/SDCCopt.c (eBBlockFromiCode),
7083         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7084         the creation of the key hash table from the sequencing so it can be used
7085         earlier (for some GCSE bug fixes still pending)
7086
7087 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7088
7089         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7090         * support/regression/tests/addsub.c: testing genPlus shortcut
7091
7092 2003-11-15  Borut Razem <borut.razem AT siol.net>
7093
7094         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7095
7096 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7097
7098         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7099         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7100         ordering is immaterial.
7101         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7102
7103 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7104
7105         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7106         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7107         (SIGSEV) of bug #840381
7108         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7109         unlink new file before rename if new and old filenames are the same)
7110
7111 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7112
7113         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7114         uninitialized variables) for the mcs51. Set environment variable
7115         SDCC_GENRAMCLEAR to test.
7116         xdata initialization slightly shorter
7117
7118 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7119
7120         * src/SDCCsymt.h,
7121         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7122         #838241 & 780691 (basicly the same bug)
7123         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7124         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7125
7126 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7127
7128         * src/SDCCmain.c (linkEdit): "fix" #834252
7129
7130 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7131
7132         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7133         * src/SDCCast.h,
7134         * src/SDCC.y: fixed bug #819403
7135
7136 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7137
7138         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7139         the reentrant attribute.
7140         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7141         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7142         simulation
7143         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7144         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7145         erroneously reduced to a literal.
7146         * src/hc08/ralloc.c (packRegisters, rematStr),
7147         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7148         some cases
7149
7150 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7151
7152         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7153         * doc/sdccman.lyx: changed from 'article' to 'book'
7154         * doc/Makefile: readded test_suite_spec and cdbfileformat
7155
7156 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7157
7158         * device/include/stdlib.h: include malloc.h to comply with ANSI
7159         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7160
7161 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7162
7163         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7164         * doc/clean.mk: also remove *.out files
7165         * doc/sdccman.lyx: some additions, larger top/bottom margins
7166
7167 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7168
7169         * src/SDCC.y: fixed bug #837365
7170         * support/regression/tests/bitopcse.c
7171         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7172         a symbol (might be valop instead)
7173         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7174         * device/lib/clean.mk: added hc08 to the cleaning list
7175
7176 2003-11-04  Borut Razem <borut.razem AT siol.net>
7177
7178         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7179           made 2003-11-04
7180         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7181           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7182           malloc is declared in standard stdlib.h
7183
7184 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7185
7186         * device/lib/hc08/Makefile: need to clean .rel not .o files
7187         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7188
7189 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7190
7191         * src/port.h,
7192         * src/hc08/main.c,
7193         * src/mcs51/main.c,
7194         * src/ds390/main.c,
7195         * src/z80/main.c,
7196         * src/avr/main.c,
7197         * src/pic/main.c,
7198         * src/pic16/main.c,
7199         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7200         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7201         tests (which uses the port's oclsExpense function)
7202         * src/SDCC.y,
7203         * src/SDCCast.c,
7204         * src/SDCCicode.c,
7205         * src/hc08/gen.c,
7206         * src/ds390/gen.c,
7207         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7208
7209 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7210
7211         * src/SDCCcse.c (ifxOptimize),
7212         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7213         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7214         deleting the IFX iCode.
7215         * src/hc08/ralloc.c: reduced unneeded slocs
7216         * src/hc08/gen.c: fixed bug in asmopToBoolean
7217
7218 2003-11-04  Borut Razem <borut.razem AT siol.net>
7219
7220         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7221           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7222           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7223           transferred to configure
7224
7225 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7226
7227         Use headers defined in the C[++] standards:
7228         * sim/ucsim/gui.src/serio.src/fileio.cc
7229         * sim/ucsim/gui.src/serio.src/frontend.cc
7230         * sim/ucsim/gui.src/serio.src/main.cc
7231         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7232         * support/Util/NewAlloc.c
7233         * as/hc08/lklibr.c
7234         * as/mcs51/lklibr.c
7235         * as/z80/aslist.c
7236         * as/z80/assym.c
7237
7238 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7239
7240         * Added MSVC projects for hc08 assembler and linker:
7241         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7242         /as/hc08/link_hc08.dsp
7243
7244 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7245
7246         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7247
7248 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7249
7250         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7251
7252 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7253
7254         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7255
7256 2003-10-31  Borut Razem <borut.razem AT siol.net>
7257
7258         * support/cpp2/cpplib.h,
7259           support/cpp2/cpplib.c,
7260           support/cpp2/cpplex.c,
7261           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7262           to switch _asm block preprocessing on / off. Default is
7263           #pragma preproc_asm +
7264
7265 2003-10-31  Borut Razem <borut.razem AT siol.net>
7266
7267         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7268           when outputting comment blocks (when executed with -C option) and
7269           _asm (SDCPP specific) blocks
7270
7271 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7272
7273         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7274
7275 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7276
7277         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7278
7279 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7280
7281         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7282         * src/SDCCast.c (decorateType): fixed bug #832664
7283
7284 2003-10-31  Borut Razem <borut.razem AT siol.net>
7285
7286         * support\cpp2\cpplex.c: fixed for SDCPP:
7287           comments(when executed with -C option) and _asm blocks
7288           were included even if they where in skipped #if block.
7289           Applied solution from GCC cpp 3.3.2
7290
7291 2003-10-31  Borut Razem <borut.razem AT siol.net>
7292
7293         * src/SDCC.lex: sdcc now understands both formats:
7294           '# <line_number> <file_name>' and
7295           '#line <line_number> <file_name>'
7296         * support/cpp2/cppmain.c: sdcpp now generates the standard
7297           '# <line_number> <file_name>' instead of former
7298           '#line <line_number> <file_name>'
7299
7300 2003-10-30  Borut Razem <borut.razem AT siol.net>
7301
7302         * support/cpp2/cpphash.h,
7303         * support/cpp2/cpplib.h
7304         * support/cpp2/cpplex.c,
7305         * support/cpp2/cppmain.c,
7306         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7307
7308 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7309
7310         Fixed a number of problems revealed by bug #827883.
7311         * src/SDCCloop.c (loopInvariants): Spill location of the
7312         result operand should be recomputed if extracted from
7313         a loop. Also, don't extract assignments of an iTemp
7314         from a literal.
7315         * src/SDCCast.c (isConformingBody): loop reversal should
7316         not occur if the control variable is involved with a
7317         relational operator.
7318
7319 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7320
7321         * .version: bumped to 2.3.6 to reflect the big improvements
7322         made by Erik and Klaus. Thanks!
7323
7324 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7325
7326         Replaced the livrange code.
7327         * src/SDCClrange.c: added new LR code
7328         * src/SDCCloop.c,
7329         * src/SDCCBBlock.h: removed remainig parts from old LR code
7330         * src/ds390/ralloc.c,
7331         * src/ds390/gen.c: minor fixes to make it work with new code
7332
7333 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7334
7335         * as/hc08/asm.h,
7336         * as/hc08/lkrloc.c,
7337         * src/hc08/gen.c,
7338         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7339         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7340         (tweaked fix for bug #818696)
7341
7342 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7343
7344         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7345
7346 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7347
7348         * src/SDCCmain.c,
7349         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7350         * src/mcs51/gen.c (gencjneshort),
7351         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7352         more efficient (per Scott Bronson's suggestion)
7353
7354 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7355
7356         Extended the semantics of the critical keyword to include
7357         individual statements. See RFE #827755 and #799831
7358         * src/SDCC.y
7359         * src/SDCCicode.c
7360         * src/SDCCopt.c
7361         * src/SDCCast.c
7362         * support/Util/SDCCerr.c
7363         * support/Util/SDCCerr.h
7364         * src/mcs51/gen.c
7365         * src/ds390/gen.c
7366         * src/hc08/gen.c
7367
7368 2003-10-19  Borut Razem <borut.razem AT siol.net>
7369
7370         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7371
7372 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7373
7374         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7375         Fixed bug #818696
7376         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7377         and predecrement operand is displayed
7378
7379 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7380
7381         * src/SDCCval.c (valMinus): fixed bug #826041
7382
7383 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7384
7385         Some hc08 related updates that I missed earlier
7386         * sim/ucsim/stypes.h
7387         * support/regression/ports/hc08/spec.mk
7388
7389 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7390
7391         New target "hc08" for the Motorola 68hc08 family of micros
7392
7393         * configure
7394         * configure.in
7395         * Makefile
7396         * src/hc08/*
7397         * src/SDCCmain.c
7398         * src/port.h
7399         * sim/ucsim/hc08.src/*
7400         * sim/ucsim/configure.in
7401         * src/ucsim/configure
7402         * sim/ucsim/packages_in.mk
7403         * as/hc08/*
7404         * as/Makefile
7405         * device/include/mc68hc908qy.h
7406         * device/lib/hc08/*
7407         * device/lib/Makefile.in
7408         * support/regression/ports/hc08/*
7409         * support/regression/Makefile
7410
7411 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7412
7413         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7414         regression test
7415         * src/ds390/gen.c (genCast): fixed bug #821957
7416
7417 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7418
7419         * device/lib/logf.c: "fixed" overlay bug
7420         * support/regression/ports/host/spec.mk: added m library
7421         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7422         * support/regression/tests/float_trans: added (for Eric)
7423
7424 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7425
7426         * src/mcs51/gen.c (genCpl): fixed bug
7427         http://sf.net/mailarchive/message.php?msg_id=6263915
7428
7429 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7430
7431         * src/SDCCast.c (decorateType): added extended constant folding
7432         * src/SDCCsymt.c (computeType): cleanup
7433         * src/SDCCval.c (valShift): minor optimization
7434         * support/regression/tests/ast_constant_folding.c: added
7435
7436 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7437
7438         * src/SDCCmain.c: removed some unintended changes
7439
7440 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7441
7442         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7443         * src/z80/gen.c: fixed part of bug #817589
7444         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7445
7446 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7447
7448         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7449         * src/SDCCcflow.c
7450         * src/SDCCcse.c
7451         * src/SDCCdflow.c
7452         * src/SDCClabel.c
7453         * src/SDCClrange.c
7454         * src/SDCCmem.c
7455         * src/SDCCopt.c
7456         * src/SDCCpeeph.c
7457         * src/SDCCset.c
7458         * src/avr/ralloc.c
7459         * src/ds390/ralloc.c
7460         * src/izt/ralloc.c
7461         * src/mcs51/ralloc.c
7462         * src/pic/ralloc.c
7463         * src/pic16/ralloc.c
7464         * src/xa51/ralloc.c
7465         * src/z80/ralloc.c
7466         * src/z80/gen.c: removed unused label "release:"
7467
7468 2003-10-06  Borut Razem <borut.razem AT siol.net>
7469
7470         * src/SDCC.lex: removed definition of unused variables
7471           save_optimize and save_options
7472
7473 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7474
7475         * clean.mk: removed '=' in "-maxdepth=1"
7476         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7477         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7478
7479 2003-10-06  Borut Razem <borut.razem AT siol.net>
7480
7481         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7482           my_unput() replaced by unput()
7483
7484 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7485
7486         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7487         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7488         type-punned pointer will break strict-aliasing rules"
7489         Old LR behaviour is again default; Klaus' LR can be choosen by
7490         defining the environment variable LRKLAUS
7491         * src/SDCCBBlock.h
7492         * src/SDCCloop.c
7493         * src/SDCClrange.c
7494         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7495         * clean.mk: fixed removal of files in bin/CVS/
7496         * device/lib/clean.mk: fixed removal of directories small and large
7497         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7498         * src/SDCCicode.c,
7499         * src/SDCCval.c: removed superflous test for pedantic
7500
7501 2003-10-05  Borut Razem <borut.razem AT siol.net>
7502
7503         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7504           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7505           message "unmatched #pragma SAVE and #pragma RESTORE"
7506
7507 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7508
7509         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7510           assembly, critical functions, atomic, nojtbound)
7511
7512 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7513
7514         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7515         * src/SDCCBBlock.h
7516         * src/SDCCloop.c
7517         * src/SDCCloop.h
7518         * src/SDCClrange.c
7519
7520 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7521
7522         * src/z80/gen.h,
7523         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7524         * src/mcs51/gen.h
7525         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7526         * src/ds390/gen.h
7527         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7528         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7529         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7530
7531 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7532
7533         * src/z80/gen.c (genRet): fixed bug #524753
7534         * src/z80/gen.c (genCast): fixed internal error on cast from
7535         pointer to long
7536         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7537         fix for bug #477835 to the z80
7538         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7539         for tracking iCodes in the peephole optimizer for z80
7540
7541 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7542
7543         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7544         the other part of bug #814548
7545         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7546
7547 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7548
7549         * src/SDCCcse.c: fixed part of bug #814548
7550
7551 2003-09-28  Borut Razem <borut.razem AT siol.net>
7552
7553         * src/asm.c: rewrite of printILine() to use temporary file instead
7554           a pipe
7555         * src/xa51/main.c: commented out declaration of int rewinds
7556
7557 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7558
7559         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7560
7561 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7562
7563         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7564         * src/asm.c (printILine): Fixed bug #811015
7565
7566 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7567
7568         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7569         freeing.
7570
7571 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7572
7573         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7574         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7575         to correctly handle general case of AOP_PAIRPTR
7576         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7577
7578 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7579
7580         * src/mcs51/ralloc.c (fillGaps),
7581         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7582         register positioning bug)
7583
7584 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7585
7586         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7587
7588 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7589
7590         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7591         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7592         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7593         (ralloc doesn't intentionally do this now, but perhaps later)
7594         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7595         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7596         register positioning bugs (Fixed bug #762602 and #795325)
7597         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7598         (Fixed bug #808779)
7599         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7600         lines that --i-code-in-asm generates
7601
7602 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7603
7604         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7605         trying to fclose a FILE* that was already closed.
7606
7607 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7608
7609         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7610         of const struct should be treated as if const themselves)
7611
7612 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7613
7614         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7615
7616 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7617
7618         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7619         Unix (/n) and DOS (/r/n) line terminations.
7620
7621 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7622
7623         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7624         bug #613775
7625
7626 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7627
7628         * src/mcs51/gen.c (genFunction, genEndFunction),
7629         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7630         and restore of EA so that stack offsets to parameters are
7631         correct when using both critical and reentrant/stack-auto.
7632         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7633         size (can be triggered in error if sloc is shared between
7634         different sized objects)
7635         * device/include/float.h: fixed macros to explicitly use
7636         unsigned long where needed
7637
7638 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7639
7640         Feature req. 799831: added code to allow nesting of critical functions
7641         * src/mcs51/gen.c (genFunction, genEndFunction)
7642         * src/ds390/gen.c (genFunction, genEndFunction)
7643
7644 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7645
7646         * src/SDCCsymt.c (sclsFromPtr),
7647         * src/SDCCsymt.h,
7648         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7649         support for standard C idiom of memory mapped variables; for
7650         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7651         to xdata int at 0x1234 tempvar = 1.
7652         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7653         provided by Akiya ISHIDA
7654
7655 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7656
7657         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7658         * src/SDCCval.c (constVal): added reduction from int to char
7659         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7660         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7661         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7662         to ignore the sign
7663         * support/regression/tests/shifts.c: fixed
7664
7665 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7666
7667         * src/z80/gen.c (genXor): Fixed bug #805445
7668
7669 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7670
7671         Fixed bug #621531 (const & volatile confusion in the type chain).
7672         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7673         refer to the const or volatile state of the pointer itself.
7674
7675         * src/SDCCast.c
7676         * src/SDCCglue.c
7677         * src/SDCCicode.c
7678         * src/SDCCsymt.c
7679         * src/SDCCval.c
7680         * src/SDCC.y
7681         * src/SDCCsymt.h
7682         * src/pic/gen.c
7683         * src/pic/ralloc.c
7684         * src/pic16/gen.c
7685         * src/pic16/ralloc.c
7686         * support/regression/tests/const.c
7687
7688 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7689
7690         When checking for duplicated modules, use absolute paths
7691         instead of relative paths.  Files changed:
7692
7693         * as/mcs51/lklib.c
7694         * link/z80/lklib.c
7695
7696 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7697
7698         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7699
7700 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7701
7702         * device/include/string.h: added size_t typedef, changed
7703         prototypes to use size_t, eliminated separate reentrant and
7704         non-reentrant declarations, added _memmove declaration
7705         * device/lib/_memcpy.c: changed to use size_t instead of int,
7706         changed /4 to >>2 to avoid division library call
7707         * device/lib/_memcmp.c,
7708         * device/lib/_memset.c,
7709         * device/lib/_strncat.c,
7710         * device/lib/_strncpy.c,
7711         * device/lib/_strncmp.c: changed to use size_t instead of int
7712         * device/lib/_memmove.c: new file (fixed bug #772294)
7713         * device/lib/Makefile.in: added _memmove.c
7714         * device/lib/z80/asm_strings.s: fixed bug #772290
7715         * support/regression/tests/bitfields.c: attempt to fix host assertion
7716         failure on amd64-unknown-linux2.2
7717
7718 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7719
7720         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7721         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7722         * as/z80/asmain.c (main): fixed bug #801766
7723
7724 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7725
7726         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7727         compilers
7728
7729 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7730
7731         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7732         reported in bug #800609
7733
7734 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7735
7736         * Top header beautifications in src/pic16 directory:
7737           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7738           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7739           pcoderegs.h, ralloc.c, ralloc.h
7740         * main.c: added top header and GPL license notice
7741         * pcode.c: fixed the if-conditional warning
7742
7743 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7744
7745         * device/lib/_mullong.c: replaced int by short for gcc
7746
7747 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7748
7749         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7750         and JUMPTABLE iCodes properly now (worked by accident before)
7751         * src/mcs51/gen.c (leftRightUseAcc),
7752         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7753         iCode properly now. Use getSize instead of nRegs since a & b
7754         aren't part of the nRegs tally.
7755
7756 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7757
7758         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7759         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7760           before instructions that use the _STATUS register
7761
7762 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7763
7764         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7765         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7766         fetching of the pointer
7767         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7768         copied from genNearPointerSet()
7769         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7770         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7771         If they pop r0/r1 they must be called in the opposite order than aopOp().
7772         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7773         (resp. --stack-auto), prepared for --xstack
7774
7775 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7776
7777         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7778
7779 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7780
7781         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7782         these ports have their own __sdcc_external_start()
7783
7784 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7785
7786         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7787         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7788         type for bits was changed. It resulted in bit variables becoming
7789         global, which is not permitted in PIC 14 assembly output.
7790
7791 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7792
7793         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7794
7795 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7796
7797         Z80 and MCS51 linkers complaint if a public symbol is defined
7798         in more than one library module:
7799
7800         * as/mcs51/lklib.c
7801         * link/z80/lklib.c
7802         * as/mcs51/Makefile.in
7803
7804 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7805
7806         A few small changes that speed up the peephole optimizer.
7807
7808         * src/SDCCpeeph.c
7809
7810 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7811
7812         Try to make the peephole optimizer smarter by maintaining
7813         an association between the assembly source code and the
7814         iCodes that originated them. Put this information to use
7815         with a new peephole rule condition "notVolatile" so that
7816         the rules can be aggressive yet still safe.
7817
7818         * src/SDCCpeeph.c
7819         * src/SDCCpeeph.h
7820         * src/mcs51/gen.c
7821         * src/mcs51/peeph.def
7822
7823 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7824
7825         Fixed bug #741761
7826
7827         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7828         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7829         if the left or right operand symbols have the accuse flag set.
7830
7831 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7832
7833         Changed the type of the result of the ! (NOT) operator to char;
7834         previously it returned the same type as the source. This allows
7835         us to eliminate all the genFloatNot functions (all of its target
7836         implementations were very buggy) since !float can use the same
7837         code as !long now.
7838
7839         * src/SDCCicode.c (ast2iCode): ! returns char
7840         * src/mcs51/gen.c (genNot, genNotFloat),
7841         * src/ds390/gen.c (genNot, genNotFloat),
7842         * src/z80/gen.c (genNot, genNotFloat),
7843         * src/pic/gen.c (genNot, genNotFloat),
7844         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7845
7846 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7847
7848         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7849         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7850            during interrupts. Ensure WSAVE is located at a shared bank address.
7851         2. Fixed page selection in some places
7852         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7853            the registers name strings.
7854         4. Fixed "signed / unsigned compare" compiler warnings.
7855         5. The PIC port manages its own allocation of the general purpose
7856            registers, but makes no attempt to reuse them. As a result when
7857            compiling it soon runs out of general purpose registers. Some
7858            additional code was added to the files pcode.c and device.c to walk
7859            through the function call tree and rename the registers so that they
7860            get reused.
7861
7862         * src/pic/device.c
7863         * src/pic/gen.c
7864         * src/pic/glue.c
7865         * src/pic/pcode.c
7866         * src/pic/pcode.h
7867         * src/pic/ralloc.c
7868         * src/pic/ralloc.h
7869         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7870         genPlus() & genMinus() when the result is the same as left or right
7871
7872 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7873
7874         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7875
7876 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7877
7878         Made bitfield a distinct type from bit so that bitfields
7879         convert as per ANSI C and bits retain their traditional
7880         boolean style behaviour. Implemented bitfield support in
7881         the z80 port.
7882
7883         * src/SDCCsymt.h,
7884         * src/SDCCsymt.c,
7885         * src/SDCCast.c,
7886         * src/cdbFile.c,
7887         * src/mcs51/gen.c,
7888         * src/ds390/gen.c: bit v bitfield split
7889         * src/z80/gen.c: New support for bitfields
7890         * support/regression/tests/bitfields.c: reenabled z80,
7891         added more tests
7892
7893 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7894
7895         Rules 246.x, 247.x relate to bitfields, the others speed up
7896         access to xdata mapped I/O devices.
7897
7898         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7899
7900 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7901
7902         Cleaned up genPackBits and genUnpackBits and added two helper
7903         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7904         for literal assignments in genPackBits (thanks to Frieder for
7905         reminding me).
7906
7907         * src/mcs51/gen.c
7908         * src/ds390/gen.c
7909
7910 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7911
7912         Fixed bug #748310 (pointer to function type mishandled when the
7913         function name is omitted). Also fixed a SIGSEGV when a function
7914         attribute (reentrant, etc) is used on a non-function or on a
7915         function but misplaced before the parameter list.
7916
7917         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7918         bug #748310
7919         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7920         * support/Util/SDCCerr.h,
7921         * support/Util/SDCCerr.c: Added func attr misuse error msg
7922
7923 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7924
7925         Fixed bug #787649 by anonymous
7926         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7927         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7928
7929 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7930
7931         Fixed numerous bitfield problems.
7932
7933         * src/SDCC.y: More bitfield related error checking
7934         * src/SDCCsymt.h,
7935         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7936         * support/Util/SDCCerr.h,
7937         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7938         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7939         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7940         * support/regression/tests/bitfields.c: tests added
7941
7942 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7943
7944         Made the constant following the "interrupt" keyword optional. If
7945         omitted, the function will not automatically be given an entry
7946         in the interrupt vector table (similar to #pragma NOIV, but
7947         less syntacticly kludgy). The interrupt number is also now
7948         range checked. Also fixed a bug in the high order bit example
7949         in the manual.
7950
7951         * src/SDCC.y
7952         * src/SDCCmem.c
7953         * src/SDCCglue.c
7954         * src/SDCCsymt.h
7955         * support/Util/SDCCerr.c
7956         * support/Util/SDCCerr.h
7957         * doc/sdccman.lyx
7958
7959 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7960
7961         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7962         * src/SDCCicode.c (operandOperation): rewritten some ops
7963         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7964         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7965         other type
7966         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7967         be re-activated by defining REDUCE_LITERALS)
7968         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7969         unsigned, but are signed by default
7970         * src/SDCCval.c (constVal): rearranged
7971         * src/SDCCval.c (valMod): preliminary fix
7972         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7973         * support/regression/literalop.c: added, work in progress
7974
7975 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7976
7977         Generate warnings for useless declarations like "char data;"
7978         that don't do what new users expect.
7979
7980         * src/SDCC.y
7981         * support/Util/SDCCerr.h
7982         * support/Util/SDCCerr.c
7983
7984 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7985
7986         * src/SDCCval.c (valMult): fix overflow detection of negative int
7987
7988 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7989
7990         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7991
7992         Changes to support big endian targets:
7993
7994         * src/ports.h
7995         * src/SDCCglue.c
7996         * src/avr/main.c
7997         * src/ds390/main.c
7998         * src/izt/i186.c
7999         * src/mcs51/main.c
8000         * src/pic/main.c
8001         * src/pic16/main.c
8002         * src/xa51/main.c
8003         * src/z80/main.c
8004
8005 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8006
8007         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8008         * device/lib/time.c: fixed warning "integer overflow in expression"
8009
8010 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8011
8012         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8013         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8014         constants are unsigned; added recognition of "u" flag for unsigned
8015         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8016         * src/SDCCval.c (valDiv, valMod): fixed signdness
8017         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8018         signedness of modulo, left and right shift
8019         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8020         * support/Util/SDCCerr.h: added warning W_INT_OVL
8021         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8022         * src/SDCCast.c (ast_print): improved output of constants
8023
8024 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8025
8026         Fixed some warnings when building with MSVC:
8027
8028         * as\mcs51\asdata.c
8029         * as\z80\asdata.c
8030         * as\mcs51\asm.h
8031         * as\z80\asm.h
8032         * link\z80\aslink.h
8033         * link\z80\lkdata.c
8034         * link\z80\lkeval.c
8035         * link\z80\lkgb.c
8036         * link\z80\lkihx.c
8037         * link\z80\lks19.c
8038         * link\z80\lksym.c
8039         * support\cpp2\cpplib.c
8040         * src\ds390\gen.c
8041         * src\mcs51\gen.c
8042
8043 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8044
8045         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8046
8047 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8048
8049         * support\librarian\clean.mk: Do not remove Makefile.
8050         * support\librarian\Makefile: added.
8051
8052 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8053
8054         Added librarian to MSVC build:
8055         * all.dsp
8056         * sdcc.dsw
8057         * support\librarian\librarian.dsp
8058
8059         'configure' not needed for librarian, removed:
8060         * support\librarian\configure
8061         * support\librarian\configure.in
8062         * support\librarian\config_in.h
8063         * support\librarian\Makefile.in
8064
8065         Hopefully these ones built the librarian and the rest of sdcc properly:
8066         * Makefile
8067         * Makefile.common.in
8068
8069         Messed up 'configure', so revert to previous version:
8070         * configure
8071         * configure.in
8072
8073 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8074
8075         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8076         there, while the mantissa of a double is "only" 53 bits wide.
8077
8078 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8079
8080         Adding sdcclib to the build.  MSVC project coming soon.
8081         Files added/changed:
8082
8083         * support\librarian\clean.mk
8084         * support\librarian\configure
8085         * support\librarian\configure.in
8086         * support\librarian\config_in.h
8087         * support\librarian\Makefile.bcc
8088         * support\librarian\Makefile.in
8089         * support\librarian\sdcclib.c
8090         * Makefile.bcc
8091         * Makefile
8092         * Makefile.common.in
8093         * configure
8094         * configure.in
8095
8096 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8097
8098         Linker now complaints if linked modules have conflicting options, for
8099         example, one compiled using --model-large and another one compiled with
8100         --model-small.  The following files were modified:
8101
8102         * as\mcs51\asdata.c
8103         * as\mcs51\aslink.h
8104         * as\mcs51\asm.h
8105         * as\mcs51\asmain.c
8106         * as\mcs51\asout.c
8107         * as\mcs51\i51pst.c
8108         * as\mcs51\lkdata.c
8109         * as\mcs51\lklibr.c
8110         * as\mcs51\lkmain.c
8111         * as\z80\asdata.c
8112         * as\z80\asm.h
8113         * as\z80\asmain.c
8114         * as\z80\asout.c
8115         * as\z80\z80pst.c
8116         * link\z80\aslink.h
8117         * link\z80\lkdata.c
8118         * link\z80\lklibr.c
8119         * link\z80\lkmain.c
8120         * src\SDCCglue.c
8121
8122 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8123
8124         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8125         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8126
8127 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8128
8129         * src/z80/mappings.i: fix _mul[us][int,long] entries
8130
8131 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8132
8133         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8134
8135 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8136
8137         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8138         * support/regression/tests/bitopcse.c: added
8139         fixed warning:
8140         * src/avr/gen.c:
8141         * src/pic/gen.c:
8142         * src/pic16/gen.c:
8143         * src/z80/gen.c:
8144         * src/xa51/gen.c:
8145
8146 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8147
8148         added support for new library format to z80, gbz80 linkers:
8149         *link/z80/aslink.h
8150         *link/z80/lklex.c
8151         *link/z80/lklib.c
8152         *link/z80/lklist.c
8153
8154 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8155
8156         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8157         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8158
8159 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8160
8161         added DUMMY_READ_VOLATILE:
8162         * src/SDCC.y:
8163         * src/avr/gen.c:
8164         * src/xa51/gen.c:
8165         * src/z80/gen.c:
8166         * src/pic/gen.c:
8167         * src/pic16/gen.c:
8168         * src/mcs51/gen.c:
8169         * src/ds390/gen.c:
8170         * src/SDCCcse.c (algebraicOpts): many improvements
8171         * src/SDCCcse.h: removed algebraicOpts()
8172         * src/SDCCicode.c (picDummyRead): added
8173
8174 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8175
8176         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8177         "Insufficient space in data memory".
8178
8179 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8180
8181         * src/mcs51/gen.c: fixed bug #771358
8182         * src/z80/gen.c: fixed bug #759087
8183
8184 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8185
8186         * src/pic16/glue.c: minor cleanup by Vangelis
8187
8188 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8189
8190         * device/include/regc515c.h: fixed #758477
8191         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8192         * device/lib/_gptrput.c: saved a few bytes
8193         * my tab spacing is 8, yours too?)
8194         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8195         * device/lib/serial.c: process RX bytes earlier than TX bytes
8196         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8197
8198 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8199
8200         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8201
8202 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8203
8204     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8205
8206 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8207
8208         * device/lib/Makefile.in: bad fix, reverted to 1.43
8209
8210 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8211
8212         * device/lib/Makefile.in: added missing z80 object files
8213
8214 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8215
8216         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8217         pic16 progress by Vangelis:
8218         * src/SDCCglobl.h:
8219         * src/SDCCmain.c:
8220         * src/pic/Makefile:
8221         * src/pic:
8222         * pic/Makefile:
8223         * pic16/device.c:
8224         * pic16/device.h:
8225         * pic16/gen.c:
8226         * pic16/gen.h:
8227         * pic16/genarith.c:
8228         * pic16/glue.c:
8229         * pic16/main.c:
8230         * pic16/pcode.c:
8231         * pic16/pcode.h:
8232         * pic16/pcodepeep.c:
8233         * pic16/peeph.def:
8234
8235 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8236
8237     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8238
8239 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8240
8241     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8242     added gbz80 build to MSVC project.
8243     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8244     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8245     from 8051 stuff and setup so it links using a .lnk file.
8246
8247 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8248
8249     * support/librarian/sdcclib.c: sdcc librarian.
8250     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8251     with sdcclib.
8252
8253 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8254
8255     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8256
8257 2003-07-02  Borut Razem <borut.razem AT siol.net>
8258
8259         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8260         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8261         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8262         src/xa51/main.c, src/z80/main.c:
8263         virtualization of glue() function: each port has it's own glue function,
8264         which is accessed by do_glue function pointer in PORT.general structure
8265
8266 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8267
8268         * DS800C400 fun, improved ROM interface and tinibios.
8269
8270 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8271
8272         * More support for DS80C400. Now includes beginning of interface to ROM.
8273
8274 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8275
8276         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8277
8278 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8279
8280         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8281
8282 2003-06-19  Borut Razem <borut.razem AT siol.net>
8283
8284         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8285
8286 2003-06-19  Borut Razem <borut.razem AT siol.net>
8287
8288         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8289         fixed Z80 port - crt0.o: cannot open.
8290
8291 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8292
8293         * support/Util/MySystem.c (merge_command): revert bad fix
8294
8295 2003-06-18  Borut Razem <borut.razem AT siol.net>
8296
8297         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8298
8299 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8300
8301         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8302         option --use-stdout sends errors to stdout instead of stderr.
8303
8304 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8305
8306         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8307
8308 2003-06-15  Borut Razem <borut.razem AT siol.net>
8309
8310         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8311         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8312         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8313         fixed width array of pointers replaced with sets;
8314         multiple include and lib paths ared transferred to preprocessor and linker
8315         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8316         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8317         fixed width array of pointers
8318         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8319         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8320         fixupPath(), getPathDifference()
8321         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8322         fixed width array of pointers
8323
8324 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8325
8326         * src/pic16/ralloc.c: fix warnings
8327         * src/pic16/pcode.c: fix warning
8328
8329 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8330
8331          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8332         know all the details, but essentially this set of changes enable
8333         the pic16 port to generate movff instructions and generate assembler
8334         directives,
8335         * src/SDCCmain.c:
8336         * src/pic16/gen.c:
8337         * src/pic16/glue.c:
8338         * src/pic16/pcode.c:
8339         * src/pic16/device.c:
8340         * src/pic16/main.c:
8341         * src/pic16/pcode.h:
8342         * src/pic16/pcoderegs.c:
8343         * src/pic16/ralloc.c:
8344         * src/pic16/ralloc.h:
8345
8346 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8347
8348         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8349         added option --vc, so sdcc errors and warnings are compatible with
8350         Microsoft Visual Studio.
8351
8352 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8353
8354         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8355           device/lib/libfloat.lib: added atof function.
8356
8357 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8358
8359         * doc/sdccman.lyx: updated to Lyx 1.3
8360         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8361         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8362         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8363
8364 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8365
8366         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8367
8368 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8369
8370         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8371           additions to the "related tools/documentation" section
8372
8373 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8374
8375         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8376
8377 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8378
8379         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8380         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8381
8382 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8383
8384         * doc/sdccman.lyx: fix double dash and other minor things
8385         * doc/Makefile: fix double dash
8386
8387 2003-05-28  Karl Bongers(patches from Martin Helmling)
8388         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8389           condition and ignore commands.
8390
8391 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8392
8393         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8394           is in parts still quite out of date, I did changes as far as I felt makes sense
8395           for a non-native english speaker.
8396           Please feel free to add to the manual or to correct my changes.
8397         * doc/Makefile: undid touching the date of intermediate tex files.
8398
8399 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8400
8401         * doc/sdccman.lyx: Manual has an index now
8402
8403 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8404
8405         Finalize muluint/mulsint and mululong/mulslong merging:
8406         * device/lib/_mulint.c
8407         * device/lib/_mullong.c
8408         * device/lib/gbz80/mul.s
8409         * device/lib/gbz80/stubs.s
8410         * device/lib/z80/mul.s
8411         * device/lib/z80/stubs.s
8412         * src/SDCCsymt.c (initCSupport)
8413
8414 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8415
8416         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8417         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8418           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8419           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8420           instead of /Zm500.
8421
8422 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8423
8424         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8425           the regression tests I'm not brave enough to enable 245.b, 245.c
8426         * doc/sdccman.lyx: added latex preamble for hyperref package.
8427           Using pdflatex this will give you a hyperlinked pdf file with
8428           bookmarks. (prepend '%' before /usepackage if this breaks something)
8429
8430 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8431
8432          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8433
8434 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8435
8436         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8437
8438 2003-05-21    <johan AT balder>
8439
8440         * src/SDCCglue.c (printIval): fixed bug #739934
8441
8442 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8443
8444         Applied patch from bug 737905 (renamed yylineo to mylineno):
8445         * src/altlex.c
8446         * src/SDCCast.c
8447         * src/SDCglobl.h
8448         * src/SDCC.lex
8449         * src/SDCCsymt.c
8450         * src/SDCCval.c
8451         * src/pic16/pcode.c: Cleaned warnings
8452         * src/pic16/pcodeflow.c: Cleaned warnings
8453         * src/pic16/pcoderegs.c: Cleaned warnings
8454
8455 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8456
8457         * src/pic16/pcode.c: Cleaned warnings
8458         * src/pic16/pcodepeep.c: Cleaned warnings
8459         * src/pic16/ralloc.c: Cleaned warnings
8460
8461 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8462
8463         * doc/sdccman.lyx: fixed bug 739745
8464         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8465
8466 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8467
8468         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8469         it can be defined with CFLAGS when running configure
8470         * src/SDCCmain.c: fixed compiling + linking with object files
8471
8472 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8473
8474         * configure.in: configure for pic16 port,
8475             added --disable-pic16-port
8476         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8477         * src/SDCCmain.c: linkOptions is changed to set *,
8478             added if/endif conditional macros to remove options help
8479             messages from optionsTable when a port is not configured, added
8480             support for the PIc16 port in the ports table, when executing
8481             the compiler with no port specified on command line, a default
8482             port is selected with the new macro DEFAULT_PORT which is
8483             defined in port.h, in setDefaultOptions() linkOptions is removed
8484             from initialization assignment, since now it is a set,
8485             parseCmdLine uses setParseWithComma for linkOptions, in
8486             linkEdit() linkOptions are accessed with new function indexSet()
8487             which returns the i'th item of a set variable. See SDCCset.c, in
8488             linkEdit() when calling buildCmdLine(), added linkOptions as
8489             last argument. Now users can pass arguments to gplink via the
8490             -Wl option, main() uses pic16glue() to glue up pic16 programs
8491         * src/SDCCpeeph.c: various changes to support pic16
8492         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8493             return the i'th item of the set
8494         * src/SDCCset.h: added function prototype for indexSet()
8495         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8496         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8497         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8498             added macro DEFAULT_PORT
8499         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8500         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8501             generated
8502         * src/pic16/glue.c: commented out some error producing lines
8503         * src/pic16/main.c: __config directives are commented out to stop
8504             gpasm complaining and test the linkage with gplink, _linkCmd and
8505             _asmCmd changed to be more gplink and gpasm friendly
8506         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8507             produced an error when parsed, peep rule 12 is added to utilize
8508             movff, but it is commented out since the pCode does not support
8509             yet a command with 2 address arguments
8510
8511 2003-05-18    <johan AT balder>
8512
8513         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8514         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8515 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8516
8517         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8518   Added feature to script commands from file.
8519
8520 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8521
8522         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8523         * src/SDCCutil.c: include ctype.h for win32
8524
8525 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8526
8527         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8528
8529 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8530
8531         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8532   Fixed so you can set breakpoints prior to run, run does not stop
8533   on entry now.  Add tbreak.  Other enhancements and fixes for use
8534   with ddd.
8535
8536 2003-05-12  Borut Razem <borut.razem AT siol.net>
8537
8538         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8539
8540 2003-05-11  Borut Razem <borut.razem AT siol.net>
8541
8542         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8543         the path of bin directory, so that PATH is the only env. variable, which has to be set
8544         in case of standard installation.
8545         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8546         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8547         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8548
8549 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8550
8551         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8552         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8553         temp files are in the port dir; clean the gen/test directory when
8554         generating new test.c
8555         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8556         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8557         * support/regression/tests/zeropad.c: added
8558
8559 2003-05-09    <johan AT balder>
8560
8561         * src/SDCCglue.c: fixed bug #597940
8562
8563 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8564
8565         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8566   cache sfr, optimize next,step, fix off by one sourceline,
8567   support ddd list function.
8568         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8569
8570 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8571
8572         * support/regression/HTMLgen.py: added compare_s2f()
8573         * support/regression/Makefile: redo 1.27
8574         * support/regression/generate-cases.py: redo 1.5
8575
8576 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8577
8578         * support/regression/tests/float.c: workaround 33 bit hex constant
8579         * support/regression/tests/simplefloat.c: fix division for host
8580
8581 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8582
8583         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8584         that tame's the PIC's over-aggressive optimizer.
8585
8586 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8587
8588          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8589          support for MSVC.
8590
8591 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8592
8593         Initial support for DS80C400. "Hello world" runs on TINIm400
8594         (with polled I/O).
8595
8596 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8597
8598          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8599          * Some notes on ddd usage added in debugger/README
8600          Martin Helmling adding more features and fixes for ddd GUI debugger.
8601          Code added for nexti, stepi, up, down, and other adjustments.
8602
8603 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8604
8605         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8606         * src/pic/peeph.def Added two rules to optimize carry manipulation
8607         * src/pic/* removed debug printfs
8608
8609 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8610
8611         * debugger/mcs51/cmd.c: added header newalloc.h
8612
8613 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8614
8615         * as/Makefile: new EXEEXT
8616         * as/z80/Makefile: remove trailing slash of BUILDIR
8617         * as/z80/clean.mk: new EXEEXT
8618         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8619         * support/cpp2/Makefile.in: new EXEEXT
8620         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8621
8622 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8623
8624         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8625         EXEEXT was introduced to fix all related problems with targets
8626         "clean", "install" and "uninstall"; a couple of further flaws
8627         especially with "clean" have been fixed too
8628         * as/mcs51/Makefile.in
8629         * as/mcs51/clean.mk
8630         * as/z80/Makefile
8631         * Makefile
8632         * clean.mk
8633         * debugger/mcs51/Makefile.in
8634         * debugger/mcs51/clean.mk
8635         * link/z80/Makefile
8636         * link/z80/Makefile.in
8637         * link/z80/clean.mk
8638         * link/Makefile
8639         * packihx/Makefile.in
8640         * packihx/clean.mk
8641         * sim/ucsim/Makefile
8642         * sim/ucsim/clean.mk
8643         * sim/ucsim/avr.src/Makefile.in
8644         * sim/ucsim/avr.src/clean.mk
8645         * sim/ucsim/s51.src/Makefile.in
8646         * sim/ucsim/s51.src/clean.mk
8647         * sim/ucsim/xa.src/Makefile.in
8648         * sim/ucsim/xa.src/clean.mk
8649         * sim/ucsim/z80.src/Makefile.in
8650         * sim/ucsim/z80.src/clean.mk
8651         * sim/ucsim/main_in.mk
8652         * sim/ucsim/packages_in.mk
8653         * sim/ucsim/gui.src/Makefile.in
8654         * sim/ucsim/gui.src/serio.src/Makefile.in
8655         * sim/ucsim/gui.src/serio.src/clean.mk
8656         * src/Makefile.in
8657         * src/clean.mk
8658         * support/cpp2/Makefile.in
8659         * support/cpp2/clean.mk
8660         * support/makebin/Makefile
8661         * support/makebin/clean.mk
8662         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8663         * doc/sdccman.lyx: --program-suffix no longer needed
8664
8665 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8666
8667          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8668          Martin Helmling added support for ddd GUI debugger.
8669          Code added to display assembly, set variables, and other commands
8670          to interface to ddd.
8671
8672 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8673
8674         * as/Makefile: fix target clean
8675         * as/clean.mk: fix target clean
8676         * as/z80/clean.mk: fix target clean
8677
8678 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8679
8680         * Makefile.common.in: added  AT EXEEXT AT
8681         * configure.in: removed all mingw32 stuff
8682         * configure: rebuilt from configure.in
8683         * doc/sdccman.lyx: updated section "installation"
8684         * support/scripts/sdcc_mingw32: adapted to configure
8685         * support/scripts/sdcc_cygwin_mingw32: added
8686
8687 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8688
8689         * src/pic Added object file support for the PIC port
8690         * src/pic Applied patch from Craig Franklin (this started the object file support)
8691         * src/regression Updated the PIC regression tests for object files
8692
8693 2003-04-20  Borut Razem <borut.razem AT siol.net>
8694
8695         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8696           lklex.c: In function `getfid':
8697           lklex.c:203: warning: array subscript has type `char'
8698         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8699           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8700         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8701           stack handling macros
8702
8703 2003-04-19  Borut Razem <borut.razem AT siol.net>
8704
8705         * "handling space characters in file path" task:
8706         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8707         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8708         * support/Util/MySystem.h: make it self-sufficient
8709         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8710           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8711           handling space characters in file path
8712         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8713           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8714         * support/Util/MySystem.c: handling space characters in executable's path
8715
8716 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8717
8718         * as/z80/Makefile: fix permanent rebuild of z80
8719         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8720         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8721
8722 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8723
8724         * src/SDCCopt.c: add special case optimization to replace modulo by
8725           a power of two with a bitwise AND.
8726
8727 2003-04-18    <johan AT balder>
8728
8729         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8730
8731 2003-04-17    <johan AT balder>
8732
8733         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8734         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8735
8736 2003-04-13  Borut Razem <borut.razem AT siol.net>
8737
8738         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8739         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8740           fixed mingw problem in adl_NORMALIZE_PATH
8741
8742 2003-04-12  Borut Razem <borut.razem AT siol.net>
8743
8744         * fixed "#pragma SAVE/RESTORE can not be nested":
8745         * src/SDCC.lex: reworked pragma handling functions
8746         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8747         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8748
8749 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8750
8751         * src/SDCCutil.c (pathEquivalent): defined but not used
8752         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8753         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8754         * configure: rebuilt from configure.in
8755         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8756         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8757         * device/include/Makefile.in: replace sdcc_datadir
8758         * device/lib/Makefile.in: replace sdcc_datadir
8759         * Makefile.common.in: add LDFLAGS from configure
8760         * packihx/Makefile.in: use LDFLAGS
8761         * src/Makefile.in: use LDFLAGS
8762         * support/cpp2/Makefile.in: add LDFLAGS from configure
8763         * support/makebin/Makefile: use LDFLAGS
8764         * .version: bumped version number to 2.3.5
8765
8766 2003-04-12  Borut Razem <borut.razem AT siol.net>
8767
8768         * completed "different paths" task:
8769         * src/SDCCmacro.c: fixed bug in handling quotes
8770         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8771         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8772
8773 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8774
8775         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8776
8777 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8778
8779         * ds390/gen.c ds390/peeph.def: fix bug 706781
8780
8781 2003-04-11  Borut Razem <borut.razem AT siol.net>
8782
8783         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8784
8785 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8786
8787         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8788         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8789          set - this bit used to not be set...).
8790         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8791           bad code in PIC Port
8792         * src/regression/and2.c added to test bug 609268
8793         * src/regression/Makefile added and2.c to regression test
8794
8795
8796 2003-04-08    <johan AT CP255758-A>
8797
8798         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8799         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8800         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8801
8802 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8803
8804         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8805         fix bug #487815
8806         * support/cpp2/Makefile.in: fix bug #487815
8807         * configure: rebuilt from configure.in
8808         * Makefile.common.in: docdir changed, new path suffixes
8809         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8810         * sdcc_vc_in.h: reflect changes from sdccconf.h
8811         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8812         * src/SDCCutil.h: remove BINDIR hack
8813         * doc/sdccman.lyx: update new path hierarchy
8814
8815 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8816
8817         * src/SDCCpeeph.c: added okToRemoveSLOC test
8818
8819 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8820
8821         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8822
8823 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8824
8825         * src/SDCCpeeph.c: added labelIsReturnOnly test
8826         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8827
8828 2003-04-05    <johan AT balder>
8829
8830         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8831         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8832         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8833         * src/SDCCast.c: fixed a warning
8834         * src/SDCCast.h: fixed a warning
8835         * src/SDCCicode.c (operandFromAst): fixed a warning
8836
8837 2003-04-04    <johan AT balder>
8838
8839         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8840         * src/SDCCast.c (decorateType): fixed bug #715076
8841         * src/SDCC.y: fixed bug #702907
8842
8843 2003-04-03    <johan AT balder>
8844
8845         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8846         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8847         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8848         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8849         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8850
8851 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8852
8853         * _decdptr.c: fix return values
8854         * _gptrget.c: fix return values
8855         * _gptrgetc.c: fix return values
8856         * _gptrput.c: fix return values
8857         * _mulint.c: fix return values
8858         * as/z80/Makefile: fix 'make -j' problem
8859
8860 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8861
8862         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8863         * configure.in: big cleanup, updated to autoconf 2.5x
8864         * configure: rebuilt from configure.in
8865         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8866         * sdcc_vc_in.h: reflect changes from sdccconf.h
8867         * doc/Makefile: fixed a flaw in "make install"
8868
8869 2003-04-02    <johan AT balder>
8870
8871         * src/ds390/gen.c (genCmp): no comments
8872         * src/mcs51/gen.c (genCmp): no comments
8873         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8874         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8875
8876 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8877
8878         * support/regression/generate-cases.py: place generated file in given sub directory
8879         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8880         * support/regression/Makefile: improvements for 'make -j';
8881         side effect: it's simpler and faster now
8882
8883 2003-03-31  Borut Razem <borut.razem AT siol.net>
8884
8885         * src/z80/main.c: link-{port} and as-{port} defined without path
8886         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8887
8888 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8889
8890         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8891
8892 2003-03-30  Borut Razem <borut.razem AT siol.net>
8893
8894         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8895           changed type of list parameter to set
8896         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8897         * src/port.h: changed type of do_assemble() parameter to set
8898         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8899           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8900           definition of "cppoutfilename" macro with NULL value in preProcess()
8901         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8902         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8903         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8904           replaced with set *binPathSet
8905         * shash_add() deallocates the item, if allready exsists, before adding the new one
8906         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8907
8908 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8909
8910         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8911           a nested for loop bug in the PIC port
8912         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8913           for loops
8914
8915 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8916
8917         * support/Util/dbuf.h: remove C++ stuff to make it portable
8918
8919 2003-03-28  Borut Razem <borut.razem AT siol.net>
8920
8921         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8922           literal strings in stringLiteral()
8923         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8924         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8925           to the project
8926
8927 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8928
8929         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8930
8931 2003-03-26    <johan AT balder>
8932
8933         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8934         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8935         * src/SDCCast.c (decorateType): fixed " -v < 3"
8936
8937 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8938
8939         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8940         Added Lenny Story's debug infrastructure changes:
8941         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8942         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8943         * src/cdbFile.c: added
8944         * src/SDCCdebug.c: added
8945         * src/SDCCdebug.h: added
8946         * src/SDCCast.c (createFunction)
8947         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8948         * src/SDCCmain.c (parseCmdLine, main)
8949         * src/SDCCmem.c (redoStackOffsets)
8950         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8951         * src/SDCCsymt.h
8952         * src/common.h
8953         * src/avr/gen.c (genAVRCode)
8954         * src/ds390/gen.c (gen390Code)
8955         * src/mcs51/gen.c (gen51Code)
8956         * src/pic/gen.c (genpic14Code)
8957         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8958         * src/xa51/gen.c (genXA51Code)
8959         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8960
8961 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8962
8963         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8964         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8965
8966 2003-03-22    <johan AT balder>
8967
8968         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8969
8970 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8971
8972         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8973         * doc/cdbfileformat.lyx: added, written by Lenny Story
8974         * doc/Makefile: added cdbfileformat.lyx
8975         * doc/clean.mk: added cdbfileformat.lyx
8976
8977 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8978
8979         * src/mcs51/peeph.def: fix bug #705773
8980
8981 2003-03-20    <johan AT balder>
8982
8983         An sfr/sbit can have an "at #" AND an initializer
8984         * src/SDCCsymt.c (checkSClass):
8985         * src/SDCCmem.c (allocGlobal):
8986         * src/SDCCmem.c (allocLocal):
8987         * src/SDCCast.c (createBlock):
8988
8989 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8990
8991         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8992
8993 2003-03-16    <johan AT balder>
8994
8995         Undid the hackup of const and volatile, the problem is much bigger
8996         * src/SDCC.y:1.65
8997         * src/SDCCast.c:1.171
8998         * src/SDCCglue.c:1.138
8999         * src/SDCCicode.c:1.146
9000         * src/SDCCsymt.c:1.150
9001         * src/SDCCval.c:1.65
9002
9003 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9004
9005         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9006         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9007
9008 2003-03-13    <johan AT balder>
9009
9010         Hackup const and volatile modifiers in type chains a bit:
9011         * src/SDCC.y:1.63
9012         * src/SDCCast.c:1.169
9013         * src/SDCCglue.c:1.136
9014         * src/SDCCicode.c:1.143
9015         * src/SDCCsymt.c1.146
9016         * src/SDCCsymt.h1.59
9017         * src/SDCCval.c:1.63
9018
9019 2003-03-12    <johan AT balder>
9020
9021         * src/SDCCBBlock.h: more LRH debugging junk
9022         * src/SDCCcflow.h: more LRH debugging junk
9023         * src/SDCCloop.c: more LRH debugging junk
9024         * src/SDCC.y (struct_declaration): fixed bug #697590
9025         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9026         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9027         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9028
9029 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9030         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9031         test function names must now match exactly).
9032         * src/SDCCcse.c: added special case in findCheaperOp to allow
9033         extending a short integer. Makes less awful code for bug 700121 test case.
9034
9035 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9036
9037         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9038         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9039
9040 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9041
9042         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9043         actually called (operandsNotEqual() was called for all
9044         operandsNotEqualX tests).
9045
9046 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9047
9048         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9049         with shorter literals. Fixes bug 700121.
9050
9051 2003-03-11    <johan AT balder>
9052
9053         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9054
9055 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9056
9057         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9058         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9059
9060 2003-03-10  Borut Razem <borut.razem AT siol.net>
9061
9062         * src/SDCCmain.c: pipe preprocessor's output
9063         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9064         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9065         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9066         which closes all pipes in pipeSet set
9067         * src/SDCCset.c: free deleted item in function deleteSetItem()
9068         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9069         moved from z80 to src subproject
9070         * .version: increased version number to 2.3.4
9071
9072 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9073
9074         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9075         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9076         * support/regression/ports/xa51/spec.mk: fix typo
9077
9078 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9079
9080         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9081
9082 2003-03-09  Borut Razem <borut.razem AT siol.net>
9083
9084         * src/SDCCmain.c: pipe preprocessor's output
9085         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9086         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9087         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9088         which closes all pipes in pipeSet set
9089         * src/SDCCset.c: free deleted item in function deleteSetItem()
9090         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9091         moved from z80 to src subproject
9092
9093 2003-03-09  Borut Razem <borut.razem AT siol.net>
9094
9095         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9096         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9097         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9098         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9099         * src/SDCCglobl.h: unification of WIN32 native definitions
9100
9101 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9102
9103         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9104
9105 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9106
9107         * src/configure.in:   check for endianess (even while cross-compiling)
9108         * src/configure:      check for endianess (even while cross-compiling)
9109         * src/configure_in.h: check for endianess (even while cross-compiling)
9110         * src/avr/gen.c:        remove old endianess stuff
9111         * src/mcs51/gen.c:      remove old endianess stuff
9112         * src/ds390/gen.c:      remove old endianess stuff
9113         * src/pic/gen.c:        remove old endianess stuff
9114         * src/pic/genarith.c:   remove old endianess stuff
9115         * src/pic/glue.c:       fix endianess check
9116         * src/pic16/gen.c:      remove old endianess stuff
9117         * src/pic16/genarith.c: remove old endianess stuff
9118         * src/pic16/glue.c:     fix endianess check
9119         * src/xa51/gen.c:       remove old endianess stuff
9120         * src/z80/gen.c:        fix endianess check
9121         * src/SDCCglue.c:       fix endianess check
9122         * src/ds390/peeph.def: fix bug 700036
9123
9124 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9125
9126         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9127         * src/configure: find appropriate data-types on host for SDCC's int and long
9128         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9129         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9130         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9131
9132 2003-03-07    <johan AT balder>
9133
9134         Just a big NOOP:
9135                 some minor cleanups before the big shot
9136                 OP_DEFS and OP_USES now use Kevin's protection
9137                 new option --nolabelopt
9138
9139         * src/SDCCBBlock.c:
9140         * src/SDCCast.c,:
9141         * src/SDCCcflow.c:
9142         * src/SDCCcse.c:
9143         * src/SDCCicode.c:
9144         * src/SDCCicode.h:
9145         * src/SDCClabel.c:
9146         * src/SDCCloop.c:
9147         * src/SDCCmain.c:
9148         * src/ds390/ralloc.c:
9149         * src/mcs51/ralloc.c:
9150         * src/pic/ralloc.c:
9151         * src/xa51/ralloc.c:
9152         * src/z80/ralloc.c:
9153
9154 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9155
9156         * src/pic/pcode.c (get_op): fix 64 bit warnings
9157         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9158         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9159         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9160         * support/regression/tests/malloc.c: fix 64 bit warnings
9161
9162 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9163
9164         * src/mcs51/gen.c (genMinus): fixed bug 696436
9165
9166 2003-03-02  Borut Razem <borut.razem AT siol.net>
9167
9168         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9169
9170 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9171
9172         * configure.in: test for mkstemp
9173         * sdccconf_in.h: add HAVE_MKSTEMP
9174
9175 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9176
9177         * device/include/ctype.h: removed warning while using --stack-auto
9178         * device/include/malloc.h: removed warning while using --stack-auto
9179         * device/include/string.h: removed warning while using --stack-auto
9180
9181 2003-02-23  Borut Razem <borut.razem AT siol.net>
9182
9183         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9184         because NDEBUG is defined (see man assert)
9185         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9186
9187 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9188
9189         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9190         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9191
9192 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9193
9194         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9195         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9196
9197 2003-02-18    <johan AT balder>
9198
9199         * as/mcs51/asmain.c (asmbl): module can start with a digit
9200         * as/z80/asmain.c (asmbl): module can start with a digit
9201
9202 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9203
9204         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9205         * src/asm.c: fix pipe() for Mingw32
9206
9207 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9208
9209         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9210         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9211         make -V work again; --c1mode reads now from stdin
9212         * doc/sdccman.lyx: added --c1mode
9213         * support/Util/SDCCerr.c: new messages for c1 mode
9214         * support/Util/SDCCerr.h: new messages for c1 mode
9215         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9216
9217 2003-02-15    <johan AT balder>
9218
9219         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9220
9221 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9222
9223         * doc/sdccman.lyx: Environment variables, -o and other minor things
9224
9225 2003-02-14    <johan AT balder>
9226
9227         * src/xa51/main.c: before anyone really tries to use it :)
9228
9229         * Install doc's in share/sdcc/doc
9230         * removed some obsolete files
9231         * Do a proper make distclean and uninstall
9232         M Makefile.common.in
9233         R sdccbuild.sh
9234         M as/Makefile
9235         M device/include/Makefile.in
9236         M device/lib/Makefile.in
9237         M doc/sdccman.lyx
9238         M link/Makefile
9239         M sim/ucsim/doc/Makefile.in
9240         M src/clean.mk
9241         R src/avr/peeph.rul
9242         R src/xa51/peeph.rul
9243         M support/cpp2/Makefile.in
9244         M support/makebin/Makefile
9245
9246
9247 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9248
9249         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9250
9251 2003-02-10  Borut Razem <borut.razem AT siol.net>
9252
9253         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9254         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9255         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9256         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9257         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9258         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9259         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9260         src/z80/Makefile.bcc: Borland Makefile cleanup
9261         * as/z80/Makefile.bcc: Added Borland Makefile
9262         * support/cpp2/borland.h: Removed
9263
9264 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9265
9266         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9267         * src/SDCC.lex: new pragma NOIV
9268         * src/SDCCglobl.h: new pragma NOIV
9269         * src/SDCCmem.c: new pragma NOIV
9270
9271 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9272
9273         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9274
9275 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9276
9277         * src/SDCCmain.c: signal handling is switched off by --debug
9278         * doc/Makefile: small fix for install; use clean.mk again
9279         * doc/clean.mk: clean *.pdf and *.html too
9280
9281 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9282
9283         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9284         * device/lib/printfl.c: fix a ds390 bug by making it portable
9285         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9286         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9287         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9288         * debugger/mcs51/cmd.c: converted multi-line string literals
9289         * sim/ucsim/globals.cc: converted multi-line string literals
9290         * src/SDCCmain.c: introduced signal handler to remove temp files
9291         * doc/Makefile: small tweaks, implement clean
9292         * doc: removed generated files
9293
9294 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9295
9296         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9297         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9298         Address Record is not correctly generated for DS390."
9299
9300 2003-02-02  Borut Razem <borut.razem AT siol.net>
9301
9302         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9303         * as/mcs51/asm.h: fixed compilation with Borland C
9304         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9305         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9306         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9307         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9308         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9309         src/z80/Makefile.bcc: delete $(LIB) only if exist
9310         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9311
9312 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9313
9314         * device/include/malloc.h: introduced NULL
9315         * device/include/string.h: introduced NULL
9316         * device/include/stdlib.h: introduced NULL
9317         * device/lib/_memcpy.c: removed NULL
9318         * device/lib/_strcat.c: removed NULL
9319         * device/lib/_strchr.c: removed NULL
9320         * device/lib/_strcmp.c: removed NULL
9321         * device/lib/_strcpy.c: removed NULL
9322         * device/lib/_strcspn.c: removed NULL
9323         * device/lib/_strlen.c: removed NULL
9324         * device/lib/_strncat.c: removed NULL
9325         * device/lib/_strncmp.c: removed NULL
9326         * device/lib/_strncpy.c: removed NULL
9327         * device/lib/_strpbrk.c: removed NULL
9328         * device/lib/_strrchr.c: removed NULL
9329         * device/lib/_strspn.c: removed NULL
9330         * device/lib/_strstr.c: removed NULL
9331         * device/lib/_strtok.c: removed NULL
9332         * device/lib/malloc.c: removed NULL, include own header
9333
9334 2003-02-02    <johan AT balder>
9335
9336         * 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
9337         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9338         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9339         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9340         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9341         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9342
9343 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9344
9345         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9346         area 'DATA'"
9347
9348 2003-02-01    <johan AT balder>
9349
9350         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9351
9352 2003-01-31    <johan AT CP255758-A>
9353
9354         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9355
9356 2003-01-30    <johan AT balder>
9357
9358         * src/SDCCBBlock.c: automatic bug detection
9359         * src/SDCCicode.c: automatic bug detection
9360
9361 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9362
9363         * src/SDCCglobl.h:   now --xram-size 0 works
9364         * src/SDCCmain.c:    now --xram-size 0 works
9365
9366 2003-01-29    <johan AT balder>
9367
9368         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9369
9370 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9371
9372         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9373         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9374         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9375         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9376         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9377         * src/SDCCmain.c:    Added options --xram-size and --code-size
9378
9379 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9380
9381         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9382         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9383
9384 2003-01-27    <johan AT balder>
9385
9386         * src/SDCC.y: fixed bug #613764
9387
9388 2003-01-26    <johan AT balder>
9389
9390         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9391         * src/SDCCsymt.h: fixed bug #673374
9392         * src/SDCCglue.c: fixed bug #661910
9393         * src/SDCCast.c: fixed bug #458099 and 673374
9394
9395 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9396
9397         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9398         * as/mcs51/strcmpi.h: added
9399         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9400         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9401         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9402         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9403         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9404         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9405         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9406         * as/mcs51/Makefile.aslink: new module strcmpi
9407         * as/mcs51/Makefile.asx8051: new module strcmpi
9408         * as/mcs51/Makefil.bcc: new module strcmpi
9409         * as/mcs51/Makefile.in: new module strcmpi
9410         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9411
9412 2003-01-26    <johan AT balder>
9413
9414         * src/SDCCglue.c: reverted back to 1.124
9415         * src/SDCCast.c: reverted back to 1.156
9416         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9417
9418 2003-01-25    <johan AT balder>
9419
9420         * src/SDCCglue.c: A better fix for bug #661910
9421         * src/SDCCast.c: A better fix for bug #661910
9422         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9423
9424 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9425
9426         * src/Makefile.in: remove spawn.o
9427         * src/SDCCmain.c: remove spawn.h
9428         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9429         * src/spawn.c: removed
9430         * src/spawn.h: removed
9431         * support/regression/ports/ds390/spec.mk: link with -r
9432
9433 2003-01-24    <johan AT CP255758-A>
9434
9435         * src/ds390/gen.c (aopOp): fixed bug #667458
9436         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9437         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9438         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9439
9440 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9441
9442         * src/mcs51/peeph.def: better assembler identation by Frieder
9443         * src/mcs51/gen.c: better assembler identation by Frieder
9444
9445 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9446
9447         * as/z80/string.h: removed for gcc 3.2
9448         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9449         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9450
9451 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9452
9453         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9454         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9455         * support/regression/Makefile: separate temp files for ports
9456         * support/regression/generate-cases.py: separate temp files for ports
9457         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9458         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9459
9460 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9461
9462         * moved tinitalk to device/examples/ds390
9463
9464 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9465
9466         * as/mcs51/lkmem.c: rflag is for DS390
9467         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9468         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9469                          (linkEdit): move mem- and map-files the same way as ihx-files
9470         * src/z80/main.c (_setDefaultOptions): removed --generic
9471         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9472         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9473         * src/pic/glue.c (picglue): --c1mode works again
9474         * src/pic16/glue.c (pic16glue): --c1mode works again
9475         * src/asm.c (printCLine): fix #660034
9476
9477 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9478
9479         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9480         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9481         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9482         * as/mcs51/lkmem (summary): better fix for sp problem
9483         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9484         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9485         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9486                                               remove --stack-after-data
9487
9488 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9489
9490         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9491         * src/SDCCutil.c (join): ugly bug: missing '\0'
9492         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9493
9494 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9495
9496         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9497         * src/port.h: typo
9498         * src/pic/main.c (_asmCmd): gpasm supports -o
9499         * src/z80/main.c: more general macros
9500         * device/lib/Makefile.in: remove intermediate files
9501
9502 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9503
9504         * .version: Bumped version number to 2.3.3
9505         * src/SDCCBBlock.c: new option -o
9506         * src/SDCCglobl.h: new option -o
9507         * src/SDCCglue.c: new option -o
9508         * src/SDCCmain.c: new option -o
9509         * src/asm.c: new option -o
9510         * src/ds390/main.c: new option -o
9511         * src/pic/glue.c: new option -o
9512         * src/pic/pcode.c: new option -o
9513         * src/pic/ralloc.c: new option -o
9514         * src/pic16/glue.c: new option -o
9515         * src/pic16/pcode.c: new option -o
9516         * src/pic16/ralloc.c: new option -o
9517         * src/z80/main.c: new option -o
9518         * device/lib/Makefile.in: use -o
9519         * support/regression/ports/ds390/spec.mk: use -o
9520         * support/regression/ports/gbz80/spec.mk: use -o
9521         * support/regression/ports/mcs51/spec.mk: use -o
9522         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9523         * support/regression/ports/z80/spec.mk: use -o
9524         * support/regression/ports/ucz80/spec.mk: use -o
9525         * support/regression/ports/xa51/spec.mk: use -o
9526         * support/regression/fwk/lib/timeout.c: fix usage string
9527
9528 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9529         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9530
9531 2003-01-07    <johan AT balder>
9532
9533         * src/SDCCast.c (decorateType): fixed bug #600035
9534
9535 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9536         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9537         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9538         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9539         * src/pic/pcode.c: outcommented unused variable to remove warnings
9540         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9541
9542 2003-01-06    <karl AT turbobit.com>
9543         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9544    regression tests.
9545
9546 2003-01-06    <johan AT balder>
9547
9548         * src/SDCCicode.c: fixed array add
9549
9550 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9551         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9552         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9553
9554 2003-01-04    <johan AT balder>
9555
9556         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9557
9558 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9559         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9560
9561 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9562         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9563         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9564
9565 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9566         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9567
9568 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9569         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9570
9571 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9572         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9573
9574 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9575
9576     * in \sdcc\as\mcs51\ changed these files in order to create an
9577     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9578     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9579     following files to include the previous two files: aslink.dsp,
9580     Makefile.aslink, Makefile.bcc, and Makefile.in.
9581
9582     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9583     .adb instead of .cdb
9584
9585 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9586
9587         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9588         value from option --iram-size.
9589
9590 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9591
9592         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9593         dram[] array.
9594
9595 2002-09-18    <wiml AT hhhh.org>
9596
9597         * SDCClrange.h: exposed setFromRange() and setToRange()
9598         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9599           packRegsForAccUse() (bug 542397)
9600         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9601           multiple times and emitting the fetch operations more than once
9602           added aopGetUsesAcc() function to allow binary operators to
9603           fetch their operands in the correct order; made genMinus() emit
9604           compact code for X = LITERAL - Y
9605
9606 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9607         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9608         sprintf() in line 1267.
9609
9610 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9611         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9612         like ports.
9613
9614 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9615         Changes to aslink (All the changes are marked with 'JCF'):
9616
9617         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9618         summary().
9619
9620         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9621         area BSEG.  Also moves, if possible, the DATA area down into the internal
9622         ram so more space is available.
9623
9624         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9625         sflag.
9626
9627         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9628         not bytes.  Function summary() which creates a memory usage summary
9629         file with extension .mem.  Reports of overlaping stack and small stack
9630         size.  If the space for the stack is less than 16 bytes aslink trows a
9631         warning.
9632
9633         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9634         the 8051.  Option 'y' for memory summary output file.
9635
9636         Changes to sdcc (All the changes are marked with 'JCF'):
9637
9638         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9639
9640         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9641         overlaying area for it (uses RegBankUsed[4]).
9642
9643         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9644         bank zero as used by default.  By default aslink locates the stack
9645         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9646         the creation of the .mem file.  Delegates the allocation of data area
9647         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9648         the begining of the stack area to aslink.
9649
9650         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9651         glue() in SDCCglue.c creates an area for it.
9652
9653 2002-09-03  Borut Razem <borut.razem AT siol.net>
9654         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9655         sdcc/src/pic/glue.c:
9656         introduced atexit() handler for teporay files removal in case of
9657         errors, assertions, ...
9658
9659 2002-08-29  Borut Razem <borut.razem AT siol.net>
9660         * sdcc/support/cpp2/auto-host_vc_in.h:
9661         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9662         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9663         Maybe there is a similar problem with BORLANDC? It should be checked!
9664
9665         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9666         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9667         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9668         was not executed, and the compiler (cl) launched a warning:
9669         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9670
9671 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9672         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9673
9674 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9675         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9676
9677         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9678           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9679           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9680           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9681           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9682           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9683           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9684         - added Release configuration in VS projects
9685         - review of compiler an linker options
9686         - VC .exe files are generated in bin_vc directory, not to interfere
9687           with binaries generated from other projects (cygwin, mingw, bcc ...)
9688
9689         * sdcc/src/yacc.dsp: added
9690
9691         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9692         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9693         and insert the version number definitions from .version
9694
9695         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9696
9697         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9698         added - genarate auto-host.h using auto-host_vc_in.h as template
9699
9700         * sdcc/sdcc_vc.h,
9701         removed from CVS, generated automatically
9702
9703 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9704         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9705
9706 2002-08-11  Borut Razem <borut.razem AT siol.net>
9707         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9708
9709 2002-08-10  Borut Razem <borut.razem AT siol.net>
9710         * src/SDCCmain.c (main):
9711         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9712         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9713         The consequence was that some temporary files were not removed.
9714
9715         * src/SDCCglue.c:
9716         unification of code in functions tempfilename() and tempfile():
9717         function tempnam() is defined in Visual Studio 6.0 and .NET
9718
9719         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9720
9721         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9722           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9723         - removed compiler command line option /WX: Treats all warnings as errors
9724         - update a list of source files, included into the project
9725
9726         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9727           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9728         changed project type to Generic Project so that can be correcly converted to VS.NET project
9729
9730         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9731
9732         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9733
9734         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9735
9736         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9737         added return 0 statements after assert() to make compiler happy
9738
9739         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9740         added newline in the def file to keep MSC compiler satisfied
9741
9742         * sdcc/src/z80/gen.c:
9743         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9744           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9745         - solved MSC error in function aopDump()
9746
9747         * sdcc_vc.h: define PREFIX as "\\sdcc"
9748
9749 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9750         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9751
9752 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9753         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9754         - Rewrote the register banking algorithm.
9755         - Added pCode live-range analysis to registers (for now, only non-used and
9756         singly-used registers optimized away)
9757
9758         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9759
9760         * 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.
9761
9762 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9763         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9764
9765 2002-04-22  Michael Hope  <michaelh AT vroom>
9766
9767         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9768
9769         * configure.in (DD_COPT): Added include support required for gbdk.
9770
9771         * .version: Bumped version number just to increase it.
9772
9773         * src/SDCCmain.c: Added -nostdinc to the default options.
9774
9775 2002-04-15  Michael Hope  <michaelh AT vroom>
9776
9777         * device/lib/z80/printf.c (sprintf): Added.
9778
9779         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9780
9781         * src/z80/peeph.def: Added transpose redundent load rule.
9782
9783         * src/z80/main.c: Added force callee saves for jaune.
9784
9785         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9786
9787         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9788
9789 2002-03-28  Johan Knol  <johan AT balder>
9790
9791         * src/SDCCval.c: fixed bug #532436
9792
9793 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9794         * /src/port.h:
9795         Added "char *Processor" field to the port structure.
9796
9797         * /src/SDCCmain.c:
9798         Added -p option. Allows port dependent processor to be specified.
9799
9800         * all ports:
9801         Initialized the new field char *Processor field to NULL in all ports
9802
9803         * /src/pic/*:
9804         Compiler generated registers for interrupt context saving
9805         were not getting allocated.
9806
9807 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9808
9809         * /src/SDCCast.c:
9810         Fixed left shift. Will promote the left side of a left shift
9811         if a) left shifting more than size of operand or b) when assigned
9812         to something size > size of left side
9813
9814 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9815         * src/pic/*
9816         tons of changes. Register allocation has been
9817         rewritten. Added customization for the various PICs. Flow
9818         analysis is restructured. ...
9819
9820         * src/pic/device.h:
9821         Added
9822
9823         * src/pic/device.c:
9824         Added. device.c is a PIC port hack to accomodate variations
9825         in PIC devices.
9826
9827 2002-03-13  Michael Hope  <michaelh AT vroom>
9828
9829         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9830
9831 2002-03-04  johanknol  <johanknol AT manik>
9832
9833         * /src/SDCCval.c: fixed
9834
9835         const unsigned char arr[][2] = { { 0, 1 } };
9836         t18.c:1: error: Initializer element is not constant
9837
9838 2002-03-04  bela  <bela AT manik>
9839
9840         * /device/include/mcs51reg.h:
9841         ds89c420 register definition update
9842
9843 2002-03-03    <johan AT FRIJA>
9844
9845         * support/Util/SDCCerr.c: did something, but don't no why anymore
9846
9847         * support/regression/tests/bug-524691.c: made it a little less shy
9848
9849         * src/SDCCast.c (decorateType): fixed bug #524697
9850
9851         * src/SDCCast.c: made some lineno improvements
9852
9853         * src/SDCCval.c (getNelements): changed warning to error
9854
9855         * src/SDCCglue.c (printIvalArray): changed warning to error
9856
9857         * src/SDCCicode.c: fixed a warning for mingw
9858
9859         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9860
9861         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9862
9863 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9864
9865         * src/ds390/peeph.def:
9866         Added some more peephole rules
9867
9868         * src/ds390/gen.c: Various fixes & enhancements
9869
9870         * src/SDCClrange.c, src/SDCClrange.h:
9871         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9872
9873         * src/ds390/ralloc.c:
9874         various fixes & enhancements (ds390) specific
9875
9876         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9877         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9878         from rallocs.
9879
9880         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9881
9882 2002-03-02    <johan AT FRIJA>
9883
9884         * src/SDCCast.c (decorateType): fixed bug #524708
9885
9886         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9887
9888         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9889
9890 2002-03-01  Michael Hope  <michaelh AT vroom>
9891
9892         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9893
9894         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9895
9896 2002-03-01    <johan AT FRIJA>
9897
9898         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9899
9900         * src/SDCCast.c (decorateType): fixed bug #524209
9901
9902         * src/SDCCval.c (valNot): fixed bug #524195
9903
9904 2002-02-26    <johan AT balder>
9905
9906         * src/xa51/gen.c: fixed a warning
9907
9908         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9909
9910         * src/SDCCast.c (decorateType): fixed bug #522534
9911
9912 2002-02-23    <johan AT balder>
9913
9914         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9915
9916 2002-02-22    <johan AT balder>
9917
9918         * src/SDCCast.c: fixed bug #514865
9919
9920         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9921
9922 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9923
9924         * sdcc/src/SDCCloop.c:
9925         Previous fix was not good. basic blocks that have "break" or "return" are
9926         not really partof a loop , but live ranges used in these blocks should
9927         be live thru the entire loop, so set partOfLoop but don't add them to
9928         loop region
9929
9930 2002-02-21    <johan AT FRIJA>
9931
9932         * src/SDCCcse.c: fixed bug #514308
9933
9934 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9935
9936         * src/SDCCloop.c:
9937         Fixed BUG #519583. If a conditional block ended in a return/break
9938         statement inside a loop, it was not being considered part of the loop.
9939
9940         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9941
9942 2002-02-10  Karl Bongers <karl AT turbobit.com>
9943
9944         * debugger/*:
9945         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9946         with lots of comments and notes.
9947
9948         * device/examples/test2.c:
9949         Fix bug, "red" variable not being initialized(compiler complained).
9950
9951         * device/examples/Makefile, examples/test3.c:
9952         Add Makefile in device/examples folder, compiles test3.c
9953         for use as a multiple module SDCDB test case.
9954
9955         * sim/ucsim/cmd.src/cmdset.cc:
9956         Took out debug printfs in ucsim "next" command.
9957
9958         * sim/ucsim/xa.src:
9959         Karl and Johan start ucsim XA support.  Most dissassembly working,
9960         about 75% emulation done(plenty of work remaining).
9961
9962         * sim/ucsim/z80.src:
9963         Add Z80 support to ucsim, add test-ucz80 regression test,
9964         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9965         Notice z80 compiler fails on examples/test3.c/crc code.
9966
9967 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9968
9969         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9970         Added support for --parms-in-bank1
9971
9972         * src/ds390/peeph.def:
9973         added a few more peephole optimzations
9974
9975         * src/ds390/main.c:
9976         1) added __builtin_inp & __builtin_outp used to read in data of given length
9977            from a memory mapped port
9978         2) added __builtin_memcmp
9979         3) added __builtin_swapw swap bytes of a short
9980
9981         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9982         1) handle multiple send & receives from register bank1
9983         2) ralloc can now allocate DPTR1 to some liveRanges
9984
9985         * src/SDCCsymt.c, src/SDCCsymt.h:
9986         changes to handle multiple sends & receives
9987
9988         * src/SDCCptropt.h:
9989         added some pointer arithmetic optimization
9990
9991         * src/SDCCptropt.c:
9992         added some pointer arithmetic optimizations but not stable yet so not
9993         called from anywhere (will get this working shortly)
9994
9995         * src/SDCCopt.c: fixed for multiple sends & receives
9996
9997         * src/SDCCmain.c:
9998         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9999         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10000            set preprocessor defines (depending on options)
10001
10002         * src/SDCCicode.c, src/SDCCicode.h:
10003         changes made to handle multiple sends & receives
10004
10005         * src/SDCCglobl.h:
10006         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10007
10008         * src/SDCCcse.c, src/SDCCcse.h:
10009         added function findbackward def (to be used in upcoming optimization)
10010
10011         * src/SDCCcflow.c, src/SDCCcflow.h:
10012         added function returnAtEnd - to determine if a basic block terminates with
10013         a RETURN iCode
10014
10015         * src/SDCCast.c, src/SDCCast.h:
10016         added option parms-in-bank1
10017
10018         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10019         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10020         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10021         adjusted for --parms-in-bank1 option
10022
10023         * device/include/string.h:
10024         donot redefine "reentrant" keyword
10025
10026         * device/include/ds80c390.h: Added some more SFRs
10027
10028 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10029
10030         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10031
10032 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10033
10034         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10035
10036 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10037
10038         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10039
10040 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10041
10042         * Added --xram-movc option
10043
10044 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10045
10046         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10047
10048 2002-01-11  Johan Knol
10049
10050         * Added math lib of Jesus Calvino-Fraga
10051
10052 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10053
10054         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10055         * support/regression/Makefile: new target test-mcs51-stack-auto
10056         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10057
10058 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10059
10060         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10061
10062 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10063
10064         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10065
10066 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10067
10068         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10069
10070         * src/SDCCglue.h: add definition for printIvalChar()
10071
10072 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10073
10074         * src/SDCCast.c: fix #498138 by Johan
10075
10076         * src/SDCCglue.c: fix #498138 by Johan
10077
10078 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10079
10080         * support/regression/Makefile: fix clean
10081
10082         * support/regression/ports/ds390/support.c: fix transmission of last character
10083
10084 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10085
10086         * /sdcc/src/ds390/gen.c:
10087         a) improved computing address of stack variable
10088         b) took out some #if 0 code
10089         c) improved parmBytes adjustment
10090         d) improved genPlusIncr & genMinusIncr
10091         e) genCmp could generate bad code (when left assigned to DPTR)
10092         f) Fixed bug in hasInc
10093
10094         * /sdcc/src/ds390/ralloc.c:
10095         a) packRegsForSupport could mess up live information (Fixed)
10096         b) packRegsDPTRuse could be incorrect for left & right shift
10097
10098         * /sdcc/src/mcs51/ralloc.c:
10099         packRegsForSupport could mess up the live information (Fixed)
10100
10101         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10102
10103         * /sdcc/src/SDCCast.c:
10104         can reverse a loop even if function call is present as long
10105         as the loop control variable is local & is not passed as parameter
10106
10107 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10108
10109         * /sdcc/ChangeLog: *** empty log message ***
10110
10111         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10112         More builtin function additions for TININative
10113
10114         * /sdcc/src/ds390/ralloc.c:
10115         Had broken the regression testsuite
10116
10117         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10118
10119         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10120         Added funcattr hasStackParms will be set for reentrant functions when there
10121         are paramteres on the stack, this helps in minimizing frame pointer generation
10122         typeFromStr can handle function pointers now
10123
10124         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10125         *** empty log message ***
10126
10127 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10128
10129         * /src/ds390/gen.c, /src/ds390/main.c:
10130         More builtin function additions for TININative
10131
10132         * /src/ds390/ralloc.c:
10133         Had broken the regression testsuite
10134
10135         * /src/SDCCast.c: Fixed a bug in dumptree
10136
10137         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10138         Added funcattr hasStackParms will be set for reentrant functions when there
10139         are paramteres on the stack, this helps in minimizing frame pointer generation
10140         typeFromStr can handle function pointers now
10141
10142         * /doc/builtins.txt, /doc/TININative.txt:
10143         *** empty log message ***
10144
10145
10146 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10147
10148         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10149         ALPHA version for -mTININative
10150
10151         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10152         updated to reflect changes in the port structure
10153
10154         * /src/port.h:
10155         added function do_assemble (similar to do_link) if non-null this function
10156         will be called to do assembly (-mTININative) requires a multi command
10157         assembly
10158         added function genAssemblerEnd will be called to generate assembler Epilogue
10159
10160         * /src/SDCCsymt.c:
10161         added _JavaNative to debug info printing
10162
10163         * /src/SDCCmain.c: added option --tini-libid
10164         added port->do_assemble function (-mTININative) has a multi command assemble
10165
10166         * /src/SDCCglue.c: Disabled "constExpr" check
10167         added port->genAssemblerEnd function
10168
10169         * /src/SDCCglobl.h: Added option --tini-libid value
10170
10171         * /src/SDCCast.h:
10172         tookout optimizeCompare from the header (has no external references)
10173
10174         * /src/SDCCast.c: made one more function "static"
10175
10176 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10177
10178         * src/z80/mappings.i: Added z80asm support.
10179
10180         * src/z80/main.c: Added z80asm support on --asm=z80asm
10181
10182         * src/z80/gen.c: Fixed asm portability issues.
10183
10184         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10185
10186         * src/SDCCglue.c (printExterns): Added global/extern split.
10187
10188 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10189
10190         * support/regression/Makefile: added test for mcs51 model large
10191
10192         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10193
10194         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10195
10196 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10197
10198         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10199
10200 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10201
10202         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10203
10204         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10205
10206 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10207
10208         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10209
10210         * support/regression/tests/simplefloat.c: Port to mcs51.
10211
10212 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10213         * support/regression/tests/bug-485362.c: Added.
10214
10215         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10216
10217         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10218
10219         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10220
10221         * src/z80/gen.c (aopDump): Added a dump function.
10222
10223 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10224         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10225
10226         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10227
10228         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10229
10230         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10231
10232         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10233
10234         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10235
10236         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10237
10238         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10239
10240         * support/regression/ports/ds390/support.c: Use tinibios.
10241
10242         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10243
10244 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10245
10246         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10247         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10248
10249         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10250
10251         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10252
10253 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10254
10255         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10256
10257         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10258         (packRegsForIYUse): Created and optimised.
10259
10260 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10261
10262         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10263 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10264
10265         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10266
10267         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10268
10269         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10270
10271 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10272
10273         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10274
10275         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10276
10277 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10278
10279         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10280
10281         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10282
10283         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10284
10285 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10286
10287         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10288         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10289         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10290
10291         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10292
10293         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10294         (genNotFloat): Added.
10295         (genUminusFloat): Added.
10296
10297         * device/lib/z80/Makefile: Added floating pt stubs.
10298
10299         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10300
10301         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10302
10303         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10304
10305 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10306
10307         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10308
10309         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10310
10311         * sdcc/support/regression/Makefile: Add port ds390.
10312
10313         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10314
10315         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10316
10317         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10318
10319         * sdcc/support/regression/ports/ds390/support.c: Added.
10320
10321         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10322
10323         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10324
10325         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10326
10327 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10328
10329         * device/include/malloc.h: Added z80 and gbz80 support.
10330
10331         * device/lib/gbz80/heap.s: Added.
10332
10333         * device/lib/z80/heap.s: Added.
10334
10335         * device/lib/malloc.c: Added z80 and gbz80 support.
10336
10337         * support/regression/tests/malloc.c (testMalloc): Added.
10338
10339         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10340
10341         * support/regression/tests/bug-478094.c: Added.
10342
10343         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10344
10345 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10346
10347         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10348
10349         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10350
10351         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10352
10353         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10354
10355         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10356
10357 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10358
10359         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10360
10361 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10362
10363         * support/regression/tests/bug-477927.c: Added.
10364
10365         * src/z80/peeph.def: Added minor rules.
10366
10367         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10368
10369         * src/z80/peeph.def: Added jump optimisation modification.
10370
10371 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10372
10373         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10374
10375 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10376
10377         * support/regression/tests/funptrs.c: Added.
10378
10379 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10380
10381         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10382
10383 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10384
10385         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10386
10387         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10388
10389         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10390         (movLeft2ResultLong): Created.
10391
10392         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10393         (joinPushes): Added.  Joins two char pushes into a word push.
10394
10395 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10396
10397         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10398
10399         * support/makebin/Makefile (install): Added creation of dest dir.
10400
10401 2001-10-24 Karl Bongers <karl AT turbobit.com>
10402
10403         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10404
10405 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10406
10407         * src/z80/ralloc.c: Turned off faulty pack for one use.
10408
10409         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10410
10411         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10412
10413 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10414
10415         * support/regression/Makefile: Improved clean
10416
10417         * support/regression/ports/gbz80/spec.mk: Added clean
10418
10419         * support/regression/ports/host/spec.mk: Added clean
10420
10421         * support/regression/ports/z80/spec.mk: Added clean
10422
10423         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10424
10425         * support/regression/ports/mcs51/timeout.c: little improvements
10426
10427 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10428
10429         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10430
10431         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10432
10433         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10434
10435 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10436
10437         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10438
10439         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10440
10441 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10442         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10443
10444         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10445
10446         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10447
10448         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10449
10450         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10451
10452         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10453
10454         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10455
10456         * support/regression/tests/longor.c: Added.
10457
10458 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10459
10460         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10461
10462         * as/mcs51/aslink.h: define PATH_MAX
10463
10464         * as/mcs51/asm.h: define PATH_MAX
10465
10466         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10467
10468         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10469
10470         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10471
10472         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10473
10474         * src/SDCCglobl.h: define PATH_MAX
10475
10476         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10477
10478         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10479
10480 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10481
10482         * src/z80/gen.c (gencjneshort): Fixed
10483
10484         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10485
10486 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10487
10488         * support/regression/tests/bug-469671.c: Added.
10489
10490         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10491
10492 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10493
10494         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10495
10496         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10497
10498 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10499
10500         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10501
10502         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10503
10504         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10505
10506         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10507
10508         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10509
10510         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10511
10512         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10513
10514 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10515
10516         * 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.
10517
10518         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10519
10520         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10521
10522 2001-10-07    <johan AT FRIJA>
10523
10524         * device/lib/gets.c (gets): fixed the return value.
10525
10526 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10527         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10528
10529         * 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.
10530
10531         * 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.
10532
10533         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10534
10535         * src/pic/gen.c: Removed Safe_strdup.
10536
10537         * configure.in: Added option to enable libgc support.
10538
10539         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10540         (bitVectUnion): Optimised.
10541         (bitVectIntersect): Optimised.
10542         (bitVectBitsInCommon): Optimised.
10543         (bitVectCplAnd): Optimised.
10544
10545         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10546
10547 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10548
10549         * src/SDCCmain.c: distinguish between assembler debug and plain options
10550
10551         * src/avr/main.c:   remove standard assembler options
10552
10553         * src/ds390/main.c: remove standard assembler options
10554
10555         * src/mcs51/main.c: remove standard assembler options
10556
10557         * src/port.h: removed "PENDING" comment
10558
10559 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10560
10561         * src/device/lib/_mulint.c  : new, with assember functions
10562
10563         * src/device/lib/_mullong.c : new, with assember functions
10564
10565         * src/device/lib/_divuint.c : with assember functions
10566
10567         * src/device/lib/_divsint.c : with assember functions
10568
10569         * src/device/lib/_divulong.c: with assember functions
10570
10571         * src/device/lib/_divslong.c: with assember functions
10572
10573         * src/device/lib/_moduint.c : with assember functions
10574
10575         * src/device/lib/_modsint.c : with assember functions
10576
10577         * src/device/lib/_modulong.c: with assember functions
10578
10579         * src/device/lib/_modslong.c: with assember functions
10580
10581         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10582
10583         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10584
10585         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10586                                       replaced _mululong.c and _mulslong.c by _mullong.c
10587
10588 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10589
10590         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10591
10592 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10593
10594         * src/SDCCglue.c: test, if win32api is available for MINGW
10595
10596 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10597
10598         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10599         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10600         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10601         * support/regression/ports/host/spec.mk: removed GENERIC
10602         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10603         * support/regression/ports/z80/spec.mk: removed GENERIC
10604
10605 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10606
10607         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10608
10609         * support/regression/tests/bug-467035.c: Created.
10610
10611 2001-10-01    <johan AT FRIJA>
10612
10613         * src/SDCC.y: fixed bug #466586 part 1
10614
10615 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10616
10617         * SDCCicode.c: z80 has no generic pointers
10618         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10619
10620 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10621
10622         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10623
10624 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10625
10626         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10627
10628         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10629
10630 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10631
10632         * configure.in: Fixed up so that ucsim is only configured once.
10633
10634         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10635
10636         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10637         (getPathDifference): As above.
10638
10639         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10640
10641         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10642
10643 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10644         * .version: Updated to 2.3.1
10645
10646         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10647         Added copyright header.
10648
10649         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10650         (assemble): Added support for macro based assembler commands.
10651         (linkEdit): Added support for macro based linker commands.
10652         (preProcess): Changed the pre-processor to use macros.
10653         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10654         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10655
10656         * device/lib/z80/crt0.s: Added module name for debugging.
10657
10658 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10659
10660         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10661
10662         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10663
10664         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10665
10666         * src/Makefile.in: Added SDCCmacro and SDCCutil
10667
10668 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10669
10670         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10671
10672 2001-09-16    <johan AT FRIJA>
10673
10674         * 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.
10675
10676 2001-09-15    <johan AT FRIJA>
10677
10678         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10679         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10680
10681 2001-09-11    <johan AT FRIJA>
10682
10683         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10684
10685 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10686
10687         * support/regression/tests/bug-460444.c: Added test case.
10688
10689         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10690         (genCast): Added justification for all of the asserts.
10691
10692 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10693
10694         * support/regression/support.c: _xdata replaced by xdata
10695
10696         * support/regression/spec.mk: removed _generic
10697
10698 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10699
10700         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10701
10702         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10703         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10704
10705         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10706
10707         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10708
10709         * support/regression/tests/bug-460010.c: Added test case.
10710
10711         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10712
10713 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10714
10715         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10716
10717         * support/regression/testfwk.c: removed workaround for bug #436344
10718
10719         * support/regression/tests/bp.c: use less memory with mcs51
10720
10721         * support/regression/tests/bug-441448.c: use less memory
10722
10723         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10724
10725         * support/regression/collate-results.py: typo
10726
10727 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10728
10729         * support/regression/tests/fetchoverlap.c: Added new test case.
10730
10731         * support/regression/tests/bp.c: Added new test case.
10732
10733         * support/regression/tests/bug-448984.c: Added new test case.
10734
10735         * support/regression/tests/pow2shifts.c: Added new test case.
10736
10737         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10738         (genlshTwo): Fixed right shift for count > 8.
10739
10740         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10741
10742 2001-09-08    <johan AT FRIJA>
10743
10744         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10745
10746 2001-09-07    <johan AT FRIJA>
10747
10748         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10749
10750         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10751
10752 2001-09-06    <johan AT FRIJA>
10753
10754         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10755         * bernhard noted me at this: "() equals to (void)" (1.38)
10756
10757 2001-09-05    <johan AT FRIJA>
10758
10759         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10760
10761 2001-09-04    <johan AT FRIJA>
10762
10763         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10764
10765
10766 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10767
10768         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10769
10770 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10771
10772         * link/z80/aslink.h: Fixed path for PATH_MAX
10773
10774 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10775
10776         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10777
10778         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10779
10780         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10781
10782         * 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.
10783
10784 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10785
10786         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10787         (genCmp): Fixed up genCmp for the GB with longs.
10788
10789         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10790
10791         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10792
10793         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10794
10795         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10796
10797 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10798
10799         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10800
10801 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10802
10803         * 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.
10804
10805         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10806
10807 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10808
10809         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10810
10811         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10812
10813 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10814
10815   * sim/ucsim/configure:    little improvement of Cygwin-detection
10816   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10817   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10818   * support/regression/tests/bug-221100.c: small changes for mcs51
10819   * support/regression/tests/bug-221168.c: small changes for mcs51
10820   * support/regression/tests/bug-227710.c: small changes for mcs51
10821   * support/regression/tests/staticinit.c: small changes for mcs51
10822   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10823   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10824   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10825
10826 $Revision$