91ca8c2093d2d3f9ce812c73211f7aa54bb122ed
[fw/sdcc] / ChangeLog
1 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/mcs51/gen.c (genCall): fixed bug 1457608
4
5 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6
7         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
8         changes seem to cause (trigger?) problems with the build system.
9
10 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
11
12         * src/SDCCpeeph.c (operandsLiteral): new, added,
13           (callFuncByName): inserted operandsLiteral
14         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
15
16 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
17
18         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
19         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
20
21 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
22
23         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
24           implemented patch 1120823 Thanks to Willy De la Court (normal
25           interrupts need an interrupt number now if they are made critical),
26           and enabled nesting of critical functions though not for gbz80
27           (genCritical, genEndCritical): added functions
28           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
29         * src/z80/mappings.i: added "ei" to all mappings
30
31 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
32
33         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
34         submitted by the Debian SDCC maintainer Aurelien Jarno:
35         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
36         archive with gcc 4.1 on mips and wrote the patch"
37
38 2006-03-16 Raphael Neider <rneider AT web.de>
39
40         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
41           the left operand is shorter than the result (c* = lit-c* + int),
42           fixes bug #1450796
43         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
44           OP_SYMBOL
45
46 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
47
48         * src/.version: increased version number to 2.5.5
49         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
50         linking is done manually in pic16 port's _linkEdit,
51         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
52         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
53         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
54         allocate asmop as AOP_ACC,
55         (aopForRemat): added parameter 'bool result' in function declaration,
56         (pic16_aopGet): return AOP_ACC when accessing WREG,
57         (pic16_popGetTempReg): minor modification,
58         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
59         'pic16_allocWithIdx',
60         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
61         calling function in absolute addresses,
62         (genAssign): take into account AOP_ACC asmop,
63         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
64         * src/pic16/pcoderegs.c: some debug functions and lines added,
65         * src/pic16/ralloc.c (decodeRegType): added but commented out,
66         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
67         register too,
68         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
69         call to allocReg, not by manually allocating a new one,
70         (pic16_assignRegisters): now before going through the register
71         allocating functions mark all registers as free. This eliminates some
72         side effects resulting from peephole parser done earlier in the backbone
73
74 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
75
76         * src/SDCCicode.c (geniCodeLogic),
77         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
78
79 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
80
81         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
82           (genSend): bugfix, do not allocate and free twice,
83           (shiftRLong): handle partially overlapping aops
84         * support/regression/tests/bitopcse.c: fixed warning redefined idata
85
86 2006-03-08 Borut Razem <borut.razem AT siol.net>
87
88         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
89           for pic16
90
91 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
92
93         * support/regression/tests/bug1409955.c: new, added
94         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
95         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
96           (aopForSym, aopOp): increment asmop.allocated if reused,
97           (freeAsmop): decrement asmop.allocated and check for zero instead of
98           using asmop.freed,
99           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
100           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
101            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
102            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
103            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
104            genSignedRightShift, genRightShift, genDataPointerGet,
105            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
106            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
107             in reverse order from allocation,
108           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
109             added swappedLR to keep track
110         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
111           pdata & code for GCC, z80, gbz80 & hc08
112         * support/regression/tests/zeropad.c: moved defines to testfwk.h
113
114 2006-03-08 Raphael Neider <rneider AT web.de>
115
116         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
117
118 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
119
120         * device/include/mcs51/c8051f410.h: new SiLabs mcu
121         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
122         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
123
124 2006-03-06 Borut Razem <borut.razem AT siol.net>
125
126         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
127           made the linker quiet
128
129 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
130
131         * src/pic16/gen.c (genPcall): fixed bug #1443644
132         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
133         which dumps before the function entry point a data byte which represents
134         the number of the local variables used by the specified function, added
135         'xinst' for initial support for Extended Instruction Support,
136         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
137         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
138         port->fun_prefix anymore (may change later),
139         (genFunction, genEndFunction): do not store/restore local registers for
140         _main (this should take care the --main-return command line option in
141         the future),
142         (genOr): removed some legacy pic-port instructions,
143         * src/pic16/genarith.c (genAddLit): re-enabled old code because
144         performing operations with SFR's causes data to be written more than
145         once to each SFR. Perhaps SFRs should be handled in special cases...
146         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
147         pcode.h
148         * src/pic16/main.c (_process_pragma): stack bound checking did not take
149         into account for stack starting position,
150         (struct OPTIONS pic16_optionsTable): added command line argument
151         --extended or -y for Extended Instruction Support,
152         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
153         (deassignLRs): *** perhaps the most important change, old 'for' code
154         (commented out for reference), didn't account for some registers which
155         were left marked 'not free' after a pointer operation. The change
156         reduces register usage a lot in some cases
157
158 2006-03-04 Borut Razem <borut.razem AT siol.net>
159
160         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
161           _clean
162         * support/regression/tests/bug-524697.c: decreased array size for
163           mcs51 to fit into the internal RAM
164         * support/regression/Makefile.in: a little bit more verbose
165
166 2006-03-03 Borut Razem <borut.razem AT siol.net>
167
168         * support/regression/fwk/lib/testfwk.c,
169           support/regression/fwk/include/testfwk.h: introduced function
170           _prints(), nonrecursive _printn(), call _initEmu() from main()
171         * support/regression/ports/gbz80/support.asm,
172           support/regression/ports/ucz80/support.asm,
173           support/regression/ports/z80/support.asm,
174           support/regression/ports/ds390/support.c,
175           support/regression/ports/hc08/support.c,
176           support/regression/ports/host/support.c,
177           support/regression/ports/mcs51/support.c,
178           support/regression/ports/xa51/support.c: added empty _initEmu()
179           function
180         * support/regression/ports/pic16/gpsim.cmd,
181           support/regression/ports/pic16/spec.mk,
182           support/regression/ports/pic16/support.c,
183           support/regression/Makefile.in: added pic16 regression test
184
185 2006-03-01 Raphael Neider <rneider AT web.de>
186
187         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
188           genConstPointerGet): use safe way of generating MOVFF to cover
189             literals as well as registers, fixes bug #1440527
190         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
191             dereference
192           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
193             more correctly, fixes bug #1232186
194           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
195         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
196             gplink guess the correct processor in more cases, applied patch
197             from Till Riedel attached to and fixing bug #1436552
198
199 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
200
201         * support/regression/tests/array.c: added, contains check for #1434401
202         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
203
204 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
205
206         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
207         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
208         * device/include/mcs51/c8051f326.h,
209         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
210         * device/include/mcs51/c8051f000.h,
211         * device/include/mcs51/c8051f018.h,
212         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
213           PCON_IDLE,PCON_STOP and added sfr16 definitions
214
215 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
216
217         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
218           genGetWord): fixed bug 1409955
219
220 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
221
222         * device/include/hc08/mc68hc908gp32.h,
223         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
224
225 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
226
227         * src/SDCCast.c (constExprValue): return NULL if not a value
228         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
229         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
230         * support/regression/tests/bitfields.c: enabled signed bitfield for all
231
232 2006-02-13 Borut Razem <borut.razem AT siol.net>
233
234         * src/regression/ptrarg.c: added, fails due to bug #1430967
235         * src/regression/Makefile: ptrarg.c added, ...
236
237 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
238
239         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
240         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
241
242 2006-02-11 Borut Razem <borut.razem AT siol.net>
243
244         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
245           print "Processor: xxx" message to stdout only if --verbose
246
247 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
248
249         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
250         * support/regression/tests/bug1426356.c: added
251         * support/regression/tests/bitfields.c: removed 2 tests
252
253 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
254
255         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
256         * device/include/mcs51/c8051f330.h,
257         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
258           PCON_IDLE,PCON_STOP and added sfr16 definitions
259         * device/lib/_divsint.c,
260         * device/lib/_divuint.c,
261         * device/lib/_divulong.c,
262         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
263           register bank bug for small stackauto
264
265 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
266
267         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
268
269 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
270
271         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
272         * all.dsp: corrected several bin paths
273         * device/include/mcs51/c8051f120.h,
274         * device/include/mcs51/c8051f300.h,
275         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
276           to PCON_IDLE,PCON_STOP
277         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
278         * device/lib/printf_large.c (output_float): fixed bug 1388703
279         * support/regression/tests/bug1057979.c: added test for bug 1388703
280
281 2006-02-08 Raphael Neider <rneider AT web.de>
282
283         * src/pic/pcode.c (pciTRIS): fixed typo,
284           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
285           (LinkFlow): fixed handling of flows that end in a call,
286           (ReuseReg): perform safety check earlier
287         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
288             to work with flows at the beginning of a pBlock,
289             fixes #1426557 (Symbol not previously defined),
290           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
291             usage information
292           (RemoveUnusedRegisters): update register usage info
293         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
294             created, reuse existing ones instead
295         * src/pic/gen.c (genPcall): fixed #1424719
296
297 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
298
299         * link/z80/lkmain.c,
300         * link/z80/lklex.c,
301         * link/z80/lkdata.c,
302         * link/z80/aslink.h: fixed build on current cygwin:
303         replaced getline() by lk_getline()
304
305 2006-02-01 Borut Razem <borut.razem AT siol.net>
306
307         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
308           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
309           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
310           src/regression/bool1.c, src/regression/bool2.c,
311           src/regression/bool3.c, src/regression/call1.c,
312           src/regression/compare.c, src/regression/compare10.c,
313           src/regression/compare2.c, src/regression/compare3.c,
314           src/regression/compare4.c, src/regression/compare5.c,
315           src/regression/compare6.c, src/regression/compare7.c,
316           src/regression/compare8.c, src/regression/compare9.c,
317           src/regression/configword.c, src/regression/for.c,
318           src/regression/inline.c, src/regression/mult1.c,
319           src/regression/nestfor.c, src/regression/or1.c,
320           src/regression/pointer1.c, src/regression/ptrfunc.c,
321           src/regression/rotate1.c, src/regression/rotate2.c,
322           src/regression/rotate3.c, src/regression/rotate4.c,
323           src/regression/rotate5.c, src/regression/rotate6.c,
324           src/regression/rotate7.c, src/regression/string1.c,
325           src/regression/struct1.c, src/regression/sub.c,
326           src/regression/sub2.c, src/regression/switch1.c,
327           src/regression/while.c, src/regression/xor.c,
328           src/regression/create_stc, src/regression/simulate,
329           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
330           regression tests
331         * src/regression/gpsim_assert.h: added
332
333 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
334
335         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
336         ((void (code *) (void)) 0) ();
337         * as/hc08/aslex.c,
338         * as/hc08/aslink.h,
339         * as/hc08/asm.h,
340         * as/hc08/asmain.c,
341         * as/hc08/lkdata.c,
342         * as/hc08/lklex.c,
343         * as/hc08/lkmain.c,
344         * as/mcs51/aslex.c,
345         * as/mcs51/aslink.h,
346         * as/mcs51/asm.h,
347         * as/mcs51/asmain.c,
348         * as/mcs51/lkdata.c,
349         * as/mcs51/lklex.c,
350         * as/mcs51/lkmain.c,
351         * as/z80/aslex.c,
352         * as/z80/asm.h,
353         * as/z80/asmain.c: fixed build on current cygwin:
354         replaced getline() by as_getline()
355
356 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
357
358         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
359         declarator in the symbol chain
360         * src/SDCCsymt.h,
361         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
362         parameter list for function pointers
363         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
364         * support/regression/tests/bug-716242.c: added
365
366 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
367
368         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
369         offset if possible
370         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
371
372 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
373
374         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
375         inifinitely recurseable, added static
376         * support/regression/tests/bug-1408066.c: added
377
378 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
379
380         * src/SDCCicode.h,
381         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
382         renamed, added possibility to create "postLoopLbl"-labels
383         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
384         newiTempLoopHeaderLabel
385         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
386         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
387         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
388         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
389         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
390         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
391         (basicInduction): fixed bug #136564, made static,
392         (loopInduction): changed parameter of basicInduction, made static,
393         (addPostLoopBlock): added
394         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
395         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
396         findLoopEndSeq
397         * support/regression/tests/bug-136564.c: added
398         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
399         --std-sdcc99 to LIBSDCCFLAGS
400
401 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
402
403         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
404         while loop
405         * support/regression/tests/bug-1406131.c: added
406
407 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
408
409         * src/SDCCast.c (decorateType): fix promotion of unary minus
410         * src/SDCCsymt.c (computeType): beautified
411         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
412         (valUnaryPM, valComplement): fix sign and promotion,
413         (valNot): ANSI: result type is int (SDCC: unsigned char)
414         * support/regression/tests/uminus.c: speedup by removing superflous
415         test case 'int'
416         * support/regression/tests/onebyte.c: added promotion and signedness
417         tests for unary minus
418         * support/regressions/tests/bug-477927.c: disable warning about
419         uninitialized variables
420         * support/regression/tests/not.c: added
421
422 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
423
424         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
425         * src/mcs51/gen.c (gen51Code): show final register usage after
426         fillGaps in asm with --i-code-in-asm
427         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
428         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
429         incUsed, rliveClear, adjustIChain): made static,
430         (setFromRange): excluded because it's unused,
431         (findPrevUseSym, markWholeLoop): added,
432         (findPrevUse): rewritten; fixes bug 895992; now a complete search
433         through all branches of predecessors enables sdcc to emit the warning
434         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
435         (rlivePoint): made static, added parameter emitWarnings which is only
436         true during the first run out of two,
437         (findRecursiveSucc, findRecursivePred): removed,
438         (computeLiveRanges): made static, added parameter emitWarnings,
439         (dumpIcRlive): added for debugging only
440         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
441         removed prototype of setFromRange()
442         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
443         in call of computeLiveRanges()
444         * support/regression/tests/bug-895992.c: added
445         * support/regression/tests/bug-971834.c: added
446         * support/valdiag/tests/bug-895992.c: added
447         * support/valdiag/tests/bug-971834.c: added
448
449 2005-12-18 Raphael Neider <rneider AT web.de>
450
451         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
452           (genUnpackBits): improved code for direct operands,
453           (genPackBits): improved code for literal assignment to bitfields
454             and for direct destination operands (no FSR indirection),
455             prevented redundant AND, fixes #1362800,
456           (AccLsh): added parameter to disable masking of the result
457         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
458           skip instructions with side-effects (like incfsz),
459           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
460         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
461         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
462           fixes #1375263
463
464 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
465
466         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
467         volatile variables as spill location
468
469 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
470
471         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
472         replacing literals
473         * support/regression/tests/bug-1376320.c: added
474
475 2005-12-08 Raphael Neider <rneider AT web.de>
476
477         * src/pic/device.c: renamed is_shared to pic14_is_shared
478         * src/pic/gen.c (genIfx): re-enabled handling of sbits
479         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
480           (is_valid_identifier): added for above workaround
481
482 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
483
484         * device/lib/Makefile.in: fixed to enable port-specific-objects
485         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
486           char, thanks Hubert Sack
487         * doc/sdccman.lyx: documented --xstack-loc,
488           elaborated a bit more on interrupts and pitfalls,
489           removed "setjmp/longjmp unsupported",
490           documented some unsupported C99 features
491         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
492         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
493           if, thanks Hubert Sack
494         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
495         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
496           make make_library
497         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
498           regression tests can report resource usage (rfe 700441)
499         * support/regression/collate-results.py: report resource usage
500         * support/regression/ports/ds390/spec.mk,
501         * support/regression/ports/hc08/spec.mk,
502         * support/regression/ports/mcs51/spec.mk,
503         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
504         * support/regression/ports/ds390/uCsim.cmd,
505         * support/regression/ports/hc08/uCsim.cmd,
506         * support/regression/ports/mcs51/uCsim.cmd,
507         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
508         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
509           library, use the default one
510         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
511           building the library
512
513 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
514
515         * config.dsp: added dependency on .version and configure_vc.awk
516         * device/include/setjmp.h: updated for --stack-auto and --xstack
517         * device/include/mcs51/at89c51snd1c.h: corrected line endings
518         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
519         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
520         * device/lib/libsdcc.lib: added _setjmp
521         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
522           (decorateType): fixed bug 1372851,
523           (optimizeGetHbit): fixed warning
524         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
525           array initialisation
526         * support/regression/tests/bug1057979.c: added test for bug 1358192
527         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
528
529 2005-12-03 Borut Razem <borut.razem AT siol.net>
530
531         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
532           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
533
534 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
535
536         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
537         createIval): implement symbol independant "flexible array member",
538         (createIvalCharPtr): implemented flexible array initialisation with a
539         string
540         * src/SDCCsymt.c (copyStruct): removed,
541         (getSize): fixed misleading comment,
542         (getAllocSize): removed, the additional allocation size is now in
543         sym->flexArrayLength,
544         (checkStructFlexArray): new, syntax checks for flexible array members,
545         (compStructSize): added syntax checks for "flexible array members"
546         (copyStruct): removed,
547         (copyLinkChain): removed inefficient fix for bug 770487
548         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
549         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
550         symbol->flexArrayLength
551         * src/SDCCerr.c,
552         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
553         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
554         * support/regression/tests/structflexarray.c: added
555         * support/valdiag/tests/structflexiblearray.c: added
556
557 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
558
559         * src/SDCCast.c (decorateType): fixed bug 1368489
560         * support/Util/SDCCerr.c,
561         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
562
563 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
564
565         * device/include/mcs51/at89c51snd1c.h: added file submitted by
566           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
567
568 2005-11-27 Borut Razem <borut.razem AT siol.net>
569
570         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
571           support/cpp2/mkdeps.h: added command line option
572           -obj-ext=<extension> to SDCPP to define object file externion, used
573           for generation of make dependencies (-M)
574         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
575
576 2005-11-26 Borut Razem <borut.razem AT siol.net>
577
578         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
579           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
580           added pic and pic16 libraries
581
582 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
583
584         * device/include/float.h: Corrected typo in prototype of __fsgt
585
586 2005-11-25 Borut Razem <borut.razem AT siol.net>
587
588         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
589           added creation of model-mcs51-stack-auto libraries
590
591 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
592
593         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
594         and fields-list too
595         * src/SDCCast.c (createIvalArray): removed obsolete comment
596
597 2005-11-24 Borut Razem <borut.razem AT siol.net>
598
599         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
600           added missing device/lib/mcs51/crt*.asm sources
601
602 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
603
604         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
605
606 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
607
608         * device/lib/_fs2schar.c,
609         * device/lib/_fs2sint.c,
610         * device/lib/_fs2slong.c: optimized inline asm
611
612 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
613
614         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
615           Better handling of floats between -1.0 and 0.0.
616
617 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
618
619         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
620           (the missing "if"s prohibited removal of redundant labels)
621
622 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
623
624         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
625           Properly convert floats between -1.0 and 0.0 to long, int, and char
626           types (max integer value of negative floats tends to zero).
627         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
628           Removed changes made so to work properly with floats between
629           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
630           and _fs2char.c
631
632 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
633
634         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
635         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
636         (genCast) cosmetic change
637         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
638         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
639         from mcs51
640         * support/regression/tests/bitfields (testSignedBitfields): added
641
642 2005-11-18 Borut Razem <borut.razem AT siol.net>
643
644         * sdcc/device/lib/Makefile.in: remove all unnecessary files
645         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
646           introduced SILENT option to make building of pic16 libraries less
647
648 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
649
650         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
651           Now they work properly with floats between -1.0 and 0.0
652         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
653
654 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
655
656         * src/SDCCicode.c (printOperand): added missing else
657
658 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
659
660         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
661         reformatted for better readability
662         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
663         signed bitfields
664
665 2005-11-17 Borut Razem <borut.razem AT siol.net>
666
667         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
668           introduced SILENT option to make building of pic16 libraries less
669           verbose - used for nightly snapshot build
670         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
671           available on Win32 platforms.
672         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
673           medium, large, pic and pic16
674
675 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
676
677         * device/lib/printf_large.c: Temporary patch for bug 1358192:
678           printf("%f"...) sets fraction to zero.
679
680 2005-11-16 Raphael Neider <rneider AT web.de>
681
682         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
683           fixes #1357221
684         * src/pic/gen.c (genIfx): implemented for CARRY bit
685         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
686           to generic pointers, fixes #1357332,
687           (pic16_movLit2f): NEW,
688           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
689
690 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
691
692         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
693
694 2005-11-11 Raphael Neider <rneider AT web.de>
695
696         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
697         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
698           compute pointer's type from operand,
699           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
700           improved single bit reads, fixes bug #1353379
701
702 2005-11-09 Borut Razem <borut.razem AT siol.net>
703
704         * support/scripts/sdcc.nsi: added lib/pic to the package
705
706 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
707
708         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
709
710 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
711
712         * support/regression/tests/bug1348008.c: added
713         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
714         * support/regression/tests/bug1337835.c: updated comment
715
716 2005-11-06 Borut Razem <borut.razem AT siol.net>
717
718         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
719           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
720           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
721           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
722           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
723           dynamic construction of cl_error_class and derivates - 2.nd try
724
725 2005-11-05 Borut Razem <borut.razem AT siol.net>
726
727         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
728           bug, which caused Bus Errors on sparc solaris
729
730 2005-11-04 Borut Razem <borut.razem AT siol.net>
731
732         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
733           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
734           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
735           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
736           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
737           and derivates to resolve the initialization problem on OSX
738
739 2005-11-02 Borut Razem <borut.razem AT siol.net>
740
741         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
742           corrected typo - #include <winsock2.h>
743
744 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
745
746         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
747           (_asxxxx_mapping): added org directive for future enhancements
748
749 2005-11-01 Borut Razem <borut.razem AT siol.net>
750
751         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
752           enabled sockets on WIN32
753         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
754
755 2005-10-31 Borut Razem <borut.razem AT siol.net>
756
757         * support/regression/generate-cases.py: escape backslashes in {testcase}:
758           WIN32 backslash path delimiters should be escaped when used in C strings
759         * support/regression/tests/bitfields.c: exclude failing assertions for
760           __CYGWIN32__ and __MINGW32__ hosts
761
762 2005-10-30 Borut Razem <borut.razem AT siol.net>
763
764         * src/SDCCutil.c: corrected double comparison typo
765
766 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
767
768         * device/lib/medium/Makefile: added for new memory model medium
769         * device/include/asm/mcs51/features.h: updated for medium/pdata
770         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
771           added Multiply & Accumulate sbit's and MAC0_PAGE define
772         * device/include/mcs51/c8051f300.h: added sfr16 definitions
773         * device/include/mcs51/c8051f310.h: added sfr16 definitions
774         * device/lib/_mullong.c: update for medium model
775         * device/lib/incl.mk: added medium model
776         * doc/sdccman.lyx: documented medium model
777         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
778         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
779         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
780         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
781           (allocParms): set SCLS and OCLS to pdata for medium model
782         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
783           for pdata,
784           (powof2): return <0 if not power of 2
785         * src/avr/gen.c (genBitWise): use updated powof2
786         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
787           (shiftR2Left2Result): small optimization in setup, save acc when storing,
788           (shiftLLeftOrResult): use B if necessary
789         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
790         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
791         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
792         * support/regression/Makefile.in: added test-mcs51-medium
793         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
794
795 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
796
797         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
798         specifier unsigned
799         * device/lib/time.c (mktime): fixed bug 1334315
800
801 2005-10-28 Raphael Neider <rneider AT web.de>
802
803         * device/include/pic/p16f_common.inc: added common declarations
804         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
805
806 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
807
808         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
809           (aopPutUsesAcc): added to predict accumulator use,
810           (assignResultValue): save acc if necessary,
811           (genMinusDec): store result if indirectly addressed,
812           (genDivOneByte):  save acc if necessary,
813           (movLeft2Result): bugfix if left already in acc,
814           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
815             attention to accumulator use (esp. pdata),
816           (genReceive): receive pdata correctly
817         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
818         * src/SDCCicode.h: added isOperandInPagedSpace prototype
819
820 2005-10-27 Raphael Neider <rneider AT web.de>
821
822         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
823
824 2005-10-27 Raphael Neider <rneider AT web.de>
825
826         * .version: changed version to 2.5.4
827         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
828         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
829           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
830             arithmetics support routines
831         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
832         * device/lib/Makefile.in: also create installdir for pic
833
834         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
835           pic14 port as well
836         * src/pic/device.c (dump_sfr): rewritten to delegate register
837           placement to the linker (use `extern sym' rather than sym EQU addr),
838           (validAddress): fixed to check last specified address
839         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
840           (popGetLit): truncate literal value to 8 bit,
841           (popGet): moved assert to more appropriate place
842           (popGetExternal): create pCode operand from and mark the according
843             symbol as being `extern'
844           (popGetAddr): added sanity check on immediate's offset, provide
845             GPOINTER tag on demand
846           (aopPut): fixed for immediates,
847           (mov2w_op): move operand's address or contents to WREG (depending on
848             operand type), safer variant of mov2w,
849           (movwf,call_libraryfunc): NEW, handy abbreviations,
850           (get_argument_pcop,get_return_val_pcop,pass_argument,
851           get_returnvalue): interface for accessing function parameters and
852             return values,
853           (assignResultValuei,genRet): use new parameter/return value interface
854           (pic14_getDataSize): back to old version handling generic pointers,
855           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
856             provided implementation and/or fixed old one,
857           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
858             calls, removed legacy 8051 reference code
859           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
860           (loadSignToC): NEW, move the operands sign bit to CARRY,
861           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
862             genRightShiftSigned, accepts negative shift counts,
863           (setup_fsr): load FSR and adjust IRP (indirect memory access),
864           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
865             generic pointers, __data pointers and __code pointers,
866           (genUnpackBits,genPackBits): rewritten to work with generic pointers
867             and signed bitfields, limit bitfields to 8 bit,
868           (genDataPointerGet): fixed number of bytes read,
869           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
870           (genPointerGet,genPointerSet): fixed handling of __code pointers,
871             pointers to constant data are no longer assumed to point to __code
872             space, removed invalid pointer types,
873           (bitpatternFromVal): retrieve the PICs representation of an integer
874             or float literal,
875           (genDataPointerSet): fixed assigning to po_immediate operands,
876           (genGenPointerSet): implemented as library call,
877           (genIfx): fixed incorrect condition,
878           (genAddrOf): limit generic pointers' addresses to 2 bytes,
879             provide GPOINTER tag according to destination's storage class,
880           (genCast): added code to handle casting to generic pointers, added
881             sign-/zero extension of the result
882           (aop_isLitLike,op_isLitLike): fixed handling of immediates
883         * src/pic/gen.h: added macros to access IRP bit in STATUS register
884         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
885           extend the result
886         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
887           address/register resides in the shared banks
888           (emitSymbolToFile): improved to handle global and `pinned' symbols,
889             put all variables into separate sections (have the linker arrange
890             them)
891           (picglue): put init code and interrupt handlers in separate sections
892         * src/pic/main.c: added port specific options table, modified to PORT
893           structure to make GPOINTERs 3 byte, added pic14_options
894           (_pic14_do_link): private linking routine (update paths to libraries,
895             add libsdcc.lib by default)
896         * src/pic/main.h: declare pic14_options
897         * src/pic/pcode.c: fixed instructions i/o relations,
898           (RegCond): reverted to correct version,
899           (newpCodeOpLit): truncate literals to 8 bit,
900           (genericPrint): added debug output,
901           (getRegFromInstruction): fixed for various operand types, simplified
902           (BuildFlow): fixed broken handling of isntructions with labels
903           (LinkFlow): start at last instruction in flow (skip trailing comments),
904             pass the flow on to the next instruction after CALL
905           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
906           (insertPCodeInstruction): fixed inserting after a skip instruction,
907           (DoBankSelect): fixed for labeled instructions
908           (OptimizepBlock): honor --nopeep switch
909           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
910         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
911         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
912           (pCodeOptime2pCodes): allow disabling this optimization via
913             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
914             but is still buggy), started implementation of a dataflow based
915             pCode optimization (CSE + dead code elimination)
916           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
917         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
918           names are independant of the stack location and therefore portable across
919           devices
920
921 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
922
923         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
924           (selectSpil): fixed bug 1337835 by not spilling bit variables
925         * support/regression/tests/bug1337835.c: added test for this bug
926         * src/mcs51/peeph.def: restart after rule 3.c,
927           addded rules 263.x to optimize loading constants
928
929 2005-10-26 Raphael Neider <rneider AT web.de>
930
931         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
932         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
933           (genAssign): emit warning when casting literals to generic pointer
934             type, also applies when taking the address of a fixed variable,
935           (genCast): improved casting to generic pointers
936         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
937           extern variables, added verbose error message
938         * device/include/pic16/{string.h,errno.h}: added #pragma library c
939
940 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
941
942         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
943         carry must be complemented too
944         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
945         could be emitted by genMinus
946         * src/SDCCval.c (constVal): fixed bug 1305065
947
948 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
949
950         * src/SDCCast.c (addCast): added promotion for bit variables
951         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
952         promotion casts + optimisation
953         (optimizeGetWord): fix warning 'i' might be used uninitialized
954         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
955         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
956
957 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
958
959         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
960         all chars are promoted to int; promotion should be handled in SDCCast.c
961
962 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
963
964         * device/lib/_strcmp.c: Fixed bug 1326457
965
966 2005-10-11 Raphael Neider <rneider AT web.de>
967
968         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
969         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
970
971 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
972
973         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
974         * support/regression/tests/sfr16.c: added test for the sfr32 bug
975
976 2005-10-04 Raphael Neider <rneider AT web.de>
977
978         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
979           device/lib/pic16/pics.all: added pic18f1320
980         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
981
982 2005-09-30 Raphael Neider <rneider AT web.de>
983
984         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
985         * src/pic16/devices.inc: NEW, provides device descriptions
986         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
987
988 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
989
990         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
991           GETHBIT
992
993 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
994
995         * doc/sdccman.lyx: updated Highest Order Bit documentation,
996           documented Any Order Bit, Higher Order Byte and Higher Order Word
997         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
998         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
999           (optimizeGetAbit): new, to get any bit, not only the high bit,
1000           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1001           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1002           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1003           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1004             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1005             GETABIT, GETBYTE, GETWORD: decorate them,
1006           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1007           (ast_print): added GETABIT, GETBYTE, GETWORD
1008         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1009         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1010           (geniCodeBinary): new generic binary icode,
1011           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1012         * src/port.h: updated comment for PORT.hasExtBitOp
1013         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1014           (genGetByte): new, to get a single byte,
1015           (genGetWord): new, to get a word from a long,
1016           (gen51Code): added GETABIT, GETBYTE, GETWORD
1017         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1018
1019 2005-09-23 Raphael Neider <rneider AT web.de>
1020
1021         * configure.in, configure: have device/lib/pic configured
1022         * device/lib/Makefile.in: added model-pic14
1023         * device/lib/clean.mk: added pic/ to clean rule
1024         * device/lib/pic: added rudimentary pic14 library providing support
1025           functions for multiplication/division/generic pointer access
1026         * src/SDCCopt.c (convilong): mark support functions as extern
1027           for pic14 port as well
1028         * src/pic/gen.c (genMult): added assertions,
1029           (genpic14Code): emit warning on unhandled iCodes
1030         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1031         * src/pic/pcode.c (pCodeOpCopy),
1032         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1033           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1034           SFR_REGISTER}), made safe for future extensions
1035         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1036           instructions even if preceeded by SKIP instructions (also remove
1037           them); removed unused code
1038         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1039           prevents leaving parts of the structure uninitialized after copying
1040
1041 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1042
1043         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1044           ago by me
1045         * support/regression/tests/addsub.c: added test for the bug
1046
1047 2005-09-21 Raphael Neider <rneider AT web.de>
1048
1049         * device/include/pic16/pic18f1220.h,
1050           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1051         * device/lib/pic16/Makefile.rules: added missing opening paren
1052         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1053           are provided in genutils.c,
1054           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1055           operand/result sizes,
1056           (genCmp): assert on NULL pointers first, then check deref'ed values
1057         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1058           result size
1059
1060 2005-09-18 Raphael Neider <rneider AT web.de>
1061
1062         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1063           as these are now unused,
1064           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1065         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1066           local, avoids uninitialized pointer dereference on r->name
1067         * src/pic16/ralloc.c (newReg): fixed indentation
1068
1069 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1070
1071         * src/SDCCval.c (constVal): fixed bug 730366
1072         * support/Util/SDCCerr.c,
1073         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1074
1075 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1076
1077         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1078
1079 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1080
1081         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1082
1083 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1084
1085         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1086           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1087         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1088           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1089         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1090         * packihx/packihx.c (hexDigit): made c unsigned char
1091         * as/mcs51/lklibr.c (fndsym),
1092         * link/z80/lkgb.c (gb),
1093         * link/z80/lklibr.c (fndsym),
1094         * link/z80/lkrloc.c (relr),
1095         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1096         * src/SDCC.lex (checkCurrFile, process_pragma),
1097         * src/SDCCglue.c (spacesToUnderscores),
1098         * src/SDCCmain.c (setParseWithComma, processFile),
1099         * src/asm.c (tvsprintf, printCLine),
1100         * src/avr/gen.c (emitcode, aopPut),
1101         * src/ds390/gen.c (emitcode),
1102         * src/hc08/gen.c (emitcode, emitinline),
1103         * src/mcs51/gen.c (emitcode, genInline),
1104         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1105           tokenizeLineNode),
1106         * src/pic/ralloc.c (debugLog),
1107         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1108           tokenizeLineNode),
1109         * src/pic16/ralloc.c (debugLog),
1110         * src/z80/main.c (_process_pragma):
1111            made all ctype.h function calls safe
1112         * src/SDCCopt.c: include math.h for fabs
1113         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1114           and used them throughout the code to make ctype.h function calls safe
1115         * src/ds390/main.c (asmLineNodeFromLineNode),
1116         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1117         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1118            unsigned char*
1119         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1120           (newpCodeAsmDir): made ctype.h function calls safe
1121         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1122           pic16_emitcode):  made lbp unsigned char*
1123         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1124           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1125         * src/xa51/gen.c (emitcode),
1126         * src/z80/gen.c (_emit2): made lbp unsigned char*
1127         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1128            char*
1129
1130 2005-09-05 Raphael Neider <rneider AT web.de>
1131
1132         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1133           access bank splitpoint
1134
1135 2005-09-05 Raphael Neider <rneider AT web.de>
1136
1137         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1138
1139 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1140
1141         * .version: changed to version 2.5.3
1142         * doc/sdccman.lyx: changed version to 2.5.3,
1143           documented --codeseg and --constseg and pragma codeseg and constseg,
1144           documented bit parameters (reentrant) and bit returning
1145         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1146            currFunc->recvSize, but is this ok for all ports?
1147           (ast2iCode): result of ~ on unsigned char must be cast to int for
1148            bool to work
1149         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1150           function pointers in bit space
1151         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1152           (processFuncArgs): call port.reg_parm() with reentrancy info
1153         * src/port.h,
1154         * src/avr/main.c,
1155         * src/ds390/main.c,
1156         * src/hc08/main.c,
1157         * src/pic/main.c,
1158         * src/pic16/main.c,
1159         * src/xa51/main.c,
1160         * src/z80/main.c: port.reg_parm prototype extended with
1161           "bool reentrant" parameter
1162         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1163           options.stackAuto for allocating bit register parameters
1164         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1165           (genSend): set BitBankUsed if it is,
1166           (selectRegBank): factored out of genCall for use in genPcall,
1167           (genCall): removed redundant dtype assignmen, use selectRegBank,
1168           (genPcall): handle returning in Carry properly, save in F0 if needed,
1169           (genReceive): handle bit register parameters
1170         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1171           (mcs51_assignRegisters): enable bit registers for all reentrant
1172            functions and don't set BitBankUsed unconditionally
1173         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1174         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1175         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1176
1177 2005-08-27 Borut Razem <borut.razem AT siol.net>
1178
1179         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1180         ppc-osx (Darwin) does not support -u option. It seems that it is
1181         supported only on Linux - GNU cp
1182
1183 2005-08-25 Borut Razem <borut.razem AT siol.net>
1184
1185         * sim/ucsim/gui.src/serio.src/Makefile.in,
1186           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1187           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1188           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1189           install and strip, since the strip at /usr/ccs/bin should be used
1190           on solaris
1191
1192 2005-08-24 Borut Razem <borut.razem AT siol.net>
1193
1194         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1195
1196 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1197
1198         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1199         ffffffffu
1200
1201 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1202
1203         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1204         * as/mcs51/lkmain.c (link_main): fixed warning
1205         * device/include/stdbool.h: ds390 has no advanced bit support yet
1206         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1207         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1208         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1209           and updated their macros
1210         * src/SDCCval.c (constVal): updated comment for renamed b_long
1211
1212 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1213
1214         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1215         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1216           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1217           (oprio): set priority for '['
1218         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1219            and adb_24_bit
1220         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1221         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1222         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1223         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1224           added overlayable BIT_BANK area
1225         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1226           (summary2): explain 'T' in legenda
1227         * as/mcs51/lkrloc.c: replaced old K&R style,
1228           (relr): added R_BIT processing,
1229           (errmsg): added "Bit-addressable relocation error",
1230           (adb_bit): added for converting from byte- to bit-addressable space,
1231           (adb_24_bit): added for converting from byte- to bit-addressable space
1232         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1233            used in reentrant functions now even as return value
1234         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1235         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1236           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1237         * src/SDCCglobl.h: added indicator BitBankUsed
1238         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1239            the bit registers b0-b7
1240         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1241           (geniCodeCast): fixed bug 1263853,
1242           (geniCodeLogicAndOr): put result in bool or char,
1243           (geniCodeReceive): added parameter func for accessing the return type,
1244           (geniCodeFunctionBody): pass func to geniCodeReceive
1245         * src/SDCCmain.c: added indicator BitBankUsed
1246         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1247         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1248           (checkSClass): don't put automatic bool/bit on stack,
1249           (checkFunction): removed check on function cannot return bit
1250         * src/SDCCsymt.h: added newBoolLink prototype
1251         * src/mcs51/gen.c (rb1regs): added bit registers,
1252           (movc): created for assigning to carry,
1253           (pushReg, popReg): created for pushing registers,
1254           (sameRegs): check both AOP_REG and AOP_CRY types,
1255           (aopOp): handle bit registers,
1256           (aopPut): optimization no self-assign,
1257           (saveRegisters): push reg->base (bits) only once for bit registers,
1258            and use pushReg,
1259           (unsaveRegisters): pop reg->base only once and use popReg,
1260           (assignResultValue): added parameter func and return in carry for bits,
1261           (genIpush): optimization no reload in A if not changed,
1262           (genSend): bit parameters in reentrant functions are passed in bit
1263            registers by first assigning to bits in B, then save registers and
1264            copy B to bits,
1265           (genCall): handle returning in Carry properly, save it in F0 if needed,
1266           (genPcall): updated assignResultValue call, this is not safe yet for bit
1267            returning function !!!
1268           (genFunction): don't generate equ's for bit registers and use pushReg,
1269           (genEndFunction): take care of bit returning functions and use popReg,
1270           (genRet): return bit in Carry,
1271           (genIfx): optimize bit registers and other directly addressable bits,
1272           (genReceive): updated assignResultValue call
1273         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1274           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1275            registers when using stack-auto
1276         * src/mcs51/ralloc.c (_G): added allBitregs,
1277           (regs8051): added the bit registers,
1278           (createStackSpil): use macro IS_BIT,
1279           (getRegBit): added to allocate a bit register, else spill,
1280           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1281           (updateRegUsage): factored out to ease stepping while debugging,
1282           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1283            also allocate bit registers,
1284           (fillGaps): handle bit registers,
1285           (findAllBitregs): added to create bit vector with all bit registers,
1286           (mcs51_allBitregs): returns this bit vector,
1287           (mcs51_assignRegisters): when using stack-auto use bit registers for
1288            passing parameters and creating local variables
1289         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1290
1291 2005-08-22 Borut Razem <borut.razem AT siol.net>
1292
1293         * device/lib/Makefile.in: replaced find option -or with -o
1294           to make it run on solaris
1295
1296 2005-08-22 Raphael Neider <rneider AT web.de>
1297
1298         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1299           fixes #1265442 (crash on Solaris)
1300
1301 2005-08-20 Borut Razem <borut.razem AT siol.net>
1302
1303         * configure, configure.in: added tests for libsocket and libnsl libraries,
1304           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1305           from support/regression/Makefile.in
1306         * support/regression/Makefile.in: added
1307         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1308         * sim/ucsim/libtool: regenerated on sparc-solaris
1309         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1310           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1311           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1312           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1313           sparc-solaris, which doesn't use GNU ld linker
1314         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1315         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1316
1317 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1318
1319         * src/mcs51/peeph.def: updated comments
1320
1321 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1322
1323         * device/lib/_gptrget.c,
1324         * device/lib/_gptrput.c: slightly shorter
1325         * doc/sdccman.lyx: incremented version
1326         * src/mcs51/peeph.def: moved peephole comments to the line of first
1327           change to better keep line correlation, reanimated 186.e
1328         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1329
1330 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1331
1332         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1333           David Saxton with quotes around file name.
1334
1335 2005-08-15 Borut Razem <borut.razem AT siol.net>
1336
1337         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1338           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1339           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1340           make tests run on x86_64 platform
1341
1342 2005-08-13 Raphael Neider <rneider AT web.de>
1343
1344         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1345           as it might be executed DURING a build (parallel make is wonderful)
1346
1347 2005-08-13 Raphael Neider <rneider AT web.de>
1348
1349         * device/lib/Makefile.in (port-specific-objects-pic16):
1350           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1351         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1352           dependency
1353         * device/lib/pic16/Makefile.rules: build subdirs before creating
1354           the library, removed builddir rule, create $(builddir) early in
1355           recurse rule, use empty recurse rule for leaf directories
1356         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1357           mkdir errors (race condition), removed duplicate suffix "hex"
1358           from clean rules
1359         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1360         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1361           prevents mkdir -p from aborting on Alpha
1362
1363 2005-08-12 Raphael Neider <rneider AT web.de>
1364
1365         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1366           db-statements in order to allow for arrays of pointers in code
1367           sections to be placed without interspersed 0-padding, fixes
1368           bug #1256215
1369         * (emitStatistics): fixed division by zero for pic18f1220
1370         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1371           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1372         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1373         * (pic16_pCodeConstString): keep track of already emitted string
1374           literals to prevent "duplicate definitions of symbol _str_NR"
1375         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1376           debug message
1377         * device/lib/Makefile.in: ignore failing PIC16 library builds
1378         * device/lib/pic16/Makefile: do not build if gputils are missing
1379         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1380
1381 2005-08-10 Raphael Neider <rneider AT web.de>
1382
1383         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1384           my last commit)
1385
1386 2005-08-10 Raphael Neider <rneider AT web.de>
1387
1388         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1389           Rokas' patch to add the new fixed point type "__fixed16x16"
1390         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1391           functions for __fixed16x16 arithmetics
1392         * device/lib/pic16: reimplemented the build system to support
1393           a separate build directory, better handling of libio (create
1394           the library in a separate subdir for each architecture) and
1395           easier configuration (centralized in Makefile.common)
1396
1397 2005-08-07 Raphael Neider <rneider AT web.de>
1398
1399         * src/pic16/gen.c (genrshTwo): fixed sign extension
1400         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1401         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1402           added T0CONbits
1403         * device/include/pic16/pic18f4220.h: NEW, header for
1404           pic18f4220 and pic18f4320
1405         * device/include/pic16/pic18fregs.h: added new devices,
1406           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1407         * device/include/pic16/signal.h: resolved name clashes
1408           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1409           to also allow testing for interrupt enable bits, added
1410           comments on how to use the macros
1411         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1412         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1413           register definitions for the devices
1414         * device/lib/pic16/pics.all: added new devices
1415         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1416           allocated memory
1417         * device/lib/pic16/libc/stdlib/memfree: do not count
1418           the block header as free memory
1419         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1420           simplified and added missing end-of-blocklist-marker
1421           (reported by Peter Onion, fixes #1252814)
1422         * (_mergeHeapBlock): fixed loop condition
1423         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1424           len==0, restructured code
1425         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1426           up a bit, reduced bitfield accesses, prevent endless loops
1427           in case of heap corruption
1428         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1429           "unreferenced arguments/must return a value" warnings
1430         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1431           replaced BAUDREG with SPBRG
1432         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1433           device/lib/pic16/debug/gstack/gstack.c: replaced
1434           _naked, _asm, _endasm with __naked, __asm, __endasm
1435
1436 2005-08-05 Raphael Neider <rneider AT web.de>
1437
1438         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1439           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1440
1441 2005-08-05 Borut Razem <borut.razem AT siol.net>
1442
1443         * device/lib/Makefile.in: added missing ';'
1444         * configure: removed ^M characters
1445
1446 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1447
1448         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1449           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1450           License
1451
1452 2005-08-04 Borut Razem <borut.razem AT siol.net>
1453
1454         * configure.in: pic16 libraries build 2nd try - enable running
1455           configure in device/lib/pic16
1456         * configure: regenerated from configure.in
1457         * device/lib/Makefile.in: create $(PORT)/bin directory
1458
1459 2005-08-03 Raphael Neider <rneider AT web.de>
1460
1461         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1462           to get/set values via pointers
1463         * (genUnpackBits,genPackBits): changed detection of
1464           ptr->bitfield vs. sym.bitfield, fixed access via generic
1465           pointers, removed dead (wrong) code for multibyte bitfields
1466         * (genNearPointerGet, genGenPointerGet): removed useless code,
1467           fixed bitfield detection, fixes #1250594
1468         * (genNearPointerSet): removed useless code
1469         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1470           and introduced macro pic16_emitpcode that conditionally emits
1471           the origin of the following pCode (useful for debugging SDCC)
1472         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1473         * (createDefmap): fixed handling of LFSR for --optimize-df
1474
1475 2005-08-02 Borut Razem <borut.razem AT siol.net>
1476
1477         * device/lib/Makefile.in: pic16 libraries build enabled since
1478           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1479
1480 2005-08-02 Raphael Neider <rneider AT web.de>
1481
1482         * src/pic16/gen.c (genPackBits): removed deprecated warning
1483         * (genGenPointerSet): fixed bitfield detection
1484
1485 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1486
1487         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1488
1489 2005-07-31 Raphael Neider <rneider AT web.de>
1490
1491         * device/lib/pic16/libdev/pic18f458.c,
1492           device/include/pic16/pic18f458.h: added missing T0CONbits
1493
1494 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1495
1496         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1497
1498 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1499
1500         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1501
1502 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1503
1504         * device/include/mcs51/at89c51ed2.h: added.
1505
1506 2005-07-23 Raphael Neider <rneider AT web.de>
1507
1508         * src/pic/gen.h: added emitpcode macro for debugging
1509         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1510           and replace by macro adding debug information on demand
1511         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1512         * (gencjne): tried to fix; replaced with correct (slower) code
1513         * (gen{Unp,P}ackBits): fixed single bit access
1514         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1515         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1516           previous instruction
1517         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1518           register has to be handled with care (forbidding movement
1519           of assignments/uses, removing assignments completely, ...)
1520         * (pCodeOptime2pCodes): make use of regIsSpecial
1521         * added lots of debugging output (commented out)
1522         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1523           from being reused as result UNLESS it is known to work
1524
1525 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1526
1527         * support/Util/dbuf.h: include <stddef.h> for size_t
1528         * .version: changed to version 2.5.2
1529
1530 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1531
1532         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1533
1534 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1535
1536         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1537           (genModOneByte): removed needless psha/pula
1538
1539 2005-07-22 Raphael Neider <rneider AT web.de>
1540
1541         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1542           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1543         * src/pic/gen.c (resolveIfx): do not "invent" labels
1544         * (genSkipc): changed to positive logic
1545         * (genSkipCond): removed as no longer needed
1546         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1547           backport from PIC16
1548         * (genLeftShift): check operands are in different registers
1549         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1550           INCF does not update CARRY...
1551         * src/pic/main.c: fixed _linkCmd
1552         * src/pic/pcode.c (unlinkpCode): added inactive code
1553         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1554           alive (do not assign result and operand overlapping registers)
1555
1556 2005-07-22 Raphael Neider <rneider AT web.de>
1557
1558         * src/pic/device.c (dump_sfr): replaced register declaration with
1559           call to emitSymbolToFile() to avoid duplicate symbols
1560         * (assignRelocatableRegisters): do not declare external symbols
1561         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1562           right (take size of type, not etype)
1563         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1564         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1565         * (packRegsForAccUse): disabled assignment of WREG as
1566           the result reg to prevent occurence of just fixed #1235003,
1567           fixes #1242954
1568         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1569           symbols (avoids duplicate symbols in .asm file)
1570         * (pic14emitRegularMap): use emitSymbolToFile()
1571         * src/pic/gen.c (aopOp): fixed spillLocation handling
1572         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1573         * (genDataPointerSet): removed unneccessary variables/output
1574
1575 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1576
1577         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1578         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1579
1580 2005-07-21 Raphael Neider <rneider AT web.de>
1581
1582         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1583           architecture cannot handle them efficiently, fixes bug #1235003
1584         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1585           check for empty sets before using them (fixes bug #1232190)
1586
1587 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1588
1589         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1590           (lnksect2): generate warnings for memory overlap
1591         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1592           constseg to set the name of these segments so you can instruct the linker
1593           to place them in banks
1594         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1595         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1596           added code_seg and const_seg to options
1597         * src/SDCCglue.c (emitMaps): use options.const_seg,
1598           (createInterruptVect): put interrupt vectors in segment HOME,
1599           (glue): put HOME before static segment and put the main glue in HOME,
1600           (glue): use options.code_seg
1601         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1602         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1603           these segments so you can instruct the linker to place them in banks
1604           (linkEdit): use code_loc for HOME segment which should be the first
1605           segment in code memory now
1606         * src/SDCCmem.c: fixed more stuff like bug 1238386
1607         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1608           (changePointer): don't change function pointers to code pointers for
1609           banked functions,
1610           (compareType): added exceptional check for banked function pointers
1611         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1612         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1613           after static in code memory
1614         * src/mcs51/gen.c: added aopLiteralLong prototype,
1615           (aopForSym): use getSize for functions,
1616           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1617           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1618           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1619           the segment,
1620           (genPcall): use call for literal function pointers and generate banked
1621           calls over the one trampoline so there's only one place for the user to
1622           modify according to his/hers hardware,
1623           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1624           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1625         * src/mcs51/main.c: added keyword banked,
1626           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1627         * support/Util/SDCCerr.c,
1628         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1629           needed for passing the bank and address to the trampoline
1630         * device/lib/mcs51/crtbank.asm: added for bankswitching
1631         * device/lib/mcs51/Makefile: added crtbank
1632
1633 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1634
1635         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1636           for fields at offset 0 of a struct or union as reported
1637           on 2005-07-07 in the developer mailing list.
1638
1639 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1640
1641         * src/SDCCmem.c: fixed bug 1238386
1642
1643 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1644
1645         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1646           (patch #1144962), added peephole 300, enabled 259.x
1647         * doc/sdccman.lyx: removed screenshot and provided link instead
1648
1649 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1650
1651         * doc/sdccman.lyx: added section about debugging with ddd
1652         * doc/figures/ddd_example.eps: screenshot of debugging session
1653
1654 2005-07-04 Raphael Neider <rneider AT web.de>
1655
1656         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1657           like CODE pointers, fixes #1115683
1658         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1659           call, fixes bugs #1232211, #1228110,
1660           fixed wrong casts to pCodeFlow from pCodeInstructions
1661
1662 2005-07-04 Raphael Neider <rneider AT web.de>
1663
1664         * src/pic/gen.c (popGet): changed assert to allow for
1665           bit operands
1666         * (popGetAddr): changed signature to provide
1667           an additional index, patched all call sites
1668         * (genCmpEq): handle literal-like operands correctly
1669         * (genAddrOf): added sanity checks on __code/__data pointers
1670         * (genAssign): added handling of symbols from __code section
1671         * (gencjne): do not generate code for comparisons whose result
1672           is neither stored nor used, fixes bug #1171114
1673         * (AccLsh, AccRsh): operate on operand instead of WREG
1674         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1675           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1676           by known count
1677         * rewrote complete shift-by-literal logic, commented unused
1678           functions out
1679         * (genConstPointerGet): get multiple bytes (if result size > 1),
1680           fixed handling of non-immediate addresses
1681         * (genPointerGet): handle CODE pointers like CONST pointers
1682         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1683         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1684           operand is to be treated as a literal or not
1685         * (mov2w,genPcall,genCmpEq),
1686           src/pic/genarith.c: use aop_isLitLike() to decide between
1687           literal/register contents
1688         * (addSign): added missing offset
1689         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1690           only emit comment in debug-mode,
1691           use {aop,op}_isLitLike throughout the file
1692         * src/pic/glue.c: fix initializers for pointers (work in progress)
1693         * src/pic/pcode.c (get_op): honor index on _const symbols
1694         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1695         * (dumppBlock): added pCode size estimation
1696         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1697           check for IS_SYMOP before OP_SYMBOL'ing
1698         * fixed indentation, compacted switch-statements
1699         * (allocReg): find free register and allocate it instead of
1700           allocating new registers all the time
1701         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1702           registers as its operands (necessary only for multibyte GETs)
1703
1704 2005-07-01 Raphael Neider <rneider AT web.de>
1705
1706         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1707           debugging .asm-output macros FENTRY + FEXIT
1708         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1709           way... I wonder...
1710         * (emitpComment): NEW, printf to pCode
1711         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1712           offset handling
1713         * (popGetAddr): NEW, variant of popGet to access an immediates
1714           high(er) bytes instead of the n'th byte of memory they reference,
1715           replaced popGet with popGetAddr where neccessary
1716         * (genDataPointerGet): reactivated and fixed implementation
1717         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1718           accesses
1719         * (genDataPointerSet): fixed multibyte assignments
1720         * (genpic14Code): fixed --i-code-in-asm handling
1721         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1722         * (genPlus): fixed index-out-of-bounds error
1723         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1724         * src/pic/ralloc.c: added debugging output macro FENTRY2
1725         * (spillThis): fixed indentation, enbraced for-body for clarity
1726         * (rematStr): commented out as now unused
1727         * (regTypeNum): commented out special spill case (overwrites
1728           arbitrary values)
1729         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1730
1731 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1732
1733         * doc/sdccman.lyx: documented sfr16/sfr32,
1734           added example for using storage class with function pointers
1735         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1736
1737 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1738
1739         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1740         * device/lib/_itoa.c,
1741         * device/lib/_ltoa.c: optimized codesize
1742         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1743           but don't know how to suppress the double warning.
1744         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1745         * support/Util/SDCCerr.c,
1746         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1747
1748 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1749
1750         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1751           fixed old K&R prototypes
1752         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1753         * device/lib/_gptrget.c,
1754         * device/lib/_gptrgetc.c,
1755         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1756           also new versions for small generic pointers and banked generic pointers
1757         * src/port.h: added const_name
1758         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1759         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1760         * src/SDCCcse.c (findPrevIc): check all associative operators
1761         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1762         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1763         * src/SDCCmem.c: updated comments,
1764           set far-space to 0 for pdata, results in optimized code
1765         * src/SDCCmem.h: added macro CONST_NAME
1766         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1767           moving the info into the highest bits, see also gptrget/gptrput
1768         * src/src.dsp: added sdcc.ico to project files
1769         * src/avr/gen.c (genCast): fixed bug 0x%d
1770         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1771         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1772           relation between ptr_type and DCL_TYPE,
1773           (genCast): fixed bug 0x%d
1774         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1775           (CODE)" for const_name
1776         * src/hc08/gen.c (genCast): fixed bug 0x%d
1777         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1778           (hc08_port): added "CONST (CODE)" for const_name
1779         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1780           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1781           between ptr_type and DCL_TYPE,
1782           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1783           operand* and took AOP() inside function so sfr-ness can be checked,
1784           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1785           new prototype,
1786           (genFunction, genEndFunction): optimized stack setup,
1787           (genMinus): optimized for literals with ending zeroes (in bytes),
1788           (genCast): fixed bug 0x%d
1789         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1790           (mcs51_port): added "CONST (CODE)" for const_name
1791         * src/mcs51/peeph.def: made rule 226 more generic
1792         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1793         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1794         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1795         * src/z80/main.c (z80_port): added NULL for const_name,
1796           (gbz80_port): added NULL for const_name
1797         * support/regression/tests/bug663539.c,
1798         * support/regression/tests/sfr16.c: new tests
1799
1800 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1801
1802         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1803
1804 2005-06-24 Raphael Neider <rneider AT web.de>
1805
1806         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1807           corrected typos...
1808         * device/include/pic16/signal.h: added USBIF
1809           and SIG_USB
1810
1811 2005-06-24 Raphael Neider <rneider AT web.de>
1812
1813         * device/lib/pic16/libdev/pic18f2455.c,
1814           device/include/pic16/pic18f2455.h: NEW
1815         * device/include/pic16/pic18fregs.h,
1816           device/lib/pic16/pics.all,
1817           src/pic16/device.c: added 18f2455
1818         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1819           device/include/pic16/{pic18f[68][567].h,usart.h}:
1820           replaced MULTIPLE_USARTS define with more relaible
1821           compatibility sfrs (for USART access)
1822
1823 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1824
1825         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1826           and the output asm file line is printed on two lines.
1827
1828 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1829
1830         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1831           BGT, BLE, BHI, and BLS instructions
1832         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1833           genCmpEq): removed
1834         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1835           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1836           fixes bug #1216342
1837         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1838
1839 2005-06-15 Raphael Neider <rneider AT web.de>
1840
1841         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1842         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1843         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1844           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1845           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1846
1847 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1848
1849         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1850           Marcel Telka in bug #1215704
1851
1852 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1853
1854         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1855           located in shared memory bank.
1856
1857 2005-05-31 Raphael Neider <rneider AT web.de>
1858
1859         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1860           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1861           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1862
1863 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1864
1865         * device/lib/_strncpy.c: fixed the fix
1866
1867 2005-05-26 Raphael Neider <rneider AT web.de>
1868
1869         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1870           initializers with \0, bug #1208187
1871         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1872           intializers with \0, bug #1208187
1873
1874 2005-05-26 Raphael Neider <rneider AT web.de>
1875
1876         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1877           initializers with \0, bug #1208187
1878         * src/pic16/main.c (_process_pragma): added sanity checks
1879           for stack position and size, emit warnings when appropriate
1880
1881 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1882
1883         * device/lib/_strncpy.c: fixed not filling with \0
1884
1885 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1886
1887         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1888           createFunction),
1889         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1890           compound_statement),
1891         * src/SDCCsymt.h,
1892         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1893
1894 2005-05-24 Raphael Neider <rneider AT web.de>
1895
1896         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1897
1898 2005-05-24 Raphael Neider <rneider AT web.de>
1899
1900         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1901           TRISE definitions, closes bug #1162453
1902
1903 2005-05-22 Raphael Neider <rneider AT web.de>
1904
1905         * src/pic16/main.c (_process_pragma): check for missing
1906           arguments to pragmas code and udata
1907         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1908           consistency fixes to match other headers (thanks to Jim Paris)
1909         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1910
1911 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1912
1913         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1914
1915 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1916
1917         * support/regression/tests/bug1198642.c: new test
1918         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1919         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1920         * support/scripts/resource.h,
1921         * support/scripts/resource.rc,
1922         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1923         * support/scripts/sdcc.ico: added 32x32 icon
1924
1925 2005-05-18 Raphael Neider <rneider AT web.de>
1926
1927         * device/lib/pic16/libdev/pic18f*.c,
1928         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1929           keywords to "__sfr" and "__at (X)"
1930         * device/include/pic16/pic18fregs.h: added pic18f4520
1931         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1932           #1203088 (MPLAB compatibility)
1933
1934 2005-05-17 Raphael Neider <rneider AT web.de>
1935
1936         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1937         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1938         * device/lib/pic16/pics.all: added new devices
1939         * src/pic16/device.c: added support for pic18f4520
1940
1941 2005-05-16 Raphael Neider <rneider AT web.de>
1942         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1943         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1944         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1945           convenience function for bit access
1946
1947 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1948
1949         * device/lib/printf_large.c: fixed bug 1193299
1950         * support/regression/tests/bug1057979.c: added test %3.3s
1951
1952 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1953
1954         * device/include/mcs51/8051.h,
1955         * device/include/mcs51/8052.h: made parseable with lint
1956         * device/include/mcs51/lint.h: added include file for (sp)lint
1957         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1958         * doc/cdbfileformat.lyx,
1959         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1960
1961 2005-05-14 Raphael Neider <rneider AT web.de>
1962
1963         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1964         * device/lib/pic16/libc/stdlib/itoa.c (new)
1965         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1966         * device/lib/pic16/libio/Makefile: exclude subdir according to
1967           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1968         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1969         * src/pic16/gen.c (genFunction): prevent annoying warning
1970         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1971           nameclashes on BeOS
1972         * support/cpp2/cppmain.c (cpp_output_string): new
1973         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1974           fixes bug 1116802
1975
1976 2005-05-13 Borut Razem <borut.razem AT siol.net>
1977
1978         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1979
1980 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1981
1982         * .version: changed to version 2.5.1; back to bleeding edge development
1983
1984 2005-05-11 Borut Razem <borut.razem AT siol.net>
1985
1986         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1987           generate PDF version 1.3 documents
1988
1989 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1990
1991         * .version: changed to version 2.5.0
1992
1993 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1994
1995         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1996
1997 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1998
1999         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2000         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2001         well as many smaller updates.
2002         * .version: changed to version 2.5.0-pre1
2003
2004 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2005
2006         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2007
2008 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2009
2010         * support/regression/tests/bug1185672.c: added
2011         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2012           bug 1185672
2013         * src/mcs51/gen.c (genCall): added comments, made it look safer
2014         * src/mcs51/gen.c (genEndFunction): simplified
2015
2016 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2017
2018         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2019
2020 2005-04-14 Borut Razem <borut.razem AT siol.net>
2021
2022         * fixed bug 1045046 - SIGSEGV with really simple code?:
2023           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2024           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2025
2026 2005-04-14 Borut Razem <borut.razem AT siol.net>
2027
2028         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2029           src/pic16/device.h: temporarily disabled experimental #inline pragma
2030           for 2.5.0 release
2031
2032 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2033
2034         * device/include/z80/stdio.h,
2035         * device/include/z80/string.h: removed these highly incomplete files so
2036           SDCC can use the default ones in device/include/
2037
2038 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2039
2040         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2041         gcc warning.
2042         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2043         fix sdcpp warnings.
2044
2045 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2046
2047         * device/include/malloc.h: removed redundant __reentrant prototypes
2048         * device/lib/_mullong.c: added working xstack variant in asm (C version
2049           doesn't pass regression tests)
2050         * device/lib/bpx.c: used __data and made bpx char for mcs51
2051         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2052           (createFunction): fixed bug with xstackPtr
2053         * src/SDCCcse.c: corrected comments
2054         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2055           (killDeadCode, eBBlockFromiCode): removed unused code
2056         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2057           corrected comments
2058         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2059           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2060           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2061           (genModOneByte): fixed warning in MSVC
2062         * src/mcs51/main.c (): added comments
2063         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2064
2065 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2066
2067         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2068
2069 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2070
2071         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2072
2073 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2074
2075         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2076         characters arrays of larger size than the declared one.
2077
2078 2005-04-10 Borut Razem <borut.razem AT siol.net>
2079
2080         * src/pic/gen.c (genInline),
2081           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2082           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2083           (findNextInstruction), (findPrevInstruction),
2084           (findInstructionUsingLabel),
2085           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2086         * src/pic/pcode.c (findLabel): added missing '\n'
2087         * src/src.dsp: added SDCCdwarf2.c to the project
2088
2089 2005-04-09 Borut Razem <borut.razem AT siol.net>
2090
2091         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2092
2093 2005-04-08 Raphael Neider <rneider AT web.de>
2094
2095         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2096           into the chain after a given one) and mergeDefmapSymbols (combine
2097           defmap entries for each symbol per pcode)
2098         * (createDefmap): have defmap entries merged in the end
2099         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2100           a symbol before replacing one access type's symbol, merge symbols in
2101           the end (replacement symbol might already have an entry)
2102         * (assignValnums): keep reference to written WREG intact
2103
2104 2005-04-08 Raphael Neider <rneider AT web.de>
2105
2106         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2107           Alpha)
2108
2109 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2110
2111         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2112         bytes
2113
2114 2005-04-07 Raphael Neider <rneider AT web.de>
2115
2116         * device/include/pic16/usart.h: added compatibility defines for
2117           devices with more than one USART
2118         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2119
2120 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2121
2122         * device/lib/Makefile.in: updated for port specific include
2123
2124 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2125
2126         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2127
2128 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2129
2130         * device/include/8051.h,
2131         * device/include/8052.h,
2132         * device/include/at89S8252.h,
2133         * device/include/at89c55.h,
2134         * device/include/at89x051.h,
2135         * device/include/at89x51.h,
2136         * device/include/at89x52.h,
2137         * device/include/mcs51reg.h,
2138         * device/include/reg51.h,
2139         * device/include/reg764.h,
2140         * device/include/regc515c.h,
2141         * device/include/sab80515.h: (re)moved these 12 files
2142         * device/include/mcs51/8051.h,
2143         * device/include/mcs51/8052.h,
2144         * device/include/mcs51/at89S8252.h,
2145         * device/include/mcs51/at89c55.h,
2146         * device/include/mcs51/at89x051.h,
2147         * device/include/mcs51/at89x51.h,
2148         * device/include/mcs51/at89x52.h,
2149         * device/include/mcs51/mcs51reg.h,
2150         * device/include/mcs51/reg51.h,
2151         * device/include/mcs51/reg764.h,
2152         * device/include/mcs51/regc515c.h,
2153         * device/include/mcs51/sab80515.h: and added them here
2154
2155 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2156
2157         * device/include/stdarg.h: changed SDCC specific keywords to double
2158           underlined form.
2159         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2160           mcs51 and ds390.
2161         * device/include/hc08/mc68hc908gp32.h,
2162         * device/include/hc08/mc68hc908jb8.h,
2163         * device/include/hc08/mc68hc908jkjl.h,
2164         * device/include/hc08/mc68hc908qy.h: fixed comments
2165         * device/include/mcs51/README: updated
2166         * device/include/mcs51/c8051f120.h: added PINRSF
2167         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2168         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2169           amidst code. Also inline is not supported.
2170
2171 2005-04-06 Raphael Neider <rneider AT web.de>
2172
2173         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2174         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2175           callers stack/frame pointers
2176
2177 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2178
2179         * device/include/pic16/usart.h: added, missing in previous commit,
2180         * device/include/pic16/adc.h: fixed typo,
2181         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2182         commit,
2183         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2184         <p18fxxx.inc>
2185         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2186         uninitialized because a bug appears with gplink
2187         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2188         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2189         complains for unrecognised option
2190
2191 2005-04-05 Raphael Neider <rneider AT web.de>
2192
2193         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2194           structs as well (using memcpy)
2195         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2196           on ISRs (GOTO has no label)
2197         * src/pic16/device.h: added OF_OPTIMIZE_DF
2198         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2199           new data flow analysis/optimization
2200         * src/pic16/pcode.c: added (prototypes for and implementation of)
2201           dataflow analysis functions, fixed pCodeInstructions' inCond and
2202           outCond values, made RCALL a branch instruction
2203         * (pic16_unlinkpCode): keep C line if possible
2204         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2205           C line moved if possible
2206         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2207         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2208           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2209         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2210           new flow)
2211         * (pic16_getJumptabpCode): NEW, needed in...
2212         * (LinkFlow): fixed handling of jumptables, calls and conditional
2213           branches
2214         * (pic16_InsertCommentAfter): NEW
2215         * (pic16_pCodeReplace): made verbose and flow preserving
2216         * (AnalyzeFlow): added call to data flow analysis
2217         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2218         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2219         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2220
2221 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2222
2223         * src/SDCCast.c (decorateType): fixed bug #1105626
2224
2225 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2226
2227         * device/include/asm/pic16/features.h,
2228         * pic18f*.h headers,
2229         * device/include/pic16/adc.h,
2230         * device/include/pic16/delay.h,
2231         * device/include/pic16/i2c.h,
2232         * device/include/pic16/malloc.h,
2233         * device/include/pic16/stdio.h,
2234         * device/include/pic16/stdlib.h,
2235         * device/include/pic16/string.h,
2236         * device/lib/pic16/libc/stdio/printf_tiny.c,
2237         * device/lib/pic16/libc/stdio/printf_small.c,
2238         * device/lib/pic16/libc/stdio/strmgpsim.c,
2239         * device/lib/pic16/libc/stdio/strmmssp.c,
2240         * device/lib/pic16/libc/stdio/strmusart.c,
2241         * device/lib/pic16/libc/stdio/vfprintf.c,
2242         * device/lib/pic16/libc/stdlib/ltoa.c,
2243         * device/lib/pic16/libc/stdlib/putchar.c,
2244         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2245         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2246         * device/lib/pic16/libc/stdlib/memchrram.c,
2247         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2248         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2249         * device/lib/pic16/libio/adc/adcbusy.c,
2250         * device/lib/pic16/libio/adc/adcread.c,
2251         * device/lib/pic16/libio/adc/adcsetch.c,
2252         * device/lib/pic16/libio/usart/ubaud.c,
2253         * device/lib/pic16/libio/usart/ubusy.c,
2254         * device/lib/pic16/libio/usart/udrdy.c,
2255         * device/lib/pic16/libio/usart/uopen.c,
2256         * device/lib/pic16/libio/usart/uputc.c,
2257         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2258         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2259         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2260         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2261         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2262         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2263         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2264         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2265         specific keywords to double underlined form,
2266         * device/lib/pic16/libc/Makefile.rules,
2267         * device/lib/pic16/libsdcc/Makefile.rules,
2268         * device/lib/pic16/libm/Makefile,
2269         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2270         to compile with C standard set in Makefile.common
2271         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2272         rand.c and crc.c in compilation process,
2273         * device/lib/pic16/libsdcc/int/divuint.c,
2274         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2275         `c' from signed to unsigned,
2276         * device/lib/pic16/startup/crt0.c,
2277         * device/lib/pic16/startup/crt0i.c,
2278         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2279         keywords to double underlined form, bug fixes in _do_cinit function
2280         which prevented the correct initialization of the .idata segment,
2281         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2282         core to enter a infinite loop
2283         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2284
2285 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2286
2287         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2288
2289 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2290
2291         * device/include/Makefile.in: add support for hc08 subdirectory
2292         * device/include/hc08/: new subdirectory
2293         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2294         Lucas Loizaga, thanks!
2295         * device/include/hc08/mc68hc908qy.h,
2296         * device/include/hc08/mc68hc908gp32.h,
2297         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2298         their own directory. Changed internal macro names to use the compiler
2299         reserved namespace. Changed SDCC specific keywords to double
2300         underlined form.
2301         * device/include/math.h,
2302         * device/include/malloc.h,
2303         * device/include/stdarg.h,
2304         * device/include/stdbool.h
2305         * device/include/string.h,
2306         * device/include/tinibios.h,
2307         * device/include/ds400rom.h,
2308         * device/include/8051.h,
2309         * device/include/8052.h,
2310         * device/include/80c51xa.h,
2311         * device/include/at89c55.h,
2312         * device/include/at89S8252.h,
2313         * device/include/at89x51.h,
2314         * device/include/at89x52.h,
2315         * device/include/ds80c390.h,
2316         * device/include/reg764.h,
2317         * device/include/regc515c.h,
2318         * device/include/sab80515.h,
2319         * device/include/mcs51/c8051f000.h,
2320         * device/include/mcs51/c8051f018.h,
2321         * device/include/mcs51/c8051f020.h,
2322         * device/include/mcs51/c8051f040.h,
2323         * device/include/mcs51/c8051f060.h,
2324         * device/include/mcs51/c8051f120.h,
2325         * device/include/mcs51/c8051f300.h,
2326         * device/include/mcs51/c8051f310.h,
2327         * device/include/mcs51/c8051f320.h,
2328         * device/include/mcs51/c8051f330.h,
2329         * device/include/mcs51/c8051f350.h,
2330         * device/include/z180.h: Changed SDCC specific keywords to double
2331         underlined form.
2332
2333 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2334
2335         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2336         18F4455,
2337         * (pic16_assignConfigWordValue): disable testing of configuration
2338         register value with config mask,
2339         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2340         function with port->fun_prefix,
2341         * (genFunction): when generating a naked interrupt function never
2342         create an absolute segment placed in interrupt vector address, place
2343         the actual interrupt function at IVA instead, when an interrupt
2344         function is generated with unspecified interrupt then do not create
2345         the absolute section,
2346         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2347         code for generating a call to generic pointer get/put function with
2348         a call to function pic16_callGenericPointer(),
2349         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2350         the call to the generic pointer get/put functions with prefixing the
2351         function name with port->fun_prefix,
2352         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2353         * src/pic16/main.c (_process_pragma): prefix function with
2354         port->fun_prefix,
2355         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2356         calling assembler, old 18Fxxxx macro is deprecated,
2357         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2358         PC_ASMDIR in while condition,
2359         * (findInstruction): add PC_ASMDIR in while condition,
2360         * (buildCallTree): prefix main with port->fun_prefix,
2361         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2362         identifier for variable with banked access in instructions BTFSS,
2363         BTFSC, BCF, BSF, BTG
2364         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2365         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2366         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2367         perform optimization when enviroment variable NO_REG_OPT is set,
2368         * (insideLRBlock): NEW, return 1 if register is inside an
2369         INF_LOCALREGS block,
2370         * (RemoveRegFromLRBlock): remove a register that is completely
2371         eliminated by register optimization, but it is still left in local
2372         register store/restore in/from stack block,
2373         * (Remove2pcodes): after removing register, check to see if it
2374         should be removed from local register store/restore in/from stack
2375         block,
2376         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2377         DUMMY_READ_VOLATILE,
2378
2379         * device/include/pic16/adc.h: minor prototype modifications and
2380         update,
2381         * device/include/pic16/malloc.h: added GPL notice various
2382         modifications,
2383         * device/include/pic16/stdint.h: NEW, standard header for ints
2384         * device/include/pic16/delay.h: NEW, header for delay functions,
2385         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2386         delay1mtcy,
2387         * device/include/pic16/signal.h: NEW, header providing helper macros
2388         for implementing signal handlers,
2389         * device/include/pic16/stdio.h: added prototypes for functions,
2390         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2391         prototypes for stdin and stdout, added macro PUTCHAR to
2392         automatically implement putchar function prototype,
2393         * device/include/pic16/usart.h: modified and updated USART library,
2394         * device/lib/pic16/libio/adc/,
2395         * device/lib/pic16/libio/i2c: some modifications to improve library
2396         performance,
2397         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2398         family of functions,
2399         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2400         family of functions and other sources,
2401         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2402         of the PIC18Fxx[28] devices,
2403         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2404         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2405         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2406         _do_cinit function, because the previous failed when local variables
2407         where not placed in the same memory bank,
2408         * device/lib/pic16/libsdcc/char/: various modifications to improve
2409         library performance,
2410         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2411         information on the new functions of the c library and more...
2412
2413 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2414
2415         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2416
2417 2005-03-26 Raphael Neider <rneider AT web.de>
2418
2419         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2420           if condition == CARRY)
2421         * (genCmp): adapted to new genSkipc semantics
2422         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2423           on rIfx (genCmp was broken)
2424
2425 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2426
2427         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2428         * src/z80/main.c (_keywords[]),
2429         * src/SDCCglobal.h (struct options),
2430         * src/SDCC.y,
2431         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2432         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2433         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2434         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2435         always available in leading double underscore form. The C99 support is
2436         mostly missing, but it's a start.
2437         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2438         reserved identifier "__data".
2439
2440 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2441
2442         * src/mcs51/peeph.def: fixed bug 1170013
2443
2444 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2445
2446         * device/include/mcs51reg.h: fixed bug 842007
2447
2448 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2449
2450         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2451         last time.
2452
2453 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2454
2455         * src/port.h (struct PORT),
2456         * src/avr/ralloc.c (avr_assignRegisters),
2457         * src/avr/main.c,
2458         * src/ds390/ralloc.c (ds390_assignRegisters),
2459         * src/ds390/main.c,
2460         * src/hc08/ralloc.c (hc08_assignRegisters),
2461         * src/hc08/main.c,
2462         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2463         * src/mcs51/main.c,
2464         * src/pic/ralloc.c (pic14_assignRegisters),
2465         * src/pic/main.c,
2466         * src/pic16/ralloc.c (pic16_assignRegisters),
2467         * src/pic16/main.c,
2468         * src/xa51/ralloc.c (xa51_assignRegisters),
2469         * src/xa51/main.c,
2470         * src/z80/ralloc.c (z80_assignRegisters),
2471         * src/z80/ralloc.h,
2472         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2473         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2474         * src/SDCCcse.h,
2475         * src/SDCCdflow.c (computeDataFlow),
2476         * src/SDCCdflow.h,
2477         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2478         * src/SDCCloop.h,
2479         * src/SDCCcflow.c (*),
2480         * src/SDCCcflow.h,
2481         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2482         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2483         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2484         immedDom() returning wrong block; probably fixes bug #1160833)
2485
2486 2005-03-20 Borut Razem <borut.razem AT siol.net>
2487
2488         * support/scripts/inc2h.pl: WIN32 port
2489
2490 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2491
2492         * device/lib/makefile.in: added abs.c and labs.c
2493
2494 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2495
2496         * device/include/stdint.h: added
2497         * device/lib/abs.c: added
2498         * device/lib/labs.c: added
2499         * device/include/stdlib.h: added abs() and labs() prototypes
2500         * device/lib/libsdcc.lib: added abs and labs
2501         * device/include/float.h,
2502         * device/lib/_fsmul.c,
2503         * device/lib/printf_fast.c,
2504         * device/lib/printf_tiny.c: updated comments
2505
2506 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2507
2508         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2509         bug #1164313
2510
2511 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2512
2513         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2514         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2515
2516 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2517
2518         * device/lib/printf_large.c: removed inline assembly for portability and
2519           readability. Use printf_fast if speed or size are more important.
2520         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2521         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2522
2523 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2524
2525         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2526         prevent compiler warning
2527
2528 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2529
2530         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2531         moved to level 0 and declared as static. Also they are explicit
2532         placed in access bank. This was necessery because some times they
2533         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2534         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2535         optimizations. Currently only compare to unsigned char is implemented,
2536         * src/pic16/gen.c: added fReturnIdx array,
2537         * (struct resolvedIfx) is moved to gen.h and made public,
2538         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2539         * (aopForSym): added an optimization to directly store in stack of
2540         the operand of a SEND iCode,
2541         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2542         but as registers instead (AOP_REG) using the fReturnIdx array,
2543         * (pic16_freeAsmop): remove the freed register from the
2544         _G.sregsAlloc field,
2545         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2546         a compare of 'WREG',
2547         * (pic16_popGetTempRegCond): changed function prototype, now
2548         function takes also a bitVector argument v which holds the current
2549         set of registers that are allocated for stack access by aopForSym,
2550         registers allocated in aopForSym for accessing stack symbols are not
2551         any more part of the functions usedRegs field,
2552         * (genCall): some times aopOp is called for a stack variable to be
2553         send, aopForSym might perform the push, if this is true make sure
2554         that genCall doesn't push the variable twice by testing _G.resDirect,
2555         * (genFunction): changed testing for unspecified interrupt number
2556         from 256 to INTNO_UNSPEC,
2557         * modified selection scheme of frame pointer generation. Previously
2558         if function did use local registers a frame pointer was generated,
2559         now a frame pointer is generated only if function has arguments
2560         (that need PLUSW2 register access), or has stack arguments, or the
2561         compiler is not instructed to omit the frame pointer,
2562         * (genEndFunction): before restoring local registers that were saved
2563         in the function preamble, also restore the registers that *might*
2564         have been allocated for stack access,
2565         * (genRet): removed some old comments,
2566         * (genCmp, the active (RN's) version): added a call to the
2567         pic16_genCmp_special function to perform the compare with a more
2568         robust and optimized way,
2569         * (genInline): a feature has been added in inline code generation,
2570         which allows a wildcard variable substitution when writing inline
2571         assembly. Code is incomplete and experimental therefore undocumented,
2572         * (genCast): changed order of aopOp for result and right to allow
2573         aopForSym to directly load the result if possible,
2574         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2575         perform an optimized compare on some selected special occasions,
2576         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2577         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2578         generate an IVT any more,
2579         * src/pic16/main.c (pic16_optionsTable): added command line option
2580         --optimize-cmp,
2581         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2582         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2583         macros,
2584         * src/pic16/NOTES: Raphael Neider added in list of active developers
2585         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2586         jumptable_end to prevent bug #,
2587         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2588         inCond and outCond fields,
2589         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2590         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2591         turn off register spilling,
2592         * (packRegsForOneUse): synced with other ports' versions although it
2593         is not used currently,
2594         * (pic16_packRegisters): added an optimization while reading
2595         structure bitfields, some registers may be saved (malloc code is
2596         decreased by 80 bytes)
2597
2598 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2599
2600         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2601         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2602         this can be optimized more?
2603
2604 2005-03-10 Raphael Neider <rneider AT web.de>
2605
2606         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2607           genNearPointerGet): (hopefully) fixed access to bitfields via
2608           pointers (p->bitN = x; and x = p->bitN; failed)
2609
2610 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2611
2612         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2613
2614 2005-03-09 Raphael Neider <rneider AT web.de>
2615
2616         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2617
2618 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2619
2620         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2621         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2622           (regTypeNum): set REG_BIT type if necessary
2623         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2624         * support/regression/tests/critical.c: check bug 1144613
2625
2626 2005-03-02 Raphael Neider <rneider AT web.de>
2627
2628         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2629
2630 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2631
2632         * src/avr/ralloc.c (serialRegAssign),
2633         * src/ds390/ralloc.c (serialRegAssign),
2634         * src/hc08/ralloc.c (serialRegAssign),
2635         * src/mcs51/ralloc.c (serialRegAssign),
2636         * src/pic/ralloc.c (serialRegAssign),
2637         * src/pic16/ralloc.c (serialRegAssign),
2638         * src/xa51/ralloc.c (serialRegAssign),
2639         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2640
2641 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2642
2643         * src/SDCCast.c (decorateType): fixed bug 1124787
2644
2645 2005-02-20 Hubert Sack <sack AT digiplan.de>
2646         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2647
2648         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2649         patch #1121755
2650
2651 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2652
2653         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2654         to keep the correct label reference count when adding/removing references
2655         to labels. A peephole file using this is appended to patch #1144962.
2656
2657 2005-02-14 Raphael Neider <rneider AT web.de>
2658
2659         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2660         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2661         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2662           retrievals of result operand's value on assignment
2663
2664 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2665
2666         * device/include/pic16/string.h: modified prototype for memccpy()
2667         to memccpy(void *, void *, char, size_t)
2668         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2669         check whether to omit frame pointer or not,
2670         * (genInline): convert all occurences of "\n" to LF in inline
2671         assembler blocks, this helps formatting the inline text,
2672         * (pic16_loadFSR0): modified prototype,
2673         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2674         removed some 8051 legacy code,
2675         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2676         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2677         before allocating temporary registers in functions,
2678
2679 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2680
2681         * support/regression/tests/bitvars.c: corrected the "fix"
2682
2683 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2684
2685         * support/regression/tests/bitvars.c,
2686         * support/regression/tests/bitwise.c,
2687         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2688
2689 2005-02-10 Raphael Neider <rneider AT web.de>
2690
2691         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2692           different size for Alpha
2693         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2694
2695 2005-02-09 Raphael Neider <rneider AT web.de>
2696
2697         * src/SDCC.lex(doPragma) : save and restore warning options as well
2698           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2699         * have #pragma less_pedantic set the errorlevel to WARNING
2700           (fixes #1117001)
2701         * (cloneOptimize) : fixed wrong malloc's size
2702         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2703           facilitate correct handling of #pragma (save|restore)
2704
2705 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2706
2707         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2708
2709 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2710
2711         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2712
2713 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2714
2715         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2716
2717 2005-02-02 Raphael Neider <rneider AT web.de>
2718
2719         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2720         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2721         * (pic16_storeForReturn): fixed to allow returning function pointers
2722         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2723         * device/include/pic16/{stddef.h,stdbool.h}: added
2724
2725 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2726
2727         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2728
2729 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2730
2731         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2732         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2733          appeared to be required
2734
2735 2005-01-31 Borut Razem <borut.razem AT siol.net>
2736
2737         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2738           include/mcs51 and include/z80 directories to the package
2739
2740 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2741
2742         * src/hc08/gen.c (genFunction): fixed bug #1112752
2743
2744 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2745
2746         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2747
2748 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2749
2750         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2751
2752 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2753
2754         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2755
2756 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2757
2758         * device/include/c8051fxxx.h: removed these 6 files
2759         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2760
2761 2005-01-26 Raphael Neider <rneider AT web.de>
2762
2763         * src/pic16/gen.c (genAssign): fixed assignment from longs
2764           in codespace (were cut to three bytes)
2765         * (genDummyRead): implemented (except for CODESPACE...),
2766           fixed bug #1108575
2767         * src/pic16/glue.c (emitStatistics): beautified
2768         * device/lib/pic16/libm/Makefile: added include path
2769
2770 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2771
2772         * src/z80/gen.c (aopPut): fixed bug #1103902
2773
2774 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2775
2776         * device/lib/expf.c: fixed bug #1095792
2777
2778 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2779
2780         * device/lib/pic16/libm: added Math library sources
2781
2782 2005-01-24 Raphael Neider <rneider AT web.de>
2783
2784         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2785           to enable upcast to pCodeOpReg2 (there is no type tag to
2786           differenciate the two and pic16_popGet2p cast into PCOR2)
2787         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2788           (sizeof(sectNames) changed to sizeof(sectName))
2789           Both patches fix segfaults under MinGW.
2790
2791 2005-01-23 Raphael Neider <rneider AT web.de>
2792
2793         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2794           Safe_[mc]?alloc()'ed variables
2795         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2796           of (byte sized) temporaries (assign them to WREG for now)
2797         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2798           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2799           this might fix SIGSEGVs on MinGW...
2800         * src/SDCCopt.c (killDeadCode): restored original behaviour
2801           (volatile operands might get thrown away though)
2802
2803 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2804
2805         * src/pic16/gen.c: fixed bug #1106975,
2806         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2807         pointer update, INTCON is saved, global interrupts are disabled and
2808         restored after updateing TOS.
2809         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2810         * added function attribute 'shadowregs' to take advantage of shadow
2811         registers,
2812         * added function attribute 'wparam' as an alternative to the wparam
2813         pragma,
2814         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2815         user declares a non-ISR function as 'shadowregs',
2816         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2817
2818 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2819
2820         * .version: bumped version number to 2.4.8
2821         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2822         pic16 port,
2823         * device/lib/pic16/libio/i2c/: I2C module support library,
2824         * device/include/pic16/i2c.h: I2C support library header,
2825         * device/lib/pic16/libc/stdio/: standard IO support sources,
2826         * (printf_small.c): printf_small() source, supports float print,
2827         * (printf_tiny.c): printf_tiny() source, does not support floats,
2828         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2829         enable global optimizations for entire library source, other
2830         Makefiles in the source tree are also modified to reflect this,
2831         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2832         function,
2833         * doc/sdccman.lyx: updated to reflect new changes,
2834         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2835         sym->onStack if-case,
2836         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2837         sbit, idata, _idata, xdata, _xdata,
2838         * added pragma library, to link an external library, (see doc),
2839         * removed command line options, --pomit-config-words, --pomit-ivt,
2840         --pleave-reset-vector,
2841         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2842         when calling assembler to reflect memory model used, also define
2843         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2844         reflect stack model used,
2845         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2846         on stack return NULL,
2847
2848 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2849
2850         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2851           of the operands is volatile. Fixes #1020220
2852
2853 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2854
2855         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2856         * (OptimizeRegUsage): make sure that there is really no other flow where
2857           the first pCode is used
2858
2859 2005-01-22 Raphael Neider <rneider AT web.de>
2860
2861         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2862           to fix #1106967 (pCode->seq are not set up correctly)
2863
2864 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2865
2866         * src/SDCCglue.c (glue): make sure code area is declared before the
2867         static initialization area.
2868
2869 2005-01-21 Raphael Neider <rneider AT web.de>
2870
2871         * device/lib/Makefile.in: fixed test for pic16 install dir
2872         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2873           optimizations
2874         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2875           added --optimize-goto compiler switch and pragma wparam documentation
2876         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2877         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2878           and PRODH closing bug #1071770 (peephole optimizer)
2879
2880 2005-01-19 Raphael Neider <rneider AT web.de>
2881
2882         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2883           cmdLine buffers (used when calling sdcpp...) are large enough
2884           (MAX_PATH=256 truncates arguments leading to system halts when
2885           used in MinGW...)
2886         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2887         * (genUminus): rewritten to for efficiency
2888         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2889           used uninitialized in some cases)
2890         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2891           copy the third byte from the int -- now assumes 0x80 (data memory)
2892         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2893           operands (genAddLit expects the iCode's operands to swapped as
2894           well), fixed leftover bytes (crashed for short left operands)
2895         * (pic16_genMinusDec): performance improvements, removed false
2896           PIC14 emitSKPNCs
2897         * (pic16_genMinus): fixed to cope with differently sized operands
2898         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2899           for --obanksel > 1
2900         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2901         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2902           new banksel optimization
2903         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2904           analysis for temporary registers (segfaults...)
2905         * src/pic16/peeph.def: added rule
2906
2907 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2908
2909         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2910         which converts a float number to its ASCII representation
2911         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2912         functions to convert the fractional and integer part of a float to ASCII,
2913         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2914         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2915         ram
2916         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2917         _STATMEM macros,
2918         * device/include/pic16/adc.h: added GPL info,
2919         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2920         a pCodeOp as tested operand,
2921         * (genNearPointerGet): optimized bit testing, does not use
2922         intermediate register for bit value, test directly instead with
2923         BTFSS, BTFSC, works only for single bits,
2924         * (genpic16Code): dump the name of the iCode in the asm,
2925         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2926         renamed to pic16_decodeOp,
2927         * (serialRegAssign): do not allocate a temporary register for iCode
2928         sequences that test a single bit for 1/0
2929
2930 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2931
2932         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2933         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2934         access stack and frame pointers. They are initially assigned to
2935         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2936         accessing SFRs. Updated all occurences of modification of stack or
2937         frame pointer in gen.c and pcode.c,
2938         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2939         assigning of a literal value to pointers,
2940         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2941         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2942         selected
2943
2944 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2945
2946         * doc/sdccman.lyx: update documentation about stack pragma, added
2947         some info for stack memory models
2948
2949 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2950
2951         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2952
2953 2005-01-08 Raphael Neider <rneider AT web.de>
2954
2955         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2956           udata sections to fix bug #1097823
2957
2958 2005-01-05 Raphael Neider <rneider AT web.de>
2959
2960         * src/pic16/gen.c (genGenericShift): added handling of differently
2961           sized left operand and result
2962
2963 2005-01-04 Raphael Neider <rneider AT web.de>
2964
2965         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2966         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2967           to hold the condition bit)
2968         * added new version of genCmp (old code available via #define)
2969         * added new version of genShiftLeft/genShiftRight in a generic
2970           way, now supports shifting by negative values
2971         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2972           shiftCount (expected by genGenericShift)
2973         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2974         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2975           dump
2976         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2977           is an invalid literal too...)
2978
2979 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2980
2981         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2982         from Raphael Neider,
2983         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2984         for 8-bit literals. This fixes some literal operands which are sign
2985         extended to 16-bits ints when instruction needs only 8-bits.
2986
2987 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2988
2989         * device/lib/logf.c: added mcs51 assembly version
2990         * device/lib/expf.c: added mcs51 assembly version
2991         * device/lib/_logexpf.c: new shared asm code for expf and logf
2992         * device/include/math.h: add defines for assembly math library
2993         * device/lib/Makefile.in: build new _logexpf.c
2994         * device/lib/libfloat.lib: use new _logexpf.c
2995
2996 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2997
2998         * src/pic/device.c
2999         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3000           device types which have less than 0x7f registers.
3001
3002 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3003
3004         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3005
3006 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3007
3008         * device/lib/printf_fast.c: only build on supported arch.
3009         * device/lib/printf_tiny.c: only build on supported arch.
3010         * device/lib/printf_fast_f.c: only build if asm float lib
3011         * device/lib/_fsget1arg.c: only build if asm float lib
3012         * device/lib/_fsget2args.c: only build if asm float lib
3013         * device/lib/_fsnormalize.c: only build if asm float lib
3014         * device/lib/_fsreturnval.c: only build if asm float lib
3015         * device/lib/_fsrshift.c: only build if asm float lib
3016         * device/lib/_fsswapargs.c: only build if asm float lib
3017         * device/include/stdio.h: don't provide print_fast,
3018           print_fast_f, print_tiny prototypes if --xstack used
3019
3020 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3021
3022         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3023         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3024           to the SOURCES
3025
3026 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3027
3028         * device/lib/printf_fast_f.c: same as printf_fast, but
3029           with floating point enabled
3030         * device/lib/printf_fast.c: minor tweaks
3031         * device/include/stdio.h: add printf_fast_f
3032
3033 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3034
3035         * src/SDCCmain.c: make --float-reent default for mcs51
3036         * device/lib/_fsadd.c: added mcs51 assembly version
3037         * device/lib/_fssub.c: added mcs51 assembly version
3038         * device/lib/_fsmul.c: added mcs51 assembly version
3039         * device/lib/_fsdiv.c: added mcs51 assembly version
3040         * device/lib/_fseq.c: added mcs51 assembly version
3041         * device/lib/_fsneq.c: added mcs51 assembly version
3042         * device/lib/_fsgt.c: added mcs51 assembly version
3043         * device/lib/_fslt.c: added mcs51 assembly version
3044         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3045         * device/lib/Makefile.in: add _fscmp to build
3046         * device/lib/libfloat.lib: add _fscmp to build
3047
3048 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3049
3050         * device/lib/_fs2slong.c: added mcs51 assembly version
3051         * device/lib/_fs2sint.c: added mcs51 assembly version
3052         * device/lib/_fs2schar.c: added mcs51 assembly version
3053         * device/lib/_fs2ulong.c: added mcs51 assembly version
3054         * device/lib/_fs2uint.c: added mcs51 assembly version
3055         * device/lib/_fs2uchar.c: added mcs51 assembly version
3056         * device/lib/_slong2fs.c: added mcs51 assembly version
3057         * device/lib/_sint2fs.c: added mcs51 assembly version
3058         * device/lib/_schar2fs.c: added mcs51 assembly version
3059         * device/lib/_ulong2fs.c: added mcs51 assembly version
3060         * device/lib/_uint2fs.c: added mcs51 assembly version
3061         * device/lib/_uchar2fs.c: added mcs51 assembly version
3062         * device/include/float.h: added #define to select asm vs c
3063
3064 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3065
3066         * device/lib/printf_fast.c: improvements to float output
3067         * device/include/float.h: add defines for assembly float library
3068         * device/lib/_fsget1arg.c: receive 1 float arg
3069         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3070         * device/lib/_fsnormalize.c: normalize a float
3071         * device/lib/_fsreturnval.c: return float, various helper routines
3072         * device/lib/_fsrshift.c: right shift a float's mantissa
3073         * device/lib/_fsswapargs.c: swap 2 floats
3074         * device/lib/Makefile.in: build these 6 new files for mcs51
3075         * device/lib/libfloat.lib: add these 6 files to the library
3076
3077 2004-12-26 Borut Razem <borut.razem AT siol.net>
3078
3079         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3080           built by gcc 3.4.2
3081
3082 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3083
3084         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3085           and fully reentrant and register bank neutral.
3086         * device/lib/printf_fast.c: added float (not enabled by default),
3087           added compact/slower integer (also not enabled by default),
3088           improved size/speed of fast integer code, other minor changes
3089         * device/include/stdio.h, device/lib/Makefile.in,
3090           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3091
3092 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3093
3094         * src/pic16/pcode.c: declaring variables other than at the start of a
3095           block is not supported in C by VC6.
3096
3097 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3098
3099         * applied a previous patch from Raphael Neider that wasn't included
3100         in the previous commits, which fixes infinite loops within jumptable
3101         improvements,
3102         * made some fixes that previous patches introduced
3103
3104 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3105
3106         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3107         that fixes an issue with AOP_PCODE asmop's offset,
3108         * (pic16_popCopyReg): update instance field too,
3109         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3110         function of pic port,
3111         * (genCmp, genAnd, genAssign),
3112         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3113
3114 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3115
3116         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3117         variables initial values to idata section,
3118         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3119         variables in some functions. This utilizes parmBytes field of iCode
3120         structure to hold the offset of the variable in stack. (might be
3121         able to use the stack field too?)
3122         * applied patch from Raphael Neider # ### , # ###
3123         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3124         variable initial values in idata section,
3125         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3126         for static variables with initial value
3127         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3128         applied fix in while loop from Raphael Neider.
3129
3130 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3131
3132         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3133         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3134         * src/ds390/ralloc.c (serialRegAssign): spill bits
3135         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3136         * support/Util/SDCCerr.c,
3137         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3138         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3139         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3140
3141 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3142
3143         * device/include/sdcc-lib.h: inserted LGPL, added includes
3144           asm/ds390/features.h and asm/mcs51/features.h
3145         * device/include/asm/default/features.h,
3146         * device/include/asm/gbz80/features.h,
3147         * device/include/asm/z80/features.h: added empty _AUTOMEM
3148           and _STATMEM
3149         * device/include/asm/ds390/features.h,
3150         * device/include/asm/mcs51/features.h: added files with defines for
3151           _AUTOMEM and _STATMEM indicating automatic and static storage class
3152         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3153         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3154         * src/SDCCicode.c (geniCodeCast),
3155         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3156         * src/SDCCloop.c (loopInduction): removed unused variable lr
3157         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3158           to convertToFcall to include char modulo (RFE 1065037), added check
3159           if left operand is unsigned and use abs of literal value
3160         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3161           as it doesn't work after conversion from peephole.def to peephole.rul
3162         * src/mcs51/gen.c (toBoolean): added check for size,
3163           (genModOneByte): optimized code for signed char modulo a literal
3164           power of 2 (thanks to Hubert Sack),
3165           (genRRC): removed unnecessary "clr c",
3166           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3167         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3168           jump optimization,
3169           swapped rules 256.c and 256.d,
3170           extended 256.d by using new multiple checks (thanks Erik),
3171           added rules 256.e and 256.f,
3172           updated rule 261.a and 261.b to new generated code
3173         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3174
3175 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3176
3177         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3178           induction related bugs, including first part of bug #1074377
3179
3180 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3181
3182         * applied patch from bug-report #1076292,
3183         * applied patches for genAnd and Goto-optimizations for Raphael
3184         Neider,
3185         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3186         dump a less iCode information,
3187         * src/pic16/device.h (pic16_options_t): added field debgen,
3188         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3189         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3190         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3191         puclic,
3192         * (various functions): added macros FENTRY and FENTRY2 to functions,
3193         to emit function prologue,
3194         * (various functions): fixed indentation,
3195         * (genNearPointerGet): fixed loading of FSR0,
3196         * (genPackBits): applied patch from Raphael Neider to fix updating
3197         of FSR0 and touching only the modified bits,
3198         * src/pic16/genarith.c (various functions): added macros FENTRY to
3199         emit function prologue in comments,
3200         * src/pic16/pcode.h: added functions debugf2, debugf3,
3201         * src/pic16/ralloc.c: partial fix for packForPush caused
3202         segmentation fault,
3203
3204 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3205
3206         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3207           <stsp AT users.sourceforge.net> with reversed byte order
3208         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3209
3210 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3211
3212         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3213           bug #1074377
3214         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3215         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3216
3217 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3218
3219         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3220
3221 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3222
3223         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3224           conditions,
3225           (setFromConditionArgs): friendly operand parser for peephole rules,
3226           (operandBaseName, operandsNotRelated): new peephole condition
3227           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3228           architecture specific register naming into account, handles n-way
3229           comparisons, and supports quoted literals
3230         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3231
3232 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3233
3234         * src/mcs51/peeph.def: fixed bug #1076940
3235
3236 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3237
3238         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3239
3240 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3241
3242         Adding support for replacing ljmps with sjmps in jumptables
3243         generated for switch statements. For now you need to set the
3244         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3245         Now 4 algorithms for mcs51 jumptable generation are used:
3246         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3247         addresses loaded pc-relative for up to 112 cases and stack-pushing
3248         target addresses loaded with offset from dptr for up to 256 cases.
3249
3250         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3251         * src/mcs51/main.c: adapted constants for switch table generation
3252         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3253
3254 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3255
3256         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3257         * support/regression/tests/bug1057979.c: added test for bug 1073386
3258
3259 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3260
3261         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3262         compilers
3263
3264 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3265
3266         * src/pic16/device.h,
3267         * src/pic16/genarith.c,
3268         * src/pic16/glue.c,
3269         * src/pic16/main.c,
3270         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3271
3272 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3273
3274         Large cummulative patch for pic16 port.
3275         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3276         to call when a stack overflow occurs,
3277         * (malloc.h): added CVS Id tag,
3278         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3279         variable,
3280         * added libc directory. The current version of LibC contains string
3281         functions, ctype functions and macros and some functions of the
3282         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3283         be extensively tested in the future. Standard disclaimer here.
3284         Library is not automatically build yet. But one can build it by
3285         invoking 'make' inside the libc directory.
3286         * added ADC library under libio. Preliminary version yet.
3287
3288         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3289         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3290         aopForRemat() now and not by pic16_aopOp(),
3291         * (pic16_popGetTempReg): removed warning messgae when allocating
3292         temporary registers, its a buggy feature and will be removed,
3293         * (pic16_popGet): set register instance field in AOP_CRY,
3294         * (pic16_outBitC): fixed for results in size greater than 1,
3295         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3296         * (pic16_storeForReturn): optimized return of 0,
3297         * (genCmp): experimental code for new genCmp which uses PIC18's
3298         special compare&skip instructions. Initial tests fail some times
3299         with variables grater than 1 byte in size, so new code is disabled,
3300         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3301         a single bit,
3302         * (genCast): began a fix to optimize the casting of a bit to another
3303         bit, now assigning a bitfield to another bitfield will fail, sorry,
3304         * src/pic16/main.c: disabled the use of lr-support feature,
3305         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3306         * added some function prototypes, added function _debugf prototype,
3307         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3308         bits with offset (case PO_GPR_BIT),
3309         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3310         command line,
3311         * (isBankInstruction): modified to return 0 for no banking instruction,
3312         and 1 for banking instruction,
3313         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3314         caused stop processing pCodes after a inline assembly block,
3315         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3316         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3317         registers when it shouldn't,
3318         * src/pic16/ralloc.c (allocReg): add preliminary support for
3319         supporting a limited set of temporary registers,
3320
3321 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3322
3323         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3324           genDataPointerSet): ensure assignments always copy in MSB to LSB
3325           order,
3326           (loadRegFromAop): recognize CLRH optimization,
3327           (genFunction): optimize RECEIVE iCodes in reentrant functions
3328
3329 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3330
3331         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3332           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3333           selected.
3334         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3335         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3336           contiguous with data
3337
3338 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3339
3340         * device/lib/_gptrget.c (_gptrget),
3341         * device/lib/_gptrgetc.c (_gptrgetc),
3342         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3343           instead of sjmp to ret
3344         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3345           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3346
3347 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3348
3349         * .version: bumped version to 2.4.7
3350         * device/lib/_gptrget.c (_gptrget): is now _naked
3351         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3352         * device/lib/_gptrput.c (_gptrput): is now _naked
3353         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3354           (createFunction): fixed xstack
3355         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3356         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3357           or bit either,
3358           (geniCodeCritical): store original interrupt state in an iTemp bit
3359           var unless stack-auto
3360         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3361         * src/SDCCmain.c (setIncludePath): added include/target to search path
3362         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3363         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3364           prototype,
3365           (processFuncArgs): put bit vars in bit area
3366         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3367           unsaveRBank): fixed xstack,
3368           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3369           (genFunction, genEndFunction): fixed xstack,
3370           (genAssign): optimization don't walk backwards through mem
3371         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3372         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3373         * support/regression/Makefile: also make library (for stack-auto) when
3374           making "all" and added "test-mcs51-xstack-auto"
3375         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3376         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3377         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3378         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3379         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3380           make-library by MAKE_LIBRARY
3381         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3382           regression tests for xstack
3383         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3384         * support/regression/tests/critical.c: test for critical on mcs51
3385
3386 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3387
3388         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3389           built version of sdcc instead of installed version
3390
3391 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3392
3393         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3394         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3395           vprintf.c now
3396         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3397         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3398           WARNING: remove device/lib/build/z80/printf.o by hand when
3399           updating from previous build!
3400         * device/lib/z80/printf.c: updated comment
3401         * support/regression/tests/bug1057979.c: test all ports now
3402         * support/regression/tests/bug1065458.c: file added
3403
3404 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3405
3406         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3407           *_start and *_end symbols for static functions
3408
3409 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3410
3411         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3412           and search crt0.o in all library paths,
3413           (setIncludePath): proper handling of --nostdinc,
3414           (setLibPath): proper handling of --nostdlib
3415         * support/regression/Makefile,
3416         * support/regression/ports/ds390/spec.mk,
3417         * support/regression/ports/gbz80/spec.mk,
3418         * support/regression/ports/hc08/spec.mk,
3419         * support/regression/ports/mcs51/spec.mk,
3420         * support/regression/ports/mcs51-large/spec.mk,
3421         * support/regression/ports/mcs51-stack-auto/spec.mk,
3422         * support/regression/ports/z80/spec.mk: use include and lib files from
3423           built version of sdcc instead of installed version
3424         * doc/sdccman.lyx: fixed typo in --nostdinc
3425
3426 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3427
3428         * src/pic/pcode.c,
3429         * src/pic/device.c,
3430         * src/pic/ralloc.c,
3431         * src/pic/gen.c : added support to generate code for struct bit fields.
3432
3433 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3434
3435         * as/xa51/xa_version.h,
3436         * device/include/errno.h,
3437         * device/include/regc515c.h,
3438         * device/lib/_itoa.c,
3439         * device/lib/_ltoa.c,
3440         * device/lib/ser_ir_cts_rts.c,
3441         * sim/ucsim/xa.src/glob.cc,
3442         * sim/ucsim/xa.src/inst_gen.cc,
3443         * sim/ucsim/xa.src/xa_bit.cc,
3444         * sim/ucsim/xa.src/xa_sfr.cc,
3445         * sim/ucsim/z80.src/inst_dd.cc,
3446         * sim/ucsim/z80.src/inst_fdcb.cc,
3447         * support/scripts/keil2sdcc.pl,
3448         * src/pic16/pic16.dsp,
3449         * src/pic16/pic16a.dsp: corrected cvs line endings
3450         * device/lib/printf_large.c: fixed bug 1057979
3451         * src/pic16/gen.c: fixed non-C standard code
3452         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3453         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3454         * support/regression/ports/mcs51/support.c: reload T1 asap
3455         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3456           pdata use and clear idata startup behaviour
3457         * support/regression/tests/bug1057979.c: added
3458
3459 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3460
3461         * device/examples/ds390/ow390/ad26.h,
3462         * device/examples/ds390/ow390/cnt1d.h,
3463         * device/examples/ds390/ow390/crcutil.c,
3464         * device/examples/ds390/ow390/ownet.h,
3465         * device/examples/ds390/ow390/owsesu.c,
3466         * device/examples/ds390/ow390/swt12.h,
3467         * device/examples/ds390/ow390/swtoper.c,
3468         * device/examples/ds390/ow390/temp10.h,
3469         * device/examples/ds390/ow390/thermodl.c,
3470         * device/examples/ds390/tinitalk/tinitalk.dsp,
3471         * device/examples/ds390/tinitalk/tinitalk.dsw,
3472         * device/examples/mcs51/clock/hw.h,
3473         * device/examples/mcs51/simple2/go.bat,
3474         * device/examples/serialcomm/windows/serial.h,
3475         * device/examples/xa51/dummy.c,
3476         * device/examples/xa51/hello.c,
3477         * device/include/80c51xa.h,
3478         * device/include/at89x051.h: corrected cvs line endings
3479
3480 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3481
3482         * src/pic16/main.c (options): added command line --gstack, to trace
3483         stack over/under flows,
3484         * added pragma 'wparam' to allow passing first byte of function
3485         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3486         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3487         call to __gstack_test function and sets up the symbol as extern,
3488         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3489         * popaop): added call to pic16_testStackOverflow,
3490         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3491         wparamList list,
3492         * (genCall, genPcall): now all parameters are passed via stack
3493         except in functions that are pass to wparam pragma in which WREG is
3494         used too,
3495         * (genPcall): REENTRANT flag is checked to see if variable prototype
3496         contains reentrant keyword, don't call a non-reentrant function, via
3497         a reentrant function pointer or vice versa, functions are never
3498         passed via WREG,
3499         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3500         D.Winkler,
3501         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3502         SIGSEGV when accessing a NULL register stucture,
3503         * (pic16_printGPointerType): modified to handle UPPER modifier for
3504         function initializers, changed prototype of function to simpler one,
3505         * (pic16_printIvalFuncPtr): check to see if function is already
3506         added in externs list,
3507         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3508         optimized a move from W to SFR with a move to the same register
3509         later after a CALL,
3510         * device/lib/pic16/debug: NEW directory, contains debug features
3511         which are enabled when linking with libdebug.lib, currently command
3512         line option --gstack enables stack pointer tracing for over/under
3513         flow, corresponding sources are in debug/gstack
3514
3515 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3516
3517         * doc/sdccman.lyx: updated SDCC version,
3518         * (PIC16 port): update list of command line options,
3519         * src/pic16/device.h (structure pic16_options_t): added field gstack
3520         to enable stack overflow tracing on push/pops,
3521         * src/pic16/device.c (statistics structure): added statistics
3522         structure,
3523         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3524         pic16_dump_int_registers): increase statistics counters for each
3525         * variable which is encountered
3526         * (pic16_dump_usection): emit each .udata variable to its own udata
3527         section,
3528         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3529         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3530         parameters via stack, otherwise use old scheme,
3531         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3532         assembler output file,
3533         * src/pic16/main.c: added command line options --gstack to enable
3534         push/pop tracing for stack overflow,
3535         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3536         instructions): added size of each instruction,
3537         * (pic16_countInstruction): estimate size of instructions in
3538         the_pFile list, inline assembly blocks are not counted,
3539         * (pic16_FixRegisterBanking): trace previous register usage, when
3540         banksel optimizations is greater than 0, don't emit a redudant
3541         banksel directive,
3542
3543 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3544
3545         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3546         * src/pic16/ralloc.c : applied same fix for pic16.
3547         * src/pic/gen.c : tidied it up a little.
3548
3549 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3550
3551         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3552         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3553
3554 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3555
3556         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3557
3558 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3559
3560         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3561         non-reentrant function __modsint in the interrupt function (thus
3562         corrupting math operations during serial I/O)
3563         * device/lib/ser_ir.c: as above, changed buffersize
3564         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3565         256.c,d for zeroing
3566         * doc/Makefile: added option -t for rsync
3567
3568 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3569
3570         * src/SDCCast.h (struct ast),
3571         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3572
3573 2004-10-20 Borut Razem <borut.razem AT siol.net>
3574
3575         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3576         package
3577
3578 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3579
3580         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3581         makefile targets,
3582         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3583         support functions to replace long sequences of MOVFF's from access
3584         bank registers to stack and vice versa,
3585         * src/pic16/device.h: added new field opt_flags, where optimization
3586         flags can be set to enable certain features,
3587         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3588         * pBlock, (genFunction, genEndFunction): surroung loop for
3589         saving/loading used registers in stack with PC_INFO pCodes,
3590         INF_LREGS. Code in between can then be optimized by pCode optimizer
3591         to support function calls,
3592         * (genDataPointerSet): fixed bug which loaded float fields in
3593         structures with corrupt data,
3594         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3595         in a standard way debug info on stderr. Feature used for developing
3596         and debugging only,
3597         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3598         obsolete chunks of code,
3599         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3600         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3601         * pic16/src/pcode.c (pic16_newpCodeInfo,
3602         * (pic16_newpCodeOpLocalRegs),
3603         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3604         feature,
3605         * (pic16_pCodeConstString): printing of the initial value of a
3606         symbol as a comment is inhibited since parsing was already done by
3607         copyStr and output is corrupt,
3608         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3609
3610 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3611
3612         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3613
3614 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3615
3616         * as/mcs51/lkarea.c: removed old K&R style,
3617           (lnksect): changed check on boundary error,
3618           (lnksect2): changed check on boundary error,
3619           (lnksect2): extend XSTK to end of page if size = 1
3620         * as/mcs51/lkmain.c: removed old K&R style,
3621           (Areas51): create l_IRAM symbol
3622         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3623         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3624           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3625         * device/lib/_mullong.c: added version to be compiled with xstack
3626         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3627         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3628         * device/lib/mcs51/crtxstack.asm: fixed comment
3629         * src/SDCCglue.c: maxInterrupts defaults to 0,
3630           (emitMaps): added pdata,
3631           (createInterruptVect): (re)moved default,
3632           (glue): added pdata,
3633           (glue): moved __start__xstack to XSTK with default size 1
3634         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3635           and options.float_rent when options.stackAuto is set,
3636           (linkEdit): only write XDATA_NAME if provided on command line
3637         * src/SDCCmem.h,
3638         * src/SDCCmem.c: added pdata
3639         * src/port.h: added pdata_name to PORT
3640         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3641           (saveRegisters, unsaveRegisters): removed usage of B,
3642           (genMinus): fixed accumulator clash,
3643           (genJumpTab): added comment, this needs another look
3644         * src/mcs51/gen.c: added check for "B in use" paranoia,
3645           added pushB() and popB()
3646         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3647           chance
3648         * src/avr/main.c,
3649         * src/ds390/main.c,
3650         * src/hc08/main.c,
3651         * src/mcs51/main.c,
3652         * src/pic/main.c,
3653         * src/pic16/main.c,
3654         * src/xa51/main.c,
3655         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3656           added PSEG (PAG,XDATA) or NULL to port specifier
3657         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3658         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3659           (_mcs51_genInitStartup): removed __start__xstack equ,
3660           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3661         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3662         * src/z80/gen.c (_rleAppend): fixed warnings
3663         * support/regression/tests/zeropad.c: added pdata test
3664         * .version: bumped to 2.4.6
3665
3666 2004-10-17 Borut Razem <borut.razem AT siol.net>
3667
3668         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3669         as a part of nightly build
3670
3671 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3672
3673         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3674         WREG holds the first byte function parameters,
3675         * (aopForSym): take special case for symbols which are in FARSPACE
3676         but in CODESPACE too,
3677         * (assignResultValue): modified to take into account _G.useWreg,
3678         * (genCall): don't use wreg for parameter passing when function is
3679         declared as reentrant, too, added optimization INCF to stack
3680         pointer when stack parameter count is 1,
3681         * (genFunction, genEndFunction): refurnished and fixed to not using
3682         wreg for passing parameters when function has varargs or is
3683         reentrant, fixed bug with symbol name compare for generating
3684         functions in absolute address,
3685         * (pic16_storeForReturn): refurnished,
3686         * (genCmp): began writing a new version of the function, not ready
3687         yet, therefore it is disabled,
3688         * (genAssign): do not read code memory when assigning a function to
3689         a pointer function,
3690         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3691         array of characters, not pointer,
3692         * (pic16initialComments): in debug mode emit an .ident directive for
3693         the assembler,
3694         * (_process_pragma): emit a new warning type (internal to pic16)
3695         when setting stack to default length, emit a similar warning when
3696         placing a function at absolute address and address is not word aligned
3697         * (_pic16_parseOptions): added 'return TRUE' statement,
3698         * (_pic16_linkEdit): if compiling a source, then add the source's
3699         file object, first in the list of objects to link,
3700
3701 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3702
3703         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3704         * src/pic/main.c : removed VC warning.
3705         * src/pic/gen.c : changed comment.
3706
3707 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3708
3709         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3710         reference to a deprecated symbol _GPTRREG was causing failure to
3711         link. Thanks G. M. Gallant for the info.
3712
3713 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3714
3715         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3716         comments for Bugs item #954788.
3717
3718 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3719
3720         * src/pic16/device.c (pic16_dump_gsection,
3721         * pic16_groupRegistersInSection): handle symbols declared to be in
3722         access bank differently,
3723         * src/pic16/gen.c (struct _G): added field resDirect,
3724         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3725         send values read from stack directly to result and don't allocate
3726         temporary values,
3727         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3728         same registers,
3729         * (pic16_sameRegsOfs): NEW,
3730         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3731         free because they were not allocated from temporary pool,
3732         * pic16_popRegFromString): workaround to fix a problem with
3733         allocating variables twice or never,
3734         * (genGenPointerGet): using PRODL instead of FSR0H,
3735         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3736         instead of FSR0H,
3737         * (genAssign): take advantage of the _G.resDirect flag,
3738         * (genCast): around line 11844, use mov2f instead of directly
3739         MOVFF'ing between operands to account for literal values,
3740         * src/pic16/genutils.c: some new debug functions for gpsim have been
3741         added,
3742         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3743         float with integer part only,
3744         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3745         place variables in access bank
3746         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3747         updated sources to reflect recent changes in gen.c
3748
3749 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3750
3751         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3752         sources that searched for headers in installation path, now the
3753         device/include/pic16 is used,
3754         * src/pic16/glue.c (pic16glue),
3755         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3756         .line directives if not in debug mode, this suppresses assembler's
3757         warnings for ignored directives
3758
3759 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3760
3761         * src/port.h: made reset_regparms prototype void parameter explicit.
3762         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3763         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3764         * doc/sdccman.lyx: documented warning disabling and how to use
3765           printf_large to make it print floats.
3766         * device/include/stdbool.h: NEW
3767         * device/lib/_atof.c,
3768         * device/lib/_divuint.c,
3769         * device/lib/_divulong.c,
3770         * device/lib/expf.c,
3771         * device/lib/printf_large.c,
3772         * device/lib/sincosf.c,
3773         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3774         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3775           a completely reentrant lib.
3776
3777 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3778
3779         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3780         * device/include/pic16/stdio.h: fixed bug with colon
3781
3782 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3783
3784         * device/include/pic16/stdio.h,
3785         * device/include/pic16/stdlib.h,
3786         * device/include/pic16/math.h: NEW
3787         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3788         declared as _naked to reduce overhead
3789         * device/lib/Makefile.in (target port-specific-objects-pic16):
3790         changed * to *.* so to ignore the CVS directory,
3791         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3792         stacked variables back in stack,
3793         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3794         corruption
3795
3796 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3797
3798         * .version: bumped version number to 2.4.5
3799         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3800         * support/Util/SDCCerr.c (messages structure): added entry for
3801         W_POSSBUG2
3802
3803         Large cumulative patch for pic16 port and libraries.
3804         * device/include/pic16/sdcc-lib.h,
3805         * device/include/pic16/stdarg.h,
3806         * device/include/asm/pic16/features.h,
3807         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3808         * device/include/pic16/float.h: changes reentrant keyword with
3809         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3810         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3811         updated target build-libraries to include objects from gptr,
3812         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3813         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3814         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3815         all function headings,
3816         * src/SDCCmain.c: added global parameter userIncDirsSet,
3817         * (parseCmdLine): when option -I is encountered add directory to
3818         userIncDirsSet too,
3819         * src/version.awk: added space between control and long,
3820         * src/pic16/NOTES: added some notes for the port,
3821         * src/pic16/gen.c: added prototype for mov2fp function,
3822         * (fReturnpic16[]): properly named return value registers,
3823         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3824         * (aopForSym): added code to handle symbols with onStack flag set,
3825         symbols onStack are allocated PTRSIZE bytes,
3826         * (aopFreeAsmop): handles special case where asmops are stack objects,
3827         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3828         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3829         added argument lock to trace flaws in allocating temporary registers
3830         when developing port,
3831         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3832         * (pic16_popRegFromString): reenabled allocating a direct register
3833         from string,
3834         * (assignResultValue): various beautifications,
3835         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3836         referenced function argument,
3837         * (genIpush): reenabled to allow stacked arguments, handles only
3838         ic->parmPush iCodes,
3839         * (genCall, genPcall): major changes to allow for variable argument
3840         functions, fixed a bug with falsely restoring stack pointer after
3841         returning from call,
3842         * (genFunction): pending code for critical function,
3843         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3844         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3845         * (genNearPointerGet): fixed bug with indirect reading, was always
3846         reading from INDF0
3847         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3848         pointers,
3849         * (genAddrOf): rewrote code to take address of a stacked function parameter
3850         * (genCast): fixed casting to generic pointer type,
3851         * src/pic16/gen.h: added AOP_STA,
3852         * (struct asmop): added field stk,
3853         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3854         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3855         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3856         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3857         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3858         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3859         generic pointers,
3860         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3861         and library paths,
3862         * (pic16_port structure): generic pointer size is set to 3,
3863         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3864         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3865         compiler warning,
3866         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3867         operand is an iTemp,
3868
3869 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3870
3871         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3872         * debugger/mcs51/simi.c: addapt new syntax of s51
3873
3874 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3875
3876         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3877         * src/pic16/pcode.c: commented out some calls to free() in order to
3878         fix bug #989576,
3879
3880 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3881
3882         * src/SDCCicode.h,
3883         * src/SDCCicode.c (isiCodeInFunctionCall),
3884         * src/avr/ralloc.c (selectSpil),
3885         * src/pic/ralloc.c (selectSpil),
3886         * src/pic16/ralloc.c (selectSpil),
3887         * src/ds390/ralloc.c (selectSpil),
3888         * src/hc08/ralloc.c (selectSpil),
3889         * src/xa51/ralloc.c (selectSpil),
3890         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3891         stack in the middle of a function call sequence (fixes bug #1020268)
3892         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3893         costs associated with the minimum switch case.
3894
3895 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3896
3897         * src/SDCC.lex: fixed bug #1030549
3898
3899 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3900
3901         * src/SDCCcse.h (struct cseDef),
3902         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3903         over a function call if the CSE is derived from a symbol whose
3904         address has been taken (fixes bug #1029883)
3905         * support/regression/tests/bug-1029883: a new regression test for
3906         this bug
3907
3908 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3909
3910         * src/hc08/gen.c (emitinline): fixed bug #1029778
3911         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3912         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3913         and starts toward RFE #905167)
3914
3915 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3916
3917         * src/pic16/gen.c (mov2f): New function to move an operand to
3918         another without considering if it is a literal or a register,
3919         * (pic16_sameRegs): don't check if they are both AOP_REG,
3920         * (AccRsh): removed andmask=0 lines,
3921         * (genLeftShift): duplicated to be improved in future versions,
3922         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3923         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3924         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3925         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3926         * (insertBankSwitch): fixed inserting banksel directives algorithm
3927         for instructions that follow a skip instruction, this fixes a report
3928         for broken subtraction code generation,
3929         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3930         iCode is a left op, just in case result and right share the same
3931         registers
3932
3933 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3934
3935         * src/hc08/main.c,
3936         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3937         preservation of HX
3938         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3939         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3940         on 2004-09-12; it was buggy
3941
3942 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3943
3944         * src/SDCCsymt.h: removed RESULT_CHECK
3945         * src/SDCCast.c,
3946         * src/SDCCglue.c,
3947         * src/SDCCval.c,
3948         * src/pic/glue.c,
3949         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3950
3951 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3952
3953         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3954         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3955         configuration values no more rejected by compiler, they are assigned
3956         to configuration registers with a warning message instead,
3957         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3958         the for-loop so last conf register is emitted too,
3959         * (_pic16_initPaths): link library libsdcc.lib by default,
3960         * (_hasNativeMulFor): modified test for multiplication according to
3961         Raphael Neider's remarks. Integer multiplication is also done with
3962         support functions,
3963         * device/include/pic16/pic18fregs.h: corrected type error in while
3964         testing and including 18f6720 header file
3965
3966 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3967
3968         * src/pic16/device.h (pic16_options): removed field use_crt,
3969         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3970         until an optimization to handle single bits is added,
3971         * (pic16_loadFSR0): moved before genUnpackBits,
3972         * (genAnd): some white lines removed,
3973         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3974         leave_reset flags in pic16_options when using crt modules,
3975
3976 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3977
3978         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3979           for bugs 898889 & 979599. Also used some safer print instructions.
3980
3981 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3982
3983         * src/pic16/device.h (pic16_options_t): added field use_crt,
3984         crt_name, no_crt,
3985         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3986         catch a probable future bug,
3987         * src/pic16/gen.c: aopIdx function commented out,
3988         * (genAssign): commented out old code which used aopIdx,
3989         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3990         code, added if conditionals to take into account the --use-crt
3991         command line options,
3992         * src/pic16/main.c (pic16_optionsTable): added new command line
3993         options, --use-crt= and --no-crt,
3994         * (_pic16_linkEdit): now the proper crt object is added in the
3995         linker command line except than when --no-crt is specified,
3996         * src/pic16/pcode.c,
3997         * src/pic16/pcode.h: added some structures and functions for a new
3998         optimization scheme to compansate for instruction overhead between
3999         same iCodes, this scheme is currently under development and is not
4000         working in any way,
4001         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4002         to && operator,
4003         * device/lib/pic16/startup/crt0i.c,
4004         * device/lib/pic16/startup/crt0iz.c: added global char variable
4005         __uflags to force the generation of an idata section
4006
4007 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4008
4009         * doc/Makefile,
4010         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4011         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4012
4013 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4014
4015         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4016         Frieder) and clarified the default code optimization mode
4017
4018 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4019
4020         * src/SDCC.lex (doPragma, process_pragma),
4021         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4022         "opt_code_size", and "opt_code_balanced"
4023         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4024         regrouped options by category, added support for category headers
4025         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4026         and "--opt-code-size"
4027         * doc/sdccman.lyx: documented these new options and pragmas
4028         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4029         preference into account
4030
4031 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4032
4033         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4034           geniCodePreDec): Fixed bug 904237 by generating a warning
4035         * src/SDCCerr.h,
4036         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4037
4038 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4039
4040         * src/pic/device.c : When no max ram set validate full memory range.
4041         * src/pic/pcode.c,
4042         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4043
4044 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4045
4046         * device/lib/_gptrget.c,
4047         * device/lib/_gptrput.c: updated comment
4048         * device/lib/calloc.c,
4049         * device/lib/free.c,
4050         * device/lib/malloc.c,
4051         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4052         * src/SDCCcse.c (cseBBlock),
4053         * src/SDCCicode.c (printOperand, geniCodeArray),
4054         * src/SDCCicode.h (struct operand): fixed bug 868103
4055         * support/regression/tests/bug-868103.c: added
4056         * src/SDCCast.c (searchLitOp),
4057         * src/SDCCcse.h (struct cseDef),
4058         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4059         * src/SDCCicode.h (struct operand),
4060         * src/SDCCsymt.h (struct sym_link),
4061         * src/avr/gen.c (hasInc),
4062         * src/ds390/gen.c (hasInc),
4063         * src/hc08/gen.c (genPlusIncr, hasInc),
4064         * src/mcs51/gen.c (hasInc),
4065         * src/pic16/glue.c (pic16_printIvalChar),
4066         * src/pic16/ralloc.c (regWithIdx),
4067         * src/xa51/gen.c (hasInc) : removed warnings
4068         * src/SDCCast.c (createBlock): added comment ???
4069         * src/hc08/ralloc.c: updated comments
4070
4071 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4072
4073         * doc/sdccman.lyx: updated section on switch statements, added
4074         section about semaphore locking
4075         * doc/Makefile: added option -info for latex2html
4076         * device/lib/_gptrget.c,
4077         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4078
4079 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4080
4081         * src/pic/device.h,
4082         * src/pic/device.c,
4083         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4084          maxram is less than 0x100.
4085
4086 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4087
4088         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4089
4090 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4091
4092         * src/port.h,
4093         * src/mcs51/main.c,
4094         * src/ds390/main.c,
4095         * src/z80/main.c,
4096         * src/hc08/main.c,
4097         * src/pic/main.c,
4098         * src/pic16/main.c,
4099         * src/avr/main.c,
4100         * src/xa51/main.c
4101         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4102         a jump table is the best form for a switch statement, including
4103         automatic insertion of missing cases to make the case range
4104         continuous. Developed in collaboration with Frieder Ferlemann.
4105
4106 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4107
4108         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4109         accumulator result if it needs sign extension
4110
4111 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4112
4113         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4114
4115 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4116
4117         * device/lib/gbz80/printf.c,
4118         * device/lib/z80/printf.c: removed define for NULL
4119
4120 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4121
4122         * as/xa51/xa_link.c,
4123         * device/examples/ds390/ow390/ad26.c,
4124         * device/examples/ds390/ow390/cnt1d.c,
4125         * device/examples/ds390/ow390/counter.c,
4126         * device/examples/ds390/ow390/ds2480.h,
4127         * device/examples/ds390/ow390/ds2480ut.c,
4128         * device/examples/ds390/ow390/findtype.c,
4129         * device/examples/ds390/ow390/gethumd.c,
4130         * device/examples/ds390/ow390/owllu.c,
4131         * device/examples/ds390/ow390/ownetu.c,
4132         * device/examples/ds390/ow390/swt12.c,
4133         * device/examples/ds390/ow390/swtloop.c,
4134         * device/examples/ds390/ow390/temp.c,
4135         * device/examples/ds390/ow390/temp10.c,
4136         * device/examples/ds390/ow390/thermo21.c,
4137         * device/examples/ds390/ow390/tinilnk.c,
4138         * device/examples/ds390/ow390/tstfind.c,
4139         * device/examples/serialcomm/windows/serial.cpp,
4140         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4141         * device/include/reg51.h: fixed line endings for cvs
4142
4143 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4144
4145         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4146         packRegsForAccUse, packRegisters): new accumulator register
4147         packing algorithm
4148         * support/regression/ports/hc08/support.c (_putchar): suppress
4149         warning of unused variable
4150         * src/SDCCicode.c: added SWAP entry to codeTable
4151
4152 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4153
4154         * device/lib/sprintf.c: forgot to add this file before previous commit
4155
4156 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4157
4158         * src/pic16/gen.c (genPackBits): added operand right in function
4159         parameters, load result directly if p_type is POINTER (that is
4160         called by genNearPointerSet)
4161         * (genUnPackBits): added operand left in function parameters,
4162         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4163         FSR0 if accessing bitfields,
4164
4165 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4166
4167         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4168           _print_format; updated printf, sprintf, vsprintf
4169         * device/include/asm/default/features.h: corrected comment/define
4170         * device/lib/Makefile.in: added sprintf.c
4171         * device/lib/libsdcc.lib: added sprintf module
4172         * device/lib/printf_large.c,
4173         * device/lib/vprintf.c,
4174         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4175           into these 3 files
4176         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4177         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4178         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4179           hc08 test
4180         * support/regression/tests/zeropad.c: define idata as data for hc08
4181
4182 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4183
4184         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4185         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4186         labels are referenced at least once (even if a reference is not found)
4187         * src/hc08/gen.c (emitcode): set isComment flag for comments
4188         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4189         loads), rules 6a..6b (optimize jumps to return)
4190
4191 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4192
4193         * device/lib/acosf.c (acosf),
4194         * device/lib/asinf.c (asinf),
4195         * device/lib/atanf.c (atanf),
4196         * device/lib/ceilf.c (ceilf),
4197         * device/lib/cosf.c (cosf),
4198         * device/lib/coshf.c (coshf),
4199         * device/lib/cotf.c (cotf),
4200         * device/lib/fabsf.c (fabsf),
4201         * device/lib/floorf.c (floorf),
4202         * device/lib/log10f.c (log10f),
4203         * device/lib/logf.c (logf),
4204         * device/lib/sinf.c (sinf),
4205         * device/lib/sinhf.c (sinhf),
4206         * device/lib/sqrtf.c (sqrtf),
4207         * device/lib/tanf.c (tanf),
4208         * device/lib/tanhf.c (tanhf),
4209         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4210         replaced all instances of "reentrant" in the library functions
4211         defined in math.h with this macro.
4212         * support/regression/tests/float_trans.c: reenabled test for hc08
4213
4214 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4215
4216         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4217         erroneously deleted
4218
4219 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4220
4221         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4222         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4223         multi-byte volatile operands are used
4224         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4225         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4226         initialization to area GSINIT0 so that it would always precede
4227         any static initializers in GSINIT
4228         * support/regression/tests/zeropad.c: fixed idata define for hc08
4229         * support/regression/tests/bug-927659.c,
4230         * support/regression/tests/float_trans.c: disabled tests for hc08
4231         pending missing library routines
4232         * .version: increased version number to 2.4.4 - hc08 port now passes
4233         regression tests
4234
4235
4236 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4237
4238         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4239         * Makefile.common.in,
4240         * as/Makefile,
4241         * as/hc08/Makefile.in,
4242         * as/mcs51/Makefile.in,
4243         * as/z80/Makefile.in,
4244         * debugger/mcs51/Makefile.in,
4245         * device/include/Makefile.in,
4246         * device/lib/Makefile.in,
4247         * doc/Makefile,
4248         * link/Makefile,
4249         * link/z80/Makefile.in,
4250         * packihx/Makefile.in,
4251         * sim/ucsim/main_in.mk,
4252         * sim/ucsim/avr.src/Makefile.in,
4253         * sim/ucsim/doc/Makefile.in,
4254         * sim/ucsim/gui.src/serio.src/Makefile.in,
4255         * sim/ucsim/hc08.src/Makefile.in,
4256         * sim/ucsim/s51.src/Makefile.in,
4257         * sim/ucsim/xa.src/Makefile.in,
4258         * sim/ucsim/z80.src/Makefile.in,
4259         * src/Makefile.in,
4260         * support/cpp2/Makefile.in,
4261         * support/librarian/Makefile,
4262         * support/makebin/Makefile: added DESTDIR to the install path proposed
4263         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4264         * doc/sdccman.lyx: added DESTDIR documentation
4265
4266 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4267
4268         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4269         instruction for interrupt handlers, use fast returns when returning
4270         from high priority interrupts
4271
4272 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4273
4274         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4275         code generation
4276         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4277         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4278         bugs, ported much of Bernhard's code from mcs51
4279         * src/mcs51/gen.c (genSend),
4280         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4281         than one when calling a reentrant function
4282         * device/lib/_mullong.c: defined an alternate struct layout for big
4283         endian ports (hc08)
4284
4285 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4286
4287         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4288         test
4289
4290 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4291
4292         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4293         are sane and complete before asking the port its prefered parameter
4294         passing method (fixes bug #1017633)
4295         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4296         and _ret3
4297
4298 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4299
4300         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4301         problem in bitfields >= 8 bits.
4302
4303 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4304
4305         * src/SDCCsymt.c: undid changes that were not meant to be committed
4306
4307 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4308
4309         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4310
4311 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4312
4313         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4314           copied and wrong bit got inverted
4315
4316 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4317
4318         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4319         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4320         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4321         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4322         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4323         assignments to bitfields at known addresses
4324         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4325         reads from bitfields at known addresses
4326         * src/hc08/ralloc.c (packRegisters),
4327         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4328         genhc08Code): optimize pointer get values used as conditionals
4329         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4330         and branch
4331
4332 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4333
4334         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4335         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4336         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4337         as conditionals
4338
4339 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4340
4341         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4342
4343 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4344
4345         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4346         related problems
4347
4348 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4349
4350         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4351
4352 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4353
4354         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4355         mcs51 port
4356
4357 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4358
4359         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4360
4361 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4362
4363         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4364         cases use more compact code.
4365
4366 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4367
4368         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4369
4370 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4371
4372         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4373
4374 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4375
4376         * src/SDCCsymt.h,
4377         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4378         parameter of changePointer() from symbol* to sym_link*
4379         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4380         * src/SDCCsymt.c (compareType): void* type is castable to other
4381         pointers, but not necesarily an exact match.
4382         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4383         is no longer blindly treated as an exact match.
4384         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4385
4386 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4387
4388         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4389
4390 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4391
4392         * src/pic/gen.c,
4393         * src/pic/pcode.c,
4394         * src/pic/ralloc.h,
4395         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4396
4397 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4398
4399         * src/pic/device.c,
4400         * src/pic/device.h,
4401         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4402
4403 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4404
4405         * src/mcs51/gen.c (emitcode): fixed bug #992819
4406
4407 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4408
4409         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4410           there's no need to make it worse
4411
4412 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4413
4414         * src/mcs51/ralloc.c (deassignLR),
4415         * src/ds390/ralloc.c (deassignLR),
4416         * src/hc08/ralloc.c (deassignLR),
4417         * src/z80/ralloc.c (deassignLR),
4418         * src/pic/ralloc.c (deassignLR),
4419         * src/pic16/ralloc.c (deassignLR),
4420         * src/avr/ralloc.c (deassignLR),
4421         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4422         rlivePoint): fixed another part of bug #971834
4423
4424 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4425
4426         * src/z80/main.c: enabled "critical" keyword
4427         * src/z80/mappings.i,
4428         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4429         functions (fixes bug #979646)
4430         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4431
4432 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4433
4434         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4435           such as c:\mydir.
4436
4437 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4438
4439         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4440           doesn't disable too much optimizations
4441
4442 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4443
4444         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4445
4446 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4447
4448         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4449
4450 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4451
4452         * src/pic/gen.c tidied up tabs
4453         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4454         * src/pic/main.c tidied up tabs
4455         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4456         * src/pic/pcoderegs.c tidied up tabs
4457         * src/pic/ralloc.c tidied up tabs
4458
4459 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4460
4461         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4462         to S_FIXED for pic16 port and when symbol is not in level 0,
4463         allocate for S_REGISTER storage class and pic16 port, too,
4464         * src/pic16/device.h: prototype for checkSym,
4465         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4466         * (pic16_assignConfigWordValue): test the value and the mask to
4467         validate that the value is suitable for the configuration word,
4468         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4469         collect extern declared symbols, don't emit symbol twice, check
4470         first if symbol is in publics set first,
4471         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4472         * added command line '--fstack' which enables an experimental
4473         feature for stack access, too buggy to be used yet...
4474         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4475         * (pic16_allocDirReg): when register has storage class S_REGISTER
4476         allocate in pic16_dynAccessRegs,
4477         * device/include/pic16/pic18f????.h: modified configuration word
4478         naming convention, words started as CONFIG0H but should be CONFIG1H
4479
4480 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4481
4482         * device/include/mcs51reg.h: fixed bug 970993
4483
4484 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4485
4486         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4487         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4488         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4489         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4490         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4491         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4492           error/warning numbers,
4493           added function setWarningDisabled()
4494         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4495         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4496           _memcmp.c _memmove.c calloc.c realloc.c free.c
4497         * support/regression/tests/malloc.c: added tests for new functionality
4498         * support/regression/tests/zeropad.c: added tests for truncated initializers
4499           and initialized char arrays starting with '\x0'
4500         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4501
4502 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4503
4504         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4505
4506 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4507
4508         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4509         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4510         peephole 177.e. Thanks to anonymous
4511
4512 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4513
4514         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4515         function isn't used in the source but referenced as a
4516         variable initializer then declare it as extern in .asm file
4517
4518 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4519
4520         * .version: increased version number to 2.4.3
4521
4522         Adding version extension according to ChangeLog CVS revision
4523         * src/Makefile.in (target all): added dependency 'version.h'
4524         * (rule version.h): added rule to create version.h from ChangeLog,
4525         * (rule dep): added dependency version.h,
4526         * src/version.awk: AWK script to create version.h
4527         * src/SDCCdwarf2.c (dwWriteModule),
4528         * src/SDCCglue.c (initialComments),
4529         * src/SDCCmain.c (printVersionInfo): modified to write after
4530         version string the version extension number,
4531         * src/SDCCutil.c: included "version.h"
4532         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4533         number,
4534         * src/SDCCutil.h: added prototype for getBuildNumber
4535
4536         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4537         includeDirsSet, too,
4538         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4539         const char [] is found in function prototype...
4540
4541         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4542         moving to WREG with source is already in WREG,
4543         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4544         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4545         * (aopForSym): stack'ed symbols are partially supported, added
4546         if-clause to support symbols in FARSPACE,
4547         * (sameRegs): added test for AOP_ACC to see if registers are same,
4548         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4549         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4550         * (pic16_popRegFromString): will not allocate a new register if it
4551         doesn't find one by name, bug may have introduced...
4552         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4553         * (genIpush): revived to use pic16 port's stack,
4554         * (genAddrOf): added incomplete case for stack'ed operand,
4555         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4556         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4557         can handle multibyte operands,
4558         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4559         * (pic16initialComments): added message for MPLAB compatibility
4560         mode enabled,
4561         * src/pic16/main.h: prototype for pic16_mplab_comp,
4562         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4563         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4564         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4565         because of increased complexity of procedure,
4566         * (_process_pragma): stack pragma changed to format 'stack pos len',
4567         emit symbol '_stack_end' to conform with gplink,
4568         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4569         to search for register,
4570         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4571         PO_GPR_REGISTER,
4572         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4573         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4574         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4575         case for PO_GPR_REGISTER,
4576         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4577         dies, the new era is ahead !...
4578         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4579         pic16_dynInternalRegs,
4580         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4581         * (pic16_allocDirReg): minor optimizations and bug fixes,
4582         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4583
4584         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4585         load stack and frame pointer with address of 'stack_end' symbol
4586
4587 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4588
4589         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4590         without source code but only variable initializers
4591
4592 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4593
4594         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4595         external are not declared as extern to reduce overhead while linking
4596
4597 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4598
4599         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4600
4601 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4602
4603         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4604           Yee Keat for the patch
4605         * src/SDCCast.c (decorateType): fixed bug #979599
4606         * src/ds390/gen.h: removed local fReturnSizeDS390
4607         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4608         * src/ds390/gen.c (genAnd, genOr, genXor),
4609         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4610
4611 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4612
4613         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4614         add relFilesSet to $3, manipulate $2 to handle linking of object
4615         files without source files in command line,
4616         * device/include/pic16 (all headers): added ID location macros,
4617         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4618         entries for ID location bytes,
4619         * (pic16_assignIdByteValue): NEW,
4620         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4621         added field dumpcalltree to pic16_options_t,
4622         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4623         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4624         emitting rFalseIfx label after check_carry label,
4625         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4626         pic16_emitDIRegs), NEW
4627         * (pic16glue): dump .calltree file when option --calltree found,
4628         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4629         * (_pic16_genAssemblerPreamble): emit ID locations after
4630         configuration registers,
4631         * (pic16_linkCmd): modifications of the link command,
4632         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4633         * (pic16_pCodeInitRegisters): don't init stack registers,
4634         * (pic16_findPrevInstruction): fixed bug,
4635         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4636         bug with immediate registers,
4637         * (buildCallTree): traces stack push and pop,
4638         * (pct2): dump also stack usage for each function,
4639         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4640         * (pic16_allocDirReg): various modifications,
4641         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4642         fixed to 1,
4643
4644 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4645
4646         * src/pic16/pcode.c: removed buggy double colon
4647
4648 2004-07-01 Borut Razem <borut.razem AT siol.net>
4649
4650         * support/scripts/sdcc.nsi: added include/pic16 to setup
4651
4652 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4653
4654         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4655         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4656         target 'clean',
4657         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4658         specific command line arguments. Also added sample lkr script
4659         for placing a variable at a specific memory bank.
4660         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4661         at a specific memory bank,
4662         * (pic16_dump_isection): fixed bug which caused string literals to
4663         be omitted when dumping idata section,
4664         * (pic16_groupRegistersInSection): added code to handle registers
4665         in specific memory banks,
4666         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4667         public, all references are renamed too,
4668         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4669         AOP_DPTR2,
4670         * (pic16_storeForReturn): added case to handle when dest is WREG,
4671         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4672         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4673         pic16_rel_udata, check to see if that register is marked as being
4674         a member of a specific memory bank,
4675         * (pic16_printIvalCharPtr): added code to add string literals either
4676         to code or the idata sections,
4677         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4678         also accept the 'udata' pragma,
4679         * src/pic16/main.h: new structure types sectName and sectSym
4680         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4681         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4682         * (pic16_findPrevInstruction): fixed, it returned nothing,
4683         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4684         instruction combinations,
4685         * (pic16_FixRegisterBanking): heavily reorganised,
4686         * (pic16_AnalyzeBanking): if generating banksel directives is
4687         disabled, then don't call FixRegisterBanking at all,
4688         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4689         completely removed,
4690         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4691
4692 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4693
4694         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4695         Phuah Yee Keat <yk.phuah AT nestac.com>
4696
4697 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4698
4699         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4700         correctly the IVT even if it is relocated to some other location
4701
4702 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4703
4704         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4705         * device/include/pic16/pic18f2220.h: NEW,
4706         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4707         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4708         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4709         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4710         nodefaultlibs, ivt_loc is the location of the interrupt vector
4711         table, and nodefaultlibs signs that default libraries should not be
4712         linked in link stage,
4713         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4714         according to --ivt-loc argument,
4715         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4716         when pragma stack is found,
4717
4718 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4719
4720         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4721         256 (range check), 257 (do while), 258.a-f (bit banging
4722         f.e. on 3-wire SPI bus)
4723
4724 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4725
4726         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4727         variables used exclusively within a loop
4728
4729 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4730
4731         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4732
4733 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4734
4735         * src/SDCClrange.c (computeClash): fixed bug #971834
4736
4737 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4738
4739         * src/mcs51/gen.c (genCmp): fixed bug #975903
4740         * src/hc08/gen.c (operandsEqu),
4741         * src/ds390/gen.c (operandsEqu),
4742         * src/z80/gen.c (operandsEqu),
4743         * src/pic/gen.c (operandsEqu),
4744         * src/pic16/gen.c (operandsEqu),
4745         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4746         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4747
4748 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4749
4750         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4751
4752 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4753
4754         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4755         default case in switch statement,
4756         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4757         to eliminate problem with initialisation of pointers, but problem
4758         still exists,
4759         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4760         * (emitStaticSegment): removed various lines emitting debug info,
4761         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4762         added processor registers for utilizing EEPROM,
4763         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4764         configurable and set 8
4765
4766 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4767
4768         * .version: increased version number to 2.4.2,
4769
4770         Cumulative patch for pic16 port
4771         * src/pic16/device.c: changed scheme to dump initial values for
4772         variables in idata segment, all print_idata* functions were removed,
4773         now the pic16_printIval* will be called,
4774         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4775         * _pic16_printPointerType, pic16_printPointerType,
4776         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4777         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4778         NEW, similar to the respective functions in SDCCglue.c,
4779         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4780         way, emitting hex bytes,
4781         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4782
4783 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4784
4785         * src/avr/ralloc.c (serialRegAssign),
4786         * src/xa51/ralloc.c (serialRegAssign),
4787         * src/pic/ralloc.c (serialRegAssign),
4788         * src/pic16/ralloc.c (serialRegAssign),
4789         * src/hc08/ralloc.c (serialRegAssign),
4790         * src/z80/ralloc.c (serialRegAssign),
4791         * src/ds390/ralloc.c (serialRegAssign),
4792         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4793
4794 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4795
4796         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4797         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4798
4799 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4800
4801         Cumulative patch for pic16 port:
4802         * src/pic16/device.h (typedef PIC16_device) modified fields for
4803         defining microcontrollers,
4804         * src/pic16/device.c: added new info for all devices in Pics16 array,
4805         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4806         to be optimised out by the pCode optimiser,
4807         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4808         specially, bug reported by G.M. Gallant,
4809         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4810         as force'd so that cannot be optimised out by pCode optimiser,
4811         * src/pic16/pcode.c,
4812         * src/pic16/pcodepeeph.c,
4813         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4814         they are disabled by default, but can be enabled explicit with
4815         command argument --denable-peeps, for testing,
4816         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4817         --pomit-ivt in COMPILE_FLAGS
4818
4819 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4820
4821         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4822           compilation on MSVC
4823
4824 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4825
4826         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4827
4828 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4829
4830         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4831         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4832
4833 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4834
4835         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4836         would only assign 0x300001 register.
4837
4838 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4839
4840         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4841         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4842
4843 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4844
4845         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4846         for ds80c400
4847         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4848         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4849         added peephole 254 (left shift), 255 (jump table)
4850
4851 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4852
4853         * device/lib/Makefile.in: removed comment line with model-pic16,
4854         * (target port-specific-objects-pic16): the libraries and objects
4855         are copied to the build directory form the device/lib/pic16/bin
4856         directory
4857
4858         Cumulative patch concerning pic16 port:
4859         * library directory has been re-organized,
4860         * added support for PIC18F1220,
4861         * added headers and library sources for chips 18f1220,18f6520,
4862         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4863
4864         * configuration registers setting has changed, now each supported
4865         device has a complete description of the registers it uses,
4866         * all initialisations are moved to idata sections, these section
4867         can be absolute or relocatable,
4868         * fixed initialisation of codespace variables,
4869         * fixed warning about PCLATU and gpsim,
4870         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4871         * (genAssign): use table reads when assigning from variables in codespace,
4872         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4873         char/int variables placed in codespace,
4874         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4875         registers set in .asm file, no need for --pomit-config-words anymore,
4876         * (pic16glue): some 8051 legacy segments are commented out
4877         (to be removed completely),
4878         * added support for alternative assembler and linker with --asm=
4879         and --link= command line arguments,
4880         * peepholes are disabled automatically in the port, no need to
4881         specify on command line,
4882         * port supports natively char/int/long multiplication, but converts
4883         all divisions to support functions,
4884         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4885         to the file set in variable $2,
4886         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4887         strings in ASCII format and not in hex,
4888         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4889         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4890         allocate proper register if iCodes aren't temporary,
4891
4892 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4893
4894         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4895
4896 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4897
4898         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4899         is commented out
4900
4901 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4902
4903         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4904         computed address is reused
4905         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4906         multi-byte bitfields
4907
4908 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4909
4910         * src/z80/gen.c: (genArrayInit): must check for pointers too
4911
4912 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4913
4914         * support/regression/tests/zeropad.c: never meant to commit the
4915           nestedstruct test: removed, added check for GCC version
4916
4917 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4918
4919         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4920         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4921         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4922           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4923           bugs 928906 and 954082 half-empty initializers
4924         * src/SDCCsymt.h,
4925         * src/SDCCsymt.c (getAllocSize): added for above fix
4926         * src/z80/gen.c (genArrayInit): fixed bug 741044
4927         * support/regression/tests/zeropad.c: added tests
4928
4929 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4930
4931         * src/pic16/device.c (pic16_dump_section): corrected bug which
4932         caused some symbols of the libraries to be misplaced
4933
4934 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4935
4936         * src/pic16/glue.c,
4937         * src/pic16/ralloc.h,
4938         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4939         to fix conflict with pic port
4940
4941 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4942
4943         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4944         externs configuration variables,
4945         * src/pic16/ralloc.h,
4946         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4947         prototype in header, commented out some debug messages
4948
4949 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4950
4951         * src/pic16/glue.c,
4952         * src/pic16/main.c,
4953         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4954         for gpasm COFF object generation. Thanks to D. Hawkins for
4955         his patch info
4956
4957 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4958
4959         * src/ds390/main.c,
4960         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4961         Brock for spotting this)
4962         * src/ds390/gen.c (genEndFunction),
4963         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4964         interrupt handler and critical. Disable push/pop optimizations when
4965         peephole optimizations disabled.
4966
4967 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4968
4969         Updated pic16 library sources and headers.
4970         * device/lib/pic16/pic18f*/ ,
4971         * device/include/pic16/*.h: modified to handle structured SFR
4972         definitions
4973
4974 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4975
4976         * src/port.h (PORT structure): added hook initPaths, now each
4977         port can declare its own default search paths,
4978         which can been seen with the --print-search-dirs option,
4979         see pic16 port for example,
4980         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4981         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4982         * (doPrintSearchDirs): NEW, replaces in a central manner the
4983         printing of search dirs which was split in set*Paths functions,
4984         * (main): added call to port->initPaths and doPrintSearchDirs,
4985         * src/avr/main.c,
4986         * src/ds390/main.c,
4987         * src/hc08/main.c,
4988         * src/izt/i186.c,
4989         * src/izt/tlcs900h.c,
4990         * src/mcs51/main.c,
4991         * src/pic/main.c,
4992         * src/pic16/main.c: modified port structures to reflect addition of
4993         initPaths hook,
4994
4995         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4996         * (pic16_dump_section): for registers in same address reserve memory once,
4997         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4998         to no_banksel,
4999         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5000         result is greater in size than right or left,
5001         * (pic16_genUMult8X8_8): there are some cases where the result can
5002         be 16 bits size, so handle these,
5003         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5004         * (pic16_outBitC): modified to emit pcodes,
5005         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5006         or not,
5007         * (genDivOneByte): implemented algorithm to divide 8-bits,
5008         * (genCmp): uncommented goto, but issues still exist,
5009         * (genAnd): fixed a bug with variables >8bits,
5010         * (genPackBits): optimization added that uses BCF/BSF to change a
5011         single bit,
5012         * (genAssign): fixed bug when assigning floating point literals,
5013         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5014         __sdcc_gsinit_startup label,
5015         * src/pic16/main.c (_pic16_init): removed search directory
5016         initialisations,
5017         * (_pic16_initPaths): NEW, used to initialise search directories,
5018         * (_hasNativeMulFor): support functions for all except char/int
5019         multiplication, and char division,
5020         * (PIC16_port struct): modified entry for native mul support,
5021         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5022         no_banksel option,
5023         * (buildCallTree): call to register_usage is ifdef'ed out,
5024
5025 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5026
5027         * device/include/string.h: applied Stas Sergeev's patch to make this
5028         header file compatible with the preprocessor -Wundef option
5029         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5030         failure (fixes bug #941458)
5031
5032 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5033
5034         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5035         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5036         that the variable, not the function, should be static
5037         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5038         to be consistent with non-literal case
5039
5040 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5041
5042         * src/SDCCast.c (isConformingBody): fixed bug #949967
5043         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5044         convilong): fixed bug #952086
5045
5046 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5047
5048         * src/SDCCmem.c (allocVariables): fixed bug #955321
5049
5050 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5051
5052         * src/hc08/main.c (_hc08_genAssemblerEnd),
5053         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5054         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5055         completely eliminated the use of a temporary file
5056         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5057         when more than one file linked
5058         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5059
5060 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5061
5062         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5063         which fixes bug #543481
5064         * support/regression/tests/bug-751703.c: fixed comments left from a
5065         cut and paste error
5066         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5067         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5068         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5069         scopes
5070         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5071         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5072         are now changed to underscores in moduleName
5073
5074 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5075
5076         * as/mcs51/lkmem.c: better fix for bug #954173
5077
5078 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5079         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5080
5081         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5082         * device/include/c8051f000.h,
5083         * device/include/c8051f120.h,
5084         * device/include/c8051f300.h,
5085         * device/include/c8051f310.h,
5086         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5087         PWM16) and detab'ed
5088
5089 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5090
5091         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5092         and mailing lists, doc'ed --no-peep-comments, removed reference
5093         to knoppix (newest version has no LyX/LaTeX), other minor changes
5094         * src/SDCCglue.c (glue): save 2 bytes stack space with
5095         option --main-return. The ljmp could probably be avoided too
5096
5097 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5098
5099         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5100
5101 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5102
5103         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5104         * src/SDCCopt.c (isLocalWithoutDef),
5105         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5106         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5107         (credit to Maarten Brock for patch #949363, on which this is based)
5108         * support/regression/tests/bug-751703.c: some test cases of extern used
5109         within inner scopes.
5110
5111 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5112
5113         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5114         SPEC_STRUCT
5115         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5116         struct definitions
5117         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5118         dwWriteLabel): fix to create valid debugger symbols even when
5119         the module name has non-alphanumeric symbols in it
5120         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5121         when a variable's allocation has been optimized away
5122
5123
5124 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5125
5126         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5127         * src/hc08/main.c,
5128         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5129         * src/mcs51/main.c,
5130         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5131         * src/ds390/main.c,
5132         * src/z80/gen.c (z80_emitDebuggerSymbol),
5133         * src/z80/main.c,
5134         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5135         * src/pic/main.c,
5136         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5137         * src/pic16/main.c,
5138         * src/avr/gen.c (avr_emitDebuggerSymbol),
5139         * src/avr/main.c,
5140         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5141         * src/xa51/main.c,
5142         * src/SDCCdebug.c (emitDebuggerSymbol),
5143         * src/SDCCdebug.h,
5144         * src/port.h: added a debugger struct to the port struct. Added a
5145         callback for defining debugger symbols
5146
5147         * src/SDCCast.c (createLabel),
5148         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5149         with isitmp = 1
5150         * src/SDCCicode.h,
5151         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5152         iCode back to the ast for the function
5153
5154         * src/hc08/ralloc.c (hc08_assignRegisters),
5155         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5156         unneeded fields from the regs struct.
5157         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5158         pushReg() & pullReg() functions instead of emitcode()
5159
5160         * src/hc08/gen.c (genLabel, genhc08Code),
5161         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5162
5163         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5164         debugger hooks
5165
5166         * src/hc08/gen.c (genEndFunction, genhc08Code),
5167         * src/hc08/gen.h,
5168         * src/mcs51/gen.c (genEndFunction, gen51Code),
5169         * src/mcs51/gen.h,
5170         * src/ds390/gen.c (genEndFunction, gen390Code),
5171         * src/ds390/gen.h,
5172         * src/z80/gen.c (genEndFunction, genZ80Code),
5173         * src/z80/gen.h,
5174         * src/z80/z80.h,
5175         * src/pic/gen.c (genEndFunction, genpic14Code),
5176         * src/pic/gen.h,
5177         * src/pic16/gen.c (genEndFunction, genpic16Code),
5178         * src/pic16/gen.h,
5179         * src/avr/gen.c (genEndFunction, genAVRCode),
5180         * src/avr/gen.h,
5181         * src/xa51/gen.c (genEndFunction, genXA51Code),
5182         * src/xa51/gen.h,
5183         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5184         specific code to cdbFile.c and out of the backend code generators
5185
5186         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5187         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5188         starting address is now 0
5189
5190         * as/hc08/asm.h,
5191         * as/hc08/m08pst.c,
5192         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5193         assembler directive for DWARF support
5194         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5195
5196         * src/src.dsp,
5197         * src/Makefile.in,
5198         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5199
5200 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5201
5202         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5203         and inappropriate peephole optimization in jump tables
5204
5205 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5206
5207         * as/hc08/m08pst.c,
5208         * src/SDCCglue.c: sdccopt works for the hc08 port now
5209
5210 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5211
5212         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5213
5214 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5215
5216         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5217
5218 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5219
5220         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5221         rules
5222         * src/SDCCmain.c,
5223         * src/SDCCglobl.h,
5224         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5225         comments from the peephole optimizer replacement rules
5226         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5227         symbols
5228         * src/SDCCcse.c (updateSpillLocation),
5229         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5230         equivalents
5231         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5232         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5233         objects far pointers
5234
5235 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5236
5237         * src/SDCCsymt.h: a missing part of my last change
5238         * src/pic/ralloc.c (regTypeNum),
5239         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5240
5241 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5242
5243         * src/SDCCicode.h,
5244         * src/SDCCicode.c (aggrToPtrDclType),
5245         * src/SDCCptropt.h,
5246         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5247         ptrPseudoSymConvert),
5248         * src/pic/ralloc.c (regTypeNum),
5249         * src/pic16/ralloc.c (regTypeNum),
5250         * src/hc08/ralloc.c (regTypeNum),
5251         * src/ds390/ralloc.c (regTypeNum),
5252         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5253         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5254
5255 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5256
5257         * link/z80/lkmain.c (afile),
5258         * as/hc08/lkmain.c (afile),
5259         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5260         prevent a pointer problem when a filename has no directory and
5261         no extension specified.
5262
5263 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5264
5265         * link/z80/lkmain.c (afile): allow periods in directory names
5266         * link/z80/lkmain.c (afile),
5267         * as/mcs51/lkmain.c (afile),
5268         * as/hc08/lkmain.c (afile): allow linker script file to have an
5269         extension other than ".lnk"
5270         * link/z80/lklex.c (getfid),
5271         * link/z80/lkmain.c (parse),
5272         * as/mcs51/lklex.c (getfid),
5273         * as/mcs51/lkmain.c (parse),
5274         * as/hc08/lklex.c (getfid),
5275         * as/hc08/lkmain.c (parse): Support comments in the linker script
5276         file on lines by themselves and after filenames
5277
5278 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5279
5280         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5281
5282 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5283
5284         * src/z80/peeph-z80.def: removed some peephole rules that don't
5285         work with multibyte arithmetic (fixed bug #937126)
5286         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5287         to registers and not global variables
5288         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5289         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5290         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5291         checking for assignments not internally generated (fixed bug #931895)
5292         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5293         structure member (fixed bug #930072)
5294
5295 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5296
5297         * src/SDCCmain.c (linkEdit),
5298         * src/hc08/main.c (_hc08_parseOptions),
5299         * as/hc08/Makefile.in,
5300         * as/hc08/aslink.h,
5301         * as/hc08/asm.h,
5302         * as/hc08/m08pst.c,
5303         * as/hc08/lkrloc.c (relr, rele),
5304         * as/hc08/lkarea.c (lnkarea)
5305         * as/hc08/lkmain.c (afile, parse),
5306         * as/hc08/lkelf.c: support for ELF output
5307         * as/hc08/lks19.c (s19),
5308         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5309
5310 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5311
5312         * as/mcs51/lkihx.c: Fixed bug #899105.
5313
5314 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5315
5316         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5317         .dsp files from Unix to DOS.
5318
5319 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5320
5321         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5322         function pointers; we have been compliant for several months now.
5323         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5324         change that was accidently commented out
5325         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5326         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5327         bug #922319
5328
5329 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5330
5331         * src/hc08/gen.c: output of all of the internal debugging information
5332         is now controlled by the D() macro; it is disabled by default
5333
5334 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5335
5336         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5337         harder to keep the same registers during a CAST iCode
5338         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5339         long via int can be done in a single cast, if the signedness is
5340         correct.
5341         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5342         putchar() in tinibios.c in ds390's library
5343
5344 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5345
5346         * src/SDCCast.c (decorateType): fixed bug #898889,
5347         cast result of a literal complement too
5348         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5349         fixed check for bitfields
5350
5351 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5352
5353         * src/SDCCicode.c (geniCodeLogic): made it static,
5354         (geniCodeLogicAndOr): added in order to fix bug #905492,
5355         (ast2iCode): fixed bug #905492
5356         * support/regression/tests/bug-905492.c: added
5357         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5358         (processParms): fixed bug #927659: don't copy parms, this will clear
5359         decorated flag
5360         * support/regression/tests/bug-927659.c: added
5361
5362 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5363
5364         * src/SDCCast.c (addCast): don't cast float to char
5365         * device/lib/libsdcc.lib: added _memmove
5366
5367 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5368
5369         * device/lib/large/Makefile: fixed parallel execution by
5370         replacing `make` by `$(MAKE)`
5371
5372 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5373
5374         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5375         offsets (fixes bug #923936)
5376
5377 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5378
5379         * device/lib/small/Makefile: fixed parallel execution by
5380         replacing `make` by `$(MAKE)`
5381
5382 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5383
5384         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5385
5386 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5387
5388         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5389         * src/regression/Makefile: Regression test was not running.
5390
5391 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5392
5393         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5394         complement if possible
5395         * src/SDCCval.c (valComplement),
5396         * src/SDCCicode.c (operandOperation): fixed complement of literal
5397         * support/regression/tests/onebyte.c (testComplement): added
5398
5399 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5400
5401         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5402         return an optimized tree; actually replace actParm with the new tree
5403         * src/SDCCast.h: added some parantheses to remove side effects
5404         * support/regression/tests/bug-920866.c
5405
5406 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5407         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5408         Bit operands were not being handled properly in the pic14 port.
5409         (now src/regression/add.c passes again).
5410
5411 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5412
5413         * src/SDCC.y (labeled_statement): case and default no longer require
5414         a following statement (RFE #893037)
5415
5416 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5417
5418         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5419         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5420         disabled (fixes bug #916294)
5421         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5422         "mov a,acc"; patch provided by Lenny Story
5423         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5424
5425 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5426
5427         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5428         functions
5429         * src/ds390/gen.c (genFunction, genEndFunction),
5430         * src/ds390/ralloc.c (ds390_assignRegisters),
5431         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5432         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5433         pushed if there are parameters passed on the stack. Also, a cleaner
5434         way to decide if r0/r1 should be pushed/popped. (Together they fix
5435         bug #918693)
5436
5437 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5438
5439         * doc/sdccman.lyx,
5440         * device/lib/mcs51/crtpagesfr.asm,
5441         * device/lib/mcs51/crtxinit.asm,
5442         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5443         to avoid confusion with Si Lab's SFRPAGE register.
5444
5445 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5446
5447         * src/SDCCglue.c (emitMaps): allow public sfr variables
5448         * src/SDCCglue.c (initialComments): include compiler build date
5449         with compiler version and put the timestamp of the generated
5450         assembly file on a serperate line to be less confusing.
5451         * src/port.h: added genInitStartup hook
5452         * src/avr/main.c,
5453         * src/ds390/main.c,
5454         * src/hc08/main.c,
5455         * src/pic/main.c,
5456         * src/pic16/main.c,
5457         * src/xa51/main.c,
5458         * src/z80/main.c: genInitStartup initialize as NULL (default to
5459         historical behaviour)
5460         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5461         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5462         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5463         library instead of hard coding it into the compiler.
5464         * support/regression/ports/mcs51-stack-auto/spec.mk,
5465         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5466         * device/lib/mcs51/Makefile,
5467         * device/lib/small/Makefile,
5468         * device/lib/large/Makefile,
5469         * device/lib/mcs51/crtpagesfr.asm,
5470         * device/lib/mcs51/crtstart.asm,
5471         * device/lib/mcs51/crtxclear.asm,
5472         * device/lib/mcs51/crtxinit.asm,
5473         * device/lib/mcs51/crtclear.asm,
5474         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5475         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5476         and into user configurable files.
5477         * device/lib/clean.mk: clean mcs51 directory too
5478         * support/regression/tests/longlit.c: added static to T1 declaration
5479         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5480         accesses in the initialization code
5481
5482 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5483
5484         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5485         OSCTRIMVAL as noted in bug #916008
5486
5487 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5488
5489         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5490         in loops with multiple exits (reported as incorrect registers
5491         used by Martin Helmling in Sdcc-user list)
5492
5493 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5494
5495         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5496         made ds390 register extensions look less like error messages
5497
5498 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5499
5500         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5501         reported by Adam Wozniak in Sdcc-user list
5502
5503 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5504
5505         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5506         arithmetic optimizations, added debug output
5507
5508 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5509
5510         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5511         * sdcc.spec: updated and split sdcc into 3 rpms
5512         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5513         needed for literals of LEFT_OP and '+'
5514         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5515         introduced RESULT_TYPE_NOPROM
5516         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5517         left shift
5518         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5519         limited promotion to int only for '*'
5520         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5521
5522 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5523
5524         * src/pic16/gen.c (genSkip),
5525         (genc16bit2lit), (gencjneshort): commented out
5526         (is_LitOp): new helper function, checks operand type
5527         (genCmpEq): rewritten
5528
5529 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5530
5531         * support/regression/tests/bug-908454.c: added
5532
5533 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5534
5535         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5536         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5537         (geniCodeCast): cosmetic, don't preserve bit storage class
5538         (geniCodeLeftShift): added promotion
5539         (geniCodeLogic): fixed regression
5540         * src/SDCCsymt.c (computeTypeOr): accept bits too
5541         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5542
5543 2004-03-07  Borut Razem <borut.razem AT siol.net>
5544
5545         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5546
5547 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5548
5549         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5550         version of pic16_genPackRegisters which does not check if ic is a
5551         CAST operator,
5552         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5553         function cause string1.c regression test fails
5554
5555 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5556
5557         * sim/ucsim/configure.in,
5558         * sim/ucsim/configure,
5559         * sim/ucsim/doc/Makefile.in: use docdir
5560         * src/SDCC.y: fixed sbit atrributes
5561         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5562         * src/SDCCast.c (decorateType): |^& need special promotion handling
5563         * src/SDCCast.h,
5564         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5565         * src/SDCCsymt.h (computeType),
5566         * src/SDCCicode.c: computeType() needs op
5567         * src/SDCCsymt.c (checkTypeSanity),
5568         * doc/sddman.lyx: "plain" bitfields are unsigned
5569         * src/SDCCsymt.c (computeTypeOr): added
5570         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5571         |^& ops
5572         * src/SDCCval.c (val*): computeType() needs op
5573         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5574         * support/regression/tests/onebyte.c: added tests for |^&
5575
5576 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5577
5578         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5579         for writing icode into asm output.
5580
5581 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5582
5583         * src/pic16/device.c: added some debug lines enabled
5584         with macro DEBUG_CHECK,
5585         * src/pic16/genarith.c: more debug in genPlus,
5586         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5587         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5588         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5589         * (aopForSym): onStack symbols are re-placed in data memspace,
5590         and onStack flag is cleared,
5591         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5592         copy temporary pcodeop,
5593         * (genPcall): added warning for not updating PCLATU,
5594         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5595         always true for pic16 port,
5596         * (genMultOneWord): NEW, supports integer multiplication,
5597         * (genMult): modified to call genMultOneWord,
5598         * (ifxForOp): added warning when return NULL,
5599         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5600         flag is set before call to operandFromSymbol for implicit
5601         added structures,
5602         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5603         options.intlong_rent are set by default,
5604         * (_hasNativeMulFor): modified to allow port generation of integer
5605         multiplication,
5606         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5607         set regtype to REG_SFR for all registers, restricting seting the
5608         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5609
5610 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5611
5612         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5613         more than 500 times in the regression tests
5614
5615 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5616
5617         * support/Util/SDCCerr.h,
5618         * support/Util/SDCCerr.c,
5619         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5620         enumerator_list),
5621         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5622         for symbol conflicts.
5623         * support/valdiags/tests/enum.c,
5624         * support/valdiags/tests/tentdecl.c,
5625         * support/valdiags/tests/struct.c: expect possible error messages
5626         referring to original symbol definitions.
5627         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5628         * src/SDCCsymt.h,
5629         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5630
5631 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5632
5633         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5634
5635 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5636
5637         * src/pic16/ralloc.c (newReg): fixed bug #908929
5638
5639 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5640
5641         * src/ds390/gen.c: added missing #include "main.h"
5642
5643 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5644
5645         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5646         checking if symbol is already in set,
5647         * src/pic16/device.h: prototype for checkAddSym,
5648         * src/pic16/gen.c: (_G): added entry interruptvector,
5649         * (assignResultValue): removed some commented out lines,
5650         * (genFunction): check for ISR via sym->type, absolute section for
5651         interrupt code is created via a new pBlock, the goto instruction is
5652         placed now correctly at the interrupt vector position, changed all
5653         references from ivec to _G.interruptvector,
5654         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5655         is the interrupt is a high priority one, same for return from ISR,
5656         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5657         externs to calls of checkAddSym,
5658         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5659         pic16_pcode_verbose flag is set,
5660         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5661         * src/pic16/pcoderegs.c: message about how many registers are saved
5662         will only be emitted if pic16_pcode_verbose flag is set,
5663
5664 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5665
5666         * src/ds390/ralloc.h,
5667         * src/ds390/ralloc.c (ds390_regWithIdx),
5668         * src/ds390/gen.c (emitcode),
5669         * src/ds390/main.h,
5670         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5671         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5672         ds390operandCompare, getRegsRead, getRegsWritten,
5673         initializeAsmLineNode): customized instruction size calculation for
5674         ds390, started basis for some register optimizations
5675         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5676         corresponding assembly output
5677         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5678         missing push/pop of r0/r1. Optimized push/pops
5679
5680 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5681
5682         * src/mcs51/main.c (instructionSize): fixed ACALL size
5683         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5684
5685 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5686
5687         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5688         the sorting of rlist with NULL elements
5689         * (print_idataType, print_idata): NEW to create idata sections
5690         * src/pic16/device.h: idataSymSet new variable
5691         * src/pic16/gen.c (genFunction): fixed some bugs in string
5692         comparing, improved the absolute section creation for ISRs,
5693         added FSR0L/FSR0H in registers that are saved in an ISR,
5694         * (genInline): fixed the processing of inline snippets,
5695         now they undergo no process by the peephole optimizer
5696         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5697         are placed in idataSymSet,
5698         * (pic16emitStaticSeg): extern symbols are added in externs,
5699         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5700         switching when aboslute variables are placed in access bank memory
5701         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5702         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5703         commented out with #if,
5704         * (pic16_packRegisters): reintroduce the check for CAST because some
5705         symbols are not correctly handled,
5706         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5707         pCodeInstruction instead of pCode,
5708         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5709         pCodeAsmDir definition,
5710         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5711         directive, then the argument directive is emitted without the leading
5712         tab, hack for inline labels which must be in the first column,
5713         * (compareLabel,pic16_findNextInstruction),
5714         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5715         * (insertBankSwitch): modified for the new pCodeAsmDir,
5716
5717 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5718         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5719
5720         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5721         instance,
5722         * (pushSide): commented out with #if,
5723         * (assignResultValue): fixed some typos in saving
5724         registers,
5725         * (genPcall): FIXED and sync'ed with genCall,
5726         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5727         * (genNearPointerGet): fixed to handle some more cases,
5728         implementation scheme via table reads,
5729         * (genConstPointerGet): modified to access code memory correct,
5730         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5731         and improved to handle some cases
5732         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5733         instead of "RETLW" for init data
5734         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5735         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5736         variables are placed in access bank memory (<0x80 and >=0xf80),
5737         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5738         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5739         TBLWT_POSTDEC,TBLWT_PREINC
5740         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5741         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5742         directives
5743         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5744         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5745         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5746         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5747
5748 2004-02-29  Borut Razem <borut.razem AT siol.net>
5749
5750         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5751         support/Util/findme.h, support/Util/system.h: enhance binary relative
5752         search for lib and include by using findProgramPath()
5753
5754 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5755
5756         * src/SDCCpeeph.h,
5757         * src/SDCCpeeph.c (pcDistance),
5758         * src/port.h,
5759         * src/mcs51/ralloc.h,
5760         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5761         * src/mcs51/main.h,
5762         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5763         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5764         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5765         size calculation port specific, started basis for some register
5766         optimizations
5767         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5768         missing push/pop of r0/r1. Optimized push/pops
5769         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5770         * device/lib/_modsint.c (_modsint),
5771         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5772         and stack version so regression tests pass
5773
5774 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5775
5776         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5777         * src/SDCCast.c (decorateType): catch another small optimization
5778         with '?' operator
5779         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5780         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5781         modified to finally use computeType() all over SDCC,
5782         see Feature Request #877103
5783         * src/SDCCval.h: cosmetic
5784         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5785         valCompare(); regression tested in muldiv.c
5786         * support/regression/tests/muldiv.c (testMod): mod sign follows
5787         dividend only
5788
5789 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5790
5791         * src/SDCCast.c (decorateType): fixed bug #902362
5792         * doc/INSTALL.txt: fixed install instructions for win32
5793
5794 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5795
5796         * device/include/Makefile.in (install): fixed by replacing spaces
5797         by tabs
5798         * doc/README.txt,
5799         * doc/INSTALL.txt: updated for release
5800         * doc/sdccman.lyx: added warning for --xstack being buggy
5801
5802 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5803
5804         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5805         to eliminate build warnings.
5806         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5807
5808 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5809            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5810
5811         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5812         removed -penable-stack, added comment for stack pragma, added
5813         warning for not initializing the stack/frame registers, removed
5814         comment at interrupts section
5815
5816         Stack is made permanent, there is no ability to disable stack usage.
5817         * src/pic16/device.h,
5818         * src/pic16/device.c: removed all references to USE_STACK macro,
5819         * src/pic16/device.c (pic16_dump_section): when no elements in
5820         rlist, free rlist before return,
5821         * (pic16_dump_int_registers): NEW, internal registers are a new set
5822         of general purpose registers reused by each function,
5823         * (checkAddReg): returns 1 if registers is added to set,
5824         * (pic16_groupRegistersInSection): when a registers is of type
5825         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5826         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5827         SRCASECMP macro is moved here from device.c
5828         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5829         PO_PCLATU, PO_PRODL, PO_PRODH,
5830         * (pic16_pCodeOpType, genMinus,
5831         changed compares to "a" register, with AOP_ACC,
5832         * (pic16_genPlus): fixed some bugs and indented properly,
5833         * (pic16_addSign): changed size to size+offset in the MOVWF
5834         instruction,
5835         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5836         multiply 8-bit operand by literal, result is 8-bit,
5837         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5838         multiply 2 8-bit operand, result is 8-bit,
5839         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5840         genUMult8X*_16,
5841         * src/pic16/gen.c: changed accUse to contain WREG only,
5842         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5843         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5844         true, do not use immediate addressing any more unless sym is a
5845         pointer in codespace,
5846         * (aopForRemat): do not use immediate addressing when symbol not in
5847         codespace and when symbol's address is requested,
5848         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5849         accUse size (= 1),
5850         * (aopGet): added case for AOP_ACC and don't return "accumulator
5851         bug" but WREG instead,
5852         * (popGetTempReg): pushes contents of temporary register in stack,
5853         * (popReleaseTempReg): pops contents of temporary register from
5854         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5855         * (pic16_popGet): separated case AOP_ACC to return register WREG
5856         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5857         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5858         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5859         the use of immediate pointers to certain cases only.
5860
5861         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5862         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5863         * (assignResultValue, genCall, genRet): modified to use the new
5864         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5865         genPcall is still broken,
5866         * (genFunction): added code to create 'A' type pBlocks when
5867         interrupt functions are generated, code not extensively tested yet,
5868         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5869         * (genEndFunction): modified so ISRs pop stored registers from stack,
5870         * (genMultOneByte): cleanup,
5871         * (AccRsh): added flag andmask, to and result with appropriate mask,
5872         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5873         * (genDataPointerGet): fixed and reenabled its use,
5874         * (genNearDataPointerGet): bugs fixed,
5875         * (genDataPointerSet): bugs fixed,
5876         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5877         pic16_DumpSymbol, pic16_DumpOp,
5878         * src/pic16/genutils.h: function prototypes for the above functions,
5879         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5880         pointers,
5881         * (pic16emitRegularMap): many many many improvements, but needs a
5882         major cleanup,
5883         * src/pic16/main.c: enable_stack in pic16_options is removed,
5884         * (_pic16_parseOptions): removed command line options -penable-stack,
5885         * (_process_pragma): emit stack symbol only when stack pragma is
5886         processed,
5887         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5888         redirected to FSR0L/FSR0H pair,
5889         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5890         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5891         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5892         for immediates,
5893         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5894         * (dumpPicOptype): NEW,
5895         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5896         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5897         with movff instruction,
5898         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5899         added pic16_int_regs, some packRegsFor* functions are commented out,
5900         because produce errors,
5901         * src/pic16/NOTES: minor modifications
5902
5903 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5904
5905         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5906         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5907         --pack-iram.
5908         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5909         * as/mcs51/lkaomf51.c: fixed bug #895763
5910
5911 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5912
5913         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5914
5915 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5916
5917         * doc/sdccman.lyx: added details about the HC08 storage classes and
5918         interrupts, fixed the register usage info for z80 & gbz80
5919
5920 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5921
5922         * doc/sdccman.lyx: added more pic16 port documentation
5923         * device/include/pic16/: added header pic18fregs.h
5924
5925 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5926
5927         * doc/sdccman.lyx: added Vangelis' contribution
5928
5929 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5930
5931         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5932         extend to the next CALL or PCALL, not just to the next CALL.
5933
5934 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5935
5936         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5937
5938 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5939
5940         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5941         bug #895752 and a better fix for bug #716790
5942
5943 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5944
5945         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5946
5947 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5948
5949         * doc/sdccman.lyx: minor changes, minor changed
5950
5951 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5952
5953         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5954         which can't handle SDCC_NEWONEBYTEOPS,
5955         (geniCodeMultiply): removed conversion from mult to shift for pic14
5956         and pic16
5957
5958 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5959
5960         * src/hc08/gen.h,
5961         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5962         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5963         thus fixing bug #895406
5964
5965 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5966
5967         * device/lib/_modsint.c,
5968         * device/lib/_modslong.c: sign follows divisor only
5969         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5970         signs or signedness can be ignored
5971         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5972         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5973         added optimization for IFX,
5974         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5975         arguments;
5976         reenabled optimization for IFX, which was removed on 2004-01-11
5977         * src/SDCCast.h: added return type IFX
5978         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5979         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5980         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5981         SDCC_OLDONEBYTEOPS selects the old behaviour
5982         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5983         changed again and commented promotion rule
5984         * src/SDCCval.c (valDiv): promotion no longer necessary
5985         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5986         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5987         rewritten
5988         * support/regression/tests/onebyte.c: added
5989
5990 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5991
5992         * gen.c (genInline): reverted to old code for assemnling inline
5993         code because of bug reported James Chadd
5994
5995 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5996
5997         * ralloc.h: missing declarations from previous patch,
5998         seems that patch for ralloc.h was never applied, fixed
5999
6000 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6001            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6002
6003         * pcode.c,
6004         * pcode.h,
6005         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6006         indirect addressing. Marked FSR0 as deprecated
6007         * gen.c (pointerCode): commented out, not needed now
6008         (pic16_popGet2p): new MOVFF helper function
6009         (genGenPointerGet),
6010         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6011         (shiftRLong): removed duplicate debugging info
6012
6013 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6014
6015         * src/ds390/gen.c (genNearPointerGet),
6016         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6017         optimization with bits, but not bitfields.
6018         * src/ds390/ralloc.c (packRegisters),
6019         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6020
6021 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6022
6023         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6024
6025 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6026
6027         * src/SDCCsymt.h,
6028         * src/SDCCicode.c (operandFromSymbol),
6029         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6030         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6031         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6032         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6033         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6034         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6035         bug #892038
6036         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6037         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6038         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6039         * src/SDCCsymt.c (newSymbol),
6040         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6041         enumerator_list),
6042         * src/SDCCval.h,
6043         * src/SDCCval.c (newiList): fixed bug #885705
6044
6045 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6046
6047         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6048         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6049
6050 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6051
6052         * device/include/c8051f120.h,
6053         * device/include/c8051f300.h,
6054         * device/include/c8051f310.h: added/updated header files for Silicon
6055         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6056         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6057         in new section Submitting patches
6058
6059 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6060
6061         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6062         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6063         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6064         genGenPointerSet),
6065         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6066         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6067         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6068         genGenPointerSet),
6069         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6070         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6071         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6072         genGenPointerSet),
6073         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6074         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6075         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6076         genGenPointerSet): fixed bug #892400
6077         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6078         to eliminate build warnings.
6079         * src/SDCCast.c (processParms),
6080         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6081         fixed bug 751859
6082         * support/valdiag/valdiag.py: added GCC to the list of defines active
6083         when compiling with gcc
6084
6085 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6086
6087         * support/Util/SDCCerr.h,
6088         * support/Util/SDCCerr.c,
6089         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6090         with an incomplete type (fixed bug #883734)
6091         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6092
6093 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6094
6095         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6096
6097 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6098
6099         * src/SDCCast.c (decorateType),
6100         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6101         function pointer implementation
6102         * support/regression/tests/funptrs.c: added tests to verify both forms
6103         of function pointers work correctly. Added tests to verify parameters
6104         are passed in the correct order.
6105
6106 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6107
6108         * device.c (regCompare): registers are sorted by ascending
6109         address and increasing size,
6110         * main.c (_pic16_finaliseOptions): removed the declaration
6111         of compiler macro MCU. Now a macro of the format pic18fxxxx
6112         will be defined from the command line
6113
6114 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6115             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6116
6117         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6118         PCOP_RLCF was overwritten!
6119         * gen.c (genSkip): commented out calls to pic16_emitcode,
6120         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6121         * (genlshTwo),
6122         * (genRRC): added debugging info,
6123         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6124         overwritten while shifting,
6125         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6126         overwritten while shifting,
6127         * (AccLsh),
6128         * (AccRsh),
6129         * (shiftLLeftOrResult),
6130         * (shiftRLeftOrResult),
6131         * (shiftRLong),
6132         * (shiftLLong): Implemented with pic16_emitpcode
6133         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6134         * (genLeftShift): Fixed bug, operand for shift by variable always
6135         was "and"ed with 0x0f,
6136         * (genLeftShiftLiteral),
6137         * (genrshTwo),
6138         * (genRightShiftLiteral): added debugging info,
6139         * (genrshFour): added comment,
6140         * (genRightShift): determined signedness from operand "left"
6141         instead of "result"
6142
6143 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6144
6145         * src/SDCCicode.c (geniCodeParms),
6146         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6147         function pointers, fixed function pointer bugs #861242 and #861896
6148
6149 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6150
6151         * device/include/c8051f000.h,
6152         * device/include/c8051f120.h,
6153         * device/include/c8051f300.h: added header files for Silicon
6154         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6155
6156 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6157
6158         * src/SDCCast.c (processParams): added new type flow and restructured
6159         (gatherAutoInit): added new type flow
6160         (addCast): cosmetic changes
6161         (getLeftResultType): added new type flow for array indices, patch
6162         provided by Stas, see FR #877103
6163         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6164         array index patch by Stas
6165         * src/SDCCast.h: added prototype getResultTypeFromType()
6166         * src/SDCCval.h,
6167         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6168         * src/pic/glue.c (pic14emitStaticSeg),
6169         * src/pic16/glue.c (pic16emitStaticSeg),
6170         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6171         for initialization of symbols
6172         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6173         * support/Util/SDCCerr.h:
6174         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6175         * .version: bumped version number to 2.3.8
6176         * device/include/Makefile.in (install),
6177         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6178         avoid warnings
6179
6180 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6181
6182         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6183         Slade Rich fixed an optimization bug
6184         * src/pic/pcodepeep.c,
6185         * src/pic/pcoderegs.c
6186         * doc/Makefile (install): added test for directory
6187
6188 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6189
6190         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6191         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6192         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6193         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6194         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6195         * as/mcs51/asexpr.c (term),
6196         * as/hc08/asexpr.c (term): fixed bug #887146
6197
6198 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6199
6200         * src/z80/gen.c (genMult): handle single byte result product
6201         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6202         DUMMY_READ_VOLATILE (fixed bug #886367)
6203
6204 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6205
6206         * support/regression/tests/libmullong.c: fixed logic, on little endian
6207         hosts we ended without a mullong_wrapper()
6208
6209 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6210
6211         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6212         virus/worm forged address usage.
6213
6214 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6215
6216         Fixed promotion, it should be done on AST level:
6217         * src/SDCCast.c (addCast): added promotion to int
6218         (decorateType): updated call to upCast()
6219         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6220         usualUnaryConversions()
6221
6222 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6223
6224         * support/regression/tests/literalop.c (mulWrapper): Added a
6225         wrapper to remove integer overflow warnings.
6226
6227         * support/regression/tests/float_trans.c: Made work on host.
6228
6229         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6230         location of sz80.
6231
6232         * support/regression/generate-cases.py (main): Changed from inline
6233         to a main method.
6234
6235         * doc/Makefile (install): Changed to depth first to get rid of
6236         missing directory install warning.
6237
6238         * as/Makefile (install-doc): Made work on Mac.
6239
6240 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6241
6242         * src/SDCCast.c: added an additional type flow in decorateType() of
6243         opposite direction, see feature request #860006; it's enabled at runtime
6244         by setting the environment variable SDCC_NEWTYPEFLOW
6245         * src/SDCCast.h: changed prototype of decorateType()
6246         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6247         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6248         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6249         see feature request #877103
6250         * src/SDCCval.c: updated call of decorateType()
6251         (valBitwise): fixed bug #882876
6252         (valMinus): added promotion
6253         (valLogicAndOr): result is unsigned
6254         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6255         * src/SDCCsymt.c (computeType),
6256         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6257         must not cause an unsigned operation
6258         * src/pic/glue (pic14emitRegularMap),
6259         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6260
6261 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6262
6263         * src/pic/pcode.c (PCodeID): commented out left over debug code
6264
6265 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6266
6267         * support/valdiag/tests/overflow.c: added shift tests
6268         * src/pic/device.c,
6269         * src/pic/gen.c,
6270         * src/pic/gen.h,
6271         * src/pic/glue.c,
6272         * src/pic/main.c,
6273         * src/pic/pcode.c,
6274         * src/pic/pcode.h,
6275         * src/pic/pcodepeep.c,
6276         * src/pic/pcoderegs.c,
6277         * src/pic/ralloc.c,
6278         * src/pic/ralloc.h: applied patch from Slade Rich;
6279         added support for multiple code pages and multiple RAM banks on the
6280         PIC 14 port. The ASM files now no longer simply assume all the
6281         code / RAM are in the same page / bank. This means the linker can
6282         safely allocate code/RAM of separate ASM files to different pages/banks.
6283         * doc/sdccman.lyx: added Slade's tips
6284         * src/mcs51/peeph.def: fixed bug #880768
6285
6286 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6287
6288         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6289         * src/SDCCast.c (decorateType): fixed bug #880197
6290
6291 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6292
6293         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6294         getopt.h.
6295
6296         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6297         strtof is not part of C89 and isn't included with Mac OS X.
6298
6299 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6300
6301         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6302         shiftL2Left2Result): fixed bug #879326
6303         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6304         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6305         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6306         address fetch for clr instruction
6307         * device/lib/hc08/_mulint.c: created optimized assembly version
6308         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6309
6310 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6311
6312         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6313         proposed in FR #877103
6314
6315 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6316
6317         * src/SDCCval.c (cheapestVal): added missing checks
6318         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6319         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6320
6321 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6322
6323         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6324         equal operands
6325
6326 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6327
6328         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6329         loaded with the linker search paths (-L arguments) and the libraries
6330         to be linked with the current source (-l arguments). Changes
6331         currently will affect only the pic16 port.
6332         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6333         include path the port specific paths and port specific libraries,
6334         * gplink command now contains the $3 argument,
6335         * src/pic16/device.h,
6336         * src/pic16/device.c,: structure PIC_device is made public and
6337         renamed to PIC16_device, the same for variable Pics which is renamed
6338         to Pics16. Updated all references to them.
6339         * src/pic16/glue.c (pic16glue): corrected bug with code
6340         initialization which bypassed the variable initializations block.
6341
6342         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6343         COMPILE_FLAGS and added the --nostdinc option
6344
6345 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6346
6347         * device/include/mc68hc908jb8.h: Register defs for another member
6348         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6349
6350 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6351
6352         Documenting changes from previous commits.
6353         * configure.in (version 1.56),
6354         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6355         when generating output files to configure the pic16 library,
6356         but now I've commented it out, since gputils aren't installed in the
6357         SF compile farm, so library won't compile
6358
6359         * device/lib/Makefile.in (version 1.56): initially I've added in
6360         target 'all' the prerequestive 'model-pic16' so it compiled the
6361         pic16 library, but now I've commented it out for the same reasons
6362         above,
6363         * added targets 'model-pic16' and 'objects-pic16' to compile the
6364         library
6365         * added target 'port-specific-objects-pic16' to handle the
6366         generated libraries and copy them into the build/ directory
6367         * added target 'clean-intermediate-pic16' to clean intermediate
6368         files into pic16 directory
6369         * in target 'installdirs' added line to create directory pic16 in
6370         the installation path
6371
6372         * device/include/Makefile.in (version 1.11): in target 'install'
6373         added lines to copy all header files to installation path,
6374         * in target 'installdirs' added line create directory for pic16
6375         headers in the installation path
6376
6377 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6378
6379         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6380          a function call
6381
6382 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6383
6384         * configure,
6385         * device/lib/configure.in,
6386         * device/lib/configure: fixed for autoconf 2.57
6387
6388 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6389
6390         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6391         option so that it actually works. Made it specific to the z80, since
6392         the gbz80 doesn't have these kinds of I/O ports.
6393
6394 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6395
6396         * device/include/z180.h,
6397         * device/lib/_memcpy.c,
6398         * device/lib/_memmove.c,
6399         * device/lib/_mulint.c,
6400         * device/lib/ser_ir.c,
6401         * device/lib/ser_ir_cts_rts.c,
6402         * device/lib/_strcmp.c,
6403         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6404         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6405         portmode; added deprecation warning for bank= and protmode= forms.
6406         Also, guard against buffer overflow.
6407         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6408
6409 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6410
6411         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6412         changed interrupt vector table generation to only emit declared vectors.
6413         * device/include/Makefile.in: added missing backslash
6414         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6415
6416 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6417
6418         Mainly changes to support compilation of the device libraries
6419         * src/pic16/device.c: stack is allocated via symbol and not
6420         via literal number. The symbol is placed in the corresponding
6421         position of the data ram
6422         * (pic16_dump_section): relocatable and absolute uninitialized
6423         data are now emitted in sorted order to reduce section naming,
6424         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6425         weren't marked as being in the access bank,
6426
6427 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6428
6429         Added portion of GNU PIC Library under the directory
6430         device/include/pic16 and device/lib/pic16. These files
6431         contain the declarations of SFRs for the PIC18Fxx2 devices.
6432         The directory is initialized via configure from toplevel.
6433
6434 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6435
6436         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6437         the spilllocations to be compared correctly
6438
6439 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6440
6441         * src/SDCCast.c (decorateType): fixed bug introduced today
6442
6443 2004-01-12  Borut Razem <borut.razem AT siol.net>
6444
6445         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6446         doc/sdccman.lyx: upper case pragmas are deprecated
6447
6448 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6449
6450         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6451         in simpler and even better code
6452
6453 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6454
6455         * src/SDCCicode.c (operandOperation): fixed bug #874819
6456         * src/SDCCast.c (decorateType): fixed
6457         char foo (unsigned long ul) { return ul > 0; }
6458
6459 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6460
6461         * doc/sdccman.lyx: Moved and added some sections, small changes
6462         all over. Telling LaTeX to be less strict with word spacing
6463         to better keep the right margin. Changed some notes about
6464         maintainance of the ports in section 3.2.1 - is it OK like this?
6465
6466 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6467
6468         SDCC source changes:
6469         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6470         convilong): modified to inform the pic16 port that builtin functions
6471         are external
6472
6473         PIC16 PORT specific changes:
6474         * src/pic16/device.c pic16_dump_equates() added,
6475         processor registers declared internally by the port are emitted in
6476         the translation as equates,
6477         * src/pic16/gen.c: inline code is passed unprocessed to the
6478         translation,
6479         * (pic16_popGetLit2): fnuction modified to take second operand as
6480         pCodeOp pointer and not as literal,
6481         * (popRegFromIdx): prefixed with pic16_,
6482         * (pic16_popCombine2): modified to receive already allocated pCode
6483         operands,
6484         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6485         * (genFunction): initializes local stack frame and pushes on stack
6486         all the registers used by this function,
6487         * (genEndFunction): restores all registers from stack and restores
6488         stack frame,
6489         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6490         improvements,
6491         * (pic16glue): changed the program startup sequence,
6492         * added new dbName code 'A' for functions placed in absolute section
6493         * src/pic16/main.c: added function attribute _naked,
6494         * added pragma 'code' to place a fnuction at an absolute address,
6495         * added command line arguments --debug-ralloc and --pcode-verbose,
6496         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6497         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6498         * (pic16_newpCodeOpLit2): modified to take the second operand as
6499         pCodeOp pointer,
6500         * (pic16_printpBlock): modified to emit each function in a separate
6501         section,
6502         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6503         UPPER for immediate operands,
6504         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6505         instruction,
6506         * src/pic16/peeph.def: all peepholes with movff are commented out,
6507         because there is a problem in the pcode peep optimizer,
6508         * src/pic16/ralloc.c: the register allocator can now reuse local
6509         function symbols for another function. This saves register usage.
6510         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6511
6512         Added file src/pic16/NOTES with information about program writing on
6513         the current port version.
6514
6515 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6516
6517         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6518         and peephole 252 (array access)
6519
6520 2004-01-09  Borut Razem <borut.razem AT siol.net>
6521
6522         * src/SDCCmain.c : fixed #872250: -l command line defined library
6523           files are scanned before standard library files
6524
6525 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6526
6527         * src/SDCCast.c (decorateType): fixed bug #874046
6528
6529 2004-01-09  Borut Razem <borut.razem AT siol.net>
6530
6531         * support/scripts/sdcc.nsi: remove previous installation
6532
6533 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6534
6535         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6536         bytes for last interrupt vector (mcs51)
6537         * sdcc.spec: fixed typo
6538
6539 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6540
6541         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6542         gen51Code): more efficient parameter receive for --model-large
6543         ("bug" #845294)
6544
6545 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6546
6547         * src/ds390/main.c,
6548         * src/z80/main.c: added missed needLinkerScript flags (more than
6549         one port structure defined in these file)
6550         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6551         bug #795325
6552
6553 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6554
6555         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6556         * src/port.h: added flag needLinkerScript in port->linker
6557         structure to inform whether to create a .lnk file or not,
6558         * src/avr/main.c,
6559         * src/ds390/main.c,
6560         * src/hc08/main.c,
6561         * src/mcs51/main.c,
6562         * src/pic/main.c,
6563         * src/pic16/main.c,
6564         * src/xa51/main.c,
6565         * src/z80/main.c: changed appropriately to configure
6566         needLinkerScript flag
6567         * src/pic/gen.c,
6568         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6569         * src/pic/glue.c: added variable udata_section_name to
6570         override default uninitialized data segment definition for
6571         devices only with SHAREBANK memory (reported from Erik Epetrich)
6572         * (pic14emitOverlay): modified to emit a commented overlay segment
6573         directive when no overlay data exist
6574         * (picglue): modified to emit uninitialized data segment
6575         according to udata_section_name
6576         * src/pic/main.c (_pic14_parseOptions): added command line
6577         options --udata-section-name=[name] to override default
6578         udata definition name
6579         * modified _linkCmd and _asmCmd to include compiler passed
6580         arguments via -W option
6581         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6582         object file from '.rel' to '.o' in port->linker structure,
6583         changed size of fptr from 2 to 3 in port structure
6584
6585 2004-01-07  Borut Razem <borut.razem AT siol.net>
6586
6587         * support/scripts/sdcc.nsi: update PATH
6588         * support/scripts/sdcc.ico: craeted
6589
6590 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6591
6592         * device/include/Makefile.in: fix install
6593         * doc/Makefile: fix install
6594
6595 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6596
6597         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6598         in bug #860505
6599         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6600         how the function variable allocation summary is displayed; also
6601         include information about variables allocated to the overlay
6602         segment
6603
6604 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6605
6606         * as/mcs51/lkmain.c: Help about -Y option
6607         * as/mcs51/lkarea.c: Fixed gcc warnings
6608
6609 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6610
6611         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6612         fixed warning
6613         * support/valdiag/tests/overflow.c: added
6614         * src/SDCCast.c (decorateType),
6615         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6616         LEFT_OP (left shift)
6617
6618 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6619
6620         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6621         (default behaviour).
6622
6623 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6624
6625         A python script to validate compiler diagnostic messages. It can be
6626         used to verify that sdcc complains about bad c source code and
6627         gives a good location of the error.
6628         * support/valdiag/Makefile,
6629         * support/valdiag/valdiag.py,
6630         * support/valdiag/tests/*
6631
6632 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6633
6634         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6635         * src/SDCCsymt.c (newEnumType),
6636         * src/SDCCsymt.h
6637         * support/Util/SDCCerr.c,
6638         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6639         enum related bugs.
6640         * support/regression/tests/enum.c: added test for enum values that
6641         require at least 2 bytes of storage.
6642
6643 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6644
6645         * src/common.h: added ifndef/define/endif macros
6646         around the header file.
6647         Bug reported from Jesus Calvino-Fraga
6648
6649 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6650
6651         * sdcc.spec: updated
6652         * device/include/Makefile.in: don't install CVS directories
6653         * device/lib/Makefile.in: added removal of CVS directories after install
6654         * doc/Makefile: fixed install, added local_icons
6655         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6656         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6657         * src/ds390/gen.c (genRightShift): fixed bug #870788
6658         * src/SDCCast.c (decorateType): fixed bug #870781
6659
6660 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6661
6662         PIC16 port related changes:
6663         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6664         added variable stackPos,
6665
6666         * gen.c: genCall, assignResultValue: added support for
6667         pushing/retrieving function parameters to/from stack,
6668         genFunction,genEndFunction: setup stack frame for the
6669         generated function,
6670         genAddrOf: will be changed according to bug 863624
6671
6672         * added files genutils.c and genutils.h which contain gen*
6673         debugged and optimised functions extracted from gen.c
6674
6675         * glue.c: added variable 'externs' which holds extern symbols,
6676         pic16emitRegularMap: is modified to properly handle relocatable
6677          symbols under the new scheme,
6678         pic16createInterruptVect: is modified
6679         pic16printPublics: is modified to emit 'global' assembler directives,
6680         added pic16_printExterns to print extern symbols,
6681         pic16glue: initializes stack/frame pointer in the beginning of
6682         the assembly output. Temporary hack, will be corrected later,
6683         because gplink yet does not support stack and SDCC does not
6684         yet support a type of crt0.o object to create the final binary.
6685
6686         * Removed many lines that contain 8051 legacy code.
6687         * The code is finally placed under a 'code' directive.
6688         * Added port specific options.
6689
6690         * _process_pragma: simplified since now we do not need *special*
6691         include file to define SFR registers. But a separate header
6692         will be needed. This will be developed later.
6693         * _pic16_parseOptions: added, parses port specific options:
6694         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6695         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6696         --preplace-udata-with=
6697
6698         * _pic16_setDefaultOptions: modified to initialize section names,
6699         but hack is temporarly out of order since it needs improvement.
6700         * _pic16_genAssemblerPreamble: configuration words are emitted by
6701         their address instead of their name. This part is incomplete and
6702         supports only the 18Fxx2 devices. Other devices will emit an error
6703         during assembly since they do not contain the same set of config
6704         registers
6705         * _pic16_genIVT: is modified,
6706
6707         * pcode.c: added definitions for some hardware registers that are needed
6708         for stack support
6709         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6710         All PCI entries are updated. Now LFSR is supported.
6711         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6712         * added pic16_newpCodeOpLit2 to support instructions with
6713         two literal arguments
6714         * pic16_pCode2str: corrected code that emits assembler instructions
6715         with two literal operands and those that have an access bit modifier
6716         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6717         this fixes a bug which caused some labels to be lost, when an
6718         assembler directive was added, i.e. banksel,
6719         * pic16_FixRegisterBanking: improved logic that causes the insertion
6720         of bank switching,
6721         * InlineFunction: functions that are called once, are not any more
6722         inlined. This can be a port option in the future,
6723
6724         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6725
6726         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6727         hold the corresponding uninitialized symbols,
6728         * pic16_allocProcessorRegister: registers have explicit marked the
6729         accessBank field,
6730         * pic16_allocInternalRegister: registers are explicit marked as
6731         not used,
6732         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6733         processing list, so bit registers were lost,
6734         *
6735
6736         * ralloc.h: added field 'accessBank' and original symbol operand
6737         in register definition,
6738         * removed the field isMapped from register definition,
6739
6740         ** Several functions have been removed from various sources:
6741         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6742         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6743         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6744         pic16_assignRelocatableRegisters
6745
6746         ** others have been introduced:
6747         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6748         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6749
6750 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6751
6752         * support/scripts/inc2h.pl: changed definition of BIT_AT
6753         to emit 'sbit at' instead of 'bit at'. This was a request.
6754
6755         PIC16 port related preliminary changes:
6756         * gen.c: prefixed function popRegFromString with
6757         pic16_ and all references to it corrected
6758         * pcode.c: all pic16_pc_* hardware registers prefixed
6759         with underscore (_),
6760         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6761         * ralloc.c: newReg(): when register is REG_SFR then
6762         set address to rIdx,
6763         pic16_allocProcessorRegister(): marks register wasUsed=0
6764         pic16_writeUsedRegs(): added a call to assign processor
6765         registers via pic16_assignFixedRegisters
6766
6767 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6768
6769         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6770         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6771         variables in unused register banks.  Also the SSEG is placed
6772         wherever there is enough space for it, and IDATA can be anywhere
6773         in internal RAM.  For now compile using -Wl-Y[stack_size].
6774         The mem file is different for this option as well, since it
6775         makes no sense of talking about DSEG lenght.
6776
6777 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6778
6779         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6780         in certain cases, e.g. when ROM assignment, patch provided
6781         from Albert den Haan.
6782
6783 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6784
6785         Many signedness and type propagation fixes:
6786         * src/SDCCicode.c: made geniCodeCast() static
6787         replaced SPEC_ by IS_ (cosmetic)
6788         (operandOperation): fixed div and mod operation
6789         (usualBinaryConversions): added support for promotion of char
6790         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6791         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6792         (geniCodeAdd): an array index will stay unsigned, even if promoted
6793         from char to int
6794         (geniCodeArray): ditto
6795         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6796         * src/SDCCsymt.c (computeType): added more support for char;
6797         promotion of char is selectable by promoteCharToInt, fixed signedness
6798         for all cases
6799         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6800         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6801         * src/SDCCval (val*): replaced signedness calculation by
6802         computeType()
6803         rearranged if-branches (cosmetic)
6804         (valShift): added warning W_SHIFT_CHANGED
6805         (valCompare): fixed problem with different types
6806         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6807         * support/regression/tests/literalop.c: added many cases
6808         * support/regression/tests/ast_constant_folding.c: changed finally to
6809         'unsigned int'
6810         * .version: new year, new version: 2.3.7
6811         * src/SDCCmain.c (main): applied patch #866468
6812         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6813         provided by Scott Bronson
6814         * doc/sdccman.lyx: updated documentation for sdcdb
6815         updated and added chapter tips
6816
6817 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6818
6819         * src/SDCCsymt.h: missing from yesterday's commits
6820
6821 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6822
6823         * src/SDCC.y (struct_or_union_specifier),
6824         * support/Util/SDCCerr.c,
6825         * support/Util/SDCCerr.h: verify that struct & union tags are used
6826         as declared.
6827
6828 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6829
6830         * src/SDCCglobl.h: missing from yesterday's commits
6831
6832 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6833
6834         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6835         sft_attributes, struct_declaration, parameter_declaration,
6836         type_name, start_block, declaration_list),
6837         * src/SDCC.lex (check_type): support redefinition of typedef names
6838
6839 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6840
6841         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6842         aligned xdata arrays. Erik helped me with the if clause.
6843
6844 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6845
6846         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6847         warning
6848
6849 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6850
6851         * src/SDCCast.h,
6852         * src/SDCCast.c (newAst_),
6853         * src/SDCCicode.h,
6854         * src/SDCCicode.c (ast2iCode, newiCode),
6855         * src/SDCCglobl.h,
6856         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6857         expr, statement, expression_statement, selection_statement,
6858         iteration_statement, expr_opt, jump_statement): foundation for tracking
6859         sequence points
6860         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6861         point code too)
6862
6863 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6864
6865         * support/Util/SDCCerr.c,
6866         * src/SDCCast.h,
6867         * src/SDCCast.c (createCase, createDefault, decorateType),
6868         * src/SDCClabel.c (labelUnreach),
6869         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6870         to error messages.
6871         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6872         (with thanks to Stas Sergeev)
6873         * device/include/time.h,
6874         * device/lib/time.c (CheckTime): suppress unreachable code warning
6875
6876 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6877
6878         * src/SDCCast.c (createIvalCharPtr),
6879         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6880         bug #753752)
6881         * support/regression/tests/nullstring.c: tests for these two bugs
6882
6883 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6884
6885         * support/Util/SDCCerr.h,
6886         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6887         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6888         about storage class and 'at' used inside struct or union
6889         * src/SDCCBBlock.c (iCodeFromeBBlock),
6890         * src/SDCCcse.c (ifxOptimize),
6891         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6892         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6893         printIval, emitStaticSeg, emitOverlay),
6894         * src/SDCClabel.c (deleteIfx),
6895         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6896         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6897         gatherAutoInit, processParms),
6898         * support/Util/SDCCerr.h,
6899         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6900         reporting for post-parse errors.
6901
6902 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6905         implicit casts via union; they don't work on big endian systems
6906         (possible fix for bug #861138)
6907
6908 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6909
6910         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6911         * src/mcs51/main.c: fixed the fix for bug #737001
6912
6913 2003-12-15  Borut Razem <borut.razem AT siol.net>
6914
6915         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6916
6917 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6918
6919         * support/makebin/makebin.c: put output in binary mode
6920
6921 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6922
6923         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6924         xdata and data memory on startup. Set the environment variable
6925         SDCC_NOGENRAMCLEAR to disable this.
6926         * src/mcs51/peephole.def,
6927         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6928         (allows non-interrupt and interrupt code to safely compete for a resource
6929         without the non-interrupt code having to disable interrupts)
6930
6931 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6932
6933         * src/SDCCicode.c (geniCodeAdd),
6934         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6935         with valFromType if type might be a pointer and host is big endian).
6936         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6937         types, not just integer types.
6938         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6939         multiply defined with mismatching "at" address.
6940
6941 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6942
6943         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6944         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6945         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6946         with embedded nulls (fixed bug #753752)
6947
6948 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6949
6950         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6951         Apparently this did not see much testing (endless loop)
6952
6953 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6954
6955         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6956
6957 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6958
6959         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6960         gracefully handle NULL memmap pointers
6961
6962 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6963
6964         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6965         instead of deleting the iCode when an operand is volatile
6966         * src/z80/gen.c (genDummyRead),
6967         * src/mcs51/gen.c (genDummyRead),
6968         * src/ds390/gen.c (genDummyRead),
6969         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6970         not just IC_RIGHT
6971         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6972         * src/SDCC.y: fixed bug #850420
6973
6974 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6975
6976         Applied z80 i/o port patch from Peter Townson and fixed some operators
6977         to better handle operands in A register.
6978         * device/include/z180.h
6979         * src/SDCC.y
6980         * src/SDCCglue.c
6981         * src/z80/gen.c
6982         * src/z80/gen.h
6983         * src/z80/main.c
6984         * src/z80/peeph-z80.def
6985         * src/z80/peeph.def
6986         * src/z80/z80.h
6987
6988 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6989
6990         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6991
6992 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6993
6994         * device/lib/hc08/_mullong.c: Removed extra #endif
6995
6996 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6997
6998         * sim/ucsim/hc08.src/inst.cc,
6999         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7000         carries from x to h
7001         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7002         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7003         * device/include/stdarg.h: fixed varargs for hc08
7004         * device/lib/Makefile.in,
7005         * device/lib/hc08/Makefile,
7006         * device/lib/hc08/_mulint.c,
7007         * device/lib/hc08/_mullong.c: fixed some endian problems
7008
7009 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7010
7011         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7012         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7013         * device/lib/_gptrget.c,
7014         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7015
7016 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7017
7018         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7019         * src/SDCCast.c (astErrors): fixed bug #846007
7020         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7021
7022 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7023
7024         * src/SDCCast.c (decorateType): disabled a transformation I added in
7025         revision 1.188 (access to fields of a structure at an absolute address);
7026         it breaks with bitfields, extern declarations, and gcse analysis.
7027         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7028         could be assigned through a pointer, so don't complain.
7029         * src/SDCCast.c (astErrors),
7030         * src/SDCCast.h,
7031         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7032
7033 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7034
7035         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7036         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7037         output of __config directives, since gpasm now supports them
7038         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7039         pre-processor macro, i.e. -DMCU=p18f452
7040         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7041         and modified to handle 'cast' icode similarly to '=' icode
7042         * src/pic16/device.h (typedef struct PIC_device): added field
7043         'extMIface' to indicate that chip has external memory interface
7044         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7045         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7046         18F8720
7047
7048 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7049
7050         * src/SDCC.y (pointer): fixed bug #846006
7051         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7052         * src/SDCCast.c (decorateType): fixed bug #846009
7053         * src/ds390/peeph.def,
7054         * src/ds390/gen.c (genAnd, genOr),
7055         * src/mcs51/peeph.def,
7056         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7057
7058 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7059
7060         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7061         * src/SDCCdflow.c
7062         * src/SDCCcse.c
7063         * src/SDCCcse.h
7064         * src/SDCCBBlock.h
7065         * src/SDCCBBlock.c
7066
7067 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7068
7069         fixed bug #845089
7070         * src/SDCCbitv.h,
7071         * src/SDCCbitv.c: added function to free a bitvector
7072         * src/SDCClrange.h,
7073         * src/SDCClrange.c: added function to recompute the liveranges
7074         * src/avr/ralloc.c,
7075         * src/ds390/ralloc.c,
7076         * src/hc08/ralloc.c,
7077         * src/mcs51/ralloc.c,
7078         * src/pic/ralloc.c,
7079         * src/pic16/ralloc.c,
7080         * src/xa51/ralloc.c,
7081         * src/z80/ralloc.c: recompute the liveranges after register packing
7082
7083 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7084
7085         * src/SDCCloop.c (newInduction): fixed bug #845630
7086
7087 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7088
7089         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7090         inadvertantly left behind from my 2003-11-12 change
7091
7092 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7093
7094         Updated headers I neglected to commit yesterday.
7095         * src/SDCClrange.h,
7096         * src/SDCCicode.h
7097
7098 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7099
7100         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7101         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7102         * src/SDCCopt.c (eBBlockFromiCode),
7103         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7104         the creation of the key hash table from the sequencing so it can be used
7105         earlier (for some GCSE bug fixes still pending)
7106
7107 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7108
7109         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7110         * support/regression/tests/addsub.c: testing genPlus shortcut
7111
7112 2003-11-15  Borut Razem <borut.razem AT siol.net>
7113
7114         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7115
7116 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7117
7118         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7119         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7120         ordering is immaterial.
7121         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7122
7123 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7124
7125         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7126         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7127         (SIGSEV) of bug #840381
7128         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7129         unlink new file before rename if new and old filenames are the same)
7130
7131 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7132
7133         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7134         uninitialized variables) for the mcs51. Set environment variable
7135         SDCC_GENRAMCLEAR to test.
7136         xdata initialization slightly shorter
7137
7138 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7139
7140         * src/SDCCsymt.h,
7141         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7142         #838241 & 780691 (basicly the same bug)
7143         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7144         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7145
7146 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7147
7148         * src/SDCCmain.c (linkEdit): "fix" #834252
7149
7150 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7151
7152         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7153         * src/SDCCast.h,
7154         * src/SDCC.y: fixed bug #819403
7155
7156 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7157
7158         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7159         the reentrant attribute.
7160         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7161         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7162         simulation
7163         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7164         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7165         erroneously reduced to a literal.
7166         * src/hc08/ralloc.c (packRegisters, rematStr),
7167         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7168         some cases
7169
7170 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7171
7172         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7173         * doc/sdccman.lyx: changed from 'article' to 'book'
7174         * doc/Makefile: readded test_suite_spec and cdbfileformat
7175
7176 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7177
7178         * device/include/stdlib.h: include malloc.h to comply with ANSI
7179         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7180
7181 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7182
7183         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7184         * doc/clean.mk: also remove *.out files
7185         * doc/sdccman.lyx: some additions, larger top/bottom margins
7186
7187 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7188
7189         * src/SDCC.y: fixed bug #837365
7190         * support/regression/tests/bitopcse.c
7191         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7192         a symbol (might be valop instead)
7193         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7194         * device/lib/clean.mk: added hc08 to the cleaning list
7195
7196 2003-11-04  Borut Razem <borut.razem AT siol.net>
7197
7198         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7199           made 2003-11-04
7200         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7201           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7202           malloc is declared in standard stdlib.h
7203
7204 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7205
7206         * device/lib/hc08/Makefile: need to clean .rel not .o files
7207         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7208
7209 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7210
7211         * src/port.h,
7212         * src/hc08/main.c,
7213         * src/mcs51/main.c,
7214         * src/ds390/main.c,
7215         * src/z80/main.c,
7216         * src/avr/main.c,
7217         * src/pic/main.c,
7218         * src/pic16/main.c,
7219         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7220         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7221         tests (which uses the port's oclsExpense function)
7222         * src/SDCC.y,
7223         * src/SDCCast.c,
7224         * src/SDCCicode.c,
7225         * src/hc08/gen.c,
7226         * src/ds390/gen.c,
7227         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7228
7229 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7230
7231         * src/SDCCcse.c (ifxOptimize),
7232         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7233         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7234         deleting the IFX iCode.
7235         * src/hc08/ralloc.c: reduced unneeded slocs
7236         * src/hc08/gen.c: fixed bug in asmopToBoolean
7237
7238 2003-11-04  Borut Razem <borut.razem AT siol.net>
7239
7240         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7241           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7242           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7243           transferred to configure
7244
7245 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7246
7247         Use headers defined in the C[++] standards:
7248         * sim/ucsim/gui.src/serio.src/fileio.cc
7249         * sim/ucsim/gui.src/serio.src/frontend.cc
7250         * sim/ucsim/gui.src/serio.src/main.cc
7251         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7252         * support/Util/NewAlloc.c
7253         * as/hc08/lklibr.c
7254         * as/mcs51/lklibr.c
7255         * as/z80/aslist.c
7256         * as/z80/assym.c
7257
7258 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7259
7260         * Added MSVC projects for hc08 assembler and linker:
7261         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7262         /as/hc08/link_hc08.dsp
7263
7264 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7265
7266         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7267
7268 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7269
7270         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7271
7272 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7273
7274         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7275
7276 2003-10-31  Borut Razem <borut.razem AT siol.net>
7277
7278         * support/cpp2/cpplib.h,
7279           support/cpp2/cpplib.c,
7280           support/cpp2/cpplex.c,
7281           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7282           to switch _asm block preprocessing on / off. Default is
7283           #pragma preproc_asm +
7284
7285 2003-10-31  Borut Razem <borut.razem AT siol.net>
7286
7287         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7288           when outputting comment blocks (when executed with -C option) and
7289           _asm (SDCPP specific) blocks
7290
7291 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7292
7293         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7294
7295 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7296
7297         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7298
7299 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7300
7301         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7302         * src/SDCCast.c (decorateType): fixed bug #832664
7303
7304 2003-10-31  Borut Razem <borut.razem AT siol.net>
7305
7306         * support\cpp2\cpplex.c: fixed for SDCPP:
7307           comments(when executed with -C option) and _asm blocks
7308           were included even if they where in skipped #if block.
7309           Applied solution from GCC cpp 3.3.2
7310
7311 2003-10-31  Borut Razem <borut.razem AT siol.net>
7312
7313         * src/SDCC.lex: sdcc now understands both formats:
7314           '# <line_number> <file_name>' and
7315           '#line <line_number> <file_name>'
7316         * support/cpp2/cppmain.c: sdcpp now generates the standard
7317           '# <line_number> <file_name>' instead of former
7318           '#line <line_number> <file_name>'
7319
7320 2003-10-30  Borut Razem <borut.razem AT siol.net>
7321
7322         * support/cpp2/cpphash.h,
7323         * support/cpp2/cpplib.h
7324         * support/cpp2/cpplex.c,
7325         * support/cpp2/cppmain.c,
7326         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7327
7328 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7329
7330         Fixed a number of problems revealed by bug #827883.
7331         * src/SDCCloop.c (loopInvariants): Spill location of the
7332         result operand should be recomputed if extracted from
7333         a loop. Also, don't extract assignments of an iTemp
7334         from a literal.
7335         * src/SDCCast.c (isConformingBody): loop reversal should
7336         not occur if the control variable is involved with a
7337         relational operator.
7338
7339 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7340
7341         * .version: bumped to 2.3.6 to reflect the big improvements
7342         made by Erik and Klaus. Thanks!
7343
7344 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7345
7346         Replaced the livrange code.
7347         * src/SDCClrange.c: added new LR code
7348         * src/SDCCloop.c,
7349         * src/SDCCBBlock.h: removed remainig parts from old LR code
7350         * src/ds390/ralloc.c,
7351         * src/ds390/gen.c: minor fixes to make it work with new code
7352
7353 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7354
7355         * as/hc08/asm.h,
7356         * as/hc08/lkrloc.c,
7357         * src/hc08/gen.c,
7358         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7359         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7360         (tweaked fix for bug #818696)
7361
7362 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7363
7364         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7365
7366 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7367
7368         * src/SDCCmain.c,
7369         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7370         * src/mcs51/gen.c (gencjneshort),
7371         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7372         more efficient (per Scott Bronson's suggestion)
7373
7374 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7375
7376         Extended the semantics of the critical keyword to include
7377         individual statements. See RFE #827755 and #799831
7378         * src/SDCC.y
7379         * src/SDCCicode.c
7380         * src/SDCCopt.c
7381         * src/SDCCast.c
7382         * support/Util/SDCCerr.c
7383         * support/Util/SDCCerr.h
7384         * src/mcs51/gen.c
7385         * src/ds390/gen.c
7386         * src/hc08/gen.c
7387
7388 2003-10-19  Borut Razem <borut.razem AT siol.net>
7389
7390         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7391
7392 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7393
7394         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7395         Fixed bug #818696
7396         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7397         and predecrement operand is displayed
7398
7399 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7400
7401         * src/SDCCval.c (valMinus): fixed bug #826041
7402
7403 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7404
7405         Some hc08 related updates that I missed earlier
7406         * sim/ucsim/stypes.h
7407         * support/regression/ports/hc08/spec.mk
7408
7409 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7410
7411         New target "hc08" for the Motorola 68hc08 family of micros
7412
7413         * configure
7414         * configure.in
7415         * Makefile
7416         * src/hc08/*
7417         * src/SDCCmain.c
7418         * src/port.h
7419         * sim/ucsim/hc08.src/*
7420         * sim/ucsim/configure.in
7421         * src/ucsim/configure
7422         * sim/ucsim/packages_in.mk
7423         * as/hc08/*
7424         * as/Makefile
7425         * device/include/mc68hc908qy.h
7426         * device/lib/hc08/*
7427         * device/lib/Makefile.in
7428         * support/regression/ports/hc08/*
7429         * support/regression/Makefile
7430
7431 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7432
7433         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7434         regression test
7435         * src/ds390/gen.c (genCast): fixed bug #821957
7436
7437 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7438
7439         * device/lib/logf.c: "fixed" overlay bug
7440         * support/regression/ports/host/spec.mk: added m library
7441         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7442         * support/regression/tests/float_trans: added (for Eric)
7443
7444 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7445
7446         * src/mcs51/gen.c (genCpl): fixed bug
7447         http://sf.net/mailarchive/message.php?msg_id=6263915
7448
7449 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7450
7451         * src/SDCCast.c (decorateType): added extended constant folding
7452         * src/SDCCsymt.c (computeType): cleanup
7453         * src/SDCCval.c (valShift): minor optimization
7454         * support/regression/tests/ast_constant_folding.c: added
7455
7456 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7457
7458         * src/SDCCmain.c: removed some unintended changes
7459
7460 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7461
7462         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7463         * src/z80/gen.c: fixed part of bug #817589
7464         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7465
7466 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7467
7468         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7469         * src/SDCCcflow.c
7470         * src/SDCCcse.c
7471         * src/SDCCdflow.c
7472         * src/SDCClabel.c
7473         * src/SDCClrange.c
7474         * src/SDCCmem.c
7475         * src/SDCCopt.c
7476         * src/SDCCpeeph.c
7477         * src/SDCCset.c
7478         * src/avr/ralloc.c
7479         * src/ds390/ralloc.c
7480         * src/izt/ralloc.c
7481         * src/mcs51/ralloc.c
7482         * src/pic/ralloc.c
7483         * src/pic16/ralloc.c
7484         * src/xa51/ralloc.c
7485         * src/z80/ralloc.c
7486         * src/z80/gen.c: removed unused label "release:"
7487
7488 2003-10-06  Borut Razem <borut.razem AT siol.net>
7489
7490         * src/SDCC.lex: removed definition of unused variables
7491           save_optimize and save_options
7492
7493 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7494
7495         * clean.mk: removed '=' in "-maxdepth=1"
7496         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7497         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7498
7499 2003-10-06  Borut Razem <borut.razem AT siol.net>
7500
7501         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7502           my_unput() replaced by unput()
7503
7504 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7505
7506         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7507         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7508         type-punned pointer will break strict-aliasing rules"
7509         Old LR behaviour is again default; Klaus' LR can be choosen by
7510         defining the environment variable LRKLAUS
7511         * src/SDCCBBlock.h
7512         * src/SDCCloop.c
7513         * src/SDCClrange.c
7514         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7515         * clean.mk: fixed removal of files in bin/CVS/
7516         * device/lib/clean.mk: fixed removal of directories small and large
7517         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7518         * src/SDCCicode.c,
7519         * src/SDCCval.c: removed superflous test for pedantic
7520
7521 2003-10-05  Borut Razem <borut.razem AT siol.net>
7522
7523         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7524           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7525           message "unmatched #pragma SAVE and #pragma RESTORE"
7526
7527 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7528
7529         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7530           assembly, critical functions, atomic, nojtbound)
7531
7532 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7533
7534         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7535         * src/SDCCBBlock.h
7536         * src/SDCCloop.c
7537         * src/SDCCloop.h
7538         * src/SDCClrange.c
7539
7540 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7541
7542         * src/z80/gen.h,
7543         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7544         * src/mcs51/gen.h
7545         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7546         * src/ds390/gen.h
7547         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7548         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7549         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7550
7551 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7552
7553         * src/z80/gen.c (genRet): fixed bug #524753
7554         * src/z80/gen.c (genCast): fixed internal error on cast from
7555         pointer to long
7556         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7557         fix for bug #477835 to the z80
7558         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7559         for tracking iCodes in the peephole optimizer for z80
7560
7561 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7562
7563         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7564         the other part of bug #814548
7565         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7566
7567 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7568
7569         * src/SDCCcse.c: fixed part of bug #814548
7570
7571 2003-09-28  Borut Razem <borut.razem AT siol.net>
7572
7573         * src/asm.c: rewrite of printILine() to use temporary file instead
7574           a pipe
7575         * src/xa51/main.c: commented out declaration of int rewinds
7576
7577 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7578
7579         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7580
7581 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7582
7583         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7584         * src/asm.c (printILine): Fixed bug #811015
7585
7586 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7587
7588         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7589         freeing.
7590
7591 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7592
7593         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7594         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7595         to correctly handle general case of AOP_PAIRPTR
7596         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7597
7598 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7599
7600         * src/mcs51/ralloc.c (fillGaps),
7601         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7602         register positioning bug)
7603
7604 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7605
7606         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7607
7608 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7609
7610         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7611         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7612         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7613         (ralloc doesn't intentionally do this now, but perhaps later)
7614         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7615         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7616         register positioning bugs (Fixed bug #762602 and #795325)
7617         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7618         (Fixed bug #808779)
7619         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7620         lines that --i-code-in-asm generates
7621
7622 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7623
7624         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7625         trying to fclose a FILE* that was already closed.
7626
7627 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7628
7629         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7630         of const struct should be treated as if const themselves)
7631
7632 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7633
7634         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7635
7636 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7637
7638         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7639         Unix (/n) and DOS (/r/n) line terminations.
7640
7641 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7642
7643         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7644         bug #613775
7645
7646 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7647
7648         * src/mcs51/gen.c (genFunction, genEndFunction),
7649         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7650         and restore of EA so that stack offsets to parameters are
7651         correct when using both critical and reentrant/stack-auto.
7652         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7653         size (can be triggered in error if sloc is shared between
7654         different sized objects)
7655         * device/include/float.h: fixed macros to explicitly use
7656         unsigned long where needed
7657
7658 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7659
7660         Feature req. 799831: added code to allow nesting of critical functions
7661         * src/mcs51/gen.c (genFunction, genEndFunction)
7662         * src/ds390/gen.c (genFunction, genEndFunction)
7663
7664 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7665
7666         * src/SDCCsymt.c (sclsFromPtr),
7667         * src/SDCCsymt.h,
7668         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7669         support for standard C idiom of memory mapped variables; for
7670         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7671         to xdata int at 0x1234 tempvar = 1.
7672         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7673         provided by Akiya ISHIDA
7674
7675 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7676
7677         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7678         * src/SDCCval.c (constVal): added reduction from int to char
7679         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7680         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7681         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7682         to ignore the sign
7683         * support/regression/tests/shifts.c: fixed
7684
7685 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7686
7687         * src/z80/gen.c (genXor): Fixed bug #805445
7688
7689 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7690
7691         Fixed bug #621531 (const & volatile confusion in the type chain).
7692         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7693         refer to the const or volatile state of the pointer itself.
7694
7695         * src/SDCCast.c
7696         * src/SDCCglue.c
7697         * src/SDCCicode.c
7698         * src/SDCCsymt.c
7699         * src/SDCCval.c
7700         * src/SDCC.y
7701         * src/SDCCsymt.h
7702         * src/pic/gen.c
7703         * src/pic/ralloc.c
7704         * src/pic16/gen.c
7705         * src/pic16/ralloc.c
7706         * support/regression/tests/const.c
7707
7708 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7709
7710         When checking for duplicated modules, use absolute paths
7711         instead of relative paths.  Files changed:
7712
7713         * as/mcs51/lklib.c
7714         * link/z80/lklib.c
7715
7716 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7717
7718         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7719
7720 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7721
7722         * device/include/string.h: added size_t typedef, changed
7723         prototypes to use size_t, eliminated separate reentrant and
7724         non-reentrant declarations, added _memmove declaration
7725         * device/lib/_memcpy.c: changed to use size_t instead of int,
7726         changed /4 to >>2 to avoid division library call
7727         * device/lib/_memcmp.c,
7728         * device/lib/_memset.c,
7729         * device/lib/_strncat.c,
7730         * device/lib/_strncpy.c,
7731         * device/lib/_strncmp.c: changed to use size_t instead of int
7732         * device/lib/_memmove.c: new file (fixed bug #772294)
7733         * device/lib/Makefile.in: added _memmove.c
7734         * device/lib/z80/asm_strings.s: fixed bug #772290
7735         * support/regression/tests/bitfields.c: attempt to fix host assertion
7736         failure on amd64-unknown-linux2.2
7737
7738 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7739
7740         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7741         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7742         * as/z80/asmain.c (main): fixed bug #801766
7743
7744 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7745
7746         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7747         compilers
7748
7749 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7750
7751         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7752         reported in bug #800609
7753
7754 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7755
7756         * Top header beautifications in src/pic16 directory:
7757           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7758           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7759           pcoderegs.h, ralloc.c, ralloc.h
7760         * main.c: added top header and GPL license notice
7761         * pcode.c: fixed the if-conditional warning
7762
7763 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7764
7765         * device/lib/_mullong.c: replaced int by short for gcc
7766
7767 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7768
7769         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7770         and JUMPTABLE iCodes properly now (worked by accident before)
7771         * src/mcs51/gen.c (leftRightUseAcc),
7772         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7773         iCode properly now. Use getSize instead of nRegs since a & b
7774         aren't part of the nRegs tally.
7775
7776 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7777
7778         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7779         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7780           before instructions that use the _STATUS register
7781
7782 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7783
7784         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7785         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7786         fetching of the pointer
7787         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7788         copied from genNearPointerSet()
7789         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7790         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7791         If they pop r0/r1 they must be called in the opposite order than aopOp().
7792         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7793         (resp. --stack-auto), prepared for --xstack
7794
7795 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7796
7797         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7798
7799 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7800
7801         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7802         these ports have their own __sdcc_external_start()
7803
7804 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7805
7806         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7807         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7808         type for bits was changed. It resulted in bit variables becoming
7809         global, which is not permitted in PIC 14 assembly output.
7810
7811 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7812
7813         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7814
7815 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7816
7817         Z80 and MCS51 linkers complaint if a public symbol is defined
7818         in more than one library module:
7819
7820         * as/mcs51/lklib.c
7821         * link/z80/lklib.c
7822         * as/mcs51/Makefile.in
7823
7824 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7825
7826         A few small changes that speed up the peephole optimizer.
7827
7828         * src/SDCCpeeph.c
7829
7830 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7831
7832         Try to make the peephole optimizer smarter by maintaining
7833         an association between the assembly source code and the
7834         iCodes that originated them. Put this information to use
7835         with a new peephole rule condition "notVolatile" so that
7836         the rules can be aggressive yet still safe.
7837
7838         * src/SDCCpeeph.c
7839         * src/SDCCpeeph.h
7840         * src/mcs51/gen.c
7841         * src/mcs51/peeph.def
7842
7843 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7844
7845         Fixed bug #741761
7846
7847         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7848         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7849         if the left or right operand symbols have the accuse flag set.
7850
7851 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7852
7853         Changed the type of the result of the ! (NOT) operator to char;
7854         previously it returned the same type as the source. This allows
7855         us to eliminate all the genFloatNot functions (all of its target
7856         implementations were very buggy) since !float can use the same
7857         code as !long now.
7858
7859         * src/SDCCicode.c (ast2iCode): ! returns char
7860         * src/mcs51/gen.c (genNot, genNotFloat),
7861         * src/ds390/gen.c (genNot, genNotFloat),
7862         * src/z80/gen.c (genNot, genNotFloat),
7863         * src/pic/gen.c (genNot, genNotFloat),
7864         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7865
7866 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7867
7868         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7869         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7870            during interrupts. Ensure WSAVE is located at a shared bank address.
7871         2. Fixed page selection in some places
7872         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7873            the registers name strings.
7874         4. Fixed "signed / unsigned compare" compiler warnings.
7875         5. The PIC port manages its own allocation of the general purpose
7876            registers, but makes no attempt to reuse them. As a result when
7877            compiling it soon runs out of general purpose registers. Some
7878            additional code was added to the files pcode.c and device.c to walk
7879            through the function call tree and rename the registers so that they
7880            get reused.
7881
7882         * src/pic/device.c
7883         * src/pic/gen.c
7884         * src/pic/glue.c
7885         * src/pic/pcode.c
7886         * src/pic/pcode.h
7887         * src/pic/ralloc.c
7888         * src/pic/ralloc.h
7889         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7890         genPlus() & genMinus() when the result is the same as left or right
7891
7892 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7893
7894         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7895
7896 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7897
7898         Made bitfield a distinct type from bit so that bitfields
7899         convert as per ANSI C and bits retain their traditional
7900         boolean style behaviour. Implemented bitfield support in
7901         the z80 port.
7902
7903         * src/SDCCsymt.h,
7904         * src/SDCCsymt.c,
7905         * src/SDCCast.c,
7906         * src/cdbFile.c,
7907         * src/mcs51/gen.c,
7908         * src/ds390/gen.c: bit v bitfield split
7909         * src/z80/gen.c: New support for bitfields
7910         * support/regression/tests/bitfields.c: reenabled z80,
7911         added more tests
7912
7913 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7914
7915         Rules 246.x, 247.x relate to bitfields, the others speed up
7916         access to xdata mapped I/O devices.
7917
7918         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7919
7920 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7921
7922         Cleaned up genPackBits and genUnpackBits and added two helper
7923         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7924         for literal assignments in genPackBits (thanks to Frieder for
7925         reminding me).
7926
7927         * src/mcs51/gen.c
7928         * src/ds390/gen.c
7929
7930 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7931
7932         Fixed bug #748310 (pointer to function type mishandled when the
7933         function name is omitted). Also fixed a SIGSEGV when a function
7934         attribute (reentrant, etc) is used on a non-function or on a
7935         function but misplaced before the parameter list.
7936
7937         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7938         bug #748310
7939         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7940         * support/Util/SDCCerr.h,
7941         * support/Util/SDCCerr.c: Added func attr misuse error msg
7942
7943 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7944
7945         Fixed bug #787649 by anonymous
7946         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7947         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7948
7949 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7950
7951         Fixed numerous bitfield problems.
7952
7953         * src/SDCC.y: More bitfield related error checking
7954         * src/SDCCsymt.h,
7955         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7956         * support/Util/SDCCerr.h,
7957         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7958         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7959         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7960         * support/regression/tests/bitfields.c: tests added
7961
7962 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7963
7964         Made the constant following the "interrupt" keyword optional. If
7965         omitted, the function will not automatically be given an entry
7966         in the interrupt vector table (similar to #pragma NOIV, but
7967         less syntacticly kludgy). The interrupt number is also now
7968         range checked. Also fixed a bug in the high order bit example
7969         in the manual.
7970
7971         * src/SDCC.y
7972         * src/SDCCmem.c
7973         * src/SDCCglue.c
7974         * src/SDCCsymt.h
7975         * support/Util/SDCCerr.c
7976         * support/Util/SDCCerr.h
7977         * doc/sdccman.lyx
7978
7979 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7980
7981         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7982         * src/SDCCicode.c (operandOperation): rewritten some ops
7983         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7984         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7985         other type
7986         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7987         be re-activated by defining REDUCE_LITERALS)
7988         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7989         unsigned, but are signed by default
7990         * src/SDCCval.c (constVal): rearranged
7991         * src/SDCCval.c (valMod): preliminary fix
7992         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7993         * support/regression/literalop.c: added, work in progress
7994
7995 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7996
7997         Generate warnings for useless declarations like "char data;"
7998         that don't do what new users expect.
7999
8000         * src/SDCC.y
8001         * support/Util/SDCCerr.h
8002         * support/Util/SDCCerr.c
8003
8004 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8005
8006         * src/SDCCval.c (valMult): fix overflow detection of negative int
8007
8008 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8009
8010         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8011
8012         Changes to support big endian targets:
8013
8014         * src/ports.h
8015         * src/SDCCglue.c
8016         * src/avr/main.c
8017         * src/ds390/main.c
8018         * src/izt/i186.c
8019         * src/mcs51/main.c
8020         * src/pic/main.c
8021         * src/pic16/main.c
8022         * src/xa51/main.c
8023         * src/z80/main.c
8024
8025 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8026
8027         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8028         * device/lib/time.c: fixed warning "integer overflow in expression"
8029
8030 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8031
8032         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8033         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8034         constants are unsigned; added recognition of "u" flag for unsigned
8035         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8036         * src/SDCCval.c (valDiv, valMod): fixed signdness
8037         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8038         signedness of modulo, left and right shift
8039         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8040         * support/Util/SDCCerr.h: added warning W_INT_OVL
8041         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8042         * src/SDCCast.c (ast_print): improved output of constants
8043
8044 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8045
8046         Fixed some warnings when building with MSVC:
8047
8048         * as\mcs51\asdata.c
8049         * as\z80\asdata.c
8050         * as\mcs51\asm.h
8051         * as\z80\asm.h
8052         * link\z80\aslink.h
8053         * link\z80\lkdata.c
8054         * link\z80\lkeval.c
8055         * link\z80\lkgb.c
8056         * link\z80\lkihx.c
8057         * link\z80\lks19.c
8058         * link\z80\lksym.c
8059         * support\cpp2\cpplib.c
8060         * src\ds390\gen.c
8061         * src\mcs51\gen.c
8062
8063 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8064
8065         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8066
8067 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8068
8069         * support\librarian\clean.mk: Do not remove Makefile.
8070         * support\librarian\Makefile: added.
8071
8072 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8073
8074         Added librarian to MSVC build:
8075         * all.dsp
8076         * sdcc.dsw
8077         * support\librarian\librarian.dsp
8078
8079         'configure' not needed for librarian, removed:
8080         * support\librarian\configure
8081         * support\librarian\configure.in
8082         * support\librarian\config_in.h
8083         * support\librarian\Makefile.in
8084
8085         Hopefully these ones built the librarian and the rest of sdcc properly:
8086         * Makefile
8087         * Makefile.common.in
8088
8089         Messed up 'configure', so revert to previous version:
8090         * configure
8091         * configure.in
8092
8093 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8094
8095         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8096         there, while the mantissa of a double is "only" 53 bits wide.
8097
8098 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8099
8100         Adding sdcclib to the build.  MSVC project coming soon.
8101         Files added/changed:
8102
8103         * support\librarian\clean.mk
8104         * support\librarian\configure
8105         * support\librarian\configure.in
8106         * support\librarian\config_in.h
8107         * support\librarian\Makefile.bcc
8108         * support\librarian\Makefile.in
8109         * support\librarian\sdcclib.c
8110         * Makefile.bcc
8111         * Makefile
8112         * Makefile.common.in
8113         * configure
8114         * configure.in
8115
8116 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8117
8118         Linker now complaints if linked modules have conflicting options, for
8119         example, one compiled using --model-large and another one compiled with
8120         --model-small.  The following files were modified:
8121
8122         * as\mcs51\asdata.c
8123         * as\mcs51\aslink.h
8124         * as\mcs51\asm.h
8125         * as\mcs51\asmain.c
8126         * as\mcs51\asout.c
8127         * as\mcs51\i51pst.c
8128         * as\mcs51\lkdata.c
8129         * as\mcs51\lklibr.c
8130         * as\mcs51\lkmain.c
8131         * as\z80\asdata.c
8132         * as\z80\asm.h
8133         * as\z80\asmain.c
8134         * as\z80\asout.c
8135         * as\z80\z80pst.c
8136         * link\z80\aslink.h
8137         * link\z80\lkdata.c
8138         * link\z80\lklibr.c
8139         * link\z80\lkmain.c
8140         * src\SDCCglue.c
8141
8142 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8143
8144         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8145         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8146
8147 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8148
8149         * src/z80/mappings.i: fix _mul[us][int,long] entries
8150
8151 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8152
8153         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8154
8155 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8156
8157         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8158         * support/regression/tests/bitopcse.c: added
8159         fixed warning:
8160         * src/avr/gen.c:
8161         * src/pic/gen.c:
8162         * src/pic16/gen.c:
8163         * src/z80/gen.c:
8164         * src/xa51/gen.c:
8165
8166 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8167
8168         added support for new library format to z80, gbz80 linkers:
8169         *link/z80/aslink.h
8170         *link/z80/lklex.c
8171         *link/z80/lklib.c
8172         *link/z80/lklist.c
8173
8174 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8175
8176         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8177         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8178
8179 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8180
8181         added DUMMY_READ_VOLATILE:
8182         * src/SDCC.y:
8183         * src/avr/gen.c:
8184         * src/xa51/gen.c:
8185         * src/z80/gen.c:
8186         * src/pic/gen.c:
8187         * src/pic16/gen.c:
8188         * src/mcs51/gen.c:
8189         * src/ds390/gen.c:
8190         * src/SDCCcse.c (algebraicOpts): many improvements
8191         * src/SDCCcse.h: removed algebraicOpts()
8192         * src/SDCCicode.c (picDummyRead): added
8193
8194 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8195
8196         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8197         "Insufficient space in data memory".
8198
8199 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8200
8201         * src/mcs51/gen.c: fixed bug #771358
8202         * src/z80/gen.c: fixed bug #759087
8203
8204 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8205
8206         * src/pic16/glue.c: minor cleanup by Vangelis
8207
8208 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8209
8210         * device/include/regc515c.h: fixed #758477
8211         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8212         * device/lib/_gptrput.c: saved a few bytes
8213         * my tab spacing is 8, yours too?)
8214         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8215         * device/lib/serial.c: process RX bytes earlier than TX bytes
8216         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8217
8218 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8219
8220         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8221
8222 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8223
8224     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8225
8226 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8227
8228         * device/lib/Makefile.in: bad fix, reverted to 1.43
8229
8230 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8231
8232         * device/lib/Makefile.in: added missing z80 object files
8233
8234 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8235
8236         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8237         pic16 progress by Vangelis:
8238         * src/SDCCglobl.h:
8239         * src/SDCCmain.c:
8240         * src/pic/Makefile:
8241         * src/pic:
8242         * pic/Makefile:
8243         * pic16/device.c:
8244         * pic16/device.h:
8245         * pic16/gen.c:
8246         * pic16/gen.h:
8247         * pic16/genarith.c:
8248         * pic16/glue.c:
8249         * pic16/main.c:
8250         * pic16/pcode.c:
8251         * pic16/pcode.h:
8252         * pic16/pcodepeep.c:
8253         * pic16/peeph.def:
8254
8255 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8256
8257     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8258
8259 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8260
8261     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8262     added gbz80 build to MSVC project.
8263     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8264     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8265     from 8051 stuff and setup so it links using a .lnk file.
8266
8267 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8268
8269     * support/librarian/sdcclib.c: sdcc librarian.
8270     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8271     with sdcclib.
8272
8273 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8274
8275     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8276
8277 2003-07-02  Borut Razem <borut.razem AT siol.net>
8278
8279         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8280         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8281         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8282         src/xa51/main.c, src/z80/main.c:
8283         virtualization of glue() function: each port has it's own glue function,
8284         which is accessed by do_glue function pointer in PORT.general structure
8285
8286 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8287
8288         * DS800C400 fun, improved ROM interface and tinibios.
8289
8290 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8291
8292         * More support for DS80C400. Now includes beginning of interface to ROM.
8293
8294 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8295
8296         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8297
8298 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8299
8300         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8301
8302 2003-06-19  Borut Razem <borut.razem AT siol.net>
8303
8304         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8305
8306 2003-06-19  Borut Razem <borut.razem AT siol.net>
8307
8308         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8309         fixed Z80 port - crt0.o: cannot open.
8310
8311 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8312
8313         * support/Util/MySystem.c (merge_command): revert bad fix
8314
8315 2003-06-18  Borut Razem <borut.razem AT siol.net>
8316
8317         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8318
8319 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8320
8321         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8322         option --use-stdout sends errors to stdout instead of stderr.
8323
8324 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8325
8326         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8327
8328 2003-06-15  Borut Razem <borut.razem AT siol.net>
8329
8330         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8331         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8332         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8333         fixed width array of pointers replaced with sets;
8334         multiple include and lib paths ared transferred to preprocessor and linker
8335         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8336         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8337         fixed width array of pointers
8338         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8339         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8340         fixupPath(), getPathDifference()
8341         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8342         fixed width array of pointers
8343
8344 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8345
8346         * src/pic16/ralloc.c: fix warnings
8347         * src/pic16/pcode.c: fix warning
8348
8349 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8350
8351          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8352         know all the details, but essentially this set of changes enable
8353         the pic16 port to generate movff instructions and generate assembler
8354         directives,
8355         * src/SDCCmain.c:
8356         * src/pic16/gen.c:
8357         * src/pic16/glue.c:
8358         * src/pic16/pcode.c:
8359         * src/pic16/device.c:
8360         * src/pic16/main.c:
8361         * src/pic16/pcode.h:
8362         * src/pic16/pcoderegs.c:
8363         * src/pic16/ralloc.c:
8364         * src/pic16/ralloc.h:
8365
8366 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8367
8368         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8369         added option --vc, so sdcc errors and warnings are compatible with
8370         Microsoft Visual Studio.
8371
8372 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8373
8374         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8375           device/lib/libfloat.lib: added atof function.
8376
8377 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8378
8379         * doc/sdccman.lyx: updated to Lyx 1.3
8380         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8381         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8382         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8383
8384 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8385
8386         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8387
8388 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8389
8390         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8391           additions to the "related tools/documentation" section
8392
8393 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8396
8397 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8398
8399         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8400         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8401
8402 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8403
8404         * doc/sdccman.lyx: fix double dash and other minor things
8405         * doc/Makefile: fix double dash
8406
8407 2003-05-28  Karl Bongers(patches from Martin Helmling)
8408         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8409           condition and ignore commands.
8410
8411 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8412
8413         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8414           is in parts still quite out of date, I did changes as far as I felt makes sense
8415           for a non-native english speaker.
8416           Please feel free to add to the manual or to correct my changes.
8417         * doc/Makefile: undid touching the date of intermediate tex files.
8418
8419 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8420
8421         * doc/sdccman.lyx: Manual has an index now
8422
8423 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8424
8425         Finalize muluint/mulsint and mululong/mulslong merging:
8426         * device/lib/_mulint.c
8427         * device/lib/_mullong.c
8428         * device/lib/gbz80/mul.s
8429         * device/lib/gbz80/stubs.s
8430         * device/lib/z80/mul.s
8431         * device/lib/z80/stubs.s
8432         * src/SDCCsymt.c (initCSupport)
8433
8434 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8435
8436         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8437         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8438           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8439           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8440           instead of /Zm500.
8441
8442 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8443
8444         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8445           the regression tests I'm not brave enough to enable 245.b, 245.c
8446         * doc/sdccman.lyx: added latex preamble for hyperref package.
8447           Using pdflatex this will give you a hyperlinked pdf file with
8448           bookmarks. (prepend '%' before /usepackage if this breaks something)
8449
8450 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8451
8452          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8453
8454 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8455
8456         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8457
8458 2003-05-21    <johan AT balder>
8459
8460         * src/SDCCglue.c (printIval): fixed bug #739934
8461
8462 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8463
8464         Applied patch from bug 737905 (renamed yylineo to mylineno):
8465         * src/altlex.c
8466         * src/SDCCast.c
8467         * src/SDCglobl.h
8468         * src/SDCC.lex
8469         * src/SDCCsymt.c
8470         * src/SDCCval.c
8471         * src/pic16/pcode.c: Cleaned warnings
8472         * src/pic16/pcodeflow.c: Cleaned warnings
8473         * src/pic16/pcoderegs.c: Cleaned warnings
8474
8475 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8476
8477         * src/pic16/pcode.c: Cleaned warnings
8478         * src/pic16/pcodepeep.c: Cleaned warnings
8479         * src/pic16/ralloc.c: Cleaned warnings
8480
8481 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8482
8483         * doc/sdccman.lyx: fixed bug 739745
8484         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8485
8486 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8487
8488         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8489         it can be defined with CFLAGS when running configure
8490         * src/SDCCmain.c: fixed compiling + linking with object files
8491
8492 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8493
8494         * configure.in: configure for pic16 port,
8495             added --disable-pic16-port
8496         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8497         * src/SDCCmain.c: linkOptions is changed to set *,
8498             added if/endif conditional macros to remove options help
8499             messages from optionsTable when a port is not configured, added
8500             support for the PIc16 port in the ports table, when executing
8501             the compiler with no port specified on command line, a default
8502             port is selected with the new macro DEFAULT_PORT which is
8503             defined in port.h, in setDefaultOptions() linkOptions is removed
8504             from initialization assignment, since now it is a set,
8505             parseCmdLine uses setParseWithComma for linkOptions, in
8506             linkEdit() linkOptions are accessed with new function indexSet()
8507             which returns the i'th item of a set variable. See SDCCset.c, in
8508             linkEdit() when calling buildCmdLine(), added linkOptions as
8509             last argument. Now users can pass arguments to gplink via the
8510             -Wl option, main() uses pic16glue() to glue up pic16 programs
8511         * src/SDCCpeeph.c: various changes to support pic16
8512         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8513             return the i'th item of the set
8514         * src/SDCCset.h: added function prototype for indexSet()
8515         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8516         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8517         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8518             added macro DEFAULT_PORT
8519         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8520         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8521             generated
8522         * src/pic16/glue.c: commented out some error producing lines
8523         * src/pic16/main.c: __config directives are commented out to stop
8524             gpasm complaining and test the linkage with gplink, _linkCmd and
8525             _asmCmd changed to be more gplink and gpasm friendly
8526         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8527             produced an error when parsed, peep rule 12 is added to utilize
8528             movff, but it is commented out since the pCode does not support
8529             yet a command with 2 address arguments
8530
8531 2003-05-18    <johan AT balder>
8532
8533         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8534         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8535 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8536
8537         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8538   Added feature to script commands from file.
8539
8540 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8541
8542         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8543         * src/SDCCutil.c: include ctype.h for win32
8544
8545 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8546
8547         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8548
8549 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8550
8551         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8552   Fixed so you can set breakpoints prior to run, run does not stop
8553   on entry now.  Add tbreak.  Other enhancements and fixes for use
8554   with ddd.
8555
8556 2003-05-12  Borut Razem <borut.razem AT siol.net>
8557
8558         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8559
8560 2003-05-11  Borut Razem <borut.razem AT siol.net>
8561
8562         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8563         the path of bin directory, so that PATH is the only env. variable, which has to be set
8564         in case of standard installation.
8565         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8566         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8567         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8568
8569 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8570
8571         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8572         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8573         temp files are in the port dir; clean the gen/test directory when
8574         generating new test.c
8575         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8576         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8577         * support/regression/tests/zeropad.c: added
8578
8579 2003-05-09    <johan AT balder>
8580
8581         * src/SDCCglue.c: fixed bug #597940
8582
8583 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8584
8585         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8586   cache sfr, optimize next,step, fix off by one sourceline,
8587   support ddd list function.
8588         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8589
8590 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8591
8592         * support/regression/HTMLgen.py: added compare_s2f()
8593         * support/regression/Makefile: redo 1.27
8594         * support/regression/generate-cases.py: redo 1.5
8595
8596 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8597
8598         * support/regression/tests/float.c: workaround 33 bit hex constant
8599         * support/regression/tests/simplefloat.c: fix division for host
8600
8601 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8602
8603         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8604         that tame's the PIC's over-aggressive optimizer.
8605
8606 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8607
8608          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8609          support for MSVC.
8610
8611 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8612
8613         Initial support for DS80C400. "Hello world" runs on TINIm400
8614         (with polled I/O).
8615
8616 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8617
8618          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8619          * Some notes on ddd usage added in debugger/README
8620          Martin Helmling adding more features and fixes for ddd GUI debugger.
8621          Code added for nexti, stepi, up, down, and other adjustments.
8622
8623 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8624
8625         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8626         * src/pic/peeph.def Added two rules to optimize carry manipulation
8627         * src/pic/* removed debug printfs
8628
8629 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8630
8631         * debugger/mcs51/cmd.c: added header newalloc.h
8632
8633 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8634
8635         * as/Makefile: new EXEEXT
8636         * as/z80/Makefile: remove trailing slash of BUILDIR
8637         * as/z80/clean.mk: new EXEEXT
8638         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8639         * support/cpp2/Makefile.in: new EXEEXT
8640         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8641
8642 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8643
8644         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8645         EXEEXT was introduced to fix all related problems with targets
8646         "clean", "install" and "uninstall"; a couple of further flaws
8647         especially with "clean" have been fixed too
8648         * as/mcs51/Makefile.in
8649         * as/mcs51/clean.mk
8650         * as/z80/Makefile
8651         * Makefile
8652         * clean.mk
8653         * debugger/mcs51/Makefile.in
8654         * debugger/mcs51/clean.mk
8655         * link/z80/Makefile
8656         * link/z80/Makefile.in
8657         * link/z80/clean.mk
8658         * link/Makefile
8659         * packihx/Makefile.in
8660         * packihx/clean.mk
8661         * sim/ucsim/Makefile
8662         * sim/ucsim/clean.mk
8663         * sim/ucsim/avr.src/Makefile.in
8664         * sim/ucsim/avr.src/clean.mk
8665         * sim/ucsim/s51.src/Makefile.in
8666         * sim/ucsim/s51.src/clean.mk
8667         * sim/ucsim/xa.src/Makefile.in
8668         * sim/ucsim/xa.src/clean.mk
8669         * sim/ucsim/z80.src/Makefile.in
8670         * sim/ucsim/z80.src/clean.mk
8671         * sim/ucsim/main_in.mk
8672         * sim/ucsim/packages_in.mk
8673         * sim/ucsim/gui.src/Makefile.in
8674         * sim/ucsim/gui.src/serio.src/Makefile.in
8675         * sim/ucsim/gui.src/serio.src/clean.mk
8676         * src/Makefile.in
8677         * src/clean.mk
8678         * support/cpp2/Makefile.in
8679         * support/cpp2/clean.mk
8680         * support/makebin/Makefile
8681         * support/makebin/clean.mk
8682         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8683         * doc/sdccman.lyx: --program-suffix no longer needed
8684
8685 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8686
8687          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8688          Martin Helmling added support for ddd GUI debugger.
8689          Code added to display assembly, set variables, and other commands
8690          to interface to ddd.
8691
8692 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8693
8694         * as/Makefile: fix target clean
8695         * as/clean.mk: fix target clean
8696         * as/z80/clean.mk: fix target clean
8697
8698 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8699
8700         * Makefile.common.in: added  AT EXEEXT AT
8701         * configure.in: removed all mingw32 stuff
8702         * configure: rebuilt from configure.in
8703         * doc/sdccman.lyx: updated section "installation"
8704         * support/scripts/sdcc_mingw32: adapted to configure
8705         * support/scripts/sdcc_cygwin_mingw32: added
8706
8707 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8708
8709         * src/pic Added object file support for the PIC port
8710         * src/pic Applied patch from Craig Franklin (this started the object file support)
8711         * src/regression Updated the PIC regression tests for object files
8712
8713 2003-04-20  Borut Razem <borut.razem AT siol.net>
8714
8715         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8716           lklex.c: In function `getfid':
8717           lklex.c:203: warning: array subscript has type `char'
8718         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8719           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8720         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8721           stack handling macros
8722
8723 2003-04-19  Borut Razem <borut.razem AT siol.net>
8724
8725         * "handling space characters in file path" task:
8726         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8727         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8728         * support/Util/MySystem.h: make it self-sufficient
8729         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8730           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8731           handling space characters in file path
8732         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8733           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8734         * support/Util/MySystem.c: handling space characters in executable's path
8735
8736 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8737
8738         * as/z80/Makefile: fix permanent rebuild of z80
8739         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8740         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8741
8742 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8743
8744         * src/SDCCopt.c: add special case optimization to replace modulo by
8745           a power of two with a bitwise AND.
8746
8747 2003-04-18    <johan AT balder>
8748
8749         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8750
8751 2003-04-17    <johan AT balder>
8752
8753         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8754         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8755
8756 2003-04-13  Borut Razem <borut.razem AT siol.net>
8757
8758         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8759         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8760           fixed mingw problem in adl_NORMALIZE_PATH
8761
8762 2003-04-12  Borut Razem <borut.razem AT siol.net>
8763
8764         * fixed "#pragma SAVE/RESTORE can not be nested":
8765         * src/SDCC.lex: reworked pragma handling functions
8766         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8767         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8768
8769 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8770
8771         * src/SDCCutil.c (pathEquivalent): defined but not used
8772         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8773         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8774         * configure: rebuilt from configure.in
8775         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8776         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8777         * device/include/Makefile.in: replace sdcc_datadir
8778         * device/lib/Makefile.in: replace sdcc_datadir
8779         * Makefile.common.in: add LDFLAGS from configure
8780         * packihx/Makefile.in: use LDFLAGS
8781         * src/Makefile.in: use LDFLAGS
8782         * support/cpp2/Makefile.in: add LDFLAGS from configure
8783         * support/makebin/Makefile: use LDFLAGS
8784         * .version: bumped version number to 2.3.5
8785
8786 2003-04-12  Borut Razem <borut.razem AT siol.net>
8787
8788         * completed "different paths" task:
8789         * src/SDCCmacro.c: fixed bug in handling quotes
8790         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8791         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8792
8793 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8794
8795         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8796
8797 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8798
8799         * ds390/gen.c ds390/peeph.def: fix bug 706781
8800
8801 2003-04-11  Borut Razem <borut.razem AT siol.net>
8802
8803         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8804
8805 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8806
8807         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8808         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8809          set - this bit used to not be set...).
8810         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8811           bad code in PIC Port
8812         * src/regression/and2.c added to test bug 609268
8813         * src/regression/Makefile added and2.c to regression test
8814
8815
8816 2003-04-08    <johan AT CP255758-A>
8817
8818         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8819         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8820         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8821
8822 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8823
8824         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8825         fix bug #487815
8826         * support/cpp2/Makefile.in: fix bug #487815
8827         * configure: rebuilt from configure.in
8828         * Makefile.common.in: docdir changed, new path suffixes
8829         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8830         * sdcc_vc_in.h: reflect changes from sdccconf.h
8831         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8832         * src/SDCCutil.h: remove BINDIR hack
8833         * doc/sdccman.lyx: update new path hierarchy
8834
8835 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8836
8837         * src/SDCCpeeph.c: added okToRemoveSLOC test
8838
8839 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8840
8841         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8842
8843 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8844
8845         * src/SDCCpeeph.c: added labelIsReturnOnly test
8846         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8847
8848 2003-04-05    <johan AT balder>
8849
8850         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8851         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8852         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8853         * src/SDCCast.c: fixed a warning
8854         * src/SDCCast.h: fixed a warning
8855         * src/SDCCicode.c (operandFromAst): fixed a warning
8856
8857 2003-04-04    <johan AT balder>
8858
8859         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8860         * src/SDCCast.c (decorateType): fixed bug #715076
8861         * src/SDCC.y: fixed bug #702907
8862
8863 2003-04-03    <johan AT balder>
8864
8865         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8866         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8867         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8868         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8869         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8870
8871 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8872
8873         * _decdptr.c: fix return values
8874         * _gptrget.c: fix return values
8875         * _gptrgetc.c: fix return values
8876         * _gptrput.c: fix return values
8877         * _mulint.c: fix return values
8878         * as/z80/Makefile: fix 'make -j' problem
8879
8880 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8881
8882         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8883         * configure.in: big cleanup, updated to autoconf 2.5x
8884         * configure: rebuilt from configure.in
8885         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8886         * sdcc_vc_in.h: reflect changes from sdccconf.h
8887         * doc/Makefile: fixed a flaw in "make install"
8888
8889 2003-04-02    <johan AT balder>
8890
8891         * src/ds390/gen.c (genCmp): no comments
8892         * src/mcs51/gen.c (genCmp): no comments
8893         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8894         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8895
8896 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8897
8898         * support/regression/generate-cases.py: place generated file in given sub directory
8899         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8900         * support/regression/Makefile: improvements for 'make -j';
8901         side effect: it's simpler and faster now
8902
8903 2003-03-31  Borut Razem <borut.razem AT siol.net>
8904
8905         * src/z80/main.c: link-{port} and as-{port} defined without path
8906         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8907
8908 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8909
8910         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8911
8912 2003-03-30  Borut Razem <borut.razem AT siol.net>
8913
8914         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8915           changed type of list parameter to set
8916         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8917         * src/port.h: changed type of do_assemble() parameter to set
8918         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8919           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8920           definition of "cppoutfilename" macro with NULL value in preProcess()
8921         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8922         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8923         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8924           replaced with set *binPathSet
8925         * shash_add() deallocates the item, if allready exsists, before adding the new one
8926         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8927
8928 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8929
8930         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8931           a nested for loop bug in the PIC port
8932         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8933           for loops
8934
8935 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8936
8937         * support/Util/dbuf.h: remove C++ stuff to make it portable
8938
8939 2003-03-28  Borut Razem <borut.razem AT siol.net>
8940
8941         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8942           literal strings in stringLiteral()
8943         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8944         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8945           to the project
8946
8947 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8948
8949         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8950
8951 2003-03-26    <johan AT balder>
8952
8953         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8954         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8955         * src/SDCCast.c (decorateType): fixed " -v < 3"
8956
8957 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8958
8959         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8960         Added Lenny Story's debug infrastructure changes:
8961         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8962         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8963         * src/cdbFile.c: added
8964         * src/SDCCdebug.c: added
8965         * src/SDCCdebug.h: added
8966         * src/SDCCast.c (createFunction)
8967         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8968         * src/SDCCmain.c (parseCmdLine, main)
8969         * src/SDCCmem.c (redoStackOffsets)
8970         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8971         * src/SDCCsymt.h
8972         * src/common.h
8973         * src/avr/gen.c (genAVRCode)
8974         * src/ds390/gen.c (gen390Code)
8975         * src/mcs51/gen.c (gen51Code)
8976         * src/pic/gen.c (genpic14Code)
8977         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8978         * src/xa51/gen.c (genXA51Code)
8979         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8980
8981 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8982
8983         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8984         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8985
8986 2003-03-22    <johan AT balder>
8987
8988         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8989
8990 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8991
8992         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8993         * doc/cdbfileformat.lyx: added, written by Lenny Story
8994         * doc/Makefile: added cdbfileformat.lyx
8995         * doc/clean.mk: added cdbfileformat.lyx
8996
8997 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8998
8999         * src/mcs51/peeph.def: fix bug #705773
9000
9001 2003-03-20    <johan AT balder>
9002
9003         An sfr/sbit can have an "at #" AND an initializer
9004         * src/SDCCsymt.c (checkSClass):
9005         * src/SDCCmem.c (allocGlobal):
9006         * src/SDCCmem.c (allocLocal):
9007         * src/SDCCast.c (createBlock):
9008
9009 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9010
9011         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9012
9013 2003-03-16    <johan AT balder>
9014
9015         Undid the hackup of const and volatile, the problem is much bigger
9016         * src/SDCC.y:1.65
9017         * src/SDCCast.c:1.171
9018         * src/SDCCglue.c:1.138
9019         * src/SDCCicode.c:1.146
9020         * src/SDCCsymt.c:1.150
9021         * src/SDCCval.c:1.65
9022
9023 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9024
9025         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9026         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9027
9028 2003-03-13    <johan AT balder>
9029
9030         Hackup const and volatile modifiers in type chains a bit:
9031         * src/SDCC.y:1.63
9032         * src/SDCCast.c:1.169
9033         * src/SDCCglue.c:1.136
9034         * src/SDCCicode.c:1.143
9035         * src/SDCCsymt.c1.146
9036         * src/SDCCsymt.h1.59
9037         * src/SDCCval.c:1.63
9038
9039 2003-03-12    <johan AT balder>
9040
9041         * src/SDCCBBlock.h: more LRH debugging junk
9042         * src/SDCCcflow.h: more LRH debugging junk
9043         * src/SDCCloop.c: more LRH debugging junk
9044         * src/SDCC.y (struct_declaration): fixed bug #697590
9045         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9046         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9047         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9048
9049 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9050         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9051         test function names must now match exactly).
9052         * src/SDCCcse.c: added special case in findCheaperOp to allow
9053         extending a short integer. Makes less awful code for bug 700121 test case.
9054
9055 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9056
9057         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9058         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9059
9060 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9061
9062         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9063         actually called (operandsNotEqual() was called for all
9064         operandsNotEqualX tests).
9065
9066 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9067
9068         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9069         with shorter literals. Fixes bug 700121.
9070
9071 2003-03-11    <johan AT balder>
9072
9073         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9074
9075 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9076
9077         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9078         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9079
9080 2003-03-10  Borut Razem <borut.razem AT siol.net>
9081
9082         * src/SDCCmain.c: pipe preprocessor's output
9083         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9084         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9085         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9086         which closes all pipes in pipeSet set
9087         * src/SDCCset.c: free deleted item in function deleteSetItem()
9088         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9089         moved from z80 to src subproject
9090         * .version: increased version number to 2.3.4
9091
9092 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9093
9094         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9095         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9096         * support/regression/ports/xa51/spec.mk: fix typo
9097
9098 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9099
9100         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9101
9102 2003-03-09  Borut Razem <borut.razem AT siol.net>
9103
9104         * src/SDCCmain.c: pipe preprocessor's output
9105         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9106         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9107         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9108         which closes all pipes in pipeSet set
9109         * src/SDCCset.c: free deleted item in function deleteSetItem()
9110         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9111         moved from z80 to src subproject
9112
9113 2003-03-09  Borut Razem <borut.razem AT siol.net>
9114
9115         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9116         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9117         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9118         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9119         * src/SDCCglobl.h: unification of WIN32 native definitions
9120
9121 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9122
9123         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9124
9125 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9126
9127         * src/configure.in:   check for endianess (even while cross-compiling)
9128         * src/configure:      check for endianess (even while cross-compiling)
9129         * src/configure_in.h: check for endianess (even while cross-compiling)
9130         * src/avr/gen.c:        remove old endianess stuff
9131         * src/mcs51/gen.c:      remove old endianess stuff
9132         * src/ds390/gen.c:      remove old endianess stuff
9133         * src/pic/gen.c:        remove old endianess stuff
9134         * src/pic/genarith.c:   remove old endianess stuff
9135         * src/pic/glue.c:       fix endianess check
9136         * src/pic16/gen.c:      remove old endianess stuff
9137         * src/pic16/genarith.c: remove old endianess stuff
9138         * src/pic16/glue.c:     fix endianess check
9139         * src/xa51/gen.c:       remove old endianess stuff
9140         * src/z80/gen.c:        fix endianess check
9141         * src/SDCCglue.c:       fix endianess check
9142         * src/ds390/peeph.def: fix bug 700036
9143
9144 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9145
9146         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9147         * src/configure: find appropriate data-types on host for SDCC's int and long
9148         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9149         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9150         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9151
9152 2003-03-07    <johan AT balder>
9153
9154         Just a big NOOP:
9155                 some minor cleanups before the big shot
9156                 OP_DEFS and OP_USES now use Kevin's protection
9157                 new option --nolabelopt
9158
9159         * src/SDCCBBlock.c:
9160         * src/SDCCast.c,:
9161         * src/SDCCcflow.c:
9162         * src/SDCCcse.c:
9163         * src/SDCCicode.c:
9164         * src/SDCCicode.h:
9165         * src/SDCClabel.c:
9166         * src/SDCCloop.c:
9167         * src/SDCCmain.c:
9168         * src/ds390/ralloc.c:
9169         * src/mcs51/ralloc.c:
9170         * src/pic/ralloc.c:
9171         * src/xa51/ralloc.c:
9172         * src/z80/ralloc.c:
9173
9174 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9175
9176         * src/pic/pcode.c (get_op): fix 64 bit warnings
9177         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9178         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9179         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9180         * support/regression/tests/malloc.c: fix 64 bit warnings
9181
9182 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9183
9184         * src/mcs51/gen.c (genMinus): fixed bug 696436
9185
9186 2003-03-02  Borut Razem <borut.razem AT siol.net>
9187
9188         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9189
9190 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9191
9192         * configure.in: test for mkstemp
9193         * sdccconf_in.h: add HAVE_MKSTEMP
9194
9195 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9196
9197         * device/include/ctype.h: removed warning while using --stack-auto
9198         * device/include/malloc.h: removed warning while using --stack-auto
9199         * device/include/string.h: removed warning while using --stack-auto
9200
9201 2003-02-23  Borut Razem <borut.razem AT siol.net>
9202
9203         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9204         because NDEBUG is defined (see man assert)
9205         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9206
9207 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9208
9209         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9210         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9211
9212 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9213
9214         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9215         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9216
9217 2003-02-18    <johan AT balder>
9218
9219         * as/mcs51/asmain.c (asmbl): module can start with a digit
9220         * as/z80/asmain.c (asmbl): module can start with a digit
9221
9222 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9223
9224         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9225         * src/asm.c: fix pipe() for Mingw32
9226
9227 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9228
9229         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9230         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9231         make -V work again; --c1mode reads now from stdin
9232         * doc/sdccman.lyx: added --c1mode
9233         * support/Util/SDCCerr.c: new messages for c1 mode
9234         * support/Util/SDCCerr.h: new messages for c1 mode
9235         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9236
9237 2003-02-15    <johan AT balder>
9238
9239         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9240
9241 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9242
9243         * doc/sdccman.lyx: Environment variables, -o and other minor things
9244
9245 2003-02-14    <johan AT balder>
9246
9247         * src/xa51/main.c: before anyone really tries to use it :)
9248
9249         * Install doc's in share/sdcc/doc
9250         * removed some obsolete files
9251         * Do a proper make distclean and uninstall
9252         M Makefile.common.in
9253         R sdccbuild.sh
9254         M as/Makefile
9255         M device/include/Makefile.in
9256         M device/lib/Makefile.in
9257         M doc/sdccman.lyx
9258         M link/Makefile
9259         M sim/ucsim/doc/Makefile.in
9260         M src/clean.mk
9261         R src/avr/peeph.rul
9262         R src/xa51/peeph.rul
9263         M support/cpp2/Makefile.in
9264         M support/makebin/Makefile
9265
9266
9267 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9268
9269         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9270
9271 2003-02-10  Borut Razem <borut.razem AT siol.net>
9272
9273         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9274         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9275         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9276         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9277         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9278         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9279         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9280         src/z80/Makefile.bcc: Borland Makefile cleanup
9281         * as/z80/Makefile.bcc: Added Borland Makefile
9282         * support/cpp2/borland.h: Removed
9283
9284 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9285
9286         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9287         * src/SDCC.lex: new pragma NOIV
9288         * src/SDCCglobl.h: new pragma NOIV
9289         * src/SDCCmem.c: new pragma NOIV
9290
9291 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9292
9293         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9294
9295 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9296
9297         * src/SDCCmain.c: signal handling is switched off by --debug
9298         * doc/Makefile: small fix for install; use clean.mk again
9299         * doc/clean.mk: clean *.pdf and *.html too
9300
9301 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9302
9303         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9304         * device/lib/printfl.c: fix a ds390 bug by making it portable
9305         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9306         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9307         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9308         * debugger/mcs51/cmd.c: converted multi-line string literals
9309         * sim/ucsim/globals.cc: converted multi-line string literals
9310         * src/SDCCmain.c: introduced signal handler to remove temp files
9311         * doc/Makefile: small tweaks, implement clean
9312         * doc: removed generated files
9313
9314 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9315
9316         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9317         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9318         Address Record is not correctly generated for DS390."
9319
9320 2003-02-02  Borut Razem <borut.razem AT siol.net>
9321
9322         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9323         * as/mcs51/asm.h: fixed compilation with Borland C
9324         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9325         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9326         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9327         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9328         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9329         src/z80/Makefile.bcc: delete $(LIB) only if exist
9330         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9331
9332 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9333
9334         * device/include/malloc.h: introduced NULL
9335         * device/include/string.h: introduced NULL
9336         * device/include/stdlib.h: introduced NULL
9337         * device/lib/_memcpy.c: removed NULL
9338         * device/lib/_strcat.c: removed NULL
9339         * device/lib/_strchr.c: removed NULL
9340         * device/lib/_strcmp.c: removed NULL
9341         * device/lib/_strcpy.c: removed NULL
9342         * device/lib/_strcspn.c: removed NULL
9343         * device/lib/_strlen.c: removed NULL
9344         * device/lib/_strncat.c: removed NULL
9345         * device/lib/_strncmp.c: removed NULL
9346         * device/lib/_strncpy.c: removed NULL
9347         * device/lib/_strpbrk.c: removed NULL
9348         * device/lib/_strrchr.c: removed NULL
9349         * device/lib/_strspn.c: removed NULL
9350         * device/lib/_strstr.c: removed NULL
9351         * device/lib/_strtok.c: removed NULL
9352         * device/lib/malloc.c: removed NULL, include own header
9353
9354 2003-02-02    <johan AT balder>
9355
9356         * 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
9357         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9358         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9359         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9360         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9361         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9362
9363 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9364
9365         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9366         area 'DATA'"
9367
9368 2003-02-01    <johan AT balder>
9369
9370         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9371
9372 2003-01-31    <johan AT CP255758-A>
9373
9374         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9375
9376 2003-01-30    <johan AT balder>
9377
9378         * src/SDCCBBlock.c: automatic bug detection
9379         * src/SDCCicode.c: automatic bug detection
9380
9381 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9382
9383         * src/SDCCglobl.h:   now --xram-size 0 works
9384         * src/SDCCmain.c:    now --xram-size 0 works
9385
9386 2003-01-29    <johan AT balder>
9387
9388         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9389
9390 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9391
9392         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9393         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9394         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9395         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9396         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9397         * src/SDCCmain.c:    Added options --xram-size and --code-size
9398
9399 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9400
9401         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9402         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9403
9404 2003-01-27    <johan AT balder>
9405
9406         * src/SDCC.y: fixed bug #613764
9407
9408 2003-01-26    <johan AT balder>
9409
9410         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9411         * src/SDCCsymt.h: fixed bug #673374
9412         * src/SDCCglue.c: fixed bug #661910
9413         * src/SDCCast.c: fixed bug #458099 and 673374
9414
9415 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9416
9417         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9418         * as/mcs51/strcmpi.h: added
9419         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9420         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9421         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9422         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9423         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9424         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9425         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9426         * as/mcs51/Makefile.aslink: new module strcmpi
9427         * as/mcs51/Makefile.asx8051: new module strcmpi
9428         * as/mcs51/Makefil.bcc: new module strcmpi
9429         * as/mcs51/Makefile.in: new module strcmpi
9430         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9431
9432 2003-01-26    <johan AT balder>
9433
9434         * src/SDCCglue.c: reverted back to 1.124
9435         * src/SDCCast.c: reverted back to 1.156
9436         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9437
9438 2003-01-25    <johan AT balder>
9439
9440         * src/SDCCglue.c: A better fix for bug #661910
9441         * src/SDCCast.c: A better fix for bug #661910
9442         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9443
9444 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9445
9446         * src/Makefile.in: remove spawn.o
9447         * src/SDCCmain.c: remove spawn.h
9448         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9449         * src/spawn.c: removed
9450         * src/spawn.h: removed
9451         * support/regression/ports/ds390/spec.mk: link with -r
9452
9453 2003-01-24    <johan AT CP255758-A>
9454
9455         * src/ds390/gen.c (aopOp): fixed bug #667458
9456         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9457         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9458         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9459
9460 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9461
9462         * src/mcs51/peeph.def: better assembler identation by Frieder
9463         * src/mcs51/gen.c: better assembler identation by Frieder
9464
9465 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9466
9467         * as/z80/string.h: removed for gcc 3.2
9468         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9469         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9470
9471 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9472
9473         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9474         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9475         * support/regression/Makefile: separate temp files for ports
9476         * support/regression/generate-cases.py: separate temp files for ports
9477         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9478         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9479
9480 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9481
9482         * moved tinitalk to device/examples/ds390
9483
9484 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9485
9486         * as/mcs51/lkmem.c: rflag is for DS390
9487         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9488         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9489                          (linkEdit): move mem- and map-files the same way as ihx-files
9490         * src/z80/main.c (_setDefaultOptions): removed --generic
9491         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9492         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9493         * src/pic/glue.c (picglue): --c1mode works again
9494         * src/pic16/glue.c (pic16glue): --c1mode works again
9495         * src/asm.c (printCLine): fix #660034
9496
9497 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9498
9499         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9500         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9501         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9502         * as/mcs51/lkmem (summary): better fix for sp problem
9503         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9504         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9505         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9506                                               remove --stack-after-data
9507
9508 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9509
9510         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9511         * src/SDCCutil.c (join): ugly bug: missing '\0'
9512         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9513
9514 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9515
9516         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9517         * src/port.h: typo
9518         * src/pic/main.c (_asmCmd): gpasm supports -o
9519         * src/z80/main.c: more general macros
9520         * device/lib/Makefile.in: remove intermediate files
9521
9522 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9523
9524         * .version: Bumped version number to 2.3.3
9525         * src/SDCCBBlock.c: new option -o
9526         * src/SDCCglobl.h: new option -o
9527         * src/SDCCglue.c: new option -o
9528         * src/SDCCmain.c: new option -o
9529         * src/asm.c: new option -o
9530         * src/ds390/main.c: new option -o
9531         * src/pic/glue.c: new option -o
9532         * src/pic/pcode.c: new option -o
9533         * src/pic/ralloc.c: new option -o
9534         * src/pic16/glue.c: new option -o
9535         * src/pic16/pcode.c: new option -o
9536         * src/pic16/ralloc.c: new option -o
9537         * src/z80/main.c: new option -o
9538         * device/lib/Makefile.in: use -o
9539         * support/regression/ports/ds390/spec.mk: use -o
9540         * support/regression/ports/gbz80/spec.mk: use -o
9541         * support/regression/ports/mcs51/spec.mk: use -o
9542         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9543         * support/regression/ports/z80/spec.mk: use -o
9544         * support/regression/ports/ucz80/spec.mk: use -o
9545         * support/regression/ports/xa51/spec.mk: use -o
9546         * support/regression/fwk/lib/timeout.c: fix usage string
9547
9548 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9549         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9550
9551 2003-01-07    <johan AT balder>
9552
9553         * src/SDCCast.c (decorateType): fixed bug #600035
9554
9555 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9556         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9557         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9558         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9559         * src/pic/pcode.c: outcommented unused variable to remove warnings
9560         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9561
9562 2003-01-06    <karl AT turbobit.com>
9563         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9564    regression tests.
9565
9566 2003-01-06    <johan AT balder>
9567
9568         * src/SDCCicode.c: fixed array add
9569
9570 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9571         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9572         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9573
9574 2003-01-04    <johan AT balder>
9575
9576         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9577
9578 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9579         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9580
9581 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9582         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9583         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9584
9585 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9586         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9587
9588 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9589         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9590
9591 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9592         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9593
9594 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9595
9596     * in \sdcc\as\mcs51\ changed these files in order to create an
9597     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9598     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9599     following files to include the previous two files: aslink.dsp,
9600     Makefile.aslink, Makefile.bcc, and Makefile.in.
9601
9602     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9603     .adb instead of .cdb
9604
9605 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9606
9607         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9608         value from option --iram-size.
9609
9610 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9611
9612         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9613         dram[] array.
9614
9615 2002-09-18    <wiml AT hhhh.org>
9616
9617         * SDCClrange.h: exposed setFromRange() and setToRange()
9618         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9619           packRegsForAccUse() (bug 542397)
9620         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9621           multiple times and emitting the fetch operations more than once
9622           added aopGetUsesAcc() function to allow binary operators to
9623           fetch their operands in the correct order; made genMinus() emit
9624           compact code for X = LITERAL - Y
9625
9626 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9627         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9628         sprintf() in line 1267.
9629
9630 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9631         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9632         like ports.
9633
9634 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9635         Changes to aslink (All the changes are marked with 'JCF'):
9636
9637         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9638         summary().
9639
9640         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9641         area BSEG.  Also moves, if possible, the DATA area down into the internal
9642         ram so more space is available.
9643
9644         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9645         sflag.
9646
9647         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9648         not bytes.  Function summary() which creates a memory usage summary
9649         file with extension .mem.  Reports of overlaping stack and small stack
9650         size.  If the space for the stack is less than 16 bytes aslink trows a
9651         warning.
9652
9653         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9654         the 8051.  Option 'y' for memory summary output file.
9655
9656         Changes to sdcc (All the changes are marked with 'JCF'):
9657
9658         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9659
9660         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9661         overlaying area for it (uses RegBankUsed[4]).
9662
9663         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9664         bank zero as used by default.  By default aslink locates the stack
9665         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9666         the creation of the .mem file.  Delegates the allocation of data area
9667         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9668         the begining of the stack area to aslink.
9669
9670         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9671         glue() in SDCCglue.c creates an area for it.
9672
9673 2002-09-03  Borut Razem <borut.razem AT siol.net>
9674         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9675         sdcc/src/pic/glue.c:
9676         introduced atexit() handler for teporay files removal in case of
9677         errors, assertions, ...
9678
9679 2002-08-29  Borut Razem <borut.razem AT siol.net>
9680         * sdcc/support/cpp2/auto-host_vc_in.h:
9681         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9682         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9683         Maybe there is a similar problem with BORLANDC? It should be checked!
9684
9685         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9686         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9687         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9688         was not executed, and the compiler (cl) launched a warning:
9689         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9690
9691 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9692         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9693
9694 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9695         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9696
9697         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9698           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9699           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9700           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9701           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9702           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9703           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9704         - added Release configuration in VS projects
9705         - review of compiler an linker options
9706         - VC .exe files are generated in bin_vc directory, not to interfere
9707           with binaries generated from other projects (cygwin, mingw, bcc ...)
9708
9709         * sdcc/src/yacc.dsp: added
9710
9711         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9712         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9713         and insert the version number definitions from .version
9714
9715         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9716
9717         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9718         added - genarate auto-host.h using auto-host_vc_in.h as template
9719
9720         * sdcc/sdcc_vc.h,
9721         removed from CVS, generated automatically
9722
9723 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9724         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9725
9726 2002-08-11  Borut Razem <borut.razem AT siol.net>
9727         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9728
9729 2002-08-10  Borut Razem <borut.razem AT siol.net>
9730         * src/SDCCmain.c (main):
9731         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9732         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9733         The consequence was that some temporary files were not removed.
9734
9735         * src/SDCCglue.c:
9736         unification of code in functions tempfilename() and tempfile():
9737         function tempnam() is defined in Visual Studio 6.0 and .NET
9738
9739         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9740
9741         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9742           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9743         - removed compiler command line option /WX: Treats all warnings as errors
9744         - update a list of source files, included into the project
9745
9746         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9747           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9748         changed project type to Generic Project so that can be correcly converted to VS.NET project
9749
9750         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9751
9752         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9753
9754         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9755
9756         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9757         added return 0 statements after assert() to make compiler happy
9758
9759         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9760         added newline in the def file to keep MSC compiler satisfied
9761
9762         * sdcc/src/z80/gen.c:
9763         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9764           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9765         - solved MSC error in function aopDump()
9766
9767         * sdcc_vc.h: define PREFIX as "\\sdcc"
9768
9769 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9770         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9771
9772 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9773         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9774         - Rewrote the register banking algorithm.
9775         - Added pCode live-range analysis to registers (for now, only non-used and
9776         singly-used registers optimized away)
9777
9778         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9779
9780         * 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.
9781
9782 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9783         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9784
9785 2002-04-22  Michael Hope  <michaelh AT vroom>
9786
9787         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9788
9789         * configure.in (DD_COPT): Added include support required for gbdk.
9790
9791         * .version: Bumped version number just to increase it.
9792
9793         * src/SDCCmain.c: Added -nostdinc to the default options.
9794
9795 2002-04-15  Michael Hope  <michaelh AT vroom>
9796
9797         * device/lib/z80/printf.c (sprintf): Added.
9798
9799         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9800
9801         * src/z80/peeph.def: Added transpose redundent load rule.
9802
9803         * src/z80/main.c: Added force callee saves for jaune.
9804
9805         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9806
9807         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9808
9809 2002-03-28  Johan Knol  <johan AT balder>
9810
9811         * src/SDCCval.c: fixed bug #532436
9812
9813 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9814         * /src/port.h:
9815         Added "char *Processor" field to the port structure.
9816
9817         * /src/SDCCmain.c:
9818         Added -p option. Allows port dependent processor to be specified.
9819
9820         * all ports:
9821         Initialized the new field char *Processor field to NULL in all ports
9822
9823         * /src/pic/*:
9824         Compiler generated registers for interrupt context saving
9825         were not getting allocated.
9826
9827 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9828
9829         * /src/SDCCast.c:
9830         Fixed left shift. Will promote the left side of a left shift
9831         if a) left shifting more than size of operand or b) when assigned
9832         to something size > size of left side
9833
9834 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9835         * src/pic/*
9836         tons of changes. Register allocation has been
9837         rewritten. Added customization for the various PICs. Flow
9838         analysis is restructured. ...
9839
9840         * src/pic/device.h:
9841         Added
9842
9843         * src/pic/device.c:
9844         Added. device.c is a PIC port hack to accomodate variations
9845         in PIC devices.
9846
9847 2002-03-13  Michael Hope  <michaelh AT vroom>
9848
9849         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9850
9851 2002-03-04  johanknol  <johanknol AT manik>
9852
9853         * /src/SDCCval.c: fixed
9854
9855         const unsigned char arr[][2] = { { 0, 1 } };
9856         t18.c:1: error: Initializer element is not constant
9857
9858 2002-03-04  bela  <bela AT manik>
9859
9860         * /device/include/mcs51reg.h:
9861         ds89c420 register definition update
9862
9863 2002-03-03    <johan AT FRIJA>
9864
9865         * support/Util/SDCCerr.c: did something, but don't no why anymore
9866
9867         * support/regression/tests/bug-524691.c: made it a little less shy
9868
9869         * src/SDCCast.c (decorateType): fixed bug #524697
9870
9871         * src/SDCCast.c: made some lineno improvements
9872
9873         * src/SDCCval.c (getNelements): changed warning to error
9874
9875         * src/SDCCglue.c (printIvalArray): changed warning to error
9876
9877         * src/SDCCicode.c: fixed a warning for mingw
9878
9879         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9880
9881         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9882
9883 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9884
9885         * src/ds390/peeph.def:
9886         Added some more peephole rules
9887
9888         * src/ds390/gen.c: Various fixes & enhancements
9889
9890         * src/SDCClrange.c, src/SDCClrange.h:
9891         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9892
9893         * src/ds390/ralloc.c:
9894         various fixes & enhancements (ds390) specific
9895
9896         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9897         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9898         from rallocs.
9899
9900         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9901
9902 2002-03-02    <johan AT FRIJA>
9903
9904         * src/SDCCast.c (decorateType): fixed bug #524708
9905
9906         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9907
9908         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9909
9910 2002-03-01  Michael Hope  <michaelh AT vroom>
9911
9912         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9913
9914         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9915
9916 2002-03-01    <johan AT FRIJA>
9917
9918         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9919
9920         * src/SDCCast.c (decorateType): fixed bug #524209
9921
9922         * src/SDCCval.c (valNot): fixed bug #524195
9923
9924 2002-02-26    <johan AT balder>
9925
9926         * src/xa51/gen.c: fixed a warning
9927
9928         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9929
9930         * src/SDCCast.c (decorateType): fixed bug #522534
9931
9932 2002-02-23    <johan AT balder>
9933
9934         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9935
9936 2002-02-22    <johan AT balder>
9937
9938         * src/SDCCast.c: fixed bug #514865
9939
9940         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9941
9942 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9943
9944         * sdcc/src/SDCCloop.c:
9945         Previous fix was not good. basic blocks that have "break" or "return" are
9946         not really partof a loop , but live ranges used in these blocks should
9947         be live thru the entire loop, so set partOfLoop but don't add them to
9948         loop region
9949
9950 2002-02-21    <johan AT FRIJA>
9951
9952         * src/SDCCcse.c: fixed bug #514308
9953
9954 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9955
9956         * src/SDCCloop.c:
9957         Fixed BUG #519583. If a conditional block ended in a return/break
9958         statement inside a loop, it was not being considered part of the loop.
9959
9960         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9961
9962 2002-02-10  Karl Bongers <karl AT turbobit.com>
9963
9964         * debugger/*:
9965         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9966         with lots of comments and notes.
9967
9968         * device/examples/test2.c:
9969         Fix bug, "red" variable not being initialized(compiler complained).
9970
9971         * device/examples/Makefile, examples/test3.c:
9972         Add Makefile in device/examples folder, compiles test3.c
9973         for use as a multiple module SDCDB test case.
9974
9975         * sim/ucsim/cmd.src/cmdset.cc:
9976         Took out debug printfs in ucsim "next" command.
9977
9978         * sim/ucsim/xa.src:
9979         Karl and Johan start ucsim XA support.  Most dissassembly working,
9980         about 75% emulation done(plenty of work remaining).
9981
9982         * sim/ucsim/z80.src:
9983         Add Z80 support to ucsim, add test-ucz80 regression test,
9984         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9985         Notice z80 compiler fails on examples/test3.c/crc code.
9986
9987 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9988
9989         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9990         Added support for --parms-in-bank1
9991
9992         * src/ds390/peeph.def:
9993         added a few more peephole optimzations
9994
9995         * src/ds390/main.c:
9996         1) added __builtin_inp & __builtin_outp used to read in data of given length
9997            from a memory mapped port
9998         2) added __builtin_memcmp
9999         3) added __builtin_swapw swap bytes of a short
10000
10001         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10002         1) handle multiple send & receives from register bank1
10003         2) ralloc can now allocate DPTR1 to some liveRanges
10004
10005         * src/SDCCsymt.c, src/SDCCsymt.h:
10006         changes to handle multiple sends & receives
10007
10008         * src/SDCCptropt.h:
10009         added some pointer arithmetic optimization
10010
10011         * src/SDCCptropt.c:
10012         added some pointer arithmetic optimizations but not stable yet so not
10013         called from anywhere (will get this working shortly)
10014
10015         * src/SDCCopt.c: fixed for multiple sends & receives
10016
10017         * src/SDCCmain.c:
10018         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10019         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10020            set preprocessor defines (depending on options)
10021
10022         * src/SDCCicode.c, src/SDCCicode.h:
10023         changes made to handle multiple sends & receives
10024
10025         * src/SDCCglobl.h:
10026         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10027
10028         * src/SDCCcse.c, src/SDCCcse.h:
10029         added function findbackward def (to be used in upcoming optimization)
10030
10031         * src/SDCCcflow.c, src/SDCCcflow.h:
10032         added function returnAtEnd - to determine if a basic block terminates with
10033         a RETURN iCode
10034
10035         * src/SDCCast.c, src/SDCCast.h:
10036         added option parms-in-bank1
10037
10038         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10039         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10040         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10041         adjusted for --parms-in-bank1 option
10042
10043         * device/include/string.h:
10044         donot redefine "reentrant" keyword
10045
10046         * device/include/ds80c390.h: Added some more SFRs
10047
10048 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10049
10050         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10051
10052 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10053
10054         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10055
10056 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10057
10058         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10059
10060 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10061
10062         * Added --xram-movc option
10063
10064 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10065
10066         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10067
10068 2002-01-11  Johan Knol
10069
10070         * Added math lib of Jesus Calvino-Fraga
10071
10072 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10073
10074         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10075         * support/regression/Makefile: new target test-mcs51-stack-auto
10076         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10077
10078 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10079
10080         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10081
10082 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10083
10084         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10085
10086 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10087
10088         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10089
10090         * src/SDCCglue.h: add definition for printIvalChar()
10091
10092 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10093
10094         * src/SDCCast.c: fix #498138 by Johan
10095
10096         * src/SDCCglue.c: fix #498138 by Johan
10097
10098 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10099
10100         * support/regression/Makefile: fix clean
10101
10102         * support/regression/ports/ds390/support.c: fix transmission of last character
10103
10104 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10105
10106         * /sdcc/src/ds390/gen.c:
10107         a) improved computing address of stack variable
10108         b) took out some #if 0 code
10109         c) improved parmBytes adjustment
10110         d) improved genPlusIncr & genMinusIncr
10111         e) genCmp could generate bad code (when left assigned to DPTR)
10112         f) Fixed bug in hasInc
10113
10114         * /sdcc/src/ds390/ralloc.c:
10115         a) packRegsForSupport could mess up live information (Fixed)
10116         b) packRegsDPTRuse could be incorrect for left & right shift
10117
10118         * /sdcc/src/mcs51/ralloc.c:
10119         packRegsForSupport could mess up the live information (Fixed)
10120
10121         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10122
10123         * /sdcc/src/SDCCast.c:
10124         can reverse a loop even if function call is present as long
10125         as the loop control variable is local & is not passed as parameter
10126
10127 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10128
10129         * /sdcc/ChangeLog: *** empty log message ***
10130
10131         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10132         More builtin function additions for TININative
10133
10134         * /sdcc/src/ds390/ralloc.c:
10135         Had broken the regression testsuite
10136
10137         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10138
10139         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10140         Added funcattr hasStackParms will be set for reentrant functions when there
10141         are paramteres on the stack, this helps in minimizing frame pointer generation
10142         typeFromStr can handle function pointers now
10143
10144         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10145         *** empty log message ***
10146
10147 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10148
10149         * /src/ds390/gen.c, /src/ds390/main.c:
10150         More builtin function additions for TININative
10151
10152         * /src/ds390/ralloc.c:
10153         Had broken the regression testsuite
10154
10155         * /src/SDCCast.c: Fixed a bug in dumptree
10156
10157         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10158         Added funcattr hasStackParms will be set for reentrant functions when there
10159         are paramteres on the stack, this helps in minimizing frame pointer generation
10160         typeFromStr can handle function pointers now
10161
10162         * /doc/builtins.txt, /doc/TININative.txt:
10163         *** empty log message ***
10164
10165
10166 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10167
10168         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10169         ALPHA version for -mTININative
10170
10171         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10172         updated to reflect changes in the port structure
10173
10174         * /src/port.h:
10175         added function do_assemble (similar to do_link) if non-null this function
10176         will be called to do assembly (-mTININative) requires a multi command
10177         assembly
10178         added function genAssemblerEnd will be called to generate assembler Epilogue
10179
10180         * /src/SDCCsymt.c:
10181         added _JavaNative to debug info printing
10182
10183         * /src/SDCCmain.c: added option --tini-libid
10184         added port->do_assemble function (-mTININative) has a multi command assemble
10185
10186         * /src/SDCCglue.c: Disabled "constExpr" check
10187         added port->genAssemblerEnd function
10188
10189         * /src/SDCCglobl.h: Added option --tini-libid value
10190
10191         * /src/SDCCast.h:
10192         tookout optimizeCompare from the header (has no external references)
10193
10194         * /src/SDCCast.c: made one more function "static"
10195
10196 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10197
10198         * src/z80/mappings.i: Added z80asm support.
10199
10200         * src/z80/main.c: Added z80asm support on --asm=z80asm
10201
10202         * src/z80/gen.c: Fixed asm portability issues.
10203
10204         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10205
10206         * src/SDCCglue.c (printExterns): Added global/extern split.
10207
10208 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10209
10210         * support/regression/Makefile: added test for mcs51 model large
10211
10212         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10213
10214         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10215
10216 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10217
10218         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10219
10220 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10221
10222         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10223
10224         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10225
10226 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10227
10228         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10229
10230         * support/regression/tests/simplefloat.c: Port to mcs51.
10231
10232 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10233         * support/regression/tests/bug-485362.c: Added.
10234
10235         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10236
10237         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10238
10239         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10240
10241         * src/z80/gen.c (aopDump): Added a dump function.
10242
10243 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10244         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10245
10246         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10247
10248         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10249
10250         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10251
10252         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10253
10254         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10255
10256         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10257
10258         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10259
10260         * support/regression/ports/ds390/support.c: Use tinibios.
10261
10262         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10263
10264 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10265
10266         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10267         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10268
10269         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10270
10271         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10272
10273 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10274
10275         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10276
10277         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10278         (packRegsForIYUse): Created and optimised.
10279
10280 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10281
10282         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10283 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10284
10285         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10286
10287         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10288
10289         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10290
10291 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10292
10293         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10294
10295         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10296
10297 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10298
10299         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10300
10301         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10302
10303         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10304
10305 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10306
10307         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10308         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10309         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10310
10311         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10312
10313         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10314         (genNotFloat): Added.
10315         (genUminusFloat): Added.
10316
10317         * device/lib/z80/Makefile: Added floating pt stubs.
10318
10319         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10320
10321         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10322
10323         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10324
10325 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10326
10327         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10328
10329         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10330
10331         * sdcc/support/regression/Makefile: Add port ds390.
10332
10333         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10334
10335         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10336
10337         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10338
10339         * sdcc/support/regression/ports/ds390/support.c: Added.
10340
10341         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10342
10343         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10344
10345         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10346
10347 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10348
10349         * device/include/malloc.h: Added z80 and gbz80 support.
10350
10351         * device/lib/gbz80/heap.s: Added.
10352
10353         * device/lib/z80/heap.s: Added.
10354
10355         * device/lib/malloc.c: Added z80 and gbz80 support.
10356
10357         * support/regression/tests/malloc.c (testMalloc): Added.
10358
10359         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10360
10361         * support/regression/tests/bug-478094.c: Added.
10362
10363         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10364
10365 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10366
10367         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10368
10369         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10370
10371         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10372
10373         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10374
10375         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10376
10377 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10378
10379         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10380
10381 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10382
10383         * support/regression/tests/bug-477927.c: Added.
10384
10385         * src/z80/peeph.def: Added minor rules.
10386
10387         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10388
10389         * src/z80/peeph.def: Added jump optimisation modification.
10390
10391 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10392
10393         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10394
10395 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10396
10397         * support/regression/tests/funptrs.c: Added.
10398
10399 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10400
10401         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10402
10403 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10404
10405         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10406
10407         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10408
10409         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10410         (movLeft2ResultLong): Created.
10411
10412         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10413         (joinPushes): Added.  Joins two char pushes into a word push.
10414
10415 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10416
10417         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10418
10419         * support/makebin/Makefile (install): Added creation of dest dir.
10420
10421 2001-10-24 Karl Bongers <karl AT turbobit.com>
10422
10423         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10424
10425 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10426
10427         * src/z80/ralloc.c: Turned off faulty pack for one use.
10428
10429         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10430
10431         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10432
10433 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10434
10435         * support/regression/Makefile: Improved clean
10436
10437         * support/regression/ports/gbz80/spec.mk: Added clean
10438
10439         * support/regression/ports/host/spec.mk: Added clean
10440
10441         * support/regression/ports/z80/spec.mk: Added clean
10442
10443         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10444
10445         * support/regression/ports/mcs51/timeout.c: little improvements
10446
10447 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10448
10449         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10450
10451         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10452
10453         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10454
10455 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10456
10457         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10458
10459         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10460
10461 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10462         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10463
10464         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10465
10466         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10467
10468         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10469
10470         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10471
10472         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10473
10474         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10475
10476         * support/regression/tests/longor.c: Added.
10477
10478 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10479
10480         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10481
10482         * as/mcs51/aslink.h: define PATH_MAX
10483
10484         * as/mcs51/asm.h: define PATH_MAX
10485
10486         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10487
10488         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10489
10490         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10491
10492         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10493
10494         * src/SDCCglobl.h: define PATH_MAX
10495
10496         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10497
10498         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10499
10500 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10501
10502         * src/z80/gen.c (gencjneshort): Fixed
10503
10504         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10505
10506 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10507
10508         * support/regression/tests/bug-469671.c: Added.
10509
10510         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10511
10512 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10513
10514         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10515
10516         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10517
10518 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10519
10520         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10521
10522         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10523
10524         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10525
10526         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10527
10528         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10529
10530         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10531
10532         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10533
10534 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10535
10536         * 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.
10537
10538         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10539
10540         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10541
10542 2001-10-07    <johan AT FRIJA>
10543
10544         * device/lib/gets.c (gets): fixed the return value.
10545
10546 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10547         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10548
10549         * 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.
10550
10551         * 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.
10552
10553         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10554
10555         * src/pic/gen.c: Removed Safe_strdup.
10556
10557         * configure.in: Added option to enable libgc support.
10558
10559         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10560         (bitVectUnion): Optimised.
10561         (bitVectIntersect): Optimised.
10562         (bitVectBitsInCommon): Optimised.
10563         (bitVectCplAnd): Optimised.
10564
10565         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10566
10567 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10568
10569         * src/SDCCmain.c: distinguish between assembler debug and plain options
10570
10571         * src/avr/main.c:   remove standard assembler options
10572
10573         * src/ds390/main.c: remove standard assembler options
10574
10575         * src/mcs51/main.c: remove standard assembler options
10576
10577         * src/port.h: removed "PENDING" comment
10578
10579 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10580
10581         * src/device/lib/_mulint.c  : new, with assember functions
10582
10583         * src/device/lib/_mullong.c : new, with assember functions
10584
10585         * src/device/lib/_divuint.c : with assember functions
10586
10587         * src/device/lib/_divsint.c : with assember functions
10588
10589         * src/device/lib/_divulong.c: with assember functions
10590
10591         * src/device/lib/_divslong.c: with assember functions
10592
10593         * src/device/lib/_moduint.c : with assember functions
10594
10595         * src/device/lib/_modsint.c : with assember functions
10596
10597         * src/device/lib/_modulong.c: with assember functions
10598
10599         * src/device/lib/_modslong.c: with assember functions
10600
10601         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10602
10603         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10604
10605         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10606                                       replaced _mululong.c and _mulslong.c by _mullong.c
10607
10608 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10609
10610         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10611
10612 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10613
10614         * src/SDCCglue.c: test, if win32api is available for MINGW
10615
10616 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10617
10618         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10619         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10620         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10621         * support/regression/ports/host/spec.mk: removed GENERIC
10622         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10623         * support/regression/ports/z80/spec.mk: removed GENERIC
10624
10625 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10626
10627         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10628
10629         * support/regression/tests/bug-467035.c: Created.
10630
10631 2001-10-01    <johan AT FRIJA>
10632
10633         * src/SDCC.y: fixed bug #466586 part 1
10634
10635 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10636
10637         * SDCCicode.c: z80 has no generic pointers
10638         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10639
10640 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10641
10642         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10643
10644 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10645
10646         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10647
10648         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10649
10650 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10651
10652         * configure.in: Fixed up so that ucsim is only configured once.
10653
10654         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10655
10656         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10657         (getPathDifference): As above.
10658
10659         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10660
10661         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10662
10663 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10664         * .version: Updated to 2.3.1
10665
10666         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10667         Added copyright header.
10668
10669         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10670         (assemble): Added support for macro based assembler commands.
10671         (linkEdit): Added support for macro based linker commands.
10672         (preProcess): Changed the pre-processor to use macros.
10673         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10674         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10675
10676         * device/lib/z80/crt0.s: Added module name for debugging.
10677
10678 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10679
10680         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10681
10682         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10683
10684         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10685
10686         * src/Makefile.in: Added SDCCmacro and SDCCutil
10687
10688 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10689
10690         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10691
10692 2001-09-16    <johan AT FRIJA>
10693
10694         * 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.
10695
10696 2001-09-15    <johan AT FRIJA>
10697
10698         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10699         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10700
10701 2001-09-11    <johan AT FRIJA>
10702
10703         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10704
10705 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10706
10707         * support/regression/tests/bug-460444.c: Added test case.
10708
10709         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10710         (genCast): Added justification for all of the asserts.
10711
10712 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10713
10714         * support/regression/support.c: _xdata replaced by xdata
10715
10716         * support/regression/spec.mk: removed _generic
10717
10718 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10719
10720         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10721
10722         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10723         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10724
10725         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10726
10727         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10728
10729         * support/regression/tests/bug-460010.c: Added test case.
10730
10731         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10732
10733 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10734
10735         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10736
10737         * support/regression/testfwk.c: removed workaround for bug #436344
10738
10739         * support/regression/tests/bp.c: use less memory with mcs51
10740
10741         * support/regression/tests/bug-441448.c: use less memory
10742
10743         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10744
10745         * support/regression/collate-results.py: typo
10746
10747 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10748
10749         * support/regression/tests/fetchoverlap.c: Added new test case.
10750
10751         * support/regression/tests/bp.c: Added new test case.
10752
10753         * support/regression/tests/bug-448984.c: Added new test case.
10754
10755         * support/regression/tests/pow2shifts.c: Added new test case.
10756
10757         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10758         (genlshTwo): Fixed right shift for count > 8.
10759
10760         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10761
10762 2001-09-08    <johan AT FRIJA>
10763
10764         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10765
10766 2001-09-07    <johan AT FRIJA>
10767
10768         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10769
10770         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10771
10772 2001-09-06    <johan AT FRIJA>
10773
10774         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10775         * bernhard noted me at this: "() equals to (void)" (1.38)
10776
10777 2001-09-05    <johan AT FRIJA>
10778
10779         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10780
10781 2001-09-04    <johan AT FRIJA>
10782
10783         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10784
10785
10786 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10787
10788         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10789
10790 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10791
10792         * link/z80/aslink.h: Fixed path for PATH_MAX
10793
10794 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10795
10796         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10797
10798         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10799
10800         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10801
10802         * 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.
10803
10804 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10805
10806         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10807         (genCmp): Fixed up genCmp for the GB with longs.
10808
10809         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10810
10811         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10812
10813         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10814
10815         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10816
10817 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10818
10819         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10820
10821 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10822
10823         * 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.
10824
10825         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10826
10827 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10828
10829         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10830
10831         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10832
10833 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10834
10835   * sim/ucsim/configure:    little improvement of Cygwin-detection
10836   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10837   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10838   * support/regression/tests/bug-221100.c: small changes for mcs51
10839   * support/regression/tests/bug-221168.c: small changes for mcs51
10840   * support/regression/tests/bug-227710.c: small changes for mcs51
10841   * support/regression/tests/staticinit.c: small changes for mcs51
10842   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10843   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10844   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10845
10846 $Revision$