doc/sdccman.lyx: reverted to version 1.129 of december as my latest changes seem...
[fw/sdcc] / ChangeLog
1 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2
3         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
4         changes seem to cause (trigger?) problems with the build system.
5
6 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
7
8         * src/SDCCpeeph.c (operandsLiteral): new, added,
9           (callFuncByName): inserted operandsLiteral
10         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
11
12 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
13
14         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
15         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
16
17 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
18
19         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
20           implemented patch 1120823 Thanks to Willy De la Court (normal
21           interrupts need an interrupt number now if they are made critical),
22           and enabled nesting of critical functions though not for gbz80
23           (genCritical, genEndCritical): added functions
24           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
25         * src/z80/mappings.i: added "ei" to all mappings
26
27 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
28
29         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
30         submitted by the Debian SDCC maintainer Aurelien Jarno:
31         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
32         archive with gcc 4.1 on mips and wrote the patch"
33
34 2006-03-16 Raphael Neider <rneider AT web.de>
35
36         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
37           the left operand is shorter than the result (c* = lit-c* + int),
38           fixes bug #1450796
39         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
40           OP_SYMBOL
41
42 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
43
44         * src/.version: increased version number to 2.5.5
45         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
46         linking is done manually in pic16 port's _linkEdit,
47         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
48         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
49         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
50         allocate asmop as AOP_ACC,
51         (aopForRemat): added parameter 'bool result' in function declaration,
52         (pic16_aopGet): return AOP_ACC when accessing WREG,
53         (pic16_popGetTempReg): minor modification,
54         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
55         'pic16_allocWithIdx',
56         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
57         calling function in absolute addresses,
58         (genAssign): take into account AOP_ACC asmop,
59         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
60         * src/pic16/pcoderegs.c: some debug functions and lines added,
61         * src/pic16/ralloc.c (decodeRegType): added but commented out,
62         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
63         register too,
64         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
65         call to allocReg, not by manually allocating a new one,
66         (pic16_assignRegisters): now before going through the register
67         allocating functions mark all registers as free. This eliminates some
68         side effects resulting from peephole parser done earlier in the backbone
69
70 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
71
72         * src/SDCCicode.c (geniCodeLogic),
73         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
74
75 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
76
77         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
78           (genSend): bugfix, do not allocate and free twice,
79           (shiftRLong): handle partially overlapping aops
80         * support/regression/tests/bitopcse.c: fixed warning redefined idata
81
82 2006-03-08 Borut Razem <borut.razem AT siol.net>
83
84         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
85           for pic16
86
87 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
88
89         * support/regression/tests/bug1409955.c: new, added
90         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
91         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
92           (aopForSym, aopOp): increment asmop.allocated if reused,
93           (freeAsmop): decrement asmop.allocated and check for zero instead of
94           using asmop.freed,
95           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
96           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
97            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
98            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
99            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
100            genSignedRightShift, genRightShift, genDataPointerGet,
101            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
102            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
103             in reverse order from allocation,
104           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
105             added swappedLR to keep track
106         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
107           pdata & code for GCC, z80, gbz80 & hc08
108         * support/regression/tests/zeropad.c: moved defines to testfwk.h
109
110 2006-03-08 Raphael Neider <rneider AT web.de>
111
112         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
113
114 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
115
116         * device/include/mcs51/c8051f410.h: new SiLabs mcu
117         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
118         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
119
120 2006-03-06 Borut Razem <borut.razem AT siol.net>
121
122         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
123           made the linker quiet
124
125 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
126
127         * src/pic16/gen.c (genPcall): fixed bug #1443644
128         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
129         which dumps before the function entry point a data byte which represents
130         the number of the local variables used by the specified function, added
131         'xinst' for initial support for Extended Instruction Support,
132         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
133         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
134         port->fun_prefix anymore (may change later),
135         (genFunction, genEndFunction): do not store/restore local registers for
136         _main (this should take care the --main-return command line option in
137         the future),
138         (genOr): removed some legacy pic-port instructions,
139         * src/pic16/genarith.c (genAddLit): re-enabled old code because
140         performing operations with SFR's causes data to be written more than
141         once to each SFR. Perhaps SFRs should be handled in special cases...
142         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
143         pcode.h
144         * src/pic16/main.c (_process_pragma): stack bound checking did not take
145         into account for stack starting position,
146         (struct OPTIONS pic16_optionsTable): added command line argument
147         --extended or -y for Extended Instruction Support,
148         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
149         (deassignLRs): *** perhaps the most important change, old 'for' code
150         (commented out for reference), didn't account for some registers which
151         were left marked 'not free' after a pointer operation. The change
152         reduces register usage a lot in some cases
153
154 2006-03-04 Borut Razem <borut.razem AT siol.net>
155
156         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
157           _clean
158         * support/regression/tests/bug-524697.c: decreased array size for
159           mcs51 to fit into the internal RAM
160         * support/regression/Makefile.in: a little bit more verbose
161
162 2006-03-03 Borut Razem <borut.razem AT siol.net>
163
164         * support/regression/fwk/lib/testfwk.c,
165           support/regression/fwk/include/testfwk.h: introduced function
166           _prints(), nonrecursive _printn(), call _initEmu() from main()
167         * support/regression/ports/gbz80/support.asm,
168           support/regression/ports/ucz80/support.asm,
169           support/regression/ports/z80/support.asm,
170           support/regression/ports/ds390/support.c,
171           support/regression/ports/hc08/support.c,
172           support/regression/ports/host/support.c,
173           support/regression/ports/mcs51/support.c,
174           support/regression/ports/xa51/support.c: added empty _initEmu()
175           function
176         * support/regression/ports/pic16/gpsim.cmd,
177           support/regression/ports/pic16/spec.mk,
178           support/regression/ports/pic16/support.c,
179           support/regression/Makefile.in: added pic16 regression test
180
181 2006-03-01 Raphael Neider <rneider AT web.de>
182
183         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
184           genConstPointerGet): use safe way of generating MOVFF to cover
185             literals as well as registers, fixes bug #1440527
186         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
187             dereference
188           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
189             more correctly, fixes bug #1232186
190           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
191         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
192             gplink guess the correct processor in more cases, applied patch
193             from Till Riedel attached to and fixing bug #1436552
194
195 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
196
197         * support/regression/tests/array.c: added, contains check for #1434401
198         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
199
200 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
201
202         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
203         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
204         * device/include/mcs51/c8051f326.h,
205         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
206         * device/include/mcs51/c8051f000.h,
207         * device/include/mcs51/c8051f018.h,
208         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
209           PCON_IDLE,PCON_STOP and added sfr16 definitions
210
211 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
212
213         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
214           genGetWord): fixed bug 1409955
215
216 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
217
218         * device/include/hc08/mc68hc908gp32.h,
219         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
220
221 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
222
223         * src/SDCCast.c (constExprValue): return NULL if not a value
224         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
225         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
226         * support/regression/tests/bitfields.c: enabled signed bitfield for all
227
228 2006-02-13 Borut Razem <borut.razem AT siol.net>
229
230         * src/regression/ptrarg.c: added, fails due to bug #1430967
231         * src/regression/Makefile: ptrarg.c added, ...
232
233 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
234
235         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
236         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
237
238 2006-02-11 Borut Razem <borut.razem AT siol.net>
239
240         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
241           print "Processor: xxx" message to stdout only if --verbose
242
243 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
244
245         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
246         * support/regression/tests/bug1426356.c: added
247         * support/regression/tests/bitfields.c: removed 2 tests
248
249 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
250
251         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
252         * device/include/mcs51/c8051f330.h,
253         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
254           PCON_IDLE,PCON_STOP and added sfr16 definitions
255         * device/lib/_divsint.c,
256         * device/lib/_divuint.c,
257         * device/lib/_divulong.c,
258         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
259           register bank bug for small stackauto
260
261 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
262
263         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
264
265 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
266
267         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
268         * all.dsp: corrected several bin paths
269         * device/include/mcs51/c8051f120.h,
270         * device/include/mcs51/c8051f300.h,
271         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
272           to PCON_IDLE,PCON_STOP
273         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
274         * device/lib/printf_large.c (output_float): fixed bug 1388703
275         * support/regression/tests/bug1057979.c: added test for bug 1388703
276
277 2006-02-08 Raphael Neider <rneider AT web.de>
278
279         * src/pic/pcode.c (pciTRIS): fixed typo,
280           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
281           (LinkFlow): fixed handling of flows that end in a call,
282           (ReuseReg): perform safety check earlier
283         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
284             to work with flows at the beginning of a pBlock,
285             fixes #1426557 (Symbol not previously defined),
286           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
287             usage information
288           (RemoveUnusedRegisters): update register usage info
289         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
290             created, reuse existing ones instead
291         * src/pic/gen.c (genPcall): fixed #1424719
292
293 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
294
295         * link/z80/lkmain.c,
296         * link/z80/lklex.c,
297         * link/z80/lkdata.c,
298         * link/z80/aslink.h: fixed build on current cygwin:
299         replaced getline() by lk_getline()
300
301 2006-02-01 Borut Razem <borut.razem AT siol.net>
302
303         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
304           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
305           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
306           src/regression/bool1.c, src/regression/bool2.c,
307           src/regression/bool3.c, src/regression/call1.c,
308           src/regression/compare.c, src/regression/compare10.c,
309           src/regression/compare2.c, src/regression/compare3.c,
310           src/regression/compare4.c, src/regression/compare5.c,
311           src/regression/compare6.c, src/regression/compare7.c,
312           src/regression/compare8.c, src/regression/compare9.c,
313           src/regression/configword.c, src/regression/for.c,
314           src/regression/inline.c, src/regression/mult1.c,
315           src/regression/nestfor.c, src/regression/or1.c,
316           src/regression/pointer1.c, src/regression/ptrfunc.c,
317           src/regression/rotate1.c, src/regression/rotate2.c,
318           src/regression/rotate3.c, src/regression/rotate4.c,
319           src/regression/rotate5.c, src/regression/rotate6.c,
320           src/regression/rotate7.c, src/regression/string1.c,
321           src/regression/struct1.c, src/regression/sub.c,
322           src/regression/sub2.c, src/regression/switch1.c,
323           src/regression/while.c, src/regression/xor.c,
324           src/regression/create_stc, src/regression/simulate,
325           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
326           regression tests
327         * src/regression/gpsim_assert.h: added
328
329 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
330
331         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
332         ((void (code *) (void)) 0) ();
333         * as/hc08/aslex.c,
334         * as/hc08/aslink.h,
335         * as/hc08/asm.h,
336         * as/hc08/asmain.c,
337         * as/hc08/lkdata.c,
338         * as/hc08/lklex.c,
339         * as/hc08/lkmain.c,
340         * as/mcs51/aslex.c,
341         * as/mcs51/aslink.h,
342         * as/mcs51/asm.h,
343         * as/mcs51/asmain.c,
344         * as/mcs51/lkdata.c,
345         * as/mcs51/lklex.c,
346         * as/mcs51/lkmain.c,
347         * as/z80/aslex.c,
348         * as/z80/asm.h,
349         * as/z80/asmain.c: fixed build on current cygwin:
350         replaced getline() by as_getline()
351
352 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
353
354         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
355         declarator in the symbol chain
356         * src/SDCCsymt.h,
357         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
358         parameter list for function pointers
359         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
360         * support/regression/tests/bug-716242.c: added
361
362 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
363
364         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
365         offset if possible
366         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
367
368 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
369
370         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
371         inifinitely recurseable, added static
372         * support/regression/tests/bug-1408066.c: added
373
374 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
375
376         * src/SDCCicode.h,
377         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
378         renamed, added possibility to create "postLoopLbl"-labels
379         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
380         newiTempLoopHeaderLabel
381         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
382         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
383         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
384         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
385         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
386         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
387         (basicInduction): fixed bug #136564, made static,
388         (loopInduction): changed parameter of basicInduction, made static,
389         (addPostLoopBlock): added
390         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
391         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
392         findLoopEndSeq
393         * support/regression/tests/bug-136564.c: added
394         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
395         --std-sdcc99 to LIBSDCCFLAGS
396
397 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
398
399         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
400         while loop
401         * support/regression/tests/bug-1406131.c: added
402
403 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
404
405         * src/SDCCast.c (decorateType): fix promotion of unary minus
406         * src/SDCCsymt.c (computeType): beautified
407         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
408         (valUnaryPM, valComplement): fix sign and promotion,
409         (valNot): ANSI: result type is int (SDCC: unsigned char)
410         * support/regression/tests/uminus.c: speedup by removing superflous
411         test case 'int'
412         * support/regression/tests/onebyte.c: added promotion and signedness
413         tests for unary minus
414         * support/regressions/tests/bug-477927.c: disable warning about
415         uninitialized variables
416         * support/regression/tests/not.c: added
417
418 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
419
420         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
421         * src/mcs51/gen.c (gen51Code): show final register usage after
422         fillGaps in asm with --i-code-in-asm
423         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
424         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
425         incUsed, rliveClear, adjustIChain): made static,
426         (setFromRange): excluded because it's unused,
427         (findPrevUseSym, markWholeLoop): added,
428         (findPrevUse): rewritten; fixes bug 895992; now a complete search
429         through all branches of predecessors enables sdcc to emit the warning
430         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
431         (rlivePoint): made static, added parameter emitWarnings which is only
432         true during the first run out of two,
433         (findRecursiveSucc, findRecursivePred): removed,
434         (computeLiveRanges): made static, added parameter emitWarnings,
435         (dumpIcRlive): added for debugging only
436         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
437         removed prototype of setFromRange()
438         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
439         in call of computeLiveRanges()
440         * support/regression/tests/bug-895992.c: added
441         * support/regression/tests/bug-971834.c: added
442         * support/valdiag/tests/bug-895992.c: added
443         * support/valdiag/tests/bug-971834.c: added
444
445 2005-12-18 Raphael Neider <rneider AT web.de>
446
447         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
448           (genUnpackBits): improved code for direct operands,
449           (genPackBits): improved code for literal assignment to bitfields
450             and for direct destination operands (no FSR indirection),
451             prevented redundant AND, fixes #1362800,
452           (AccLsh): added parameter to disable masking of the result
453         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
454           skip instructions with side-effects (like incfsz),
455           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
456         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
457         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
458           fixes #1375263
459
460 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
461
462         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
463         volatile variables as spill location
464
465 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
466
467         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
468         replacing literals
469         * support/regression/tests/bug-1376320.c: added
470
471 2005-12-08 Raphael Neider <rneider AT web.de>
472
473         * src/pic/device.c: renamed is_shared to pic14_is_shared
474         * src/pic/gen.c (genIfx): re-enabled handling of sbits
475         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
476           (is_valid_identifier): added for above workaround
477
478 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
479
480         * device/lib/Makefile.in: fixed to enable port-specific-objects
481         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
482           char, thanks Hubert Sack
483         * doc/sdccman.lyx: documented --xstack-loc,
484           elaborated a bit more on interrupts and pitfalls,
485           removed "setjmp/longjmp unsupported",
486           documented some unsupported C99 features
487         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
488         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
489           if, thanks Hubert Sack
490         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
491         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
492           make make_library
493         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
494           regression tests can report resource usage (rfe 700441)
495         * support/regression/collate-results.py: report resource usage
496         * support/regression/ports/ds390/spec.mk,
497         * support/regression/ports/hc08/spec.mk,
498         * support/regression/ports/mcs51/spec.mk,
499         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
500         * support/regression/ports/ds390/uCsim.cmd,
501         * support/regression/ports/hc08/uCsim.cmd,
502         * support/regression/ports/mcs51/uCsim.cmd,
503         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
504         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
505           library, use the default one
506         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
507           building the library
508
509 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
510
511         * config.dsp: added dependency on .version and configure_vc.awk
512         * device/include/setjmp.h: updated for --stack-auto and --xstack
513         * device/include/mcs51/at89c51snd1c.h: corrected line endings
514         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
515         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
516         * device/lib/libsdcc.lib: added _setjmp
517         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
518           (decorateType): fixed bug 1372851,
519           (optimizeGetHbit): fixed warning
520         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
521           array initialisation
522         * support/regression/tests/bug1057979.c: added test for bug 1358192
523         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
524
525 2005-12-03 Borut Razem <borut.razem AT siol.net>
526
527         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
528           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
529
530 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
531
532         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
533         createIval): implement symbol independant "flexible array member",
534         (createIvalCharPtr): implemented flexible array initialisation with a
535         string
536         * src/SDCCsymt.c (copyStruct): removed,
537         (getSize): fixed misleading comment,
538         (getAllocSize): removed, the additional allocation size is now in
539         sym->flexArrayLength,
540         (checkStructFlexArray): new, syntax checks for flexible array members,
541         (compStructSize): added syntax checks for "flexible array members"
542         (copyStruct): removed,
543         (copyLinkChain): removed inefficient fix for bug 770487
544         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
545         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
546         symbol->flexArrayLength
547         * src/SDCCerr.c,
548         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
549         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
550         * support/regression/tests/structflexarray.c: added
551         * support/valdiag/tests/structflexiblearray.c: added
552
553 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
554
555         * src/SDCCast.c (decorateType): fixed bug 1368489
556         * support/Util/SDCCerr.c,
557         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
558
559 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
560
561         * device/include/mcs51/at89c51snd1c.h: added file submitted by
562           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
563
564 2005-11-27 Borut Razem <borut.razem AT siol.net>
565
566         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
567           support/cpp2/mkdeps.h: added command line option
568           -obj-ext=<extension> to SDCPP to define object file externion, used
569           for generation of make dependencies (-M)
570         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
571
572 2005-11-26 Borut Razem <borut.razem AT siol.net>
573
574         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
575           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
576           added pic and pic16 libraries
577
578 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
579
580         * device/include/float.h: Corrected typo in prototype of __fsgt
581
582 2005-11-25 Borut Razem <borut.razem AT siol.net>
583
584         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
585           added creation of model-mcs51-stack-auto libraries
586
587 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
588
589         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
590         and fields-list too
591         * src/SDCCast.c (createIvalArray): removed obsolete comment
592
593 2005-11-24 Borut Razem <borut.razem AT siol.net>
594
595         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
596           added missing device/lib/mcs51/crt*.asm sources
597
598 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
599
600         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
601
602 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
603
604         * device/lib/_fs2schar.c,
605         * device/lib/_fs2sint.c,
606         * device/lib/_fs2slong.c: optimized inline asm
607
608 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
609
610         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
611           Better handling of floats between -1.0 and 0.0.
612
613 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
614
615         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
616           (the missing "if"s prohibited removal of redundant labels)
617
618 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
619
620         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
621           Properly convert floats between -1.0 and 0.0 to long, int, and char
622           types (max integer value of negative floats tends to zero).
623         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
624           Removed changes made so to work properly with floats between
625           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
626           and _fs2char.c
627
628 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
629
630         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
631         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
632         (genCast) cosmetic change
633         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
634         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
635         from mcs51
636         * support/regression/tests/bitfields (testSignedBitfields): added
637
638 2005-11-18 Borut Razem <borut.razem AT siol.net>
639
640         * sdcc/device/lib/Makefile.in: remove all unnecessary files
641         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
642           introduced SILENT option to make building of pic16 libraries less
643
644 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
645
646         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
647           Now they work properly with floats between -1.0 and 0.0
648         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
649
650 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
651
652         * src/SDCCicode.c (printOperand): added missing else
653
654 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
655
656         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
657         reformatted for better readability
658         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
659         signed bitfields
660
661 2005-11-17 Borut Razem <borut.razem AT siol.net>
662
663         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
664           introduced SILENT option to make building of pic16 libraries less
665           verbose - used for nightly snapshot build
666         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
667           available on Win32 platforms.
668         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
669           medium, large, pic and pic16
670
671 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
672
673         * device/lib/printf_large.c: Temporary patch for bug 1358192:
674           printf("%f"...) sets fraction to zero.
675
676 2005-11-16 Raphael Neider <rneider AT web.de>
677
678         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
679           fixes #1357221
680         * src/pic/gen.c (genIfx): implemented for CARRY bit
681         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
682           to generic pointers, fixes #1357332,
683           (pic16_movLit2f): NEW,
684           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
685
686 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
687
688         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
689
690 2005-11-11 Raphael Neider <rneider AT web.de>
691
692         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
693         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
694           compute pointer's type from operand,
695           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
696           improved single bit reads, fixes bug #1353379
697
698 2005-11-09 Borut Razem <borut.razem AT siol.net>
699
700         * support/scripts/sdcc.nsi: added lib/pic to the package
701
702 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
703
704         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
705
706 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
707
708         * support/regression/tests/bug1348008.c: added
709         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
710         * support/regression/tests/bug1337835.c: updated comment
711
712 2005-11-06 Borut Razem <borut.razem AT siol.net>
713
714         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
715           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
716           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
717           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
718           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
719           dynamic construction of cl_error_class and derivates - 2.nd try
720
721 2005-11-05 Borut Razem <borut.razem AT siol.net>
722
723         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
724           bug, which caused Bus Errors on sparc solaris
725
726 2005-11-04 Borut Razem <borut.razem AT siol.net>
727
728         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
729           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
730           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
731           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
732           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
733           and derivates to resolve the initialization problem on OSX
734
735 2005-11-02 Borut Razem <borut.razem AT siol.net>
736
737         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
738           corrected typo - #include <winsock2.h>
739
740 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
741
742         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
743           (_asxxxx_mapping): added org directive for future enhancements
744
745 2005-11-01 Borut Razem <borut.razem AT siol.net>
746
747         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
748           enabled sockets on WIN32
749         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
750
751 2005-10-31 Borut Razem <borut.razem AT siol.net>
752
753         * support/regression/generate-cases.py: escape backslashes in {testcase}:
754           WIN32 backslash path delimiters should be escaped when used in C strings
755         * support/regression/tests/bitfields.c: exclude failing assertions for
756           __CYGWIN32__ and __MINGW32__ hosts
757
758 2005-10-30 Borut Razem <borut.razem AT siol.net>
759
760         * src/SDCCutil.c: corrected double comparison typo
761
762 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
763
764         * device/lib/medium/Makefile: added for new memory model medium
765         * device/include/asm/mcs51/features.h: updated for medium/pdata
766         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
767           added Multiply & Accumulate sbit's and MAC0_PAGE define
768         * device/include/mcs51/c8051f300.h: added sfr16 definitions
769         * device/include/mcs51/c8051f310.h: added sfr16 definitions
770         * device/lib/_mullong.c: update for medium model
771         * device/lib/incl.mk: added medium model
772         * doc/sdccman.lyx: documented medium model
773         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
774         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
775         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
776         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
777           (allocParms): set SCLS and OCLS to pdata for medium model
778         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
779           for pdata,
780           (powof2): return <0 if not power of 2
781         * src/avr/gen.c (genBitWise): use updated powof2
782         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
783           (shiftR2Left2Result): small optimization in setup, save acc when storing,
784           (shiftLLeftOrResult): use B if necessary
785         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
786         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
787         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
788         * support/regression/Makefile.in: added test-mcs51-medium
789         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
790
791 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
792
793         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
794         specifier unsigned
795         * device/lib/time.c (mktime): fixed bug 1334315
796
797 2005-10-28 Raphael Neider <rneider AT web.de>
798
799         * device/include/pic/p16f_common.inc: added common declarations
800         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
801
802 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
803
804         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
805           (aopPutUsesAcc): added to predict accumulator use,
806           (assignResultValue): save acc if necessary,
807           (genMinusDec): store result if indirectly addressed,
808           (genDivOneByte):  save acc if necessary,
809           (movLeft2Result): bugfix if left already in acc,
810           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
811             attention to accumulator use (esp. pdata),
812           (genReceive): receive pdata correctly
813         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
814         * src/SDCCicode.h: added isOperandInPagedSpace prototype
815
816 2005-10-27 Raphael Neider <rneider AT web.de>
817
818         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
819
820 2005-10-27 Raphael Neider <rneider AT web.de>
821
822         * .version: changed version to 2.5.4
823         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
824         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
825           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
826             arithmetics support routines
827         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
828         * device/lib/Makefile.in: also create installdir for pic
829
830         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
831           pic14 port as well
832         * src/pic/device.c (dump_sfr): rewritten to delegate register
833           placement to the linker (use `extern sym' rather than sym EQU addr),
834           (validAddress): fixed to check last specified address
835         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
836           (popGetLit): truncate literal value to 8 bit,
837           (popGet): moved assert to more appropriate place
838           (popGetExternal): create pCode operand from and mark the according
839             symbol as being `extern'
840           (popGetAddr): added sanity check on immediate's offset, provide
841             GPOINTER tag on demand
842           (aopPut): fixed for immediates,
843           (mov2w_op): move operand's address or contents to WREG (depending on
844             operand type), safer variant of mov2w,
845           (movwf,call_libraryfunc): NEW, handy abbreviations,
846           (get_argument_pcop,get_return_val_pcop,pass_argument,
847           get_returnvalue): interface for accessing function parameters and
848             return values,
849           (assignResultValuei,genRet): use new parameter/return value interface
850           (pic14_getDataSize): back to old version handling generic pointers,
851           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
852             provided implementation and/or fixed old one,
853           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
854             calls, removed legacy 8051 reference code
855           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
856           (loadSignToC): NEW, move the operands sign bit to CARRY,
857           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
858             genRightShiftSigned, accepts negative shift counts,
859           (setup_fsr): load FSR and adjust IRP (indirect memory access),
860           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
861             generic pointers, __data pointers and __code pointers,
862           (genUnpackBits,genPackBits): rewritten to work with generic pointers
863             and signed bitfields, limit bitfields to 8 bit,
864           (genDataPointerGet): fixed number of bytes read,
865           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
866           (genPointerGet,genPointerSet): fixed handling of __code pointers,
867             pointers to constant data are no longer assumed to point to __code
868             space, removed invalid pointer types,
869           (bitpatternFromVal): retrieve the PICs representation of an integer
870             or float literal,
871           (genDataPointerSet): fixed assigning to po_immediate operands,
872           (genGenPointerSet): implemented as library call,
873           (genIfx): fixed incorrect condition,
874           (genAddrOf): limit generic pointers' addresses to 2 bytes,
875             provide GPOINTER tag according to destination's storage class,
876           (genCast): added code to handle casting to generic pointers, added
877             sign-/zero extension of the result
878           (aop_isLitLike,op_isLitLike): fixed handling of immediates
879         * src/pic/gen.h: added macros to access IRP bit in STATUS register
880         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
881           extend the result
882         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
883           address/register resides in the shared banks
884           (emitSymbolToFile): improved to handle global and `pinned' symbols,
885             put all variables into separate sections (have the linker arrange
886             them)
887           (picglue): put init code and interrupt handlers in separate sections
888         * src/pic/main.c: added port specific options table, modified to PORT
889           structure to make GPOINTERs 3 byte, added pic14_options
890           (_pic14_do_link): private linking routine (update paths to libraries,
891             add libsdcc.lib by default)
892         * src/pic/main.h: declare pic14_options
893         * src/pic/pcode.c: fixed instructions i/o relations,
894           (RegCond): reverted to correct version,
895           (newpCodeOpLit): truncate literals to 8 bit,
896           (genericPrint): added debug output,
897           (getRegFromInstruction): fixed for various operand types, simplified
898           (BuildFlow): fixed broken handling of isntructions with labels
899           (LinkFlow): start at last instruction in flow (skip trailing comments),
900             pass the flow on to the next instruction after CALL
901           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
902           (insertPCodeInstruction): fixed inserting after a skip instruction,
903           (DoBankSelect): fixed for labeled instructions
904           (OptimizepBlock): honor --nopeep switch
905           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
906         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
907         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
908           (pCodeOptime2pCodes): allow disabling this optimization via
909             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
910             but is still buggy), started implementation of a dataflow based
911             pCode optimization (CSE + dead code elimination)
912           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
913         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
914           names are independant of the stack location and therefore portable across
915           devices
916
917 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
918
919         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
920           (selectSpil): fixed bug 1337835 by not spilling bit variables
921         * support/regression/tests/bug1337835.c: added test for this bug
922         * src/mcs51/peeph.def: restart after rule 3.c,
923           addded rules 263.x to optimize loading constants
924
925 2005-10-26 Raphael Neider <rneider AT web.de>
926
927         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
928         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
929           (genAssign): emit warning when casting literals to generic pointer
930             type, also applies when taking the address of a fixed variable,
931           (genCast): improved casting to generic pointers
932         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
933           extern variables, added verbose error message
934         * device/include/pic16/{string.h,errno.h}: added #pragma library c
935
936 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
937
938         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
939         carry must be complemented too
940         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
941         could be emitted by genMinus
942         * src/SDCCval.c (constVal): fixed bug 1305065
943
944 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
945
946         * src/SDCCast.c (addCast): added promotion for bit variables
947         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
948         promotion casts + optimisation
949         (optimizeGetWord): fix warning 'i' might be used uninitialized
950         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
951         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
952
953 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
954
955         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
956         all chars are promoted to int; promotion should be handled in SDCCast.c
957
958 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
959
960         * device/lib/_strcmp.c: Fixed bug 1326457
961
962 2005-10-11 Raphael Neider <rneider AT web.de>
963
964         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
965         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
966
967 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
968
969         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
970         * support/regression/tests/sfr16.c: added test for the sfr32 bug
971
972 2005-10-04 Raphael Neider <rneider AT web.de>
973
974         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
975           device/lib/pic16/pics.all: added pic18f1320
976         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
977
978 2005-09-30 Raphael Neider <rneider AT web.de>
979
980         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
981         * src/pic16/devices.inc: NEW, provides device descriptions
982         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
983
984 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
985
986         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
987           GETHBIT
988
989 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
990
991         * doc/sdccman.lyx: updated Highest Order Bit documentation,
992           documented Any Order Bit, Higher Order Byte and Higher Order Word
993         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
994         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
995           (optimizeGetAbit): new, to get any bit, not only the high bit,
996           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
997           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
998           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
999           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1000             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1001             GETABIT, GETBYTE, GETWORD: decorate them,
1002           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1003           (ast_print): added GETABIT, GETBYTE, GETWORD
1004         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1005         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1006           (geniCodeBinary): new generic binary icode,
1007           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1008         * src/port.h: updated comment for PORT.hasExtBitOp
1009         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1010           (genGetByte): new, to get a single byte,
1011           (genGetWord): new, to get a word from a long,
1012           (gen51Code): added GETABIT, GETBYTE, GETWORD
1013         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1014
1015 2005-09-23 Raphael Neider <rneider AT web.de>
1016
1017         * configure.in, configure: have device/lib/pic configured
1018         * device/lib/Makefile.in: added model-pic14
1019         * device/lib/clean.mk: added pic/ to clean rule
1020         * device/lib/pic: added rudimentary pic14 library providing support
1021           functions for multiplication/division/generic pointer access
1022         * src/SDCCopt.c (convilong): mark support functions as extern
1023           for pic14 port as well
1024         * src/pic/gen.c (genMult): added assertions,
1025           (genpic14Code): emit warning on unhandled iCodes
1026         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1027         * src/pic/pcode.c (pCodeOpCopy),
1028         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1029           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1030           SFR_REGISTER}), made safe for future extensions
1031         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1032           instructions even if preceeded by SKIP instructions (also remove
1033           them); removed unused code
1034         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1035           prevents leaving parts of the structure uninitialized after copying
1036
1037 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1038
1039         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1040           ago by me
1041         * support/regression/tests/addsub.c: added test for the bug
1042
1043 2005-09-21 Raphael Neider <rneider AT web.de>
1044
1045         * device/include/pic16/pic18f1220.h,
1046           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1047         * device/lib/pic16/Makefile.rules: added missing opening paren
1048         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1049           are provided in genutils.c,
1050           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1051           operand/result sizes,
1052           (genCmp): assert on NULL pointers first, then check deref'ed values
1053         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1054           result size
1055
1056 2005-09-18 Raphael Neider <rneider AT web.de>
1057
1058         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1059           as these are now unused,
1060           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1061         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1062           local, avoids uninitialized pointer dereference on r->name
1063         * src/pic16/ralloc.c (newReg): fixed indentation
1064
1065 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1066
1067         * src/SDCCval.c (constVal): fixed bug 730366
1068         * support/Util/SDCCerr.c,
1069         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1070
1071 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1072
1073         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1074
1075 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1076
1077         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1078
1079 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1080
1081         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1082           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1083         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1084           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1085         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1086         * packihx/packihx.c (hexDigit): made c unsigned char
1087         * as/mcs51/lklibr.c (fndsym),
1088         * link/z80/lkgb.c (gb),
1089         * link/z80/lklibr.c (fndsym),
1090         * link/z80/lkrloc.c (relr),
1091         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1092         * src/SDCC.lex (checkCurrFile, process_pragma),
1093         * src/SDCCglue.c (spacesToUnderscores),
1094         * src/SDCCmain.c (setParseWithComma, processFile),
1095         * src/asm.c (tvsprintf, printCLine),
1096         * src/avr/gen.c (emitcode, aopPut),
1097         * src/ds390/gen.c (emitcode),
1098         * src/hc08/gen.c (emitcode, emitinline),
1099         * src/mcs51/gen.c (emitcode, genInline),
1100         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1101           tokenizeLineNode),
1102         * src/pic/ralloc.c (debugLog),
1103         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1104           tokenizeLineNode),
1105         * src/pic16/ralloc.c (debugLog),
1106         * src/z80/main.c (_process_pragma):
1107            made all ctype.h function calls safe
1108         * src/SDCCopt.c: include math.h for fabs
1109         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1110           and used them throughout the code to make ctype.h function calls safe
1111         * src/ds390/main.c (asmLineNodeFromLineNode),
1112         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1113         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1114            unsigned char*
1115         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1116           (newpCodeAsmDir): made ctype.h function calls safe
1117         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1118           pic16_emitcode):  made lbp unsigned char*
1119         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1120           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1121         * src/xa51/gen.c (emitcode),
1122         * src/z80/gen.c (_emit2): made lbp unsigned char*
1123         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1124            char*
1125
1126 2005-09-05 Raphael Neider <rneider AT web.de>
1127
1128         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1129           access bank splitpoint
1130
1131 2005-09-05 Raphael Neider <rneider AT web.de>
1132
1133         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1134
1135 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1136
1137         * .version: changed to version 2.5.3
1138         * doc/sdccman.lyx: changed version to 2.5.3,
1139           documented --codeseg and --constseg and pragma codeseg and constseg,
1140           documented bit parameters (reentrant) and bit returning
1141         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1142            currFunc->recvSize, but is this ok for all ports?
1143           (ast2iCode): result of ~ on unsigned char must be cast to int for
1144            bool to work
1145         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1146           function pointers in bit space
1147         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1148           (processFuncArgs): call port.reg_parm() with reentrancy info
1149         * src/port.h,
1150         * src/avr/main.c,
1151         * src/ds390/main.c,
1152         * src/hc08/main.c,
1153         * src/pic/main.c,
1154         * src/pic16/main.c,
1155         * src/xa51/main.c,
1156         * src/z80/main.c: port.reg_parm prototype extended with
1157           "bool reentrant" parameter
1158         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1159           options.stackAuto for allocating bit register parameters
1160         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1161           (genSend): set BitBankUsed if it is,
1162           (selectRegBank): factored out of genCall for use in genPcall,
1163           (genCall): removed redundant dtype assignmen, use selectRegBank,
1164           (genPcall): handle returning in Carry properly, save in F0 if needed,
1165           (genReceive): handle bit register parameters
1166         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1167           (mcs51_assignRegisters): enable bit registers for all reentrant
1168            functions and don't set BitBankUsed unconditionally
1169         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1170         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1171         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1172
1173 2005-08-27 Borut Razem <borut.razem AT siol.net>
1174
1175         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1176         ppc-osx (Darwin) does not support -u option. It seems that it is
1177         supported only on Linux - GNU cp
1178
1179 2005-08-25 Borut Razem <borut.razem AT siol.net>
1180
1181         * sim/ucsim/gui.src/serio.src/Makefile.in,
1182           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1183           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1184           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1185           install and strip, since the strip at /usr/ccs/bin should be used
1186           on solaris
1187
1188 2005-08-24 Borut Razem <borut.razem AT siol.net>
1189
1190         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1191
1192 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1193
1194         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1195         ffffffffu
1196
1197 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1198
1199         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1200         * as/mcs51/lkmain.c (link_main): fixed warning
1201         * device/include/stdbool.h: ds390 has no advanced bit support yet
1202         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1203         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1204         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1205           and updated their macros
1206         * src/SDCCval.c (constVal): updated comment for renamed b_long
1207
1208 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1209
1210         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1211         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1212           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1213           (oprio): set priority for '['
1214         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1215            and adb_24_bit
1216         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1217         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1218         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1219         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1220           added overlayable BIT_BANK area
1221         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1222           (summary2): explain 'T' in legenda
1223         * as/mcs51/lkrloc.c: replaced old K&R style,
1224           (relr): added R_BIT processing,
1225           (errmsg): added "Bit-addressable relocation error",
1226           (adb_bit): added for converting from byte- to bit-addressable space,
1227           (adb_24_bit): added for converting from byte- to bit-addressable space
1228         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1229            used in reentrant functions now even as return value
1230         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1231         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1232           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1233         * src/SDCCglobl.h: added indicator BitBankUsed
1234         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1235            the bit registers b0-b7
1236         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1237           (geniCodeCast): fixed bug 1263853,
1238           (geniCodeLogicAndOr): put result in bool or char,
1239           (geniCodeReceive): added parameter func for accessing the return type,
1240           (geniCodeFunctionBody): pass func to geniCodeReceive
1241         * src/SDCCmain.c: added indicator BitBankUsed
1242         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1243         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1244           (checkSClass): don't put automatic bool/bit on stack,
1245           (checkFunction): removed check on function cannot return bit
1246         * src/SDCCsymt.h: added newBoolLink prototype
1247         * src/mcs51/gen.c (rb1regs): added bit registers,
1248           (movc): created for assigning to carry,
1249           (pushReg, popReg): created for pushing registers,
1250           (sameRegs): check both AOP_REG and AOP_CRY types,
1251           (aopOp): handle bit registers,
1252           (aopPut): optimization no self-assign,
1253           (saveRegisters): push reg->base (bits) only once for bit registers,
1254            and use pushReg,
1255           (unsaveRegisters): pop reg->base only once and use popReg,
1256           (assignResultValue): added parameter func and return in carry for bits,
1257           (genIpush): optimization no reload in A if not changed,
1258           (genSend): bit parameters in reentrant functions are passed in bit
1259            registers by first assigning to bits in B, then save registers and
1260            copy B to bits,
1261           (genCall): handle returning in Carry properly, save it in F0 if needed,
1262           (genPcall): updated assignResultValue call, this is not safe yet for bit
1263            returning function !!!
1264           (genFunction): don't generate equ's for bit registers and use pushReg,
1265           (genEndFunction): take care of bit returning functions and use popReg,
1266           (genRet): return bit in Carry,
1267           (genIfx): optimize bit registers and other directly addressable bits,
1268           (genReceive): updated assignResultValue call
1269         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1270           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1271            registers when using stack-auto
1272         * src/mcs51/ralloc.c (_G): added allBitregs,
1273           (regs8051): added the bit registers,
1274           (createStackSpil): use macro IS_BIT,
1275           (getRegBit): added to allocate a bit register, else spill,
1276           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1277           (updateRegUsage): factored out to ease stepping while debugging,
1278           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1279            also allocate bit registers,
1280           (fillGaps): handle bit registers,
1281           (findAllBitregs): added to create bit vector with all bit registers,
1282           (mcs51_allBitregs): returns this bit vector,
1283           (mcs51_assignRegisters): when using stack-auto use bit registers for
1284            passing parameters and creating local variables
1285         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1286
1287 2005-08-22 Borut Razem <borut.razem AT siol.net>
1288
1289         * device/lib/Makefile.in: replaced find option -or with -o
1290           to make it run on solaris
1291
1292 2005-08-22 Raphael Neider <rneider AT web.de>
1293
1294         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1295           fixes #1265442 (crash on Solaris)
1296
1297 2005-08-20 Borut Razem <borut.razem AT siol.net>
1298
1299         * configure, configure.in: added tests for libsocket and libnsl libraries,
1300           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1301           from support/regression/Makefile.in
1302         * support/regression/Makefile.in: added
1303         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1304         * sim/ucsim/libtool: regenerated on sparc-solaris
1305         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1306           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1307           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1308           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1309           sparc-solaris, which doesn't use GNU ld linker
1310         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1311         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1312
1313 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1314
1315         * src/mcs51/peeph.def: updated comments
1316
1317 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1318
1319         * device/lib/_gptrget.c,
1320         * device/lib/_gptrput.c: slightly shorter
1321         * doc/sdccman.lyx: incremented version
1322         * src/mcs51/peeph.def: moved peephole comments to the line of first
1323           change to better keep line correlation, reanimated 186.e
1324         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1325
1326 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1327
1328         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1329           David Saxton with quotes around file name.
1330
1331 2005-08-15 Borut Razem <borut.razem AT siol.net>
1332
1333         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1334           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1335           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1336           make tests run on x86_64 platform
1337
1338 2005-08-13 Raphael Neider <rneider AT web.de>
1339
1340         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1341           as it might be executed DURING a build (parallel make is wonderful)
1342
1343 2005-08-13 Raphael Neider <rneider AT web.de>
1344
1345         * device/lib/Makefile.in (port-specific-objects-pic16):
1346           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1347         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1348           dependency
1349         * device/lib/pic16/Makefile.rules: build subdirs before creating
1350           the library, removed builddir rule, create $(builddir) early in
1351           recurse rule, use empty recurse rule for leaf directories
1352         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1353           mkdir errors (race condition), removed duplicate suffix "hex"
1354           from clean rules
1355         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1356         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1357           prevents mkdir -p from aborting on Alpha
1358
1359 2005-08-12 Raphael Neider <rneider AT web.de>
1360
1361         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1362           db-statements in order to allow for arrays of pointers in code
1363           sections to be placed without interspersed 0-padding, fixes
1364           bug #1256215
1365         * (emitStatistics): fixed division by zero for pic18f1220
1366         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1367           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1368         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1369         * (pic16_pCodeConstString): keep track of already emitted string
1370           literals to prevent "duplicate definitions of symbol _str_NR"
1371         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1372           debug message
1373         * device/lib/Makefile.in: ignore failing PIC16 library builds
1374         * device/lib/pic16/Makefile: do not build if gputils are missing
1375         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1376
1377 2005-08-10 Raphael Neider <rneider AT web.de>
1378
1379         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1380           my last commit)
1381
1382 2005-08-10 Raphael Neider <rneider AT web.de>
1383
1384         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1385           Rokas' patch to add the new fixed point type "__fixed16x16"
1386         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1387           functions for __fixed16x16 arithmetics
1388         * device/lib/pic16: reimplemented the build system to support
1389           a separate build directory, better handling of libio (create
1390           the library in a separate subdir for each architecture) and
1391           easier configuration (centralized in Makefile.common)
1392
1393 2005-08-07 Raphael Neider <rneider AT web.de>
1394
1395         * src/pic16/gen.c (genrshTwo): fixed sign extension
1396         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1397         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1398           added T0CONbits
1399         * device/include/pic16/pic18f4220.h: NEW, header for
1400           pic18f4220 and pic18f4320
1401         * device/include/pic16/pic18fregs.h: added new devices,
1402           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1403         * device/include/pic16/signal.h: resolved name clashes
1404           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1405           to also allow testing for interrupt enable bits, added
1406           comments on how to use the macros
1407         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1408         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1409           register definitions for the devices
1410         * device/lib/pic16/pics.all: added new devices
1411         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1412           allocated memory
1413         * device/lib/pic16/libc/stdlib/memfree: do not count
1414           the block header as free memory
1415         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1416           simplified and added missing end-of-blocklist-marker
1417           (reported by Peter Onion, fixes #1252814)
1418         * (_mergeHeapBlock): fixed loop condition
1419         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1420           len==0, restructured code
1421         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1422           up a bit, reduced bitfield accesses, prevent endless loops
1423           in case of heap corruption
1424         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1425           "unreferenced arguments/must return a value" warnings
1426         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1427           replaced BAUDREG with SPBRG
1428         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1429           device/lib/pic16/debug/gstack/gstack.c: replaced
1430           _naked, _asm, _endasm with __naked, __asm, __endasm
1431
1432 2005-08-05 Raphael Neider <rneider AT web.de>
1433
1434         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1435           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1436
1437 2005-08-05 Borut Razem <borut.razem AT siol.net>
1438
1439         * device/lib/Makefile.in: added missing ';'
1440         * configure: removed ^M characters
1441
1442 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1443
1444         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1445           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1446           License
1447
1448 2005-08-04 Borut Razem <borut.razem AT siol.net>
1449
1450         * configure.in: pic16 libraries build 2nd try - enable running
1451           configure in device/lib/pic16
1452         * configure: regenerated from configure.in
1453         * device/lib/Makefile.in: create $(PORT)/bin directory
1454
1455 2005-08-03 Raphael Neider <rneider AT web.de>
1456
1457         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1458           to get/set values via pointers
1459         * (genUnpackBits,genPackBits): changed detection of
1460           ptr->bitfield vs. sym.bitfield, fixed access via generic
1461           pointers, removed dead (wrong) code for multibyte bitfields
1462         * (genNearPointerGet, genGenPointerGet): removed useless code,
1463           fixed bitfield detection, fixes #1250594
1464         * (genNearPointerSet): removed useless code
1465         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1466           and introduced macro pic16_emitpcode that conditionally emits
1467           the origin of the following pCode (useful for debugging SDCC)
1468         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1469         * (createDefmap): fixed handling of LFSR for --optimize-df
1470
1471 2005-08-02 Borut Razem <borut.razem AT siol.net>
1472
1473         * device/lib/Makefile.in: pic16 libraries build enabled since
1474           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1475
1476 2005-08-02 Raphael Neider <rneider AT web.de>
1477
1478         * src/pic16/gen.c (genPackBits): removed deprecated warning
1479         * (genGenPointerSet): fixed bitfield detection
1480
1481 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1482
1483         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1484
1485 2005-07-31 Raphael Neider <rneider AT web.de>
1486
1487         * device/lib/pic16/libdev/pic18f458.c,
1488           device/include/pic16/pic18f458.h: added missing T0CONbits
1489
1490 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1491
1492         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1493
1494 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1495
1496         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1497
1498 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1499
1500         * device/include/mcs51/at89c51ed2.h: added.
1501
1502 2005-07-23 Raphael Neider <rneider AT web.de>
1503
1504         * src/pic/gen.h: added emitpcode macro for debugging
1505         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1506           and replace by macro adding debug information on demand
1507         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1508         * (gencjne): tried to fix; replaced with correct (slower) code
1509         * (gen{Unp,P}ackBits): fixed single bit access
1510         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1511         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1512           previous instruction
1513         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1514           register has to be handled with care (forbidding movement
1515           of assignments/uses, removing assignments completely, ...)
1516         * (pCodeOptime2pCodes): make use of regIsSpecial
1517         * added lots of debugging output (commented out)
1518         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1519           from being reused as result UNLESS it is known to work
1520
1521 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1522
1523         * support/Util/dbuf.h: include <stddef.h> for size_t
1524         * .version: changed to version 2.5.2
1525
1526 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1527
1528         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1529
1530 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1531
1532         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1533           (genModOneByte): removed needless psha/pula
1534
1535 2005-07-22 Raphael Neider <rneider AT web.de>
1536
1537         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1538           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1539         * src/pic/gen.c (resolveIfx): do not "invent" labels
1540         * (genSkipc): changed to positive logic
1541         * (genSkipCond): removed as no longer needed
1542         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1543           backport from PIC16
1544         * (genLeftShift): check operands are in different registers
1545         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1546           INCF does not update CARRY...
1547         * src/pic/main.c: fixed _linkCmd
1548         * src/pic/pcode.c (unlinkpCode): added inactive code
1549         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1550           alive (do not assign result and operand overlapping registers)
1551
1552 2005-07-22 Raphael Neider <rneider AT web.de>
1553
1554         * src/pic/device.c (dump_sfr): replaced register declaration with
1555           call to emitSymbolToFile() to avoid duplicate symbols
1556         * (assignRelocatableRegisters): do not declare external symbols
1557         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1558           right (take size of type, not etype)
1559         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1560         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1561         * (packRegsForAccUse): disabled assignment of WREG as
1562           the result reg to prevent occurence of just fixed #1235003,
1563           fixes #1242954
1564         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1565           symbols (avoids duplicate symbols in .asm file)
1566         * (pic14emitRegularMap): use emitSymbolToFile()
1567         * src/pic/gen.c (aopOp): fixed spillLocation handling
1568         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1569         * (genDataPointerSet): removed unneccessary variables/output
1570
1571 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1572
1573         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1574         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1575
1576 2005-07-21 Raphael Neider <rneider AT web.de>
1577
1578         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1579           architecture cannot handle them efficiently, fixes bug #1235003
1580         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1581           check for empty sets before using them (fixes bug #1232190)
1582
1583 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1584
1585         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1586           (lnksect2): generate warnings for memory overlap
1587         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1588           constseg to set the name of these segments so you can instruct the linker
1589           to place them in banks
1590         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1591         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1592           added code_seg and const_seg to options
1593         * src/SDCCglue.c (emitMaps): use options.const_seg,
1594           (createInterruptVect): put interrupt vectors in segment HOME,
1595           (glue): put HOME before static segment and put the main glue in HOME,
1596           (glue): use options.code_seg
1597         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1598         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1599           these segments so you can instruct the linker to place them in banks
1600           (linkEdit): use code_loc for HOME segment which should be the first
1601           segment in code memory now
1602         * src/SDCCmem.c: fixed more stuff like bug 1238386
1603         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1604           (changePointer): don't change function pointers to code pointers for
1605           banked functions,
1606           (compareType): added exceptional check for banked function pointers
1607         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1608         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1609           after static in code memory
1610         * src/mcs51/gen.c: added aopLiteralLong prototype,
1611           (aopForSym): use getSize for functions,
1612           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1613           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1614           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1615           the segment,
1616           (genPcall): use call for literal function pointers and generate banked
1617           calls over the one trampoline so there's only one place for the user to
1618           modify according to his/hers hardware,
1619           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1620           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1621         * src/mcs51/main.c: added keyword banked,
1622           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1623         * support/Util/SDCCerr.c,
1624         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1625           needed for passing the bank and address to the trampoline
1626         * device/lib/mcs51/crtbank.asm: added for bankswitching
1627         * device/lib/mcs51/Makefile: added crtbank
1628
1629 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1630
1631         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1632           for fields at offset 0 of a struct or union as reported
1633           on 2005-07-07 in the developer mailing list.
1634
1635 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1636
1637         * src/SDCCmem.c: fixed bug 1238386
1638
1639 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1640
1641         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1642           (patch #1144962), added peephole 300, enabled 259.x
1643         * doc/sdccman.lyx: removed screenshot and provided link instead
1644
1645 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1646
1647         * doc/sdccman.lyx: added section about debugging with ddd
1648         * doc/figures/ddd_example.eps: screenshot of debugging session
1649
1650 2005-07-04 Raphael Neider <rneider AT web.de>
1651
1652         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1653           like CODE pointers, fixes #1115683
1654         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1655           call, fixes bugs #1232211, #1228110,
1656           fixed wrong casts to pCodeFlow from pCodeInstructions
1657
1658 2005-07-04 Raphael Neider <rneider AT web.de>
1659
1660         * src/pic/gen.c (popGet): changed assert to allow for
1661           bit operands
1662         * (popGetAddr): changed signature to provide
1663           an additional index, patched all call sites
1664         * (genCmpEq): handle literal-like operands correctly
1665         * (genAddrOf): added sanity checks on __code/__data pointers
1666         * (genAssign): added handling of symbols from __code section
1667         * (gencjne): do not generate code for comparisons whose result
1668           is neither stored nor used, fixes bug #1171114
1669         * (AccLsh, AccRsh): operate on operand instead of WREG
1670         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1671           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1672           by known count
1673         * rewrote complete shift-by-literal logic, commented unused
1674           functions out
1675         * (genConstPointerGet): get multiple bytes (if result size > 1),
1676           fixed handling of non-immediate addresses
1677         * (genPointerGet): handle CODE pointers like CONST pointers
1678         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1679         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1680           operand is to be treated as a literal or not
1681         * (mov2w,genPcall,genCmpEq),
1682           src/pic/genarith.c: use aop_isLitLike() to decide between
1683           literal/register contents
1684         * (addSign): added missing offset
1685         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1686           only emit comment in debug-mode,
1687           use {aop,op}_isLitLike throughout the file
1688         * src/pic/glue.c: fix initializers for pointers (work in progress)
1689         * src/pic/pcode.c (get_op): honor index on _const symbols
1690         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1691         * (dumppBlock): added pCode size estimation
1692         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1693           check for IS_SYMOP before OP_SYMBOL'ing
1694         * fixed indentation, compacted switch-statements
1695         * (allocReg): find free register and allocate it instead of
1696           allocating new registers all the time
1697         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1698           registers as its operands (necessary only for multibyte GETs)
1699
1700 2005-07-01 Raphael Neider <rneider AT web.de>
1701
1702         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1703           debugging .asm-output macros FENTRY + FEXIT
1704         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1705           way... I wonder...
1706         * (emitpComment): NEW, printf to pCode
1707         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1708           offset handling
1709         * (popGetAddr): NEW, variant of popGet to access an immediates
1710           high(er) bytes instead of the n'th byte of memory they reference,
1711           replaced popGet with popGetAddr where neccessary
1712         * (genDataPointerGet): reactivated and fixed implementation
1713         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1714           accesses
1715         * (genDataPointerSet): fixed multibyte assignments
1716         * (genpic14Code): fixed --i-code-in-asm handling
1717         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1718         * (genPlus): fixed index-out-of-bounds error
1719         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1720         * src/pic/ralloc.c: added debugging output macro FENTRY2
1721         * (spillThis): fixed indentation, enbraced for-body for clarity
1722         * (rematStr): commented out as now unused
1723         * (regTypeNum): commented out special spill case (overwrites
1724           arbitrary values)
1725         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1726
1727 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1728
1729         * doc/sdccman.lyx: documented sfr16/sfr32,
1730           added example for using storage class with function pointers
1731         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1732
1733 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1734
1735         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1736         * device/lib/_itoa.c,
1737         * device/lib/_ltoa.c: optimized codesize
1738         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1739           but don't know how to suppress the double warning.
1740         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1741         * support/Util/SDCCerr.c,
1742         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1743
1744 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1745
1746         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1747           fixed old K&R prototypes
1748         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1749         * device/lib/_gptrget.c,
1750         * device/lib/_gptrgetc.c,
1751         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1752           also new versions for small generic pointers and banked generic pointers
1753         * src/port.h: added const_name
1754         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1755         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1756         * src/SDCCcse.c (findPrevIc): check all associative operators
1757         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1758         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1759         * src/SDCCmem.c: updated comments,
1760           set far-space to 0 for pdata, results in optimized code
1761         * src/SDCCmem.h: added macro CONST_NAME
1762         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1763           moving the info into the highest bits, see also gptrget/gptrput
1764         * src/src.dsp: added sdcc.ico to project files
1765         * src/avr/gen.c (genCast): fixed bug 0x%d
1766         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1767         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1768           relation between ptr_type and DCL_TYPE,
1769           (genCast): fixed bug 0x%d
1770         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1771           (CODE)" for const_name
1772         * src/hc08/gen.c (genCast): fixed bug 0x%d
1773         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1774           (hc08_port): added "CONST (CODE)" for const_name
1775         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1776           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1777           between ptr_type and DCL_TYPE,
1778           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1779           operand* and took AOP() inside function so sfr-ness can be checked,
1780           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1781           new prototype,
1782           (genFunction, genEndFunction): optimized stack setup,
1783           (genMinus): optimized for literals with ending zeroes (in bytes),
1784           (genCast): fixed bug 0x%d
1785         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1786           (mcs51_port): added "CONST (CODE)" for const_name
1787         * src/mcs51/peeph.def: made rule 226 more generic
1788         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1789         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1790         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1791         * src/z80/main.c (z80_port): added NULL for const_name,
1792           (gbz80_port): added NULL for const_name
1793         * support/regression/tests/bug663539.c,
1794         * support/regression/tests/sfr16.c: new tests
1795
1796 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1797
1798         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1799
1800 2005-06-24 Raphael Neider <rneider AT web.de>
1801
1802         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1803           corrected typos...
1804         * device/include/pic16/signal.h: added USBIF
1805           and SIG_USB
1806
1807 2005-06-24 Raphael Neider <rneider AT web.de>
1808
1809         * device/lib/pic16/libdev/pic18f2455.c,
1810           device/include/pic16/pic18f2455.h: NEW
1811         * device/include/pic16/pic18fregs.h,
1812           device/lib/pic16/pics.all,
1813           src/pic16/device.c: added 18f2455
1814         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1815           device/include/pic16/{pic18f[68][567].h,usart.h}:
1816           replaced MULTIPLE_USARTS define with more relaible
1817           compatibility sfrs (for USART access)
1818
1819 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1820
1821         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1822           and the output asm file line is printed on two lines.
1823
1824 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1825
1826         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1827           BGT, BLE, BHI, and BLS instructions
1828         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1829           genCmpEq): removed
1830         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1831           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1832           fixes bug #1216342
1833         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1834
1835 2005-06-15 Raphael Neider <rneider AT web.de>
1836
1837         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1838         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1839         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1840           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1841           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1842
1843 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1844
1845         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1846           Marcel Telka in bug #1215704
1847
1848 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1849
1850         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1851           located in shared memory bank.
1852
1853 2005-05-31 Raphael Neider <rneider AT web.de>
1854
1855         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1856           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1857           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1858
1859 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1860
1861         * device/lib/_strncpy.c: fixed the fix
1862
1863 2005-05-26 Raphael Neider <rneider AT web.de>
1864
1865         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1866           initializers with \0, bug #1208187
1867         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1868           intializers with \0, bug #1208187
1869
1870 2005-05-26 Raphael Neider <rneider AT web.de>
1871
1872         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1873           initializers with \0, bug #1208187
1874         * src/pic16/main.c (_process_pragma): added sanity checks
1875           for stack position and size, emit warnings when appropriate
1876
1877 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1878
1879         * device/lib/_strncpy.c: fixed not filling with \0
1880
1881 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1882
1883         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1884           createFunction),
1885         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1886           compound_statement),
1887         * src/SDCCsymt.h,
1888         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1889
1890 2005-05-24 Raphael Neider <rneider AT web.de>
1891
1892         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1893
1894 2005-05-24 Raphael Neider <rneider AT web.de>
1895
1896         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1897           TRISE definitions, closes bug #1162453
1898
1899 2005-05-22 Raphael Neider <rneider AT web.de>
1900
1901         * src/pic16/main.c (_process_pragma): check for missing
1902           arguments to pragmas code and udata
1903         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1904           consistency fixes to match other headers (thanks to Jim Paris)
1905         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1906
1907 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1908
1909         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1910
1911 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1912
1913         * support/regression/tests/bug1198642.c: new test
1914         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1915         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1916         * support/scripts/resource.h,
1917         * support/scripts/resource.rc,
1918         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1919         * support/scripts/sdcc.ico: added 32x32 icon
1920
1921 2005-05-18 Raphael Neider <rneider AT web.de>
1922
1923         * device/lib/pic16/libdev/pic18f*.c,
1924         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1925           keywords to "__sfr" and "__at (X)"
1926         * device/include/pic16/pic18fregs.h: added pic18f4520
1927         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1928           #1203088 (MPLAB compatibility)
1929
1930 2005-05-17 Raphael Neider <rneider AT web.de>
1931
1932         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1933         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1934         * device/lib/pic16/pics.all: added new devices
1935         * src/pic16/device.c: added support for pic18f4520
1936
1937 2005-05-16 Raphael Neider <rneider AT web.de>
1938         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1939         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1940         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1941           convenience function for bit access
1942
1943 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1944
1945         * device/lib/printf_large.c: fixed bug 1193299
1946         * support/regression/tests/bug1057979.c: added test %3.3s
1947
1948 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1949
1950         * device/include/mcs51/8051.h,
1951         * device/include/mcs51/8052.h: made parseable with lint
1952         * device/include/mcs51/lint.h: added include file for (sp)lint
1953         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1954         * doc/cdbfileformat.lyx,
1955         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1956
1957 2005-05-14 Raphael Neider <rneider AT web.de>
1958
1959         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1960         * device/lib/pic16/libc/stdlib/itoa.c (new)
1961         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1962         * device/lib/pic16/libio/Makefile: exclude subdir according to
1963           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1964         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1965         * src/pic16/gen.c (genFunction): prevent annoying warning
1966         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1967           nameclashes on BeOS
1968         * support/cpp2/cppmain.c (cpp_output_string): new
1969         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1970           fixes bug 1116802
1971
1972 2005-05-13 Borut Razem <borut.razem AT siol.net>
1973
1974         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1975
1976 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1977
1978         * .version: changed to version 2.5.1; back to bleeding edge development
1979
1980 2005-05-11 Borut Razem <borut.razem AT siol.net>
1981
1982         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1983           generate PDF version 1.3 documents
1984
1985 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1986
1987         * .version: changed to version 2.5.0
1988
1989 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1990
1991         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1992
1993 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1994
1995         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1996         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1997         well as many smaller updates.
1998         * .version: changed to version 2.5.0-pre1
1999
2000 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2001
2002         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2003
2004 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2005
2006         * support/regression/tests/bug1185672.c: added
2007         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2008           bug 1185672
2009         * src/mcs51/gen.c (genCall): added comments, made it look safer
2010         * src/mcs51/gen.c (genEndFunction): simplified
2011
2012 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2013
2014         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2015
2016 2005-04-14 Borut Razem <borut.razem AT siol.net>
2017
2018         * fixed bug 1045046 - SIGSEGV with really simple code?:
2019           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2020           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2021
2022 2005-04-14 Borut Razem <borut.razem AT siol.net>
2023
2024         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2025           src/pic16/device.h: temporarily disabled experimental #inline pragma
2026           for 2.5.0 release
2027
2028 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2029
2030         * device/include/z80/stdio.h,
2031         * device/include/z80/string.h: removed these highly incomplete files so
2032           SDCC can use the default ones in device/include/
2033
2034 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2035
2036         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2037         gcc warning.
2038         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2039         fix sdcpp warnings.
2040
2041 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2042
2043         * device/include/malloc.h: removed redundant __reentrant prototypes
2044         * device/lib/_mullong.c: added working xstack variant in asm (C version
2045           doesn't pass regression tests)
2046         * device/lib/bpx.c: used __data and made bpx char for mcs51
2047         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2048           (createFunction): fixed bug with xstackPtr
2049         * src/SDCCcse.c: corrected comments
2050         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2051           (killDeadCode, eBBlockFromiCode): removed unused code
2052         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2053           corrected comments
2054         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2055           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2056           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2057           (genModOneByte): fixed warning in MSVC
2058         * src/mcs51/main.c (): added comments
2059         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2060
2061 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2062
2063         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2064
2065 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2066
2067         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2068
2069 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2070
2071         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2072         characters arrays of larger size than the declared one.
2073
2074 2005-04-10 Borut Razem <borut.razem AT siol.net>
2075
2076         * src/pic/gen.c (genInline),
2077           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2078           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2079           (findNextInstruction), (findPrevInstruction),
2080           (findInstructionUsingLabel),
2081           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2082         * src/pic/pcode.c (findLabel): added missing '\n'
2083         * src/src.dsp: added SDCCdwarf2.c to the project
2084
2085 2005-04-09 Borut Razem <borut.razem AT siol.net>
2086
2087         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2088
2089 2005-04-08 Raphael Neider <rneider AT web.de>
2090
2091         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2092           into the chain after a given one) and mergeDefmapSymbols (combine
2093           defmap entries for each symbol per pcode)
2094         * (createDefmap): have defmap entries merged in the end
2095         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2096           a symbol before replacing one access type's symbol, merge symbols in
2097           the end (replacement symbol might already have an entry)
2098         * (assignValnums): keep reference to written WREG intact
2099
2100 2005-04-08 Raphael Neider <rneider AT web.de>
2101
2102         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2103           Alpha)
2104
2105 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2106
2107         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2108         bytes
2109
2110 2005-04-07 Raphael Neider <rneider AT web.de>
2111
2112         * device/include/pic16/usart.h: added compatibility defines for
2113           devices with more than one USART
2114         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2115
2116 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2117
2118         * device/lib/Makefile.in: updated for port specific include
2119
2120 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2121
2122         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2123
2124 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2125
2126         * device/include/8051.h,
2127         * device/include/8052.h,
2128         * device/include/at89S8252.h,
2129         * device/include/at89c55.h,
2130         * device/include/at89x051.h,
2131         * device/include/at89x51.h,
2132         * device/include/at89x52.h,
2133         * device/include/mcs51reg.h,
2134         * device/include/reg51.h,
2135         * device/include/reg764.h,
2136         * device/include/regc515c.h,
2137         * device/include/sab80515.h: (re)moved these 12 files
2138         * device/include/mcs51/8051.h,
2139         * device/include/mcs51/8052.h,
2140         * device/include/mcs51/at89S8252.h,
2141         * device/include/mcs51/at89c55.h,
2142         * device/include/mcs51/at89x051.h,
2143         * device/include/mcs51/at89x51.h,
2144         * device/include/mcs51/at89x52.h,
2145         * device/include/mcs51/mcs51reg.h,
2146         * device/include/mcs51/reg51.h,
2147         * device/include/mcs51/reg764.h,
2148         * device/include/mcs51/regc515c.h,
2149         * device/include/mcs51/sab80515.h: and added them here
2150
2151 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2152
2153         * device/include/stdarg.h: changed SDCC specific keywords to double
2154           underlined form.
2155         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2156           mcs51 and ds390.
2157         * device/include/hc08/mc68hc908gp32.h,
2158         * device/include/hc08/mc68hc908jb8.h,
2159         * device/include/hc08/mc68hc908jkjl.h,
2160         * device/include/hc08/mc68hc908qy.h: fixed comments
2161         * device/include/mcs51/README: updated
2162         * device/include/mcs51/c8051f120.h: added PINRSF
2163         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2164         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2165           amidst code. Also inline is not supported.
2166
2167 2005-04-06 Raphael Neider <rneider AT web.de>
2168
2169         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2170         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2171           callers stack/frame pointers
2172
2173 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2174
2175         * device/include/pic16/usart.h: added, missing in previous commit,
2176         * device/include/pic16/adc.h: fixed typo,
2177         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2178         commit,
2179         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2180         <p18fxxx.inc>
2181         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2182         uninitialized because a bug appears with gplink
2183         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2184         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2185         complains for unrecognised option
2186
2187 2005-04-05 Raphael Neider <rneider AT web.de>
2188
2189         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2190           structs as well (using memcpy)
2191         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2192           on ISRs (GOTO has no label)
2193         * src/pic16/device.h: added OF_OPTIMIZE_DF
2194         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2195           new data flow analysis/optimization
2196         * src/pic16/pcode.c: added (prototypes for and implementation of)
2197           dataflow analysis functions, fixed pCodeInstructions' inCond and
2198           outCond values, made RCALL a branch instruction
2199         * (pic16_unlinkpCode): keep C line if possible
2200         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2201           C line moved if possible
2202         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2203         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2204           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2205         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2206           new flow)
2207         * (pic16_getJumptabpCode): NEW, needed in...
2208         * (LinkFlow): fixed handling of jumptables, calls and conditional
2209           branches
2210         * (pic16_InsertCommentAfter): NEW
2211         * (pic16_pCodeReplace): made verbose and flow preserving
2212         * (AnalyzeFlow): added call to data flow analysis
2213         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2214         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2215         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2216
2217 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2218
2219         * src/SDCCast.c (decorateType): fixed bug #1105626
2220
2221 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2222
2223         * device/include/asm/pic16/features.h,
2224         * pic18f*.h headers,
2225         * device/include/pic16/adc.h,
2226         * device/include/pic16/delay.h,
2227         * device/include/pic16/i2c.h,
2228         * device/include/pic16/malloc.h,
2229         * device/include/pic16/stdio.h,
2230         * device/include/pic16/stdlib.h,
2231         * device/include/pic16/string.h,
2232         * device/lib/pic16/libc/stdio/printf_tiny.c,
2233         * device/lib/pic16/libc/stdio/printf_small.c,
2234         * device/lib/pic16/libc/stdio/strmgpsim.c,
2235         * device/lib/pic16/libc/stdio/strmmssp.c,
2236         * device/lib/pic16/libc/stdio/strmusart.c,
2237         * device/lib/pic16/libc/stdio/vfprintf.c,
2238         * device/lib/pic16/libc/stdlib/ltoa.c,
2239         * device/lib/pic16/libc/stdlib/putchar.c,
2240         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2241         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2242         * device/lib/pic16/libc/stdlib/memchrram.c,
2243         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2244         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2245         * device/lib/pic16/libio/adc/adcbusy.c,
2246         * device/lib/pic16/libio/adc/adcread.c,
2247         * device/lib/pic16/libio/adc/adcsetch.c,
2248         * device/lib/pic16/libio/usart/ubaud.c,
2249         * device/lib/pic16/libio/usart/ubusy.c,
2250         * device/lib/pic16/libio/usart/udrdy.c,
2251         * device/lib/pic16/libio/usart/uopen.c,
2252         * device/lib/pic16/libio/usart/uputc.c,
2253         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2254         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2255         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2256         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2257         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2258         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2259         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2260         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2261         specific keywords to double underlined form,
2262         * device/lib/pic16/libc/Makefile.rules,
2263         * device/lib/pic16/libsdcc/Makefile.rules,
2264         * device/lib/pic16/libm/Makefile,
2265         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2266         to compile with C standard set in Makefile.common
2267         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2268         rand.c and crc.c in compilation process,
2269         * device/lib/pic16/libsdcc/int/divuint.c,
2270         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2271         `c' from signed to unsigned,
2272         * device/lib/pic16/startup/crt0.c,
2273         * device/lib/pic16/startup/crt0i.c,
2274         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2275         keywords to double underlined form, bug fixes in _do_cinit function
2276         which prevented the correct initialization of the .idata segment,
2277         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2278         core to enter a infinite loop
2279         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2280
2281 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2282
2283         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2284
2285 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2286
2287         * device/include/Makefile.in: add support for hc08 subdirectory
2288         * device/include/hc08/: new subdirectory
2289         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2290         Lucas Loizaga, thanks!
2291         * device/include/hc08/mc68hc908qy.h,
2292         * device/include/hc08/mc68hc908gp32.h,
2293         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2294         their own directory. Changed internal macro names to use the compiler
2295         reserved namespace. Changed SDCC specific keywords to double
2296         underlined form.
2297         * device/include/math.h,
2298         * device/include/malloc.h,
2299         * device/include/stdarg.h,
2300         * device/include/stdbool.h
2301         * device/include/string.h,
2302         * device/include/tinibios.h,
2303         * device/include/ds400rom.h,
2304         * device/include/8051.h,
2305         * device/include/8052.h,
2306         * device/include/80c51xa.h,
2307         * device/include/at89c55.h,
2308         * device/include/at89S8252.h,
2309         * device/include/at89x51.h,
2310         * device/include/at89x52.h,
2311         * device/include/ds80c390.h,
2312         * device/include/reg764.h,
2313         * device/include/regc515c.h,
2314         * device/include/sab80515.h,
2315         * device/include/mcs51/c8051f000.h,
2316         * device/include/mcs51/c8051f018.h,
2317         * device/include/mcs51/c8051f020.h,
2318         * device/include/mcs51/c8051f040.h,
2319         * device/include/mcs51/c8051f060.h,
2320         * device/include/mcs51/c8051f120.h,
2321         * device/include/mcs51/c8051f300.h,
2322         * device/include/mcs51/c8051f310.h,
2323         * device/include/mcs51/c8051f320.h,
2324         * device/include/mcs51/c8051f330.h,
2325         * device/include/mcs51/c8051f350.h,
2326         * device/include/z180.h: Changed SDCC specific keywords to double
2327         underlined form.
2328
2329 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2330
2331         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2332         18F4455,
2333         * (pic16_assignConfigWordValue): disable testing of configuration
2334         register value with config mask,
2335         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2336         function with port->fun_prefix,
2337         * (genFunction): when generating a naked interrupt function never
2338         create an absolute segment placed in interrupt vector address, place
2339         the actual interrupt function at IVA instead, when an interrupt
2340         function is generated with unspecified interrupt then do not create
2341         the absolute section,
2342         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2343         code for generating a call to generic pointer get/put function with
2344         a call to function pic16_callGenericPointer(),
2345         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2346         the call to the generic pointer get/put functions with prefixing the
2347         function name with port->fun_prefix,
2348         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2349         * src/pic16/main.c (_process_pragma): prefix function with
2350         port->fun_prefix,
2351         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2352         calling assembler, old 18Fxxxx macro is deprecated,
2353         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2354         PC_ASMDIR in while condition,
2355         * (findInstruction): add PC_ASMDIR in while condition,
2356         * (buildCallTree): prefix main with port->fun_prefix,
2357         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2358         identifier for variable with banked access in instructions BTFSS,
2359         BTFSC, BCF, BSF, BTG
2360         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2361         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2362         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2363         perform optimization when enviroment variable NO_REG_OPT is set,
2364         * (insideLRBlock): NEW, return 1 if register is inside an
2365         INF_LOCALREGS block,
2366         * (RemoveRegFromLRBlock): remove a register that is completely
2367         eliminated by register optimization, but it is still left in local
2368         register store/restore in/from stack block,
2369         * (Remove2pcodes): after removing register, check to see if it
2370         should be removed from local register store/restore in/from stack
2371         block,
2372         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2373         DUMMY_READ_VOLATILE,
2374
2375         * device/include/pic16/adc.h: minor prototype modifications and
2376         update,
2377         * device/include/pic16/malloc.h: added GPL notice various
2378         modifications,
2379         * device/include/pic16/stdint.h: NEW, standard header for ints
2380         * device/include/pic16/delay.h: NEW, header for delay functions,
2381         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2382         delay1mtcy,
2383         * device/include/pic16/signal.h: NEW, header providing helper macros
2384         for implementing signal handlers,
2385         * device/include/pic16/stdio.h: added prototypes for functions,
2386         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2387         prototypes for stdin and stdout, added macro PUTCHAR to
2388         automatically implement putchar function prototype,
2389         * device/include/pic16/usart.h: modified and updated USART library,
2390         * device/lib/pic16/libio/adc/,
2391         * device/lib/pic16/libio/i2c: some modifications to improve library
2392         performance,
2393         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2394         family of functions,
2395         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2396         family of functions and other sources,
2397         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2398         of the PIC18Fxx[28] devices,
2399         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2400         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2401         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2402         _do_cinit function, because the previous failed when local variables
2403         where not placed in the same memory bank,
2404         * device/lib/pic16/libsdcc/char/: various modifications to improve
2405         library performance,
2406         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2407         information on the new functions of the c library and more...
2408
2409 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2410
2411         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2412
2413 2005-03-26 Raphael Neider <rneider AT web.de>
2414
2415         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2416           if condition == CARRY)
2417         * (genCmp): adapted to new genSkipc semantics
2418         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2419           on rIfx (genCmp was broken)
2420
2421 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2422
2423         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2424         * src/z80/main.c (_keywords[]),
2425         * src/SDCCglobal.h (struct options),
2426         * src/SDCC.y,
2427         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2428         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2429         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2430         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2431         always available in leading double underscore form. The C99 support is
2432         mostly missing, but it's a start.
2433         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2434         reserved identifier "__data".
2435
2436 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2437
2438         * src/mcs51/peeph.def: fixed bug 1170013
2439
2440 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2441
2442         * device/include/mcs51reg.h: fixed bug 842007
2443
2444 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2445
2446         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2447         last time.
2448
2449 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2450
2451         * src/port.h (struct PORT),
2452         * src/avr/ralloc.c (avr_assignRegisters),
2453         * src/avr/main.c,
2454         * src/ds390/ralloc.c (ds390_assignRegisters),
2455         * src/ds390/main.c,
2456         * src/hc08/ralloc.c (hc08_assignRegisters),
2457         * src/hc08/main.c,
2458         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2459         * src/mcs51/main.c,
2460         * src/pic/ralloc.c (pic14_assignRegisters),
2461         * src/pic/main.c,
2462         * src/pic16/ralloc.c (pic16_assignRegisters),
2463         * src/pic16/main.c,
2464         * src/xa51/ralloc.c (xa51_assignRegisters),
2465         * src/xa51/main.c,
2466         * src/z80/ralloc.c (z80_assignRegisters),
2467         * src/z80/ralloc.h,
2468         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2469         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2470         * src/SDCCcse.h,
2471         * src/SDCCdflow.c (computeDataFlow),
2472         * src/SDCCdflow.h,
2473         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2474         * src/SDCCloop.h,
2475         * src/SDCCcflow.c (*),
2476         * src/SDCCcflow.h,
2477         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2478         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2479         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2480         immedDom() returning wrong block; probably fixes bug #1160833)
2481
2482 2005-03-20 Borut Razem <borut.razem AT siol.net>
2483
2484         * support/scripts/inc2h.pl: WIN32 port
2485
2486 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2487
2488         * device/lib/makefile.in: added abs.c and labs.c
2489
2490 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2491
2492         * device/include/stdint.h: added
2493         * device/lib/abs.c: added
2494         * device/lib/labs.c: added
2495         * device/include/stdlib.h: added abs() and labs() prototypes
2496         * device/lib/libsdcc.lib: added abs and labs
2497         * device/include/float.h,
2498         * device/lib/_fsmul.c,
2499         * device/lib/printf_fast.c,
2500         * device/lib/printf_tiny.c: updated comments
2501
2502 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2503
2504         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2505         bug #1164313
2506
2507 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2508
2509         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2510         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2511
2512 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2513
2514         * device/lib/printf_large.c: removed inline assembly for portability and
2515           readability. Use printf_fast if speed or size are more important.
2516         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2517         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2518
2519 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2520
2521         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2522         prevent compiler warning
2523
2524 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2525
2526         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2527         moved to level 0 and declared as static. Also they are explicit
2528         placed in access bank. This was necessery because some times they
2529         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2530         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2531         optimizations. Currently only compare to unsigned char is implemented,
2532         * src/pic16/gen.c: added fReturnIdx array,
2533         * (struct resolvedIfx) is moved to gen.h and made public,
2534         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2535         * (aopForSym): added an optimization to directly store in stack of
2536         the operand of a SEND iCode,
2537         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2538         but as registers instead (AOP_REG) using the fReturnIdx array,
2539         * (pic16_freeAsmop): remove the freed register from the
2540         _G.sregsAlloc field,
2541         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2542         a compare of 'WREG',
2543         * (pic16_popGetTempRegCond): changed function prototype, now
2544         function takes also a bitVector argument v which holds the current
2545         set of registers that are allocated for stack access by aopForSym,
2546         registers allocated in aopForSym for accessing stack symbols are not
2547         any more part of the functions usedRegs field,
2548         * (genCall): some times aopOp is called for a stack variable to be
2549         send, aopForSym might perform the push, if this is true make sure
2550         that genCall doesn't push the variable twice by testing _G.resDirect,
2551         * (genFunction): changed testing for unspecified interrupt number
2552         from 256 to INTNO_UNSPEC,
2553         * modified selection scheme of frame pointer generation. Previously
2554         if function did use local registers a frame pointer was generated,
2555         now a frame pointer is generated only if function has arguments
2556         (that need PLUSW2 register access), or has stack arguments, or the
2557         compiler is not instructed to omit the frame pointer,
2558         * (genEndFunction): before restoring local registers that were saved
2559         in the function preamble, also restore the registers that *might*
2560         have been allocated for stack access,
2561         * (genRet): removed some old comments,
2562         * (genCmp, the active (RN's) version): added a call to the
2563         pic16_genCmp_special function to perform the compare with a more
2564         robust and optimized way,
2565         * (genInline): a feature has been added in inline code generation,
2566         which allows a wildcard variable substitution when writing inline
2567         assembly. Code is incomplete and experimental therefore undocumented,
2568         * (genCast): changed order of aopOp for result and right to allow
2569         aopForSym to directly load the result if possible,
2570         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2571         perform an optimized compare on some selected special occasions,
2572         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2573         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2574         generate an IVT any more,
2575         * src/pic16/main.c (pic16_optionsTable): added command line option
2576         --optimize-cmp,
2577         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2578         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2579         macros,
2580         * src/pic16/NOTES: Raphael Neider added in list of active developers
2581         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2582         jumptable_end to prevent bug #,
2583         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2584         inCond and outCond fields,
2585         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2586         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2587         turn off register spilling,
2588         * (packRegsForOneUse): synced with other ports' versions although it
2589         is not used currently,
2590         * (pic16_packRegisters): added an optimization while reading
2591         structure bitfields, some registers may be saved (malloc code is
2592         decreased by 80 bytes)
2593
2594 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2595
2596         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2597         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2598         this can be optimized more?
2599
2600 2005-03-10 Raphael Neider <rneider AT web.de>
2601
2602         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2603           genNearPointerGet): (hopefully) fixed access to bitfields via
2604           pointers (p->bitN = x; and x = p->bitN; failed)
2605
2606 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2607
2608         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2609
2610 2005-03-09 Raphael Neider <rneider AT web.de>
2611
2612         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2613
2614 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2615
2616         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2617         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2618           (regTypeNum): set REG_BIT type if necessary
2619         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2620         * support/regression/tests/critical.c: check bug 1144613
2621
2622 2005-03-02 Raphael Neider <rneider AT web.de>
2623
2624         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2625
2626 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2627
2628         * src/avr/ralloc.c (serialRegAssign),
2629         * src/ds390/ralloc.c (serialRegAssign),
2630         * src/hc08/ralloc.c (serialRegAssign),
2631         * src/mcs51/ralloc.c (serialRegAssign),
2632         * src/pic/ralloc.c (serialRegAssign),
2633         * src/pic16/ralloc.c (serialRegAssign),
2634         * src/xa51/ralloc.c (serialRegAssign),
2635         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2636
2637 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2638
2639         * src/SDCCast.c (decorateType): fixed bug 1124787
2640
2641 2005-02-20 Hubert Sack <sack AT digiplan.de>
2642         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2643
2644         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2645         patch #1121755
2646
2647 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2648
2649         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2650         to keep the correct label reference count when adding/removing references
2651         to labels. A peephole file using this is appended to patch #1144962.
2652
2653 2005-02-14 Raphael Neider <rneider AT web.de>
2654
2655         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2656         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2657         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2658           retrievals of result operand's value on assignment
2659
2660 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2661
2662         * device/include/pic16/string.h: modified prototype for memccpy()
2663         to memccpy(void *, void *, char, size_t)
2664         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2665         check whether to omit frame pointer or not,
2666         * (genInline): convert all occurences of "\n" to LF in inline
2667         assembler blocks, this helps formatting the inline text,
2668         * (pic16_loadFSR0): modified prototype,
2669         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2670         removed some 8051 legacy code,
2671         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2672         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2673         before allocating temporary registers in functions,
2674
2675 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2676
2677         * support/regression/tests/bitvars.c: corrected the "fix"
2678
2679 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2680
2681         * support/regression/tests/bitvars.c,
2682         * support/regression/tests/bitwise.c,
2683         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2684
2685 2005-02-10 Raphael Neider <rneider AT web.de>
2686
2687         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2688           different size for Alpha
2689         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2690
2691 2005-02-09 Raphael Neider <rneider AT web.de>
2692
2693         * src/SDCC.lex(doPragma) : save and restore warning options as well
2694           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2695         * have #pragma less_pedantic set the errorlevel to WARNING
2696           (fixes #1117001)
2697         * (cloneOptimize) : fixed wrong malloc's size
2698         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2699           facilitate correct handling of #pragma (save|restore)
2700
2701 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2702
2703         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2704
2705 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2706
2707         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2708
2709 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2710
2711         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2712
2713 2005-02-02 Raphael Neider <rneider AT web.de>
2714
2715         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2716         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2717         * (pic16_storeForReturn): fixed to allow returning function pointers
2718         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2719         * device/include/pic16/{stddef.h,stdbool.h}: added
2720
2721 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2722
2723         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2724
2725 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2726
2727         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2728         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2729          appeared to be required
2730
2731 2005-01-31 Borut Razem <borut.razem AT siol.net>
2732
2733         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2734           include/mcs51 and include/z80 directories to the package
2735
2736 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2737
2738         * src/hc08/gen.c (genFunction): fixed bug #1112752
2739
2740 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2741
2742         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2743
2744 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2745
2746         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2747
2748 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2749
2750         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2751
2752 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2753
2754         * device/include/c8051fxxx.h: removed these 6 files
2755         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2756
2757 2005-01-26 Raphael Neider <rneider AT web.de>
2758
2759         * src/pic16/gen.c (genAssign): fixed assignment from longs
2760           in codespace (were cut to three bytes)
2761         * (genDummyRead): implemented (except for CODESPACE...),
2762           fixed bug #1108575
2763         * src/pic16/glue.c (emitStatistics): beautified
2764         * device/lib/pic16/libm/Makefile: added include path
2765
2766 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2767
2768         * src/z80/gen.c (aopPut): fixed bug #1103902
2769
2770 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2771
2772         * device/lib/expf.c: fixed bug #1095792
2773
2774 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2775
2776         * device/lib/pic16/libm: added Math library sources
2777
2778 2005-01-24 Raphael Neider <rneider AT web.de>
2779
2780         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2781           to enable upcast to pCodeOpReg2 (there is no type tag to
2782           differenciate the two and pic16_popGet2p cast into PCOR2)
2783         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2784           (sizeof(sectNames) changed to sizeof(sectName))
2785           Both patches fix segfaults under MinGW.
2786
2787 2005-01-23 Raphael Neider <rneider AT web.de>
2788
2789         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2790           Safe_[mc]?alloc()'ed variables
2791         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2792           of (byte sized) temporaries (assign them to WREG for now)
2793         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2794           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2795           this might fix SIGSEGVs on MinGW...
2796         * src/SDCCopt.c (killDeadCode): restored original behaviour
2797           (volatile operands might get thrown away though)
2798
2799 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2800
2801         * src/pic16/gen.c: fixed bug #1106975,
2802         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2803         pointer update, INTCON is saved, global interrupts are disabled and
2804         restored after updateing TOS.
2805         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2806         * added function attribute 'shadowregs' to take advantage of shadow
2807         registers,
2808         * added function attribute 'wparam' as an alternative to the wparam
2809         pragma,
2810         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2811         user declares a non-ISR function as 'shadowregs',
2812         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2813
2814 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2815
2816         * .version: bumped version number to 2.4.8
2817         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2818         pic16 port,
2819         * device/lib/pic16/libio/i2c/: I2C module support library,
2820         * device/include/pic16/i2c.h: I2C support library header,
2821         * device/lib/pic16/libc/stdio/: standard IO support sources,
2822         * (printf_small.c): printf_small() source, supports float print,
2823         * (printf_tiny.c): printf_tiny() source, does not support floats,
2824         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2825         enable global optimizations for entire library source, other
2826         Makefiles in the source tree are also modified to reflect this,
2827         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2828         function,
2829         * doc/sdccman.lyx: updated to reflect new changes,
2830         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2831         sym->onStack if-case,
2832         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2833         sbit, idata, _idata, xdata, _xdata,
2834         * added pragma library, to link an external library, (see doc),
2835         * removed command line options, --pomit-config-words, --pomit-ivt,
2836         --pleave-reset-vector,
2837         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2838         when calling assembler to reflect memory model used, also define
2839         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2840         reflect stack model used,
2841         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2842         on stack return NULL,
2843
2844 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2845
2846         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2847           of the operands is volatile. Fixes #1020220
2848
2849 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2850
2851         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2852         * (OptimizeRegUsage): make sure that there is really no other flow where
2853           the first pCode is used
2854
2855 2005-01-22 Raphael Neider <rneider AT web.de>
2856
2857         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2858           to fix #1106967 (pCode->seq are not set up correctly)
2859
2860 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2861
2862         * src/SDCCglue.c (glue): make sure code area is declared before the
2863         static initialization area.
2864
2865 2005-01-21 Raphael Neider <rneider AT web.de>
2866
2867         * device/lib/Makefile.in: fixed test for pic16 install dir
2868         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2869           optimizations
2870         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2871           added --optimize-goto compiler switch and pragma wparam documentation
2872         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2873         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2874           and PRODH closing bug #1071770 (peephole optimizer)
2875
2876 2005-01-19 Raphael Neider <rneider AT web.de>
2877
2878         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2879           cmdLine buffers (used when calling sdcpp...) are large enough
2880           (MAX_PATH=256 truncates arguments leading to system halts when
2881           used in MinGW...)
2882         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2883         * (genUminus): rewritten to for efficiency
2884         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2885           used uninitialized in some cases)
2886         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2887           copy the third byte from the int -- now assumes 0x80 (data memory)
2888         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2889           operands (genAddLit expects the iCode's operands to swapped as
2890           well), fixed leftover bytes (crashed for short left operands)
2891         * (pic16_genMinusDec): performance improvements, removed false
2892           PIC14 emitSKPNCs
2893         * (pic16_genMinus): fixed to cope with differently sized operands
2894         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2895           for --obanksel > 1
2896         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2897         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2898           new banksel optimization
2899         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2900           analysis for temporary registers (segfaults...)
2901         * src/pic16/peeph.def: added rule
2902
2903 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2904
2905         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2906         which converts a float number to its ASCII representation
2907         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2908         functions to convert the fractional and integer part of a float to ASCII,
2909         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2910         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2911         ram
2912         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2913         _STATMEM macros,
2914         * device/include/pic16/adc.h: added GPL info,
2915         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2916         a pCodeOp as tested operand,
2917         * (genNearPointerGet): optimized bit testing, does not use
2918         intermediate register for bit value, test directly instead with
2919         BTFSS, BTFSC, works only for single bits,
2920         * (genpic16Code): dump the name of the iCode in the asm,
2921         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2922         renamed to pic16_decodeOp,
2923         * (serialRegAssign): do not allocate a temporary register for iCode
2924         sequences that test a single bit for 1/0
2925
2926 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2927
2928         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2929         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2930         access stack and frame pointers. They are initially assigned to
2931         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2932         accessing SFRs. Updated all occurences of modification of stack or
2933         frame pointer in gen.c and pcode.c,
2934         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2935         assigning of a literal value to pointers,
2936         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2937         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2938         selected
2939
2940 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2941
2942         * doc/sdccman.lyx: update documentation about stack pragma, added
2943         some info for stack memory models
2944
2945 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2946
2947         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2948
2949 2005-01-08 Raphael Neider <rneider AT web.de>
2950
2951         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2952           udata sections to fix bug #1097823
2953
2954 2005-01-05 Raphael Neider <rneider AT web.de>
2955
2956         * src/pic16/gen.c (genGenericShift): added handling of differently
2957           sized left operand and result
2958
2959 2005-01-04 Raphael Neider <rneider AT web.de>
2960
2961         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2962         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2963           to hold the condition bit)
2964         * added new version of genCmp (old code available via #define)
2965         * added new version of genShiftLeft/genShiftRight in a generic
2966           way, now supports shifting by negative values
2967         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2968           shiftCount (expected by genGenericShift)
2969         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2970         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2971           dump
2972         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2973           is an invalid literal too...)
2974
2975 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2976
2977         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2978         from Raphael Neider,
2979         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2980         for 8-bit literals. This fixes some literal operands which are sign
2981         extended to 16-bits ints when instruction needs only 8-bits.
2982
2983 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2984
2985         * device/lib/logf.c: added mcs51 assembly version
2986         * device/lib/expf.c: added mcs51 assembly version
2987         * device/lib/_logexpf.c: new shared asm code for expf and logf
2988         * device/include/math.h: add defines for assembly math library
2989         * device/lib/Makefile.in: build new _logexpf.c
2990         * device/lib/libfloat.lib: use new _logexpf.c
2991
2992 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2993
2994         * src/pic/device.c
2995         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2996           device types which have less than 0x7f registers.
2997
2998 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2999
3000         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3001
3002 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3003
3004         * device/lib/printf_fast.c: only build on supported arch.
3005         * device/lib/printf_tiny.c: only build on supported arch.
3006         * device/lib/printf_fast_f.c: only build if asm float lib
3007         * device/lib/_fsget1arg.c: only build if asm float lib
3008         * device/lib/_fsget2args.c: only build if asm float lib
3009         * device/lib/_fsnormalize.c: only build if asm float lib
3010         * device/lib/_fsreturnval.c: only build if asm float lib
3011         * device/lib/_fsrshift.c: only build if asm float lib
3012         * device/lib/_fsswapargs.c: only build if asm float lib
3013         * device/include/stdio.h: don't provide print_fast,
3014           print_fast_f, print_tiny prototypes if --xstack used
3015
3016 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3017
3018         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3019         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3020           to the SOURCES
3021
3022 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3023
3024         * device/lib/printf_fast_f.c: same as printf_fast, but
3025           with floating point enabled
3026         * device/lib/printf_fast.c: minor tweaks
3027         * device/include/stdio.h: add printf_fast_f
3028
3029 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3030
3031         * src/SDCCmain.c: make --float-reent default for mcs51
3032         * device/lib/_fsadd.c: added mcs51 assembly version
3033         * device/lib/_fssub.c: added mcs51 assembly version
3034         * device/lib/_fsmul.c: added mcs51 assembly version
3035         * device/lib/_fsdiv.c: added mcs51 assembly version
3036         * device/lib/_fseq.c: added mcs51 assembly version
3037         * device/lib/_fsneq.c: added mcs51 assembly version
3038         * device/lib/_fsgt.c: added mcs51 assembly version
3039         * device/lib/_fslt.c: added mcs51 assembly version
3040         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3041         * device/lib/Makefile.in: add _fscmp to build
3042         * device/lib/libfloat.lib: add _fscmp to build
3043
3044 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3045
3046         * device/lib/_fs2slong.c: added mcs51 assembly version
3047         * device/lib/_fs2sint.c: added mcs51 assembly version
3048         * device/lib/_fs2schar.c: added mcs51 assembly version
3049         * device/lib/_fs2ulong.c: added mcs51 assembly version
3050         * device/lib/_fs2uint.c: added mcs51 assembly version
3051         * device/lib/_fs2uchar.c: added mcs51 assembly version
3052         * device/lib/_slong2fs.c: added mcs51 assembly version
3053         * device/lib/_sint2fs.c: added mcs51 assembly version
3054         * device/lib/_schar2fs.c: added mcs51 assembly version
3055         * device/lib/_ulong2fs.c: added mcs51 assembly version
3056         * device/lib/_uint2fs.c: added mcs51 assembly version
3057         * device/lib/_uchar2fs.c: added mcs51 assembly version
3058         * device/include/float.h: added #define to select asm vs c
3059
3060 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3061
3062         * device/lib/printf_fast.c: improvements to float output
3063         * device/include/float.h: add defines for assembly float library
3064         * device/lib/_fsget1arg.c: receive 1 float arg
3065         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3066         * device/lib/_fsnormalize.c: normalize a float
3067         * device/lib/_fsreturnval.c: return float, various helper routines
3068         * device/lib/_fsrshift.c: right shift a float's mantissa
3069         * device/lib/_fsswapargs.c: swap 2 floats
3070         * device/lib/Makefile.in: build these 6 new files for mcs51
3071         * device/lib/libfloat.lib: add these 6 files to the library
3072
3073 2004-12-26 Borut Razem <borut.razem AT siol.net>
3074
3075         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3076           built by gcc 3.4.2
3077
3078 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3079
3080         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3081           and fully reentrant and register bank neutral.
3082         * device/lib/printf_fast.c: added float (not enabled by default),
3083           added compact/slower integer (also not enabled by default),
3084           improved size/speed of fast integer code, other minor changes
3085         * device/include/stdio.h, device/lib/Makefile.in,
3086           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3087
3088 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3089
3090         * src/pic16/pcode.c: declaring variables other than at the start of a
3091           block is not supported in C by VC6.
3092
3093 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3094
3095         * applied a previous patch from Raphael Neider that wasn't included
3096         in the previous commits, which fixes infinite loops within jumptable
3097         improvements,
3098         * made some fixes that previous patches introduced
3099
3100 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3101
3102         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3103         that fixes an issue with AOP_PCODE asmop's offset,
3104         * (pic16_popCopyReg): update instance field too,
3105         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3106         function of pic port,
3107         * (genCmp, genAnd, genAssign),
3108         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3109
3110 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3111
3112         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3113         variables initial values to idata section,
3114         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3115         variables in some functions. This utilizes parmBytes field of iCode
3116         structure to hold the offset of the variable in stack. (might be
3117         able to use the stack field too?)
3118         * applied patch from Raphael Neider # ### , # ###
3119         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3120         variable initial values in idata section,
3121         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3122         for static variables with initial value
3123         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3124         applied fix in while loop from Raphael Neider.
3125
3126 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3127
3128         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3129         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3130         * src/ds390/ralloc.c (serialRegAssign): spill bits
3131         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3132         * support/Util/SDCCerr.c,
3133         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3134         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3135         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3136
3137 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3138
3139         * device/include/sdcc-lib.h: inserted LGPL, added includes
3140           asm/ds390/features.h and asm/mcs51/features.h
3141         * device/include/asm/default/features.h,
3142         * device/include/asm/gbz80/features.h,
3143         * device/include/asm/z80/features.h: added empty _AUTOMEM
3144           and _STATMEM
3145         * device/include/asm/ds390/features.h,
3146         * device/include/asm/mcs51/features.h: added files with defines for
3147           _AUTOMEM and _STATMEM indicating automatic and static storage class
3148         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3149         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3150         * src/SDCCicode.c (geniCodeCast),
3151         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3152         * src/SDCCloop.c (loopInduction): removed unused variable lr
3153         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3154           to convertToFcall to include char modulo (RFE 1065037), added check
3155           if left operand is unsigned and use abs of literal value
3156         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3157           as it doesn't work after conversion from peephole.def to peephole.rul
3158         * src/mcs51/gen.c (toBoolean): added check for size,
3159           (genModOneByte): optimized code for signed char modulo a literal
3160           power of 2 (thanks to Hubert Sack),
3161           (genRRC): removed unnecessary "clr c",
3162           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3163         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3164           jump optimization,
3165           swapped rules 256.c and 256.d,
3166           extended 256.d by using new multiple checks (thanks Erik),
3167           added rules 256.e and 256.f,
3168           updated rule 261.a and 261.b to new generated code
3169         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3170
3171 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3172
3173         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3174           induction related bugs, including first part of bug #1074377
3175
3176 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3177
3178         * applied patch from bug-report #1076292,
3179         * applied patches for genAnd and Goto-optimizations for Raphael
3180         Neider,
3181         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3182         dump a less iCode information,
3183         * src/pic16/device.h (pic16_options_t): added field debgen,
3184         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3185         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3186         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3187         puclic,
3188         * (various functions): added macros FENTRY and FENTRY2 to functions,
3189         to emit function prologue,
3190         * (various functions): fixed indentation,
3191         * (genNearPointerGet): fixed loading of FSR0,
3192         * (genPackBits): applied patch from Raphael Neider to fix updating
3193         of FSR0 and touching only the modified bits,
3194         * src/pic16/genarith.c (various functions): added macros FENTRY to
3195         emit function prologue in comments,
3196         * src/pic16/pcode.h: added functions debugf2, debugf3,
3197         * src/pic16/ralloc.c: partial fix for packForPush caused
3198         segmentation fault,
3199
3200 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3201
3202         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3203           <stsp AT users.sourceforge.net> with reversed byte order
3204         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3205
3206 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3207
3208         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3209           bug #1074377
3210         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3211         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3212
3213 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3214
3215         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3216
3217 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3218
3219         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3220           conditions,
3221           (setFromConditionArgs): friendly operand parser for peephole rules,
3222           (operandBaseName, operandsNotRelated): new peephole condition
3223           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3224           architecture specific register naming into account, handles n-way
3225           comparisons, and supports quoted literals
3226         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3227
3228 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3229
3230         * src/mcs51/peeph.def: fixed bug #1076940
3231
3232 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3233
3234         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3235
3236 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3237
3238         Adding support for replacing ljmps with sjmps in jumptables
3239         generated for switch statements. For now you need to set the
3240         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3241         Now 4 algorithms for mcs51 jumptable generation are used:
3242         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3243         addresses loaded pc-relative for up to 112 cases and stack-pushing
3244         target addresses loaded with offset from dptr for up to 256 cases.
3245
3246         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3247         * src/mcs51/main.c: adapted constants for switch table generation
3248         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3249
3250 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3251
3252         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3253         * support/regression/tests/bug1057979.c: added test for bug 1073386
3254
3255 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3256
3257         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3258         compilers
3259
3260 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3261
3262         * src/pic16/device.h,
3263         * src/pic16/genarith.c,
3264         * src/pic16/glue.c,
3265         * src/pic16/main.c,
3266         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3267
3268 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3269
3270         Large cummulative patch for pic16 port.
3271         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3272         to call when a stack overflow occurs,
3273         * (malloc.h): added CVS Id tag,
3274         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3275         variable,
3276         * added libc directory. The current version of LibC contains string
3277         functions, ctype functions and macros and some functions of the
3278         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3279         be extensively tested in the future. Standard disclaimer here.
3280         Library is not automatically build yet. But one can build it by
3281         invoking 'make' inside the libc directory.
3282         * added ADC library under libio. Preliminary version yet.
3283
3284         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3285         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3286         aopForRemat() now and not by pic16_aopOp(),
3287         * (pic16_popGetTempReg): removed warning messgae when allocating
3288         temporary registers, its a buggy feature and will be removed,
3289         * (pic16_popGet): set register instance field in AOP_CRY,
3290         * (pic16_outBitC): fixed for results in size greater than 1,
3291         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3292         * (pic16_storeForReturn): optimized return of 0,
3293         * (genCmp): experimental code for new genCmp which uses PIC18's
3294         special compare&skip instructions. Initial tests fail some times
3295         with variables grater than 1 byte in size, so new code is disabled,
3296         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3297         a single bit,
3298         * (genCast): began a fix to optimize the casting of a bit to another
3299         bit, now assigning a bitfield to another bitfield will fail, sorry,
3300         * src/pic16/main.c: disabled the use of lr-support feature,
3301         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3302         * added some function prototypes, added function _debugf prototype,
3303         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3304         bits with offset (case PO_GPR_BIT),
3305         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3306         command line,
3307         * (isBankInstruction): modified to return 0 for no banking instruction,
3308         and 1 for banking instruction,
3309         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3310         caused stop processing pCodes after a inline assembly block,
3311         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3312         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3313         registers when it shouldn't,
3314         * src/pic16/ralloc.c (allocReg): add preliminary support for
3315         supporting a limited set of temporary registers,
3316
3317 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3318
3319         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3320           genDataPointerSet): ensure assignments always copy in MSB to LSB
3321           order,
3322           (loadRegFromAop): recognize CLRH optimization,
3323           (genFunction): optimize RECEIVE iCodes in reentrant functions
3324
3325 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3326
3327         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3328           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3329           selected.
3330         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3331         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3332           contiguous with data
3333
3334 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3335
3336         * device/lib/_gptrget.c (_gptrget),
3337         * device/lib/_gptrgetc.c (_gptrgetc),
3338         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3339           instead of sjmp to ret
3340         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3341           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3342
3343 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3344
3345         * .version: bumped version to 2.4.7
3346         * device/lib/_gptrget.c (_gptrget): is now _naked
3347         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3348         * device/lib/_gptrput.c (_gptrput): is now _naked
3349         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3350           (createFunction): fixed xstack
3351         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3352         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3353           or bit either,
3354           (geniCodeCritical): store original interrupt state in an iTemp bit
3355           var unless stack-auto
3356         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3357         * src/SDCCmain.c (setIncludePath): added include/target to search path
3358         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3359         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3360           prototype,
3361           (processFuncArgs): put bit vars in bit area
3362         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3363           unsaveRBank): fixed xstack,
3364           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3365           (genFunction, genEndFunction): fixed xstack,
3366           (genAssign): optimization don't walk backwards through mem
3367         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3368         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3369         * support/regression/Makefile: also make library (for stack-auto) when
3370           making "all" and added "test-mcs51-xstack-auto"
3371         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3372         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3373         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3374         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3375         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3376           make-library by MAKE_LIBRARY
3377         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3378           regression tests for xstack
3379         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3380         * support/regression/tests/critical.c: test for critical on mcs51
3381
3382 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3383
3384         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3385           built version of sdcc instead of installed version
3386
3387 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3388
3389         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3390         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3391           vprintf.c now
3392         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3393         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3394           WARNING: remove device/lib/build/z80/printf.o by hand when
3395           updating from previous build!
3396         * device/lib/z80/printf.c: updated comment
3397         * support/regression/tests/bug1057979.c: test all ports now
3398         * support/regression/tests/bug1065458.c: file added
3399
3400 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3401
3402         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3403           *_start and *_end symbols for static functions
3404
3405 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3406
3407         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3408           and search crt0.o in all library paths,
3409           (setIncludePath): proper handling of --nostdinc,
3410           (setLibPath): proper handling of --nostdlib
3411         * support/regression/Makefile,
3412         * support/regression/ports/ds390/spec.mk,
3413         * support/regression/ports/gbz80/spec.mk,
3414         * support/regression/ports/hc08/spec.mk,
3415         * support/regression/ports/mcs51/spec.mk,
3416         * support/regression/ports/mcs51-large/spec.mk,
3417         * support/regression/ports/mcs51-stack-auto/spec.mk,
3418         * support/regression/ports/z80/spec.mk: use include and lib files from
3419           built version of sdcc instead of installed version
3420         * doc/sdccman.lyx: fixed typo in --nostdinc
3421
3422 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3423
3424         * src/pic/pcode.c,
3425         * src/pic/device.c,
3426         * src/pic/ralloc.c,
3427         * src/pic/gen.c : added support to generate code for struct bit fields.
3428
3429 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3430
3431         * as/xa51/xa_version.h,
3432         * device/include/errno.h,
3433         * device/include/regc515c.h,
3434         * device/lib/_itoa.c,
3435         * device/lib/_ltoa.c,
3436         * device/lib/ser_ir_cts_rts.c,
3437         * sim/ucsim/xa.src/glob.cc,
3438         * sim/ucsim/xa.src/inst_gen.cc,
3439         * sim/ucsim/xa.src/xa_bit.cc,
3440         * sim/ucsim/xa.src/xa_sfr.cc,
3441         * sim/ucsim/z80.src/inst_dd.cc,
3442         * sim/ucsim/z80.src/inst_fdcb.cc,
3443         * support/scripts/keil2sdcc.pl,
3444         * src/pic16/pic16.dsp,
3445         * src/pic16/pic16a.dsp: corrected cvs line endings
3446         * device/lib/printf_large.c: fixed bug 1057979
3447         * src/pic16/gen.c: fixed non-C standard code
3448         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3449         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3450         * support/regression/ports/mcs51/support.c: reload T1 asap
3451         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3452           pdata use and clear idata startup behaviour
3453         * support/regression/tests/bug1057979.c: added
3454
3455 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3456
3457         * device/examples/ds390/ow390/ad26.h,
3458         * device/examples/ds390/ow390/cnt1d.h,
3459         * device/examples/ds390/ow390/crcutil.c,
3460         * device/examples/ds390/ow390/ownet.h,
3461         * device/examples/ds390/ow390/owsesu.c,
3462         * device/examples/ds390/ow390/swt12.h,
3463         * device/examples/ds390/ow390/swtoper.c,
3464         * device/examples/ds390/ow390/temp10.h,
3465         * device/examples/ds390/ow390/thermodl.c,
3466         * device/examples/ds390/tinitalk/tinitalk.dsp,
3467         * device/examples/ds390/tinitalk/tinitalk.dsw,
3468         * device/examples/mcs51/clock/hw.h,
3469         * device/examples/mcs51/simple2/go.bat,
3470         * device/examples/serialcomm/windows/serial.h,
3471         * device/examples/xa51/dummy.c,
3472         * device/examples/xa51/hello.c,
3473         * device/include/80c51xa.h,
3474         * device/include/at89x051.h: corrected cvs line endings
3475
3476 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3477
3478         * src/pic16/main.c (options): added command line --gstack, to trace
3479         stack over/under flows,
3480         * added pragma 'wparam' to allow passing first byte of function
3481         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3482         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3483         call to __gstack_test function and sets up the symbol as extern,
3484         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3485         * popaop): added call to pic16_testStackOverflow,
3486         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3487         wparamList list,
3488         * (genCall, genPcall): now all parameters are passed via stack
3489         except in functions that are pass to wparam pragma in which WREG is
3490         used too,
3491         * (genPcall): REENTRANT flag is checked to see if variable prototype
3492         contains reentrant keyword, don't call a non-reentrant function, via
3493         a reentrant function pointer or vice versa, functions are never
3494         passed via WREG,
3495         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3496         D.Winkler,
3497         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3498         SIGSEGV when accessing a NULL register stucture,
3499         * (pic16_printGPointerType): modified to handle UPPER modifier for
3500         function initializers, changed prototype of function to simpler one,
3501         * (pic16_printIvalFuncPtr): check to see if function is already
3502         added in externs list,
3503         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3504         optimized a move from W to SFR with a move to the same register
3505         later after a CALL,
3506         * device/lib/pic16/debug: NEW directory, contains debug features
3507         which are enabled when linking with libdebug.lib, currently command
3508         line option --gstack enables stack pointer tracing for over/under
3509         flow, corresponding sources are in debug/gstack
3510
3511 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3512
3513         * doc/sdccman.lyx: updated SDCC version,
3514         * (PIC16 port): update list of command line options,
3515         * src/pic16/device.h (structure pic16_options_t): added field gstack
3516         to enable stack overflow tracing on push/pops,
3517         * src/pic16/device.c (statistics structure): added statistics
3518         structure,
3519         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3520         pic16_dump_int_registers): increase statistics counters for each
3521         * variable which is encountered
3522         * (pic16_dump_usection): emit each .udata variable to its own udata
3523         section,
3524         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3525         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3526         parameters via stack, otherwise use old scheme,
3527         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3528         assembler output file,
3529         * src/pic16/main.c: added command line options --gstack to enable
3530         push/pop tracing for stack overflow,
3531         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3532         instructions): added size of each instruction,
3533         * (pic16_countInstruction): estimate size of instructions in
3534         the_pFile list, inline assembly blocks are not counted,
3535         * (pic16_FixRegisterBanking): trace previous register usage, when
3536         banksel optimizations is greater than 0, don't emit a redudant
3537         banksel directive,
3538
3539 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3540
3541         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3542         * src/pic16/ralloc.c : applied same fix for pic16.
3543         * src/pic/gen.c : tidied it up a little.
3544
3545 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3546
3547         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3548         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3549
3550 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3551
3552         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3553
3554 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3555
3556         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3557         non-reentrant function __modsint in the interrupt function (thus
3558         corrupting math operations during serial I/O)
3559         * device/lib/ser_ir.c: as above, changed buffersize
3560         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3561         256.c,d for zeroing
3562         * doc/Makefile: added option -t for rsync
3563
3564 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3565
3566         * src/SDCCast.h (struct ast),
3567         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3568
3569 2004-10-20 Borut Razem <borut.razem AT siol.net>
3570
3571         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3572         package
3573
3574 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3575
3576         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3577         makefile targets,
3578         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3579         support functions to replace long sequences of MOVFF's from access
3580         bank registers to stack and vice versa,
3581         * src/pic16/device.h: added new field opt_flags, where optimization
3582         flags can be set to enable certain features,
3583         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3584         * pBlock, (genFunction, genEndFunction): surroung loop for
3585         saving/loading used registers in stack with PC_INFO pCodes,
3586         INF_LREGS. Code in between can then be optimized by pCode optimizer
3587         to support function calls,
3588         * (genDataPointerSet): fixed bug which loaded float fields in
3589         structures with corrupt data,
3590         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3591         in a standard way debug info on stderr. Feature used for developing
3592         and debugging only,
3593         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3594         obsolete chunks of code,
3595         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3596         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3597         * pic16/src/pcode.c (pic16_newpCodeInfo,
3598         * (pic16_newpCodeOpLocalRegs),
3599         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3600         feature,
3601         * (pic16_pCodeConstString): printing of the initial value of a
3602         symbol as a comment is inhibited since parsing was already done by
3603         copyStr and output is corrupt,
3604         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3605
3606 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3607
3608         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3609
3610 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3611
3612         * as/mcs51/lkarea.c: removed old K&R style,
3613           (lnksect): changed check on boundary error,
3614           (lnksect2): changed check on boundary error,
3615           (lnksect2): extend XSTK to end of page if size = 1
3616         * as/mcs51/lkmain.c: removed old K&R style,
3617           (Areas51): create l_IRAM symbol
3618         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3619         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3620           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3621         * device/lib/_mullong.c: added version to be compiled with xstack
3622         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3623         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3624         * device/lib/mcs51/crtxstack.asm: fixed comment
3625         * src/SDCCglue.c: maxInterrupts defaults to 0,
3626           (emitMaps): added pdata,
3627           (createInterruptVect): (re)moved default,
3628           (glue): added pdata,
3629           (glue): moved __start__xstack to XSTK with default size 1
3630         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3631           and options.float_rent when options.stackAuto is set,
3632           (linkEdit): only write XDATA_NAME if provided on command line
3633         * src/SDCCmem.h,
3634         * src/SDCCmem.c: added pdata
3635         * src/port.h: added pdata_name to PORT
3636         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3637           (saveRegisters, unsaveRegisters): removed usage of B,
3638           (genMinus): fixed accumulator clash,
3639           (genJumpTab): added comment, this needs another look
3640         * src/mcs51/gen.c: added check for "B in use" paranoia,
3641           added pushB() and popB()
3642         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3643           chance
3644         * src/avr/main.c,
3645         * src/ds390/main.c,
3646         * src/hc08/main.c,
3647         * src/mcs51/main.c,
3648         * src/pic/main.c,
3649         * src/pic16/main.c,
3650         * src/xa51/main.c,
3651         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3652           added PSEG (PAG,XDATA) or NULL to port specifier
3653         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3654         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3655           (_mcs51_genInitStartup): removed __start__xstack equ,
3656           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3657         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3658         * src/z80/gen.c (_rleAppend): fixed warnings
3659         * support/regression/tests/zeropad.c: added pdata test
3660         * .version: bumped to 2.4.6
3661
3662 2004-10-17 Borut Razem <borut.razem AT siol.net>
3663
3664         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3665         as a part of nightly build
3666
3667 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3668
3669         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3670         WREG holds the first byte function parameters,
3671         * (aopForSym): take special case for symbols which are in FARSPACE
3672         but in CODESPACE too,
3673         * (assignResultValue): modified to take into account _G.useWreg,
3674         * (genCall): don't use wreg for parameter passing when function is
3675         declared as reentrant, too, added optimization INCF to stack
3676         pointer when stack parameter count is 1,
3677         * (genFunction, genEndFunction): refurnished and fixed to not using
3678         wreg for passing parameters when function has varargs or is
3679         reentrant, fixed bug with symbol name compare for generating
3680         functions in absolute address,
3681         * (pic16_storeForReturn): refurnished,
3682         * (genCmp): began writing a new version of the function, not ready
3683         yet, therefore it is disabled,
3684         * (genAssign): do not read code memory when assigning a function to
3685         a pointer function,
3686         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3687         array of characters, not pointer,
3688         * (pic16initialComments): in debug mode emit an .ident directive for
3689         the assembler,
3690         * (_process_pragma): emit a new warning type (internal to pic16)
3691         when setting stack to default length, emit a similar warning when
3692         placing a function at absolute address and address is not word aligned
3693         * (_pic16_parseOptions): added 'return TRUE' statement,
3694         * (_pic16_linkEdit): if compiling a source, then add the source's
3695         file object, first in the list of objects to link,
3696
3697 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3698
3699         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3700         * src/pic/main.c : removed VC warning.
3701         * src/pic/gen.c : changed comment.
3702
3703 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3704
3705         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3706         reference to a deprecated symbol _GPTRREG was causing failure to
3707         link. Thanks G. M. Gallant for the info.
3708
3709 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3710
3711         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3712         comments for Bugs item #954788.
3713
3714 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3715
3716         * src/pic16/device.c (pic16_dump_gsection,
3717         * pic16_groupRegistersInSection): handle symbols declared to be in
3718         access bank differently,
3719         * src/pic16/gen.c (struct _G): added field resDirect,
3720         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3721         send values read from stack directly to result and don't allocate
3722         temporary values,
3723         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3724         same registers,
3725         * (pic16_sameRegsOfs): NEW,
3726         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3727         free because they were not allocated from temporary pool,
3728         * pic16_popRegFromString): workaround to fix a problem with
3729         allocating variables twice or never,
3730         * (genGenPointerGet): using PRODL instead of FSR0H,
3731         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3732         instead of FSR0H,
3733         * (genAssign): take advantage of the _G.resDirect flag,
3734         * (genCast): around line 11844, use mov2f instead of directly
3735         MOVFF'ing between operands to account for literal values,
3736         * src/pic16/genutils.c: some new debug functions for gpsim have been
3737         added,
3738         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3739         float with integer part only,
3740         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3741         place variables in access bank
3742         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3743         updated sources to reflect recent changes in gen.c
3744
3745 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3746
3747         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3748         sources that searched for headers in installation path, now the
3749         device/include/pic16 is used,
3750         * src/pic16/glue.c (pic16glue),
3751         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3752         .line directives if not in debug mode, this suppresses assembler's
3753         warnings for ignored directives
3754
3755 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3756
3757         * src/port.h: made reset_regparms prototype void parameter explicit.
3758         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3759         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3760         * doc/sdccman.lyx: documented warning disabling and how to use
3761           printf_large to make it print floats.
3762         * device/include/stdbool.h: NEW
3763         * device/lib/_atof.c,
3764         * device/lib/_divuint.c,
3765         * device/lib/_divulong.c,
3766         * device/lib/expf.c,
3767         * device/lib/printf_large.c,
3768         * device/lib/sincosf.c,
3769         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3770         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3771           a completely reentrant lib.
3772
3773 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3774
3775         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3776         * device/include/pic16/stdio.h: fixed bug with colon
3777
3778 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3779
3780         * device/include/pic16/stdio.h,
3781         * device/include/pic16/stdlib.h,
3782         * device/include/pic16/math.h: NEW
3783         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3784         declared as _naked to reduce overhead
3785         * device/lib/Makefile.in (target port-specific-objects-pic16):
3786         changed * to *.* so to ignore the CVS directory,
3787         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3788         stacked variables back in stack,
3789         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3790         corruption
3791
3792 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3793
3794         * .version: bumped version number to 2.4.5
3795         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3796         * support/Util/SDCCerr.c (messages structure): added entry for
3797         W_POSSBUG2
3798
3799         Large cumulative patch for pic16 port and libraries.
3800         * device/include/pic16/sdcc-lib.h,
3801         * device/include/pic16/stdarg.h,
3802         * device/include/asm/pic16/features.h,
3803         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3804         * device/include/pic16/float.h: changes reentrant keyword with
3805         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3806         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3807         updated target build-libraries to include objects from gptr,
3808         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3809         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3810         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3811         all function headings,
3812         * src/SDCCmain.c: added global parameter userIncDirsSet,
3813         * (parseCmdLine): when option -I is encountered add directory to
3814         userIncDirsSet too,
3815         * src/version.awk: added space between control and long,
3816         * src/pic16/NOTES: added some notes for the port,
3817         * src/pic16/gen.c: added prototype for mov2fp function,
3818         * (fReturnpic16[]): properly named return value registers,
3819         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3820         * (aopForSym): added code to handle symbols with onStack flag set,
3821         symbols onStack are allocated PTRSIZE bytes,
3822         * (aopFreeAsmop): handles special case where asmops are stack objects,
3823         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3824         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3825         added argument lock to trace flaws in allocating temporary registers
3826         when developing port,
3827         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3828         * (pic16_popRegFromString): reenabled allocating a direct register
3829         from string,
3830         * (assignResultValue): various beautifications,
3831         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3832         referenced function argument,
3833         * (genIpush): reenabled to allow stacked arguments, handles only
3834         ic->parmPush iCodes,
3835         * (genCall, genPcall): major changes to allow for variable argument
3836         functions, fixed a bug with falsely restoring stack pointer after
3837         returning from call,
3838         * (genFunction): pending code for critical function,
3839         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3840         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3841         * (genNearPointerGet): fixed bug with indirect reading, was always
3842         reading from INDF0
3843         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3844         pointers,
3845         * (genAddrOf): rewrote code to take address of a stacked function parameter
3846         * (genCast): fixed casting to generic pointer type,
3847         * src/pic16/gen.h: added AOP_STA,
3848         * (struct asmop): added field stk,
3849         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3850         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3851         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3852         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3853         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3854         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3855         generic pointers,
3856         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3857         and library paths,
3858         * (pic16_port structure): generic pointer size is set to 3,
3859         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3860         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3861         compiler warning,
3862         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3863         operand is an iTemp,
3864
3865 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3866
3867         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3868         * debugger/mcs51/simi.c: addapt new syntax of s51
3869
3870 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3871
3872         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3873         * src/pic16/pcode.c: commented out some calls to free() in order to
3874         fix bug #989576,
3875
3876 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3877
3878         * src/SDCCicode.h,
3879         * src/SDCCicode.c (isiCodeInFunctionCall),
3880         * src/avr/ralloc.c (selectSpil),
3881         * src/pic/ralloc.c (selectSpil),
3882         * src/pic16/ralloc.c (selectSpil),
3883         * src/ds390/ralloc.c (selectSpil),
3884         * src/hc08/ralloc.c (selectSpil),
3885         * src/xa51/ralloc.c (selectSpil),
3886         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3887         stack in the middle of a function call sequence (fixes bug #1020268)
3888         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3889         costs associated with the minimum switch case.
3890
3891 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3892
3893         * src/SDCC.lex: fixed bug #1030549
3894
3895 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3896
3897         * src/SDCCcse.h (struct cseDef),
3898         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3899         over a function call if the CSE is derived from a symbol whose
3900         address has been taken (fixes bug #1029883)
3901         * support/regression/tests/bug-1029883: a new regression test for
3902         this bug
3903
3904 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3905
3906         * src/hc08/gen.c (emitinline): fixed bug #1029778
3907         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3908         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3909         and starts toward RFE #905167)
3910
3911 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3912
3913         * src/pic16/gen.c (mov2f): New function to move an operand to
3914         another without considering if it is a literal or a register,
3915         * (pic16_sameRegs): don't check if they are both AOP_REG,
3916         * (AccRsh): removed andmask=0 lines,
3917         * (genLeftShift): duplicated to be improved in future versions,
3918         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3919         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3920         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3921         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3922         * (insertBankSwitch): fixed inserting banksel directives algorithm
3923         for instructions that follow a skip instruction, this fixes a report
3924         for broken subtraction code generation,
3925         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3926         iCode is a left op, just in case result and right share the same
3927         registers
3928
3929 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3930
3931         * src/hc08/main.c,
3932         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3933         preservation of HX
3934         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3935         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3936         on 2004-09-12; it was buggy
3937
3938 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3939
3940         * src/SDCCsymt.h: removed RESULT_CHECK
3941         * src/SDCCast.c,
3942         * src/SDCCglue.c,
3943         * src/SDCCval.c,
3944         * src/pic/glue.c,
3945         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3946
3947 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3948
3949         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3950         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3951         configuration values no more rejected by compiler, they are assigned
3952         to configuration registers with a warning message instead,
3953         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3954         the for-loop so last conf register is emitted too,
3955         * (_pic16_initPaths): link library libsdcc.lib by default,
3956         * (_hasNativeMulFor): modified test for multiplication according to
3957         Raphael Neider's remarks. Integer multiplication is also done with
3958         support functions,
3959         * device/include/pic16/pic18fregs.h: corrected type error in while
3960         testing and including 18f6720 header file
3961
3962 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3963
3964         * src/pic16/device.h (pic16_options): removed field use_crt,
3965         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3966         until an optimization to handle single bits is added,
3967         * (pic16_loadFSR0): moved before genUnpackBits,
3968         * (genAnd): some white lines removed,
3969         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3970         leave_reset flags in pic16_options when using crt modules,
3971
3972 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3973
3974         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3975           for bugs 898889 & 979599. Also used some safer print instructions.
3976
3977 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3978
3979         * src/pic16/device.h (pic16_options_t): added field use_crt,
3980         crt_name, no_crt,
3981         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3982         catch a probable future bug,
3983         * src/pic16/gen.c: aopIdx function commented out,
3984         * (genAssign): commented out old code which used aopIdx,
3985         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3986         code, added if conditionals to take into account the --use-crt
3987         command line options,
3988         * src/pic16/main.c (pic16_optionsTable): added new command line
3989         options, --use-crt= and --no-crt,
3990         * (_pic16_linkEdit): now the proper crt object is added in the
3991         linker command line except than when --no-crt is specified,
3992         * src/pic16/pcode.c,
3993         * src/pic16/pcode.h: added some structures and functions for a new
3994         optimization scheme to compansate for instruction overhead between
3995         same iCodes, this scheme is currently under development and is not
3996         working in any way,
3997         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3998         to && operator,
3999         * device/lib/pic16/startup/crt0i.c,
4000         * device/lib/pic16/startup/crt0iz.c: added global char variable
4001         __uflags to force the generation of an idata section
4002
4003 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4004
4005         * doc/Makefile,
4006         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4007         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4008
4009 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4010
4011         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4012         Frieder) and clarified the default code optimization mode
4013
4014 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4015
4016         * src/SDCC.lex (doPragma, process_pragma),
4017         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4018         "opt_code_size", and "opt_code_balanced"
4019         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4020         regrouped options by category, added support for category headers
4021         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4022         and "--opt-code-size"
4023         * doc/sdccman.lyx: documented these new options and pragmas
4024         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4025         preference into account
4026
4027 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4028
4029         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4030           geniCodePreDec): Fixed bug 904237 by generating a warning
4031         * src/SDCCerr.h,
4032         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4033
4034 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4035
4036         * src/pic/device.c : When no max ram set validate full memory range.
4037         * src/pic/pcode.c,
4038         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4039
4040 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4041
4042         * device/lib/_gptrget.c,
4043         * device/lib/_gptrput.c: updated comment
4044         * device/lib/calloc.c,
4045         * device/lib/free.c,
4046         * device/lib/malloc.c,
4047         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4048         * src/SDCCcse.c (cseBBlock),
4049         * src/SDCCicode.c (printOperand, geniCodeArray),
4050         * src/SDCCicode.h (struct operand): fixed bug 868103
4051         * support/regression/tests/bug-868103.c: added
4052         * src/SDCCast.c (searchLitOp),
4053         * src/SDCCcse.h (struct cseDef),
4054         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4055         * src/SDCCicode.h (struct operand),
4056         * src/SDCCsymt.h (struct sym_link),
4057         * src/avr/gen.c (hasInc),
4058         * src/ds390/gen.c (hasInc),
4059         * src/hc08/gen.c (genPlusIncr, hasInc),
4060         * src/mcs51/gen.c (hasInc),
4061         * src/pic16/glue.c (pic16_printIvalChar),
4062         * src/pic16/ralloc.c (regWithIdx),
4063         * src/xa51/gen.c (hasInc) : removed warnings
4064         * src/SDCCast.c (createBlock): added comment ???
4065         * src/hc08/ralloc.c: updated comments
4066
4067 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4068
4069         * doc/sdccman.lyx: updated section on switch statements, added
4070         section about semaphore locking
4071         * doc/Makefile: added option -info for latex2html
4072         * device/lib/_gptrget.c,
4073         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4074
4075 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4076
4077         * src/pic/device.h,
4078         * src/pic/device.c,
4079         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4080          maxram is less than 0x100.
4081
4082 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4083
4084         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4085
4086 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4087
4088         * src/port.h,
4089         * src/mcs51/main.c,
4090         * src/ds390/main.c,
4091         * src/z80/main.c,
4092         * src/hc08/main.c,
4093         * src/pic/main.c,
4094         * src/pic16/main.c,
4095         * src/avr/main.c,
4096         * src/xa51/main.c
4097         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4098         a jump table is the best form for a switch statement, including
4099         automatic insertion of missing cases to make the case range
4100         continuous. Developed in collaboration with Frieder Ferlemann.
4101
4102 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4103
4104         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4105         accumulator result if it needs sign extension
4106
4107 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4108
4109         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4110
4111 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4112
4113         * device/lib/gbz80/printf.c,
4114         * device/lib/z80/printf.c: removed define for NULL
4115
4116 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4117
4118         * as/xa51/xa_link.c,
4119         * device/examples/ds390/ow390/ad26.c,
4120         * device/examples/ds390/ow390/cnt1d.c,
4121         * device/examples/ds390/ow390/counter.c,
4122         * device/examples/ds390/ow390/ds2480.h,
4123         * device/examples/ds390/ow390/ds2480ut.c,
4124         * device/examples/ds390/ow390/findtype.c,
4125         * device/examples/ds390/ow390/gethumd.c,
4126         * device/examples/ds390/ow390/owllu.c,
4127         * device/examples/ds390/ow390/ownetu.c,
4128         * device/examples/ds390/ow390/swt12.c,
4129         * device/examples/ds390/ow390/swtloop.c,
4130         * device/examples/ds390/ow390/temp.c,
4131         * device/examples/ds390/ow390/temp10.c,
4132         * device/examples/ds390/ow390/thermo21.c,
4133         * device/examples/ds390/ow390/tinilnk.c,
4134         * device/examples/ds390/ow390/tstfind.c,
4135         * device/examples/serialcomm/windows/serial.cpp,
4136         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4137         * device/include/reg51.h: fixed line endings for cvs
4138
4139 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4140
4141         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4142         packRegsForAccUse, packRegisters): new accumulator register
4143         packing algorithm
4144         * support/regression/ports/hc08/support.c (_putchar): suppress
4145         warning of unused variable
4146         * src/SDCCicode.c: added SWAP entry to codeTable
4147
4148 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4149
4150         * device/lib/sprintf.c: forgot to add this file before previous commit
4151
4152 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4153
4154         * src/pic16/gen.c (genPackBits): added operand right in function
4155         parameters, load result directly if p_type is POINTER (that is
4156         called by genNearPointerSet)
4157         * (genUnPackBits): added operand left in function parameters,
4158         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4159         FSR0 if accessing bitfields,
4160
4161 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4162
4163         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4164           _print_format; updated printf, sprintf, vsprintf
4165         * device/include/asm/default/features.h: corrected comment/define
4166         * device/lib/Makefile.in: added sprintf.c
4167         * device/lib/libsdcc.lib: added sprintf module
4168         * device/lib/printf_large.c,
4169         * device/lib/vprintf.c,
4170         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4171           into these 3 files
4172         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4173         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4174         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4175           hc08 test
4176         * support/regression/tests/zeropad.c: define idata as data for hc08
4177
4178 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4179
4180         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4181         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4182         labels are referenced at least once (even if a reference is not found)
4183         * src/hc08/gen.c (emitcode): set isComment flag for comments
4184         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4185         loads), rules 6a..6b (optimize jumps to return)
4186
4187 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4188
4189         * device/lib/acosf.c (acosf),
4190         * device/lib/asinf.c (asinf),
4191         * device/lib/atanf.c (atanf),
4192         * device/lib/ceilf.c (ceilf),
4193         * device/lib/cosf.c (cosf),
4194         * device/lib/coshf.c (coshf),
4195         * device/lib/cotf.c (cotf),
4196         * device/lib/fabsf.c (fabsf),
4197         * device/lib/floorf.c (floorf),
4198         * device/lib/log10f.c (log10f),
4199         * device/lib/logf.c (logf),
4200         * device/lib/sinf.c (sinf),
4201         * device/lib/sinhf.c (sinhf),
4202         * device/lib/sqrtf.c (sqrtf),
4203         * device/lib/tanf.c (tanf),
4204         * device/lib/tanhf.c (tanhf),
4205         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4206         replaced all instances of "reentrant" in the library functions
4207         defined in math.h with this macro.
4208         * support/regression/tests/float_trans.c: reenabled test for hc08
4209
4210 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4211
4212         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4213         erroneously deleted
4214
4215 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4216
4217         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4218         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4219         multi-byte volatile operands are used
4220         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4221         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4222         initialization to area GSINIT0 so that it would always precede
4223         any static initializers in GSINIT
4224         * support/regression/tests/zeropad.c: fixed idata define for hc08
4225         * support/regression/tests/bug-927659.c,
4226         * support/regression/tests/float_trans.c: disabled tests for hc08
4227         pending missing library routines
4228         * .version: increased version number to 2.4.4 - hc08 port now passes
4229         regression tests
4230
4231
4232 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4233
4234         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4235         * Makefile.common.in,
4236         * as/Makefile,
4237         * as/hc08/Makefile.in,
4238         * as/mcs51/Makefile.in,
4239         * as/z80/Makefile.in,
4240         * debugger/mcs51/Makefile.in,
4241         * device/include/Makefile.in,
4242         * device/lib/Makefile.in,
4243         * doc/Makefile,
4244         * link/Makefile,
4245         * link/z80/Makefile.in,
4246         * packihx/Makefile.in,
4247         * sim/ucsim/main_in.mk,
4248         * sim/ucsim/avr.src/Makefile.in,
4249         * sim/ucsim/doc/Makefile.in,
4250         * sim/ucsim/gui.src/serio.src/Makefile.in,
4251         * sim/ucsim/hc08.src/Makefile.in,
4252         * sim/ucsim/s51.src/Makefile.in,
4253         * sim/ucsim/xa.src/Makefile.in,
4254         * sim/ucsim/z80.src/Makefile.in,
4255         * src/Makefile.in,
4256         * support/cpp2/Makefile.in,
4257         * support/librarian/Makefile,
4258         * support/makebin/Makefile: added DESTDIR to the install path proposed
4259         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4260         * doc/sdccman.lyx: added DESTDIR documentation
4261
4262 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4263
4264         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4265         instruction for interrupt handlers, use fast returns when returning
4266         from high priority interrupts
4267
4268 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4269
4270         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4271         code generation
4272         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4273         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4274         bugs, ported much of Bernhard's code from mcs51
4275         * src/mcs51/gen.c (genSend),
4276         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4277         than one when calling a reentrant function
4278         * device/lib/_mullong.c: defined an alternate struct layout for big
4279         endian ports (hc08)
4280
4281 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4282
4283         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4284         test
4285
4286 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4287
4288         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4289         are sane and complete before asking the port its prefered parameter
4290         passing method (fixes bug #1017633)
4291         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4292         and _ret3
4293
4294 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4295
4296         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4297         problem in bitfields >= 8 bits.
4298
4299 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4300
4301         * src/SDCCsymt.c: undid changes that were not meant to be committed
4302
4303 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4304
4305         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4306
4307 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4308
4309         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4310           copied and wrong bit got inverted
4311
4312 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4313
4314         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4315         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4316         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4317         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4318         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4319         assignments to bitfields at known addresses
4320         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4321         reads from bitfields at known addresses
4322         * src/hc08/ralloc.c (packRegisters),
4323         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4324         genhc08Code): optimize pointer get values used as conditionals
4325         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4326         and branch
4327
4328 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4329
4330         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4331         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4332         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4333         as conditionals
4334
4335 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4336
4337         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4338
4339 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4340
4341         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4342         related problems
4343
4344 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4345
4346         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4347
4348 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4349
4350         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4351         mcs51 port
4352
4353 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4354
4355         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4356
4357 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4358
4359         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4360         cases use more compact code.
4361
4362 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4363
4364         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4365
4366 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4367
4368         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4369
4370 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4371
4372         * src/SDCCsymt.h,
4373         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4374         parameter of changePointer() from symbol* to sym_link*
4375         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4376         * src/SDCCsymt.c (compareType): void* type is castable to other
4377         pointers, but not necesarily an exact match.
4378         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4379         is no longer blindly treated as an exact match.
4380         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4381
4382 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4383
4384         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4385
4386 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4387
4388         * src/pic/gen.c,
4389         * src/pic/pcode.c,
4390         * src/pic/ralloc.h,
4391         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4392
4393 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4394
4395         * src/pic/device.c,
4396         * src/pic/device.h,
4397         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4398
4399 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4400
4401         * src/mcs51/gen.c (emitcode): fixed bug #992819
4402
4403 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4404
4405         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4406           there's no need to make it worse
4407
4408 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4409
4410         * src/mcs51/ralloc.c (deassignLR),
4411         * src/ds390/ralloc.c (deassignLR),
4412         * src/hc08/ralloc.c (deassignLR),
4413         * src/z80/ralloc.c (deassignLR),
4414         * src/pic/ralloc.c (deassignLR),
4415         * src/pic16/ralloc.c (deassignLR),
4416         * src/avr/ralloc.c (deassignLR),
4417         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4418         rlivePoint): fixed another part of bug #971834
4419
4420 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4421
4422         * src/z80/main.c: enabled "critical" keyword
4423         * src/z80/mappings.i,
4424         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4425         functions (fixes bug #979646)
4426         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4427
4428 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4429
4430         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4431           such as c:\mydir.
4432
4433 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4434
4435         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4436           doesn't disable too much optimizations
4437
4438 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4439
4440         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4441
4442 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4443
4444         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4445
4446 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4447
4448         * src/pic/gen.c tidied up tabs
4449         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4450         * src/pic/main.c tidied up tabs
4451         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4452         * src/pic/pcoderegs.c tidied up tabs
4453         * src/pic/ralloc.c tidied up tabs
4454
4455 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4456
4457         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4458         to S_FIXED for pic16 port and when symbol is not in level 0,
4459         allocate for S_REGISTER storage class and pic16 port, too,
4460         * src/pic16/device.h: prototype for checkSym,
4461         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4462         * (pic16_assignConfigWordValue): test the value and the mask to
4463         validate that the value is suitable for the configuration word,
4464         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4465         collect extern declared symbols, don't emit symbol twice, check
4466         first if symbol is in publics set first,
4467         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4468         * added command line '--fstack' which enables an experimental
4469         feature for stack access, too buggy to be used yet...
4470         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4471         * (pic16_allocDirReg): when register has storage class S_REGISTER
4472         allocate in pic16_dynAccessRegs,
4473         * device/include/pic16/pic18f????.h: modified configuration word
4474         naming convention, words started as CONFIG0H but should be CONFIG1H
4475
4476 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4477
4478         * device/include/mcs51reg.h: fixed bug 970993
4479
4480 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4481
4482         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4483         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4484         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4485         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4486         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4487         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4488           error/warning numbers,
4489           added function setWarningDisabled()
4490         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4491         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4492           _memcmp.c _memmove.c calloc.c realloc.c free.c
4493         * support/regression/tests/malloc.c: added tests for new functionality
4494         * support/regression/tests/zeropad.c: added tests for truncated initializers
4495           and initialized char arrays starting with '\x0'
4496         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4497
4498 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4499
4500         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4501
4502 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4503
4504         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4505         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4506         peephole 177.e. Thanks to anonymous
4507
4508 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4509
4510         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4511         function isn't used in the source but referenced as a
4512         variable initializer then declare it as extern in .asm file
4513
4514 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4515
4516         * .version: increased version number to 2.4.3
4517
4518         Adding version extension according to ChangeLog CVS revision
4519         * src/Makefile.in (target all): added dependency 'version.h'
4520         * (rule version.h): added rule to create version.h from ChangeLog,
4521         * (rule dep): added dependency version.h,
4522         * src/version.awk: AWK script to create version.h
4523         * src/SDCCdwarf2.c (dwWriteModule),
4524         * src/SDCCglue.c (initialComments),
4525         * src/SDCCmain.c (printVersionInfo): modified to write after
4526         version string the version extension number,
4527         * src/SDCCutil.c: included "version.h"
4528         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4529         number,
4530         * src/SDCCutil.h: added prototype for getBuildNumber
4531
4532         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4533         includeDirsSet, too,
4534         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4535         const char [] is found in function prototype...
4536
4537         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4538         moving to WREG with source is already in WREG,
4539         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4540         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4541         * (aopForSym): stack'ed symbols are partially supported, added
4542         if-clause to support symbols in FARSPACE,
4543         * (sameRegs): added test for AOP_ACC to see if registers are same,
4544         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4545         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4546         * (pic16_popRegFromString): will not allocate a new register if it
4547         doesn't find one by name, bug may have introduced...
4548         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4549         * (genIpush): revived to use pic16 port's stack,
4550         * (genAddrOf): added incomplete case for stack'ed operand,
4551         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4552         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4553         can handle multibyte operands,
4554         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4555         * (pic16initialComments): added message for MPLAB compatibility
4556         mode enabled,
4557         * src/pic16/main.h: prototype for pic16_mplab_comp,
4558         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4559         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4560         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4561         because of increased complexity of procedure,
4562         * (_process_pragma): stack pragma changed to format 'stack pos len',
4563         emit symbol '_stack_end' to conform with gplink,
4564         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4565         to search for register,
4566         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4567         PO_GPR_REGISTER,
4568         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4569         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4570         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4571         case for PO_GPR_REGISTER,
4572         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4573         dies, the new era is ahead !...
4574         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4575         pic16_dynInternalRegs,
4576         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4577         * (pic16_allocDirReg): minor optimizations and bug fixes,
4578         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4579
4580         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4581         load stack and frame pointer with address of 'stack_end' symbol
4582
4583 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4584
4585         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4586         without source code but only variable initializers
4587
4588 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4589
4590         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4591         external are not declared as extern to reduce overhead while linking
4592
4593 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4594
4595         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4596
4597 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4598
4599         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4600           Yee Keat for the patch
4601         * src/SDCCast.c (decorateType): fixed bug #979599
4602         * src/ds390/gen.h: removed local fReturnSizeDS390
4603         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4604         * src/ds390/gen.c (genAnd, genOr, genXor),
4605         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4606
4607 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4608
4609         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4610         add relFilesSet to $3, manipulate $2 to handle linking of object
4611         files without source files in command line,
4612         * device/include/pic16 (all headers): added ID location macros,
4613         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4614         entries for ID location bytes,
4615         * (pic16_assignIdByteValue): NEW,
4616         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4617         added field dumpcalltree to pic16_options_t,
4618         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4619         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4620         emitting rFalseIfx label after check_carry label,
4621         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4622         pic16_emitDIRegs), NEW
4623         * (pic16glue): dump .calltree file when option --calltree found,
4624         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4625         * (_pic16_genAssemblerPreamble): emit ID locations after
4626         configuration registers,
4627         * (pic16_linkCmd): modifications of the link command,
4628         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4629         * (pic16_pCodeInitRegisters): don't init stack registers,
4630         * (pic16_findPrevInstruction): fixed bug,
4631         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4632         bug with immediate registers,
4633         * (buildCallTree): traces stack push and pop,
4634         * (pct2): dump also stack usage for each function,
4635         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4636         * (pic16_allocDirReg): various modifications,
4637         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4638         fixed to 1,
4639
4640 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4641
4642         * src/pic16/pcode.c: removed buggy double colon
4643
4644 2004-07-01 Borut Razem <borut.razem AT siol.net>
4645
4646         * support/scripts/sdcc.nsi: added include/pic16 to setup
4647
4648 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4649
4650         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4651         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4652         target 'clean',
4653         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4654         specific command line arguments. Also added sample lkr script
4655         for placing a variable at a specific memory bank.
4656         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4657         at a specific memory bank,
4658         * (pic16_dump_isection): fixed bug which caused string literals to
4659         be omitted when dumping idata section,
4660         * (pic16_groupRegistersInSection): added code to handle registers
4661         in specific memory banks,
4662         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4663         public, all references are renamed too,
4664         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4665         AOP_DPTR2,
4666         * (pic16_storeForReturn): added case to handle when dest is WREG,
4667         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4668         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4669         pic16_rel_udata, check to see if that register is marked as being
4670         a member of a specific memory bank,
4671         * (pic16_printIvalCharPtr): added code to add string literals either
4672         to code or the idata sections,
4673         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4674         also accept the 'udata' pragma,
4675         * src/pic16/main.h: new structure types sectName and sectSym
4676         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4677         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4678         * (pic16_findPrevInstruction): fixed, it returned nothing,
4679         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4680         instruction combinations,
4681         * (pic16_FixRegisterBanking): heavily reorganised,
4682         * (pic16_AnalyzeBanking): if generating banksel directives is
4683         disabled, then don't call FixRegisterBanking at all,
4684         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4685         completely removed,
4686         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4687
4688 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4689
4690         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4691         Phuah Yee Keat <yk.phuah AT nestac.com>
4692
4693 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4694
4695         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4696         correctly the IVT even if it is relocated to some other location
4697
4698 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4699
4700         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4701         * device/include/pic16/pic18f2220.h: NEW,
4702         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4703         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4704         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4705         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4706         nodefaultlibs, ivt_loc is the location of the interrupt vector
4707         table, and nodefaultlibs signs that default libraries should not be
4708         linked in link stage,
4709         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4710         according to --ivt-loc argument,
4711         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4712         when pragma stack is found,
4713
4714 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4715
4716         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4717         256 (range check), 257 (do while), 258.a-f (bit banging
4718         f.e. on 3-wire SPI bus)
4719
4720 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4721
4722         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4723         variables used exclusively within a loop
4724
4725 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4726
4727         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4728
4729 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4730
4731         * src/SDCClrange.c (computeClash): fixed bug #971834
4732
4733 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4734
4735         * src/mcs51/gen.c (genCmp): fixed bug #975903
4736         * src/hc08/gen.c (operandsEqu),
4737         * src/ds390/gen.c (operandsEqu),
4738         * src/z80/gen.c (operandsEqu),
4739         * src/pic/gen.c (operandsEqu),
4740         * src/pic16/gen.c (operandsEqu),
4741         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4742         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4743
4744 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4745
4746         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4747
4748 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4749
4750         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4751         default case in switch statement,
4752         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4753         to eliminate problem with initialisation of pointers, but problem
4754         still exists,
4755         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4756         * (emitStaticSegment): removed various lines emitting debug info,
4757         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4758         added processor registers for utilizing EEPROM,
4759         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4760         configurable and set 8
4761
4762 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4763
4764         * .version: increased version number to 2.4.2,
4765
4766         Cumulative patch for pic16 port
4767         * src/pic16/device.c: changed scheme to dump initial values for
4768         variables in idata segment, all print_idata* functions were removed,
4769         now the pic16_printIval* will be called,
4770         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4771         * _pic16_printPointerType, pic16_printPointerType,
4772         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4773         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4774         NEW, similar to the respective functions in SDCCglue.c,
4775         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4776         way, emitting hex bytes,
4777         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4778
4779 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4780
4781         * src/avr/ralloc.c (serialRegAssign),
4782         * src/xa51/ralloc.c (serialRegAssign),
4783         * src/pic/ralloc.c (serialRegAssign),
4784         * src/pic16/ralloc.c (serialRegAssign),
4785         * src/hc08/ralloc.c (serialRegAssign),
4786         * src/z80/ralloc.c (serialRegAssign),
4787         * src/ds390/ralloc.c (serialRegAssign),
4788         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4789
4790 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4791
4792         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4793         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4794
4795 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4796
4797         Cumulative patch for pic16 port:
4798         * src/pic16/device.h (typedef PIC16_device) modified fields for
4799         defining microcontrollers,
4800         * src/pic16/device.c: added new info for all devices in Pics16 array,
4801         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4802         to be optimised out by the pCode optimiser,
4803         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4804         specially, bug reported by G.M. Gallant,
4805         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4806         as force'd so that cannot be optimised out by pCode optimiser,
4807         * src/pic16/pcode.c,
4808         * src/pic16/pcodepeeph.c,
4809         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4810         they are disabled by default, but can be enabled explicit with
4811         command argument --denable-peeps, for testing,
4812         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4813         --pomit-ivt in COMPILE_FLAGS
4814
4815 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4816
4817         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4818           compilation on MSVC
4819
4820 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4821
4822         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4823
4824 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4825
4826         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4827         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4828
4829 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4830
4831         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4832         would only assign 0x300001 register.
4833
4834 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4835
4836         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4837         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4838
4839 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4840
4841         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4842         for ds80c400
4843         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4844         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4845         added peephole 254 (left shift), 255 (jump table)
4846
4847 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4848
4849         * device/lib/Makefile.in: removed comment line with model-pic16,
4850         * (target port-specific-objects-pic16): the libraries and objects
4851         are copied to the build directory form the device/lib/pic16/bin
4852         directory
4853
4854         Cumulative patch concerning pic16 port:
4855         * library directory has been re-organized,
4856         * added support for PIC18F1220,
4857         * added headers and library sources for chips 18f1220,18f6520,
4858         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4859
4860         * configuration registers setting has changed, now each supported
4861         device has a complete description of the registers it uses,
4862         * all initialisations are moved to idata sections, these section
4863         can be absolute or relocatable,
4864         * fixed initialisation of codespace variables,
4865         * fixed warning about PCLATU and gpsim,
4866         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4867         * (genAssign): use table reads when assigning from variables in codespace,
4868         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4869         char/int variables placed in codespace,
4870         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4871         registers set in .asm file, no need for --pomit-config-words anymore,
4872         * (pic16glue): some 8051 legacy segments are commented out
4873         (to be removed completely),
4874         * added support for alternative assembler and linker with --asm=
4875         and --link= command line arguments,
4876         * peepholes are disabled automatically in the port, no need to
4877         specify on command line,
4878         * port supports natively char/int/long multiplication, but converts
4879         all divisions to support functions,
4880         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4881         to the file set in variable $2,
4882         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4883         strings in ASCII format and not in hex,
4884         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4885         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4886         allocate proper register if iCodes aren't temporary,
4887
4888 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4889
4890         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4891
4892 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4893
4894         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4895         is commented out
4896
4897 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4898
4899         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4900         computed address is reused
4901         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4902         multi-byte bitfields
4903
4904 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4905
4906         * src/z80/gen.c: (genArrayInit): must check for pointers too
4907
4908 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4909
4910         * support/regression/tests/zeropad.c: never meant to commit the
4911           nestedstruct test: removed, added check for GCC version
4912
4913 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4914
4915         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4916         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4917         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4918           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4919           bugs 928906 and 954082 half-empty initializers
4920         * src/SDCCsymt.h,
4921         * src/SDCCsymt.c (getAllocSize): added for above fix
4922         * src/z80/gen.c (genArrayInit): fixed bug 741044
4923         * support/regression/tests/zeropad.c: added tests
4924
4925 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4926
4927         * src/pic16/device.c (pic16_dump_section): corrected bug which
4928         caused some symbols of the libraries to be misplaced
4929
4930 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4931
4932         * src/pic16/glue.c,
4933         * src/pic16/ralloc.h,
4934         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4935         to fix conflict with pic port
4936
4937 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4938
4939         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4940         externs configuration variables,
4941         * src/pic16/ralloc.h,
4942         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4943         prototype in header, commented out some debug messages
4944
4945 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4946
4947         * src/pic16/glue.c,
4948         * src/pic16/main.c,
4949         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4950         for gpasm COFF object generation. Thanks to D. Hawkins for
4951         his patch info
4952
4953 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4954
4955         * src/ds390/main.c,
4956         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4957         Brock for spotting this)
4958         * src/ds390/gen.c (genEndFunction),
4959         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4960         interrupt handler and critical. Disable push/pop optimizations when
4961         peephole optimizations disabled.
4962
4963 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4964
4965         Updated pic16 library sources and headers.
4966         * device/lib/pic16/pic18f*/ ,
4967         * device/include/pic16/*.h: modified to handle structured SFR
4968         definitions
4969
4970 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4971
4972         * src/port.h (PORT structure): added hook initPaths, now each
4973         port can declare its own default search paths,
4974         which can been seen with the --print-search-dirs option,
4975         see pic16 port for example,
4976         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4977         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4978         * (doPrintSearchDirs): NEW, replaces in a central manner the
4979         printing of search dirs which was split in set*Paths functions,
4980         * (main): added call to port->initPaths and doPrintSearchDirs,
4981         * src/avr/main.c,
4982         * src/ds390/main.c,
4983         * src/hc08/main.c,
4984         * src/izt/i186.c,
4985         * src/izt/tlcs900h.c,
4986         * src/mcs51/main.c,
4987         * src/pic/main.c,
4988         * src/pic16/main.c: modified port structures to reflect addition of
4989         initPaths hook,
4990
4991         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4992         * (pic16_dump_section): for registers in same address reserve memory once,
4993         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4994         to no_banksel,
4995         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4996         result is greater in size than right or left,
4997         * (pic16_genUMult8X8_8): there are some cases where the result can
4998         be 16 bits size, so handle these,
4999         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5000         * (pic16_outBitC): modified to emit pcodes,
5001         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5002         or not,
5003         * (genDivOneByte): implemented algorithm to divide 8-bits,
5004         * (genCmp): uncommented goto, but issues still exist,
5005         * (genAnd): fixed a bug with variables >8bits,
5006         * (genPackBits): optimization added that uses BCF/BSF to change a
5007         single bit,
5008         * (genAssign): fixed bug when assigning floating point literals,
5009         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5010         __sdcc_gsinit_startup label,
5011         * src/pic16/main.c (_pic16_init): removed search directory
5012         initialisations,
5013         * (_pic16_initPaths): NEW, used to initialise search directories,
5014         * (_hasNativeMulFor): support functions for all except char/int
5015         multiplication, and char division,
5016         * (PIC16_port struct): modified entry for native mul support,
5017         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5018         no_banksel option,
5019         * (buildCallTree): call to register_usage is ifdef'ed out,
5020
5021 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5022
5023         * device/include/string.h: applied Stas Sergeev's patch to make this
5024         header file compatible with the preprocessor -Wundef option
5025         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5026         failure (fixes bug #941458)
5027
5028 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5029
5030         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5031         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5032         that the variable, not the function, should be static
5033         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5034         to be consistent with non-literal case
5035
5036 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5037
5038         * src/SDCCast.c (isConformingBody): fixed bug #949967
5039         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5040         convilong): fixed bug #952086
5041
5042 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5043
5044         * src/SDCCmem.c (allocVariables): fixed bug #955321
5045
5046 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5047
5048         * src/hc08/main.c (_hc08_genAssemblerEnd),
5049         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5050         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5051         completely eliminated the use of a temporary file
5052         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5053         when more than one file linked
5054         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5055
5056 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5057
5058         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5059         which fixes bug #543481
5060         * support/regression/tests/bug-751703.c: fixed comments left from a
5061         cut and paste error
5062         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5063         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5064         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5065         scopes
5066         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5067         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5068         are now changed to underscores in moduleName
5069
5070 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5071
5072         * as/mcs51/lkmem.c: better fix for bug #954173
5073
5074 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5075         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5076
5077         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5078         * device/include/c8051f000.h,
5079         * device/include/c8051f120.h,
5080         * device/include/c8051f300.h,
5081         * device/include/c8051f310.h,
5082         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5083         PWM16) and detab'ed
5084
5085 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5086
5087         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5088         and mailing lists, doc'ed --no-peep-comments, removed reference
5089         to knoppix (newest version has no LyX/LaTeX), other minor changes
5090         * src/SDCCglue.c (glue): save 2 bytes stack space with
5091         option --main-return. The ljmp could probably be avoided too
5092
5093 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5094
5095         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5096
5097 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5098
5099         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5100         * src/SDCCopt.c (isLocalWithoutDef),
5101         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5102         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5103         (credit to Maarten Brock for patch #949363, on which this is based)
5104         * support/regression/tests/bug-751703.c: some test cases of extern used
5105         within inner scopes.
5106
5107 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5108
5109         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5110         SPEC_STRUCT
5111         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5112         struct definitions
5113         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5114         dwWriteLabel): fix to create valid debugger symbols even when
5115         the module name has non-alphanumeric symbols in it
5116         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5117         when a variable's allocation has been optimized away
5118
5119
5120 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5121
5122         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5123         * src/hc08/main.c,
5124         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5125         * src/mcs51/main.c,
5126         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5127         * src/ds390/main.c,
5128         * src/z80/gen.c (z80_emitDebuggerSymbol),
5129         * src/z80/main.c,
5130         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5131         * src/pic/main.c,
5132         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5133         * src/pic16/main.c,
5134         * src/avr/gen.c (avr_emitDebuggerSymbol),
5135         * src/avr/main.c,
5136         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5137         * src/xa51/main.c,
5138         * src/SDCCdebug.c (emitDebuggerSymbol),
5139         * src/SDCCdebug.h,
5140         * src/port.h: added a debugger struct to the port struct. Added a
5141         callback for defining debugger symbols
5142
5143         * src/SDCCast.c (createLabel),
5144         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5145         with isitmp = 1
5146         * src/SDCCicode.h,
5147         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5148         iCode back to the ast for the function
5149
5150         * src/hc08/ralloc.c (hc08_assignRegisters),
5151         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5152         unneeded fields from the regs struct.
5153         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5154         pushReg() & pullReg() functions instead of emitcode()
5155
5156         * src/hc08/gen.c (genLabel, genhc08Code),
5157         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5158
5159         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5160         debugger hooks
5161
5162         * src/hc08/gen.c (genEndFunction, genhc08Code),
5163         * src/hc08/gen.h,
5164         * src/mcs51/gen.c (genEndFunction, gen51Code),
5165         * src/mcs51/gen.h,
5166         * src/ds390/gen.c (genEndFunction, gen390Code),
5167         * src/ds390/gen.h,
5168         * src/z80/gen.c (genEndFunction, genZ80Code),
5169         * src/z80/gen.h,
5170         * src/z80/z80.h,
5171         * src/pic/gen.c (genEndFunction, genpic14Code),
5172         * src/pic/gen.h,
5173         * src/pic16/gen.c (genEndFunction, genpic16Code),
5174         * src/pic16/gen.h,
5175         * src/avr/gen.c (genEndFunction, genAVRCode),
5176         * src/avr/gen.h,
5177         * src/xa51/gen.c (genEndFunction, genXA51Code),
5178         * src/xa51/gen.h,
5179         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5180         specific code to cdbFile.c and out of the backend code generators
5181
5182         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5183         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5184         starting address is now 0
5185
5186         * as/hc08/asm.h,
5187         * as/hc08/m08pst.c,
5188         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5189         assembler directive for DWARF support
5190         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5191
5192         * src/src.dsp,
5193         * src/Makefile.in,
5194         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5195
5196 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5199         and inappropriate peephole optimization in jump tables
5200
5201 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5202
5203         * as/hc08/m08pst.c,
5204         * src/SDCCglue.c: sdccopt works for the hc08 port now
5205
5206 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5207
5208         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5209
5210 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5211
5212         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5213
5214 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5215
5216         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5217         rules
5218         * src/SDCCmain.c,
5219         * src/SDCCglobl.h,
5220         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5221         comments from the peephole optimizer replacement rules
5222         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5223         symbols
5224         * src/SDCCcse.c (updateSpillLocation),
5225         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5226         equivalents
5227         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5228         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5229         objects far pointers
5230
5231 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5232
5233         * src/SDCCsymt.h: a missing part of my last change
5234         * src/pic/ralloc.c (regTypeNum),
5235         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5236
5237 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5238
5239         * src/SDCCicode.h,
5240         * src/SDCCicode.c (aggrToPtrDclType),
5241         * src/SDCCptropt.h,
5242         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5243         ptrPseudoSymConvert),
5244         * src/pic/ralloc.c (regTypeNum),
5245         * src/pic16/ralloc.c (regTypeNum),
5246         * src/hc08/ralloc.c (regTypeNum),
5247         * src/ds390/ralloc.c (regTypeNum),
5248         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5249         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5250
5251 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5252
5253         * link/z80/lkmain.c (afile),
5254         * as/hc08/lkmain.c (afile),
5255         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5256         prevent a pointer problem when a filename has no directory and
5257         no extension specified.
5258
5259 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5260
5261         * link/z80/lkmain.c (afile): allow periods in directory names
5262         * link/z80/lkmain.c (afile),
5263         * as/mcs51/lkmain.c (afile),
5264         * as/hc08/lkmain.c (afile): allow linker script file to have an
5265         extension other than ".lnk"
5266         * link/z80/lklex.c (getfid),
5267         * link/z80/lkmain.c (parse),
5268         * as/mcs51/lklex.c (getfid),
5269         * as/mcs51/lkmain.c (parse),
5270         * as/hc08/lklex.c (getfid),
5271         * as/hc08/lkmain.c (parse): Support comments in the linker script
5272         file on lines by themselves and after filenames
5273
5274 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5275
5276         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5277
5278 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5279
5280         * src/z80/peeph-z80.def: removed some peephole rules that don't
5281         work with multibyte arithmetic (fixed bug #937126)
5282         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5283         to registers and not global variables
5284         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5285         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5286         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5287         checking for assignments not internally generated (fixed bug #931895)
5288         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5289         structure member (fixed bug #930072)
5290
5291 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5292
5293         * src/SDCCmain.c (linkEdit),
5294         * src/hc08/main.c (_hc08_parseOptions),
5295         * as/hc08/Makefile.in,
5296         * as/hc08/aslink.h,
5297         * as/hc08/asm.h,
5298         * as/hc08/m08pst.c,
5299         * as/hc08/lkrloc.c (relr, rele),
5300         * as/hc08/lkarea.c (lnkarea)
5301         * as/hc08/lkmain.c (afile, parse),
5302         * as/hc08/lkelf.c: support for ELF output
5303         * as/hc08/lks19.c (s19),
5304         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5305
5306 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5307
5308         * as/mcs51/lkihx.c: Fixed bug #899105.
5309
5310 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5311
5312         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5313         .dsp files from Unix to DOS.
5314
5315 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5316
5317         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5318         function pointers; we have been compliant for several months now.
5319         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5320         change that was accidently commented out
5321         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5322         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5323         bug #922319
5324
5325 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5326
5327         * src/hc08/gen.c: output of all of the internal debugging information
5328         is now controlled by the D() macro; it is disabled by default
5329
5330 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5331
5332         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5333         harder to keep the same registers during a CAST iCode
5334         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5335         long via int can be done in a single cast, if the signedness is
5336         correct.
5337         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5338         putchar() in tinibios.c in ds390's library
5339
5340 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5341
5342         * src/SDCCast.c (decorateType): fixed bug #898889,
5343         cast result of a literal complement too
5344         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5345         fixed check for bitfields
5346
5347 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5348
5349         * src/SDCCicode.c (geniCodeLogic): made it static,
5350         (geniCodeLogicAndOr): added in order to fix bug #905492,
5351         (ast2iCode): fixed bug #905492
5352         * support/regression/tests/bug-905492.c: added
5353         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5354         (processParms): fixed bug #927659: don't copy parms, this will clear
5355         decorated flag
5356         * support/regression/tests/bug-927659.c: added
5357
5358 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5359
5360         * src/SDCCast.c (addCast): don't cast float to char
5361         * device/lib/libsdcc.lib: added _memmove
5362
5363 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5364
5365         * device/lib/large/Makefile: fixed parallel execution by
5366         replacing `make` by `$(MAKE)`
5367
5368 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5369
5370         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5371         offsets (fixes bug #923936)
5372
5373 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5374
5375         * device/lib/small/Makefile: fixed parallel execution by
5376         replacing `make` by `$(MAKE)`
5377
5378 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5379
5380         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5381
5382 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5383
5384         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5385         * src/regression/Makefile: Regression test was not running.
5386
5387 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5388
5389         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5390         complement if possible
5391         * src/SDCCval.c (valComplement),
5392         * src/SDCCicode.c (operandOperation): fixed complement of literal
5393         * support/regression/tests/onebyte.c (testComplement): added
5394
5395 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5396
5397         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5398         return an optimized tree; actually replace actParm with the new tree
5399         * src/SDCCast.h: added some parantheses to remove side effects
5400         * support/regression/tests/bug-920866.c
5401
5402 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5403         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5404         Bit operands were not being handled properly in the pic14 port.
5405         (now src/regression/add.c passes again).
5406
5407 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5408
5409         * src/SDCC.y (labeled_statement): case and default no longer require
5410         a following statement (RFE #893037)
5411
5412 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5413
5414         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5415         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5416         disabled (fixes bug #916294)
5417         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5418         "mov a,acc"; patch provided by Lenny Story
5419         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5420
5421 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5422
5423         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5424         functions
5425         * src/ds390/gen.c (genFunction, genEndFunction),
5426         * src/ds390/ralloc.c (ds390_assignRegisters),
5427         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5428         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5429         pushed if there are parameters passed on the stack. Also, a cleaner
5430         way to decide if r0/r1 should be pushed/popped. (Together they fix
5431         bug #918693)
5432
5433 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5434
5435         * doc/sdccman.lyx,
5436         * device/lib/mcs51/crtpagesfr.asm,
5437         * device/lib/mcs51/crtxinit.asm,
5438         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5439         to avoid confusion with Si Lab's SFRPAGE register.
5440
5441 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5442
5443         * src/SDCCglue.c (emitMaps): allow public sfr variables
5444         * src/SDCCglue.c (initialComments): include compiler build date
5445         with compiler version and put the timestamp of the generated
5446         assembly file on a serperate line to be less confusing.
5447         * src/port.h: added genInitStartup hook
5448         * src/avr/main.c,
5449         * src/ds390/main.c,
5450         * src/hc08/main.c,
5451         * src/pic/main.c,
5452         * src/pic16/main.c,
5453         * src/xa51/main.c,
5454         * src/z80/main.c: genInitStartup initialize as NULL (default to
5455         historical behaviour)
5456         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5457         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5458         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5459         library instead of hard coding it into the compiler.
5460         * support/regression/ports/mcs51-stack-auto/spec.mk,
5461         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5462         * device/lib/mcs51/Makefile,
5463         * device/lib/small/Makefile,
5464         * device/lib/large/Makefile,
5465         * device/lib/mcs51/crtpagesfr.asm,
5466         * device/lib/mcs51/crtstart.asm,
5467         * device/lib/mcs51/crtxclear.asm,
5468         * device/lib/mcs51/crtxinit.asm,
5469         * device/lib/mcs51/crtclear.asm,
5470         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5471         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5472         and into user configurable files.
5473         * device/lib/clean.mk: clean mcs51 directory too
5474         * support/regression/tests/longlit.c: added static to T1 declaration
5475         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5476         accesses in the initialization code
5477
5478 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5479
5480         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5481         OSCTRIMVAL as noted in bug #916008
5482
5483 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5484
5485         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5486         in loops with multiple exits (reported as incorrect registers
5487         used by Martin Helmling in Sdcc-user list)
5488
5489 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5490
5491         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5492         made ds390 register extensions look less like error messages
5493
5494 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5495
5496         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5497         reported by Adam Wozniak in Sdcc-user list
5498
5499 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5500
5501         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5502         arithmetic optimizations, added debug output
5503
5504 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5505
5506         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5507         * sdcc.spec: updated and split sdcc into 3 rpms
5508         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5509         needed for literals of LEFT_OP and '+'
5510         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5511         introduced RESULT_TYPE_NOPROM
5512         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5513         left shift
5514         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5515         limited promotion to int only for '*'
5516         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5517
5518 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5519
5520         * src/pic16/gen.c (genSkip),
5521         (genc16bit2lit), (gencjneshort): commented out
5522         (is_LitOp): new helper function, checks operand type
5523         (genCmpEq): rewritten
5524
5525 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5526
5527         * support/regression/tests/bug-908454.c: added
5528
5529 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5530
5531         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5532         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5533         (geniCodeCast): cosmetic, don't preserve bit storage class
5534         (geniCodeLeftShift): added promotion
5535         (geniCodeLogic): fixed regression
5536         * src/SDCCsymt.c (computeTypeOr): accept bits too
5537         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5538
5539 2004-03-07  Borut Razem <borut.razem AT siol.net>
5540
5541         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5542
5543 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5544
5545         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5546         version of pic16_genPackRegisters which does not check if ic is a
5547         CAST operator,
5548         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5549         function cause string1.c regression test fails
5550
5551 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5552
5553         * sim/ucsim/configure.in,
5554         * sim/ucsim/configure,
5555         * sim/ucsim/doc/Makefile.in: use docdir
5556         * src/SDCC.y: fixed sbit atrributes
5557         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5558         * src/SDCCast.c (decorateType): |^& need special promotion handling
5559         * src/SDCCast.h,
5560         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5561         * src/SDCCsymt.h (computeType),
5562         * src/SDCCicode.c: computeType() needs op
5563         * src/SDCCsymt.c (checkTypeSanity),
5564         * doc/sddman.lyx: "plain" bitfields are unsigned
5565         * src/SDCCsymt.c (computeTypeOr): added
5566         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5567         |^& ops
5568         * src/SDCCval.c (val*): computeType() needs op
5569         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5570         * support/regression/tests/onebyte.c: added tests for |^&
5571
5572 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5573
5574         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5575         for writing icode into asm output.
5576
5577 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5578
5579         * src/pic16/device.c: added some debug lines enabled
5580         with macro DEBUG_CHECK,
5581         * src/pic16/genarith.c: more debug in genPlus,
5582         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5583         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5584         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5585         * (aopForSym): onStack symbols are re-placed in data memspace,
5586         and onStack flag is cleared,
5587         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5588         copy temporary pcodeop,
5589         * (genPcall): added warning for not updating PCLATU,
5590         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5591         always true for pic16 port,
5592         * (genMultOneWord): NEW, supports integer multiplication,
5593         * (genMult): modified to call genMultOneWord,
5594         * (ifxForOp): added warning when return NULL,
5595         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5596         flag is set before call to operandFromSymbol for implicit
5597         added structures,
5598         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5599         options.intlong_rent are set by default,
5600         * (_hasNativeMulFor): modified to allow port generation of integer
5601         multiplication,
5602         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5603         set regtype to REG_SFR for all registers, restricting seting the
5604         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5605
5606 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5607
5608         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5609         more than 500 times in the regression tests
5610
5611 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5612
5613         * support/Util/SDCCerr.h,
5614         * support/Util/SDCCerr.c,
5615         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5616         enumerator_list),
5617         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5618         for symbol conflicts.
5619         * support/valdiags/tests/enum.c,
5620         * support/valdiags/tests/tentdecl.c,
5621         * support/valdiags/tests/struct.c: expect possible error messages
5622         referring to original symbol definitions.
5623         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5624         * src/SDCCsymt.h,
5625         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5626
5627 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5628
5629         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5630
5631 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5632
5633         * src/pic16/ralloc.c (newReg): fixed bug #908929
5634
5635 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5636
5637         * src/ds390/gen.c: added missing #include "main.h"
5638
5639 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5640
5641         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5642         checking if symbol is already in set,
5643         * src/pic16/device.h: prototype for checkAddSym,
5644         * src/pic16/gen.c: (_G): added entry interruptvector,
5645         * (assignResultValue): removed some commented out lines,
5646         * (genFunction): check for ISR via sym->type, absolute section for
5647         interrupt code is created via a new pBlock, the goto instruction is
5648         placed now correctly at the interrupt vector position, changed all
5649         references from ivec to _G.interruptvector,
5650         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5651         is the interrupt is a high priority one, same for return from ISR,
5652         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5653         externs to calls of checkAddSym,
5654         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5655         pic16_pcode_verbose flag is set,
5656         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5657         * src/pic16/pcoderegs.c: message about how many registers are saved
5658         will only be emitted if pic16_pcode_verbose flag is set,
5659
5660 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5661
5662         * src/ds390/ralloc.h,
5663         * src/ds390/ralloc.c (ds390_regWithIdx),
5664         * src/ds390/gen.c (emitcode),
5665         * src/ds390/main.h,
5666         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5667         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5668         ds390operandCompare, getRegsRead, getRegsWritten,
5669         initializeAsmLineNode): customized instruction size calculation for
5670         ds390, started basis for some register optimizations
5671         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5672         corresponding assembly output
5673         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5674         missing push/pop of r0/r1. Optimized push/pops
5675
5676 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5677
5678         * src/mcs51/main.c (instructionSize): fixed ACALL size
5679         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5680
5681 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5682
5683         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5684         the sorting of rlist with NULL elements
5685         * (print_idataType, print_idata): NEW to create idata sections
5686         * src/pic16/device.h: idataSymSet new variable
5687         * src/pic16/gen.c (genFunction): fixed some bugs in string
5688         comparing, improved the absolute section creation for ISRs,
5689         added FSR0L/FSR0H in registers that are saved in an ISR,
5690         * (genInline): fixed the processing of inline snippets,
5691         now they undergo no process by the peephole optimizer
5692         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5693         are placed in idataSymSet,
5694         * (pic16emitStaticSeg): extern symbols are added in externs,
5695         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5696         switching when aboslute variables are placed in access bank memory
5697         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5698         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5699         commented out with #if,
5700         * (pic16_packRegisters): reintroduce the check for CAST because some
5701         symbols are not correctly handled,
5702         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5703         pCodeInstruction instead of pCode,
5704         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5705         pCodeAsmDir definition,
5706         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5707         directive, then the argument directive is emitted without the leading
5708         tab, hack for inline labels which must be in the first column,
5709         * (compareLabel,pic16_findNextInstruction),
5710         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5711         * (insertBankSwitch): modified for the new pCodeAsmDir,
5712
5713 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5714         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5715
5716         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5717         instance,
5718         * (pushSide): commented out with #if,
5719         * (assignResultValue): fixed some typos in saving
5720         registers,
5721         * (genPcall): FIXED and sync'ed with genCall,
5722         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5723         * (genNearPointerGet): fixed to handle some more cases,
5724         implementation scheme via table reads,
5725         * (genConstPointerGet): modified to access code memory correct,
5726         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5727         and improved to handle some cases
5728         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5729         instead of "RETLW" for init data
5730         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5731         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5732         variables are placed in access bank memory (<0x80 and >=0xf80),
5733         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5734         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5735         TBLWT_POSTDEC,TBLWT_PREINC
5736         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5737         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5738         directives
5739         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5740         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5741         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5742         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5743
5744 2004-02-29  Borut Razem <borut.razem AT siol.net>
5745
5746         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5747         support/Util/findme.h, support/Util/system.h: enhance binary relative
5748         search for lib and include by using findProgramPath()
5749
5750 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5751
5752         * src/SDCCpeeph.h,
5753         * src/SDCCpeeph.c (pcDistance),
5754         * src/port.h,
5755         * src/mcs51/ralloc.h,
5756         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5757         * src/mcs51/main.h,
5758         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5759         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5760         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5761         size calculation port specific, started basis for some register
5762         optimizations
5763         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5764         missing push/pop of r0/r1. Optimized push/pops
5765         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5766         * device/lib/_modsint.c (_modsint),
5767         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5768         and stack version so regression tests pass
5769
5770 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5771
5772         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5773         * src/SDCCast.c (decorateType): catch another small optimization
5774         with '?' operator
5775         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5776         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5777         modified to finally use computeType() all over SDCC,
5778         see Feature Request #877103
5779         * src/SDCCval.h: cosmetic
5780         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5781         valCompare(); regression tested in muldiv.c
5782         * support/regression/tests/muldiv.c (testMod): mod sign follows
5783         dividend only
5784
5785 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5786
5787         * src/SDCCast.c (decorateType): fixed bug #902362
5788         * doc/INSTALL.txt: fixed install instructions for win32
5789
5790 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5791
5792         * device/include/Makefile.in (install): fixed by replacing spaces
5793         by tabs
5794         * doc/README.txt,
5795         * doc/INSTALL.txt: updated for release
5796         * doc/sdccman.lyx: added warning for --xstack being buggy
5797
5798 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5799
5800         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5801         to eliminate build warnings.
5802         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5803
5804 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5805            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5806
5807         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5808         removed -penable-stack, added comment for stack pragma, added
5809         warning for not initializing the stack/frame registers, removed
5810         comment at interrupts section
5811
5812         Stack is made permanent, there is no ability to disable stack usage.
5813         * src/pic16/device.h,
5814         * src/pic16/device.c: removed all references to USE_STACK macro,
5815         * src/pic16/device.c (pic16_dump_section): when no elements in
5816         rlist, free rlist before return,
5817         * (pic16_dump_int_registers): NEW, internal registers are a new set
5818         of general purpose registers reused by each function,
5819         * (checkAddReg): returns 1 if registers is added to set,
5820         * (pic16_groupRegistersInSection): when a registers is of type
5821         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5822         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5823         SRCASECMP macro is moved here from device.c
5824         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5825         PO_PCLATU, PO_PRODL, PO_PRODH,
5826         * (pic16_pCodeOpType, genMinus,
5827         changed compares to "a" register, with AOP_ACC,
5828         * (pic16_genPlus): fixed some bugs and indented properly,
5829         * (pic16_addSign): changed size to size+offset in the MOVWF
5830         instruction,
5831         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5832         multiply 8-bit operand by literal, result is 8-bit,
5833         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5834         multiply 2 8-bit operand, result is 8-bit,
5835         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5836         genUMult8X*_16,
5837         * src/pic16/gen.c: changed accUse to contain WREG only,
5838         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5839         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5840         true, do not use immediate addressing any more unless sym is a
5841         pointer in codespace,
5842         * (aopForRemat): do not use immediate addressing when symbol not in
5843         codespace and when symbol's address is requested,
5844         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5845         accUse size (= 1),
5846         * (aopGet): added case for AOP_ACC and don't return "accumulator
5847         bug" but WREG instead,
5848         * (popGetTempReg): pushes contents of temporary register in stack,
5849         * (popReleaseTempReg): pops contents of temporary register from
5850         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5851         * (pic16_popGet): separated case AOP_ACC to return register WREG
5852         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5853         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5854         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5855         the use of immediate pointers to certain cases only.
5856
5857         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5858         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5859         * (assignResultValue, genCall, genRet): modified to use the new
5860         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5861         genPcall is still broken,
5862         * (genFunction): added code to create 'A' type pBlocks when
5863         interrupt functions are generated, code not extensively tested yet,
5864         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5865         * (genEndFunction): modified so ISRs pop stored registers from stack,
5866         * (genMultOneByte): cleanup,
5867         * (AccRsh): added flag andmask, to and result with appropriate mask,
5868         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5869         * (genDataPointerGet): fixed and reenabled its use,
5870         * (genNearDataPointerGet): bugs fixed,
5871         * (genDataPointerSet): bugs fixed,
5872         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5873         pic16_DumpSymbol, pic16_DumpOp,
5874         * src/pic16/genutils.h: function prototypes for the above functions,
5875         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5876         pointers,
5877         * (pic16emitRegularMap): many many many improvements, but needs a
5878         major cleanup,
5879         * src/pic16/main.c: enable_stack in pic16_options is removed,
5880         * (_pic16_parseOptions): removed command line options -penable-stack,
5881         * (_process_pragma): emit stack symbol only when stack pragma is
5882         processed,
5883         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5884         redirected to FSR0L/FSR0H pair,
5885         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5886         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5887         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5888         for immediates,
5889         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5890         * (dumpPicOptype): NEW,
5891         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5892         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5893         with movff instruction,
5894         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5895         added pic16_int_regs, some packRegsFor* functions are commented out,
5896         because produce errors,
5897         * src/pic16/NOTES: minor modifications
5898
5899 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5900
5901         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5902         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5903         --pack-iram.
5904         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5905         * as/mcs51/lkaomf51.c: fixed bug #895763
5906
5907 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5908
5909         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5910
5911 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5912
5913         * doc/sdccman.lyx: added details about the HC08 storage classes and
5914         interrupts, fixed the register usage info for z80 & gbz80
5915
5916 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5917
5918         * doc/sdccman.lyx: added more pic16 port documentation
5919         * device/include/pic16/: added header pic18fregs.h
5920
5921 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5922
5923         * doc/sdccman.lyx: added Vangelis' contribution
5924
5925 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5926
5927         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5928         extend to the next CALL or PCALL, not just to the next CALL.
5929
5930 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5931
5932         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5933
5934 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5935
5936         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5937         bug #895752 and a better fix for bug #716790
5938
5939 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5940
5941         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5942
5943 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5944
5945         * doc/sdccman.lyx: minor changes, minor changed
5946
5947 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5948
5949         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5950         which can't handle SDCC_NEWONEBYTEOPS,
5951         (geniCodeMultiply): removed conversion from mult to shift for pic14
5952         and pic16
5953
5954 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5955
5956         * src/hc08/gen.h,
5957         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5958         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5959         thus fixing bug #895406
5960
5961 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5962
5963         * device/lib/_modsint.c,
5964         * device/lib/_modslong.c: sign follows divisor only
5965         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5966         signs or signedness can be ignored
5967         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5968         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5969         added optimization for IFX,
5970         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5971         arguments;
5972         reenabled optimization for IFX, which was removed on 2004-01-11
5973         * src/SDCCast.h: added return type IFX
5974         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5975         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5976         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5977         SDCC_OLDONEBYTEOPS selects the old behaviour
5978         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5979         changed again and commented promotion rule
5980         * src/SDCCval.c (valDiv): promotion no longer necessary
5981         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5982         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5983         rewritten
5984         * support/regression/tests/onebyte.c: added
5985
5986 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5987
5988         * gen.c (genInline): reverted to old code for assemnling inline
5989         code because of bug reported James Chadd
5990
5991 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5992
5993         * ralloc.h: missing declarations from previous patch,
5994         seems that patch for ralloc.h was never applied, fixed
5995
5996 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5997            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5998
5999         * pcode.c,
6000         * pcode.h,
6001         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6002         indirect addressing. Marked FSR0 as deprecated
6003         * gen.c (pointerCode): commented out, not needed now
6004         (pic16_popGet2p): new MOVFF helper function
6005         (genGenPointerGet),
6006         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6007         (shiftRLong): removed duplicate debugging info
6008
6009 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/ds390/gen.c (genNearPointerGet),
6012         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6013         optimization with bits, but not bitfields.
6014         * src/ds390/ralloc.c (packRegisters),
6015         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6016
6017 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6018
6019         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6020
6021 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6022
6023         * src/SDCCsymt.h,
6024         * src/SDCCicode.c (operandFromSymbol),
6025         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6026         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6027         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6028         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6029         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6030         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6031         bug #892038
6032         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6033         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6034         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6035         * src/SDCCsymt.c (newSymbol),
6036         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6037         enumerator_list),
6038         * src/SDCCval.h,
6039         * src/SDCCval.c (newiList): fixed bug #885705
6040
6041 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6042
6043         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6044         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6045
6046 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6047
6048         * device/include/c8051f120.h,
6049         * device/include/c8051f300.h,
6050         * device/include/c8051f310.h: added/updated header files for Silicon
6051         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6052         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6053         in new section Submitting patches
6054
6055 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6056
6057         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6058         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6059         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6060         genGenPointerSet),
6061         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6062         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6063         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6064         genGenPointerSet),
6065         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6066         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6067         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6068         genGenPointerSet),
6069         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6070         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6071         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6072         genGenPointerSet): fixed bug #892400
6073         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6074         to eliminate build warnings.
6075         * src/SDCCast.c (processParms),
6076         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6077         fixed bug 751859
6078         * support/valdiag/valdiag.py: added GCC to the list of defines active
6079         when compiling with gcc
6080
6081 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6082
6083         * support/Util/SDCCerr.h,
6084         * support/Util/SDCCerr.c,
6085         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6086         with an incomplete type (fixed bug #883734)
6087         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6088
6089 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6090
6091         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6092
6093 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6094
6095         * src/SDCCast.c (decorateType),
6096         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6097         function pointer implementation
6098         * support/regression/tests/funptrs.c: added tests to verify both forms
6099         of function pointers work correctly. Added tests to verify parameters
6100         are passed in the correct order.
6101
6102 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6103
6104         * device.c (regCompare): registers are sorted by ascending
6105         address and increasing size,
6106         * main.c (_pic16_finaliseOptions): removed the declaration
6107         of compiler macro MCU. Now a macro of the format pic18fxxxx
6108         will be defined from the command line
6109
6110 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6111             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6112
6113         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6114         PCOP_RLCF was overwritten!
6115         * gen.c (genSkip): commented out calls to pic16_emitcode,
6116         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6117         * (genlshTwo),
6118         * (genRRC): added debugging info,
6119         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6120         overwritten while shifting,
6121         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6122         overwritten while shifting,
6123         * (AccLsh),
6124         * (AccRsh),
6125         * (shiftLLeftOrResult),
6126         * (shiftRLeftOrResult),
6127         * (shiftRLong),
6128         * (shiftLLong): Implemented with pic16_emitpcode
6129         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6130         * (genLeftShift): Fixed bug, operand for shift by variable always
6131         was "and"ed with 0x0f,
6132         * (genLeftShiftLiteral),
6133         * (genrshTwo),
6134         * (genRightShiftLiteral): added debugging info,
6135         * (genrshFour): added comment,
6136         * (genRightShift): determined signedness from operand "left"
6137         instead of "result"
6138
6139 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/SDCCicode.c (geniCodeParms),
6142         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6143         function pointers, fixed function pointer bugs #861242 and #861896
6144
6145 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6146
6147         * device/include/c8051f000.h,
6148         * device/include/c8051f120.h,
6149         * device/include/c8051f300.h: added header files for Silicon
6150         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6151
6152 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6153
6154         * src/SDCCast.c (processParams): added new type flow and restructured
6155         (gatherAutoInit): added new type flow
6156         (addCast): cosmetic changes
6157         (getLeftResultType): added new type flow for array indices, patch
6158         provided by Stas, see FR #877103
6159         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6160         array index patch by Stas
6161         * src/SDCCast.h: added prototype getResultTypeFromType()
6162         * src/SDCCval.h,
6163         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6164         * src/pic/glue.c (pic14emitStaticSeg),
6165         * src/pic16/glue.c (pic16emitStaticSeg),
6166         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6167         for initialization of symbols
6168         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6169         * support/Util/SDCCerr.h:
6170         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6171         * .version: bumped version number to 2.3.8
6172         * device/include/Makefile.in (install),
6173         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6174         avoid warnings
6175
6176 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6177
6178         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6179         Slade Rich fixed an optimization bug
6180         * src/pic/pcodepeep.c,
6181         * src/pic/pcoderegs.c
6182         * doc/Makefile (install): added test for directory
6183
6184 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6185
6186         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6187         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6188         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6189         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6190         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6191         * as/mcs51/asexpr.c (term),
6192         * as/hc08/asexpr.c (term): fixed bug #887146
6193
6194 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6195
6196         * src/z80/gen.c (genMult): handle single byte result product
6197         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6198         DUMMY_READ_VOLATILE (fixed bug #886367)
6199
6200 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6201
6202         * support/regression/tests/libmullong.c: fixed logic, on little endian
6203         hosts we ended without a mullong_wrapper()
6204
6205 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6206
6207         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6208         virus/worm forged address usage.
6209
6210 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6211
6212         Fixed promotion, it should be done on AST level:
6213         * src/SDCCast.c (addCast): added promotion to int
6214         (decorateType): updated call to upCast()
6215         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6216         usualUnaryConversions()
6217
6218 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6219
6220         * support/regression/tests/literalop.c (mulWrapper): Added a
6221         wrapper to remove integer overflow warnings.
6222
6223         * support/regression/tests/float_trans.c: Made work on host.
6224
6225         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6226         location of sz80.
6227
6228         * support/regression/generate-cases.py (main): Changed from inline
6229         to a main method.
6230
6231         * doc/Makefile (install): Changed to depth first to get rid of
6232         missing directory install warning.
6233
6234         * as/Makefile (install-doc): Made work on Mac.
6235
6236 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6237
6238         * src/SDCCast.c: added an additional type flow in decorateType() of
6239         opposite direction, see feature request #860006; it's enabled at runtime
6240         by setting the environment variable SDCC_NEWTYPEFLOW
6241         * src/SDCCast.h: changed prototype of decorateType()
6242         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6243         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6244         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6245         see feature request #877103
6246         * src/SDCCval.c: updated call of decorateType()
6247         (valBitwise): fixed bug #882876
6248         (valMinus): added promotion
6249         (valLogicAndOr): result is unsigned
6250         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6251         * src/SDCCsymt.c (computeType),
6252         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6253         must not cause an unsigned operation
6254         * src/pic/glue (pic14emitRegularMap),
6255         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6256
6257 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6258
6259         * src/pic/pcode.c (PCodeID): commented out left over debug code
6260
6261 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6262
6263         * support/valdiag/tests/overflow.c: added shift tests
6264         * src/pic/device.c,
6265         * src/pic/gen.c,
6266         * src/pic/gen.h,
6267         * src/pic/glue.c,
6268         * src/pic/main.c,
6269         * src/pic/pcode.c,
6270         * src/pic/pcode.h,
6271         * src/pic/pcodepeep.c,
6272         * src/pic/pcoderegs.c,
6273         * src/pic/ralloc.c,
6274         * src/pic/ralloc.h: applied patch from Slade Rich;
6275         added support for multiple code pages and multiple RAM banks on the
6276         PIC 14 port. The ASM files now no longer simply assume all the
6277         code / RAM are in the same page / bank. This means the linker can
6278         safely allocate code/RAM of separate ASM files to different pages/banks.
6279         * doc/sdccman.lyx: added Slade's tips
6280         * src/mcs51/peeph.def: fixed bug #880768
6281
6282 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6283
6284         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6285         * src/SDCCast.c (decorateType): fixed bug #880197
6286
6287 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6288
6289         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6290         getopt.h.
6291
6292         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6293         strtof is not part of C89 and isn't included with Mac OS X.
6294
6295 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6296
6297         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6298         shiftL2Left2Result): fixed bug #879326
6299         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6300         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6301         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6302         address fetch for clr instruction
6303         * device/lib/hc08/_mulint.c: created optimized assembly version
6304         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6305
6306 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6307
6308         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6309         proposed in FR #877103
6310
6311 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6312
6313         * src/SDCCval.c (cheapestVal): added missing checks
6314         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6315         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6316
6317 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6318
6319         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6320         equal operands
6321
6322 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6323
6324         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6325         loaded with the linker search paths (-L arguments) and the libraries
6326         to be linked with the current source (-l arguments). Changes
6327         currently will affect only the pic16 port.
6328         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6329         include path the port specific paths and port specific libraries,
6330         * gplink command now contains the $3 argument,
6331         * src/pic16/device.h,
6332         * src/pic16/device.c,: structure PIC_device is made public and
6333         renamed to PIC16_device, the same for variable Pics which is renamed
6334         to Pics16. Updated all references to them.
6335         * src/pic16/glue.c (pic16glue): corrected bug with code
6336         initialization which bypassed the variable initializations block.
6337
6338         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6339         COMPILE_FLAGS and added the --nostdinc option
6340
6341 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6342
6343         * device/include/mc68hc908jb8.h: Register defs for another member
6344         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6345
6346 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6347
6348         Documenting changes from previous commits.
6349         * configure.in (version 1.56),
6350         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6351         when generating output files to configure the pic16 library,
6352         but now I've commented it out, since gputils aren't installed in the
6353         SF compile farm, so library won't compile
6354
6355         * device/lib/Makefile.in (version 1.56): initially I've added in
6356         target 'all' the prerequestive 'model-pic16' so it compiled the
6357         pic16 library, but now I've commented it out for the same reasons
6358         above,
6359         * added targets 'model-pic16' and 'objects-pic16' to compile the
6360         library
6361         * added target 'port-specific-objects-pic16' to handle the
6362         generated libraries and copy them into the build/ directory
6363         * added target 'clean-intermediate-pic16' to clean intermediate
6364         files into pic16 directory
6365         * in target 'installdirs' added line to create directory pic16 in
6366         the installation path
6367
6368         * device/include/Makefile.in (version 1.11): in target 'install'
6369         added lines to copy all header files to installation path,
6370         * in target 'installdirs' added line create directory for pic16
6371         headers in the installation path
6372
6373 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6374
6375         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6376          a function call
6377
6378 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6379
6380         * configure,
6381         * device/lib/configure.in,
6382         * device/lib/configure: fixed for autoconf 2.57
6383
6384 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6385
6386         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6387         option so that it actually works. Made it specific to the z80, since
6388         the gbz80 doesn't have these kinds of I/O ports.
6389
6390 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6391
6392         * device/include/z180.h,
6393         * device/lib/_memcpy.c,
6394         * device/lib/_memmove.c,
6395         * device/lib/_mulint.c,
6396         * device/lib/ser_ir.c,
6397         * device/lib/ser_ir_cts_rts.c,
6398         * device/lib/_strcmp.c,
6399         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6400         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6401         portmode; added deprecation warning for bank= and protmode= forms.
6402         Also, guard against buffer overflow.
6403         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6404
6405 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6406
6407         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6408         changed interrupt vector table generation to only emit declared vectors.
6409         * device/include/Makefile.in: added missing backslash
6410         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6411
6412 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6413
6414         Mainly changes to support compilation of the device libraries
6415         * src/pic16/device.c: stack is allocated via symbol and not
6416         via literal number. The symbol is placed in the corresponding
6417         position of the data ram
6418         * (pic16_dump_section): relocatable and absolute uninitialized
6419         data are now emitted in sorted order to reduce section naming,
6420         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6421         weren't marked as being in the access bank,
6422
6423 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6424
6425         Added portion of GNU PIC Library under the directory
6426         device/include/pic16 and device/lib/pic16. These files
6427         contain the declarations of SFRs for the PIC18Fxx2 devices.
6428         The directory is initialized via configure from toplevel.
6429
6430 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6431
6432         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6433         the spilllocations to be compared correctly
6434
6435 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6436
6437         * src/SDCCast.c (decorateType): fixed bug introduced today
6438
6439 2004-01-12  Borut Razem <borut.razem AT siol.net>
6440
6441         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6442         doc/sdccman.lyx: upper case pragmas are deprecated
6443
6444 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6445
6446         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6447         in simpler and even better code
6448
6449 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6450
6451         * src/SDCCicode.c (operandOperation): fixed bug #874819
6452         * src/SDCCast.c (decorateType): fixed
6453         char foo (unsigned long ul) { return ul > 0; }
6454
6455 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6456
6457         * doc/sdccman.lyx: Moved and added some sections, small changes
6458         all over. Telling LaTeX to be less strict with word spacing
6459         to better keep the right margin. Changed some notes about
6460         maintainance of the ports in section 3.2.1 - is it OK like this?
6461
6462 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6463
6464         SDCC source changes:
6465         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6466         convilong): modified to inform the pic16 port that builtin functions
6467         are external
6468
6469         PIC16 PORT specific changes:
6470         * src/pic16/device.c pic16_dump_equates() added,
6471         processor registers declared internally by the port are emitted in
6472         the translation as equates,
6473         * src/pic16/gen.c: inline code is passed unprocessed to the
6474         translation,
6475         * (pic16_popGetLit2): fnuction modified to take second operand as
6476         pCodeOp pointer and not as literal,
6477         * (popRegFromIdx): prefixed with pic16_,
6478         * (pic16_popCombine2): modified to receive already allocated pCode
6479         operands,
6480         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6481         * (genFunction): initializes local stack frame and pushes on stack
6482         all the registers used by this function,
6483         * (genEndFunction): restores all registers from stack and restores
6484         stack frame,
6485         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6486         improvements,
6487         * (pic16glue): changed the program startup sequence,
6488         * added new dbName code 'A' for functions placed in absolute section
6489         * src/pic16/main.c: added function attribute _naked,
6490         * added pragma 'code' to place a fnuction at an absolute address,
6491         * added command line arguments --debug-ralloc and --pcode-verbose,
6492         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6493         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6494         * (pic16_newpCodeOpLit2): modified to take the second operand as
6495         pCodeOp pointer,
6496         * (pic16_printpBlock): modified to emit each function in a separate
6497         section,
6498         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6499         UPPER for immediate operands,
6500         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6501         instruction,
6502         * src/pic16/peeph.def: all peepholes with movff are commented out,
6503         because there is a problem in the pcode peep optimizer,
6504         * src/pic16/ralloc.c: the register allocator can now reuse local
6505         function symbols for another function. This saves register usage.
6506         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6507
6508         Added file src/pic16/NOTES with information about program writing on
6509         the current port version.
6510
6511 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6512
6513         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6514         and peephole 252 (array access)
6515
6516 2004-01-09  Borut Razem <borut.razem AT siol.net>
6517
6518         * src/SDCCmain.c : fixed #872250: -l command line defined library
6519           files are scanned before standard library files
6520
6521 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6522
6523         * src/SDCCast.c (decorateType): fixed bug #874046
6524
6525 2004-01-09  Borut Razem <borut.razem AT siol.net>
6526
6527         * support/scripts/sdcc.nsi: remove previous installation
6528
6529 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6530
6531         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6532         bytes for last interrupt vector (mcs51)
6533         * sdcc.spec: fixed typo
6534
6535 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6536
6537         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6538         gen51Code): more efficient parameter receive for --model-large
6539         ("bug" #845294)
6540
6541 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6542
6543         * src/ds390/main.c,
6544         * src/z80/main.c: added missed needLinkerScript flags (more than
6545         one port structure defined in these file)
6546         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6547         bug #795325
6548
6549 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6550
6551         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6552         * src/port.h: added flag needLinkerScript in port->linker
6553         structure to inform whether to create a .lnk file or not,
6554         * src/avr/main.c,
6555         * src/ds390/main.c,
6556         * src/hc08/main.c,
6557         * src/mcs51/main.c,
6558         * src/pic/main.c,
6559         * src/pic16/main.c,
6560         * src/xa51/main.c,
6561         * src/z80/main.c: changed appropriately to configure
6562         needLinkerScript flag
6563         * src/pic/gen.c,
6564         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6565         * src/pic/glue.c: added variable udata_section_name to
6566         override default uninitialized data segment definition for
6567         devices only with SHAREBANK memory (reported from Erik Epetrich)
6568         * (pic14emitOverlay): modified to emit a commented overlay segment
6569         directive when no overlay data exist
6570         * (picglue): modified to emit uninitialized data segment
6571         according to udata_section_name
6572         * src/pic/main.c (_pic14_parseOptions): added command line
6573         options --udata-section-name=[name] to override default
6574         udata definition name
6575         * modified _linkCmd and _asmCmd to include compiler passed
6576         arguments via -W option
6577         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6578         object file from '.rel' to '.o' in port->linker structure,
6579         changed size of fptr from 2 to 3 in port structure
6580
6581 2004-01-07  Borut Razem <borut.razem AT siol.net>
6582
6583         * support/scripts/sdcc.nsi: update PATH
6584         * support/scripts/sdcc.ico: craeted
6585
6586 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6587
6588         * device/include/Makefile.in: fix install
6589         * doc/Makefile: fix install
6590
6591 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6592
6593         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6594         in bug #860505
6595         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6596         how the function variable allocation summary is displayed; also
6597         include information about variables allocated to the overlay
6598         segment
6599
6600 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6601
6602         * as/mcs51/lkmain.c: Help about -Y option
6603         * as/mcs51/lkarea.c: Fixed gcc warnings
6604
6605 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6606
6607         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6608         fixed warning
6609         * support/valdiag/tests/overflow.c: added
6610         * src/SDCCast.c (decorateType),
6611         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6612         LEFT_OP (left shift)
6613
6614 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6615
6616         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6617         (default behaviour).
6618
6619 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6620
6621         A python script to validate compiler diagnostic messages. It can be
6622         used to verify that sdcc complains about bad c source code and
6623         gives a good location of the error.
6624         * support/valdiag/Makefile,
6625         * support/valdiag/valdiag.py,
6626         * support/valdiag/tests/*
6627
6628 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6629
6630         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6631         * src/SDCCsymt.c (newEnumType),
6632         * src/SDCCsymt.h
6633         * support/Util/SDCCerr.c,
6634         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6635         enum related bugs.
6636         * support/regression/tests/enum.c: added test for enum values that
6637         require at least 2 bytes of storage.
6638
6639 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6640
6641         * src/common.h: added ifndef/define/endif macros
6642         around the header file.
6643         Bug reported from Jesus Calvino-Fraga
6644
6645 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6646
6647         * sdcc.spec: updated
6648         * device/include/Makefile.in: don't install CVS directories
6649         * device/lib/Makefile.in: added removal of CVS directories after install
6650         * doc/Makefile: fixed install, added local_icons
6651         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6652         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6653         * src/ds390/gen.c (genRightShift): fixed bug #870788
6654         * src/SDCCast.c (decorateType): fixed bug #870781
6655
6656 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6657
6658         PIC16 port related changes:
6659         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6660         added variable stackPos,
6661
6662         * gen.c: genCall, assignResultValue: added support for
6663         pushing/retrieving function parameters to/from stack,
6664         genFunction,genEndFunction: setup stack frame for the
6665         generated function,
6666         genAddrOf: will be changed according to bug 863624
6667
6668         * added files genutils.c and genutils.h which contain gen*
6669         debugged and optimised functions extracted from gen.c
6670
6671         * glue.c: added variable 'externs' which holds extern symbols,
6672         pic16emitRegularMap: is modified to properly handle relocatable
6673          symbols under the new scheme,
6674         pic16createInterruptVect: is modified
6675         pic16printPublics: is modified to emit 'global' assembler directives,
6676         added pic16_printExterns to print extern symbols,
6677         pic16glue: initializes stack/frame pointer in the beginning of
6678         the assembly output. Temporary hack, will be corrected later,
6679         because gplink yet does not support stack and SDCC does not
6680         yet support a type of crt0.o object to create the final binary.
6681
6682         * Removed many lines that contain 8051 legacy code.
6683         * The code is finally placed under a 'code' directive.
6684         * Added port specific options.
6685
6686         * _process_pragma: simplified since now we do not need *special*
6687         include file to define SFR registers. But a separate header
6688         will be needed. This will be developed later.
6689         * _pic16_parseOptions: added, parses port specific options:
6690         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6691         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6692         --preplace-udata-with=
6693
6694         * _pic16_setDefaultOptions: modified to initialize section names,
6695         but hack is temporarly out of order since it needs improvement.
6696         * _pic16_genAssemblerPreamble: configuration words are emitted by
6697         their address instead of their name. This part is incomplete and
6698         supports only the 18Fxx2 devices. Other devices will emit an error
6699         during assembly since they do not contain the same set of config
6700         registers
6701         * _pic16_genIVT: is modified,
6702
6703         * pcode.c: added definitions for some hardware registers that are needed
6704         for stack support
6705         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6706         All PCI entries are updated. Now LFSR is supported.
6707         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6708         * added pic16_newpCodeOpLit2 to support instructions with
6709         two literal arguments
6710         * pic16_pCode2str: corrected code that emits assembler instructions
6711         with two literal operands and those that have an access bit modifier
6712         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6713         this fixes a bug which caused some labels to be lost, when an
6714         assembler directive was added, i.e. banksel,
6715         * pic16_FixRegisterBanking: improved logic that causes the insertion
6716         of bank switching,
6717         * InlineFunction: functions that are called once, are not any more
6718         inlined. This can be a port option in the future,
6719
6720         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6721
6722         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6723         hold the corresponding uninitialized symbols,
6724         * pic16_allocProcessorRegister: registers have explicit marked the
6725         accessBank field,
6726         * pic16_allocInternalRegister: registers are explicit marked as
6727         not used,
6728         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6729         processing list, so bit registers were lost,
6730         *
6731
6732         * ralloc.h: added field 'accessBank' and original symbol operand
6733         in register definition,
6734         * removed the field isMapped from register definition,
6735
6736         ** Several functions have been removed from various sources:
6737         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6738         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6739         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6740         pic16_assignRelocatableRegisters
6741
6742         ** others have been introduced:
6743         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6744         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6745
6746 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6747
6748         * support/scripts/inc2h.pl: changed definition of BIT_AT
6749         to emit 'sbit at' instead of 'bit at'. This was a request.
6750
6751         PIC16 port related preliminary changes:
6752         * gen.c: prefixed function popRegFromString with
6753         pic16_ and all references to it corrected
6754         * pcode.c: all pic16_pc_* hardware registers prefixed
6755         with underscore (_),
6756         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6757         * ralloc.c: newReg(): when register is REG_SFR then
6758         set address to rIdx,
6759         pic16_allocProcessorRegister(): marks register wasUsed=0
6760         pic16_writeUsedRegs(): added a call to assign processor
6761         registers via pic16_assignFixedRegisters
6762
6763 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6764
6765         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6766         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6767         variables in unused register banks.  Also the SSEG is placed
6768         wherever there is enough space for it, and IDATA can be anywhere
6769         in internal RAM.  For now compile using -Wl-Y[stack_size].
6770         The mem file is different for this option as well, since it
6771         makes no sense of talking about DSEG lenght.
6772
6773 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6774
6775         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6776         in certain cases, e.g. when ROM assignment, patch provided
6777         from Albert den Haan.
6778
6779 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6780
6781         Many signedness and type propagation fixes:
6782         * src/SDCCicode.c: made geniCodeCast() static
6783         replaced SPEC_ by IS_ (cosmetic)
6784         (operandOperation): fixed div and mod operation
6785         (usualBinaryConversions): added support for promotion of char
6786         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6787         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6788         (geniCodeAdd): an array index will stay unsigned, even if promoted
6789         from char to int
6790         (geniCodeArray): ditto
6791         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6792         * src/SDCCsymt.c (computeType): added more support for char;
6793         promotion of char is selectable by promoteCharToInt, fixed signedness
6794         for all cases
6795         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6796         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6797         * src/SDCCval (val*): replaced signedness calculation by
6798         computeType()
6799         rearranged if-branches (cosmetic)
6800         (valShift): added warning W_SHIFT_CHANGED
6801         (valCompare): fixed problem with different types
6802         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6803         * support/regression/tests/literalop.c: added many cases
6804         * support/regression/tests/ast_constant_folding.c: changed finally to
6805         'unsigned int'
6806         * .version: new year, new version: 2.3.7
6807         * src/SDCCmain.c (main): applied patch #866468
6808         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6809         provided by Scott Bronson
6810         * doc/sdccman.lyx: updated documentation for sdcdb
6811         updated and added chapter tips
6812
6813 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6814
6815         * src/SDCCsymt.h: missing from yesterday's commits
6816
6817 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6818
6819         * src/SDCC.y (struct_or_union_specifier),
6820         * support/Util/SDCCerr.c,
6821         * support/Util/SDCCerr.h: verify that struct & union tags are used
6822         as declared.
6823
6824 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6825
6826         * src/SDCCglobl.h: missing from yesterday's commits
6827
6828 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6829
6830         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6831         sft_attributes, struct_declaration, parameter_declaration,
6832         type_name, start_block, declaration_list),
6833         * src/SDCC.lex (check_type): support redefinition of typedef names
6834
6835 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6836
6837         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6838         aligned xdata arrays. Erik helped me with the if clause.
6839
6840 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6841
6842         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6843         warning
6844
6845 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6846
6847         * src/SDCCast.h,
6848         * src/SDCCast.c (newAst_),
6849         * src/SDCCicode.h,
6850         * src/SDCCicode.c (ast2iCode, newiCode),
6851         * src/SDCCglobl.h,
6852         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6853         expr, statement, expression_statement, selection_statement,
6854         iteration_statement, expr_opt, jump_statement): foundation for tracking
6855         sequence points
6856         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6857         point code too)
6858
6859 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6860
6861         * support/Util/SDCCerr.c,
6862         * src/SDCCast.h,
6863         * src/SDCCast.c (createCase, createDefault, decorateType),
6864         * src/SDCClabel.c (labelUnreach),
6865         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6866         to error messages.
6867         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6868         (with thanks to Stas Sergeev)
6869         * device/include/time.h,
6870         * device/lib/time.c (CheckTime): suppress unreachable code warning
6871
6872 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6873
6874         * src/SDCCast.c (createIvalCharPtr),
6875         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6876         bug #753752)
6877         * support/regression/tests/nullstring.c: tests for these two bugs
6878
6879 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6880
6881         * support/Util/SDCCerr.h,
6882         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6883         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6884         about storage class and 'at' used inside struct or union
6885         * src/SDCCBBlock.c (iCodeFromeBBlock),
6886         * src/SDCCcse.c (ifxOptimize),
6887         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6888         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6889         printIval, emitStaticSeg, emitOverlay),
6890         * src/SDCClabel.c (deleteIfx),
6891         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6892         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6893         gatherAutoInit, processParms),
6894         * support/Util/SDCCerr.h,
6895         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6896         reporting for post-parse errors.
6897
6898 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6899
6900         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6901         implicit casts via union; they don't work on big endian systems
6902         (possible fix for bug #861138)
6903
6904 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6905
6906         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6907         * src/mcs51/main.c: fixed the fix for bug #737001
6908
6909 2003-12-15  Borut Razem <borut.razem AT siol.net>
6910
6911         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6912
6913 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6914
6915         * support/makebin/makebin.c: put output in binary mode
6916
6917 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6918
6919         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6920         xdata and data memory on startup. Set the environment variable
6921         SDCC_NOGENRAMCLEAR to disable this.
6922         * src/mcs51/peephole.def,
6923         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6924         (allows non-interrupt and interrupt code to safely compete for a resource
6925         without the non-interrupt code having to disable interrupts)
6926
6927 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6928
6929         * src/SDCCicode.c (geniCodeAdd),
6930         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6931         with valFromType if type might be a pointer and host is big endian).
6932         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6933         types, not just integer types.
6934         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6935         multiply defined with mismatching "at" address.
6936
6937 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6938
6939         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6940         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6941         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6942         with embedded nulls (fixed bug #753752)
6943
6944 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6945
6946         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6947         Apparently this did not see much testing (endless loop)
6948
6949 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6950
6951         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6952
6953 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6954
6955         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6956         gracefully handle NULL memmap pointers
6957
6958 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6959
6960         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6961         instead of deleting the iCode when an operand is volatile
6962         * src/z80/gen.c (genDummyRead),
6963         * src/mcs51/gen.c (genDummyRead),
6964         * src/ds390/gen.c (genDummyRead),
6965         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6966         not just IC_RIGHT
6967         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6968         * src/SDCC.y: fixed bug #850420
6969
6970 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6971
6972         Applied z80 i/o port patch from Peter Townson and fixed some operators
6973         to better handle operands in A register.
6974         * device/include/z180.h
6975         * src/SDCC.y
6976         * src/SDCCglue.c
6977         * src/z80/gen.c
6978         * src/z80/gen.h
6979         * src/z80/main.c
6980         * src/z80/peeph-z80.def
6981         * src/z80/peeph.def
6982         * src/z80/z80.h
6983
6984 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6985
6986         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6987
6988 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6989
6990         * device/lib/hc08/_mullong.c: Removed extra #endif
6991
6992 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6993
6994         * sim/ucsim/hc08.src/inst.cc,
6995         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6996         carries from x to h
6997         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6998         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6999         * device/include/stdarg.h: fixed varargs for hc08
7000         * device/lib/Makefile.in,
7001         * device/lib/hc08/Makefile,
7002         * device/lib/hc08/_mulint.c,
7003         * device/lib/hc08/_mullong.c: fixed some endian problems
7004
7005 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7006
7007         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7008         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7009         * device/lib/_gptrget.c,
7010         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7011
7012 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7013
7014         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7015         * src/SDCCast.c (astErrors): fixed bug #846007
7016         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7017
7018 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7019
7020         * src/SDCCast.c (decorateType): disabled a transformation I added in
7021         revision 1.188 (access to fields of a structure at an absolute address);
7022         it breaks with bitfields, extern declarations, and gcse analysis.
7023         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7024         could be assigned through a pointer, so don't complain.
7025         * src/SDCCast.c (astErrors),
7026         * src/SDCCast.h,
7027         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7028
7029 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7030
7031         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7032         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7033         output of __config directives, since gpasm now supports them
7034         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7035         pre-processor macro, i.e. -DMCU=p18f452
7036         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7037         and modified to handle 'cast' icode similarly to '=' icode
7038         * src/pic16/device.h (typedef struct PIC_device): added field
7039         'extMIface' to indicate that chip has external memory interface
7040         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7041         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7042         18F8720
7043
7044 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7045
7046         * src/SDCC.y (pointer): fixed bug #846006
7047         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7048         * src/SDCCast.c (decorateType): fixed bug #846009
7049         * src/ds390/peeph.def,
7050         * src/ds390/gen.c (genAnd, genOr),
7051         * src/mcs51/peeph.def,
7052         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7053
7054 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7055
7056         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7057         * src/SDCCdflow.c
7058         * src/SDCCcse.c
7059         * src/SDCCcse.h
7060         * src/SDCCBBlock.h
7061         * src/SDCCBBlock.c
7062
7063 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7064
7065         fixed bug #845089
7066         * src/SDCCbitv.h,
7067         * src/SDCCbitv.c: added function to free a bitvector
7068         * src/SDCClrange.h,
7069         * src/SDCClrange.c: added function to recompute the liveranges
7070         * src/avr/ralloc.c,
7071         * src/ds390/ralloc.c,
7072         * src/hc08/ralloc.c,
7073         * src/mcs51/ralloc.c,
7074         * src/pic/ralloc.c,
7075         * src/pic16/ralloc.c,
7076         * src/xa51/ralloc.c,
7077         * src/z80/ralloc.c: recompute the liveranges after register packing
7078
7079 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7080
7081         * src/SDCCloop.c (newInduction): fixed bug #845630
7082
7083 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7084
7085         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7086         inadvertantly left behind from my 2003-11-12 change
7087
7088 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7089
7090         Updated headers I neglected to commit yesterday.
7091         * src/SDCClrange.h,
7092         * src/SDCCicode.h
7093
7094 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7095
7096         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7097         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7098         * src/SDCCopt.c (eBBlockFromiCode),
7099         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7100         the creation of the key hash table from the sequencing so it can be used
7101         earlier (for some GCSE bug fixes still pending)
7102
7103 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7104
7105         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7106         * support/regression/tests/addsub.c: testing genPlus shortcut
7107
7108 2003-11-15  Borut Razem <borut.razem AT siol.net>
7109
7110         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7111
7112 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7113
7114         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7115         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7116         ordering is immaterial.
7117         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7118
7119 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7120
7121         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7122         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7123         (SIGSEV) of bug #840381
7124         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7125         unlink new file before rename if new and old filenames are the same)
7126
7127 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7128
7129         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7130         uninitialized variables) for the mcs51. Set environment variable
7131         SDCC_GENRAMCLEAR to test.
7132         xdata initialization slightly shorter
7133
7134 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7135
7136         * src/SDCCsymt.h,
7137         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7138         #838241 & 780691 (basicly the same bug)
7139         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7140         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7141
7142 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7143
7144         * src/SDCCmain.c (linkEdit): "fix" #834252
7145
7146 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7147
7148         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7149         * src/SDCCast.h,
7150         * src/SDCC.y: fixed bug #819403
7151
7152 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7153
7154         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7155         the reentrant attribute.
7156         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7157         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7158         simulation
7159         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7160         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7161         erroneously reduced to a literal.
7162         * src/hc08/ralloc.c (packRegisters, rematStr),
7163         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7164         some cases
7165
7166 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7167
7168         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7169         * doc/sdccman.lyx: changed from 'article' to 'book'
7170         * doc/Makefile: readded test_suite_spec and cdbfileformat
7171
7172 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7173
7174         * device/include/stdlib.h: include malloc.h to comply with ANSI
7175         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7176
7177 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7178
7179         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7180         * doc/clean.mk: also remove *.out files
7181         * doc/sdccman.lyx: some additions, larger top/bottom margins
7182
7183 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7184
7185         * src/SDCC.y: fixed bug #837365
7186         * support/regression/tests/bitopcse.c
7187         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7188         a symbol (might be valop instead)
7189         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7190         * device/lib/clean.mk: added hc08 to the cleaning list
7191
7192 2003-11-04  Borut Razem <borut.razem AT siol.net>
7193
7194         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7195           made 2003-11-04
7196         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7197           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7198           malloc is declared in standard stdlib.h
7199
7200 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7201
7202         * device/lib/hc08/Makefile: need to clean .rel not .o files
7203         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7204
7205 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7206
7207         * src/port.h,
7208         * src/hc08/main.c,
7209         * src/mcs51/main.c,
7210         * src/ds390/main.c,
7211         * src/z80/main.c,
7212         * src/avr/main.c,
7213         * src/pic/main.c,
7214         * src/pic16/main.c,
7215         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7216         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7217         tests (which uses the port's oclsExpense function)
7218         * src/SDCC.y,
7219         * src/SDCCast.c,
7220         * src/SDCCicode.c,
7221         * src/hc08/gen.c,
7222         * src/ds390/gen.c,
7223         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7224
7225 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7226
7227         * src/SDCCcse.c (ifxOptimize),
7228         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7229         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7230         deleting the IFX iCode.
7231         * src/hc08/ralloc.c: reduced unneeded slocs
7232         * src/hc08/gen.c: fixed bug in asmopToBoolean
7233
7234 2003-11-04  Borut Razem <borut.razem AT siol.net>
7235
7236         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7237           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7238           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7239           transferred to configure
7240
7241 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7242
7243         Use headers defined in the C[++] standards:
7244         * sim/ucsim/gui.src/serio.src/fileio.cc
7245         * sim/ucsim/gui.src/serio.src/frontend.cc
7246         * sim/ucsim/gui.src/serio.src/main.cc
7247         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7248         * support/Util/NewAlloc.c
7249         * as/hc08/lklibr.c
7250         * as/mcs51/lklibr.c
7251         * as/z80/aslist.c
7252         * as/z80/assym.c
7253
7254 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7255
7256         * Added MSVC projects for hc08 assembler and linker:
7257         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7258         /as/hc08/link_hc08.dsp
7259
7260 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7261
7262         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7263
7264 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7265
7266         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7267
7268 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7269
7270         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7271
7272 2003-10-31  Borut Razem <borut.razem AT siol.net>
7273
7274         * support/cpp2/cpplib.h,
7275           support/cpp2/cpplib.c,
7276           support/cpp2/cpplex.c,
7277           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7278           to switch _asm block preprocessing on / off. Default is
7279           #pragma preproc_asm +
7280
7281 2003-10-31  Borut Razem <borut.razem AT siol.net>
7282
7283         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7284           when outputting comment blocks (when executed with -C option) and
7285           _asm (SDCPP specific) blocks
7286
7287 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7288
7289         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7290
7291 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7292
7293         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7294
7295 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7296
7297         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7298         * src/SDCCast.c (decorateType): fixed bug #832664
7299
7300 2003-10-31  Borut Razem <borut.razem AT siol.net>
7301
7302         * support\cpp2\cpplex.c: fixed for SDCPP:
7303           comments(when executed with -C option) and _asm blocks
7304           were included even if they where in skipped #if block.
7305           Applied solution from GCC cpp 3.3.2
7306
7307 2003-10-31  Borut Razem <borut.razem AT siol.net>
7308
7309         * src/SDCC.lex: sdcc now understands both formats:
7310           '# <line_number> <file_name>' and
7311           '#line <line_number> <file_name>'
7312         * support/cpp2/cppmain.c: sdcpp now generates the standard
7313           '# <line_number> <file_name>' instead of former
7314           '#line <line_number> <file_name>'
7315
7316 2003-10-30  Borut Razem <borut.razem AT siol.net>
7317
7318         * support/cpp2/cpphash.h,
7319         * support/cpp2/cpplib.h
7320         * support/cpp2/cpplex.c,
7321         * support/cpp2/cppmain.c,
7322         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7323
7324 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7325
7326         Fixed a number of problems revealed by bug #827883.
7327         * src/SDCCloop.c (loopInvariants): Spill location of the
7328         result operand should be recomputed if extracted from
7329         a loop. Also, don't extract assignments of an iTemp
7330         from a literal.
7331         * src/SDCCast.c (isConformingBody): loop reversal should
7332         not occur if the control variable is involved with a
7333         relational operator.
7334
7335 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7336
7337         * .version: bumped to 2.3.6 to reflect the big improvements
7338         made by Erik and Klaus. Thanks!
7339
7340 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7341
7342         Replaced the livrange code.
7343         * src/SDCClrange.c: added new LR code
7344         * src/SDCCloop.c,
7345         * src/SDCCBBlock.h: removed remainig parts from old LR code
7346         * src/ds390/ralloc.c,
7347         * src/ds390/gen.c: minor fixes to make it work with new code
7348
7349 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7350
7351         * as/hc08/asm.h,
7352         * as/hc08/lkrloc.c,
7353         * src/hc08/gen.c,
7354         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7355         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7356         (tweaked fix for bug #818696)
7357
7358 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7359
7360         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7361
7362 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7363
7364         * src/SDCCmain.c,
7365         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7366         * src/mcs51/gen.c (gencjneshort),
7367         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7368         more efficient (per Scott Bronson's suggestion)
7369
7370 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7371
7372         Extended the semantics of the critical keyword to include
7373         individual statements. See RFE #827755 and #799831
7374         * src/SDCC.y
7375         * src/SDCCicode.c
7376         * src/SDCCopt.c
7377         * src/SDCCast.c
7378         * support/Util/SDCCerr.c
7379         * support/Util/SDCCerr.h
7380         * src/mcs51/gen.c
7381         * src/ds390/gen.c
7382         * src/hc08/gen.c
7383
7384 2003-10-19  Borut Razem <borut.razem AT siol.net>
7385
7386         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7387
7388 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7389
7390         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7391         Fixed bug #818696
7392         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7393         and predecrement operand is displayed
7394
7395 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7396
7397         * src/SDCCval.c (valMinus): fixed bug #826041
7398
7399 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7400
7401         Some hc08 related updates that I missed earlier
7402         * sim/ucsim/stypes.h
7403         * support/regression/ports/hc08/spec.mk
7404
7405 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7406
7407         New target "hc08" for the Motorola 68hc08 family of micros
7408
7409         * configure
7410         * configure.in
7411         * Makefile
7412         * src/hc08/*
7413         * src/SDCCmain.c
7414         * src/port.h
7415         * sim/ucsim/hc08.src/*
7416         * sim/ucsim/configure.in
7417         * src/ucsim/configure
7418         * sim/ucsim/packages_in.mk
7419         * as/hc08/*
7420         * as/Makefile
7421         * device/include/mc68hc908qy.h
7422         * device/lib/hc08/*
7423         * device/lib/Makefile.in
7424         * support/regression/ports/hc08/*
7425         * support/regression/Makefile
7426
7427 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7428
7429         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7430         regression test
7431         * src/ds390/gen.c (genCast): fixed bug #821957
7432
7433 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7434
7435         * device/lib/logf.c: "fixed" overlay bug
7436         * support/regression/ports/host/spec.mk: added m library
7437         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7438         * support/regression/tests/float_trans: added (for Eric)
7439
7440 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7441
7442         * src/mcs51/gen.c (genCpl): fixed bug
7443         http://sf.net/mailarchive/message.php?msg_id=6263915
7444
7445 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7446
7447         * src/SDCCast.c (decorateType): added extended constant folding
7448         * src/SDCCsymt.c (computeType): cleanup
7449         * src/SDCCval.c (valShift): minor optimization
7450         * support/regression/tests/ast_constant_folding.c: added
7451
7452 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7453
7454         * src/SDCCmain.c: removed some unintended changes
7455
7456 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7457
7458         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7459         * src/z80/gen.c: fixed part of bug #817589
7460         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7461
7462 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7463
7464         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7465         * src/SDCCcflow.c
7466         * src/SDCCcse.c
7467         * src/SDCCdflow.c
7468         * src/SDCClabel.c
7469         * src/SDCClrange.c
7470         * src/SDCCmem.c
7471         * src/SDCCopt.c
7472         * src/SDCCpeeph.c
7473         * src/SDCCset.c
7474         * src/avr/ralloc.c
7475         * src/ds390/ralloc.c
7476         * src/izt/ralloc.c
7477         * src/mcs51/ralloc.c
7478         * src/pic/ralloc.c
7479         * src/pic16/ralloc.c
7480         * src/xa51/ralloc.c
7481         * src/z80/ralloc.c
7482         * src/z80/gen.c: removed unused label "release:"
7483
7484 2003-10-06  Borut Razem <borut.razem AT siol.net>
7485
7486         * src/SDCC.lex: removed definition of unused variables
7487           save_optimize and save_options
7488
7489 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7490
7491         * clean.mk: removed '=' in "-maxdepth=1"
7492         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7493         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7494
7495 2003-10-06  Borut Razem <borut.razem AT siol.net>
7496
7497         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7498           my_unput() replaced by unput()
7499
7500 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7501
7502         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7503         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7504         type-punned pointer will break strict-aliasing rules"
7505         Old LR behaviour is again default; Klaus' LR can be choosen by
7506         defining the environment variable LRKLAUS
7507         * src/SDCCBBlock.h
7508         * src/SDCCloop.c
7509         * src/SDCClrange.c
7510         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7511         * clean.mk: fixed removal of files in bin/CVS/
7512         * device/lib/clean.mk: fixed removal of directories small and large
7513         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7514         * src/SDCCicode.c,
7515         * src/SDCCval.c: removed superflous test for pedantic
7516
7517 2003-10-05  Borut Razem <borut.razem AT siol.net>
7518
7519         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7520           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7521           message "unmatched #pragma SAVE and #pragma RESTORE"
7522
7523 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7524
7525         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7526           assembly, critical functions, atomic, nojtbound)
7527
7528 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7529
7530         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7531         * src/SDCCBBlock.h
7532         * src/SDCCloop.c
7533         * src/SDCCloop.h
7534         * src/SDCClrange.c
7535
7536 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7537
7538         * src/z80/gen.h,
7539         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7540         * src/mcs51/gen.h
7541         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7542         * src/ds390/gen.h
7543         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7544         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7545         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7546
7547 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7548
7549         * src/z80/gen.c (genRet): fixed bug #524753
7550         * src/z80/gen.c (genCast): fixed internal error on cast from
7551         pointer to long
7552         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7553         fix for bug #477835 to the z80
7554         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7555         for tracking iCodes in the peephole optimizer for z80
7556
7557 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7558
7559         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7560         the other part of bug #814548
7561         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7562
7563 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7564
7565         * src/SDCCcse.c: fixed part of bug #814548
7566
7567 2003-09-28  Borut Razem <borut.razem AT siol.net>
7568
7569         * src/asm.c: rewrite of printILine() to use temporary file instead
7570           a pipe
7571         * src/xa51/main.c: commented out declaration of int rewinds
7572
7573 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7574
7575         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7576
7577 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7578
7579         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7580         * src/asm.c (printILine): Fixed bug #811015
7581
7582 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7583
7584         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7585         freeing.
7586
7587 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7588
7589         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7590         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7591         to correctly handle general case of AOP_PAIRPTR
7592         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7593
7594 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7595
7596         * src/mcs51/ralloc.c (fillGaps),
7597         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7598         register positioning bug)
7599
7600 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7601
7602         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7603
7604 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7605
7606         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7607         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7608         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7609         (ralloc doesn't intentionally do this now, but perhaps later)
7610         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7611         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7612         register positioning bugs (Fixed bug #762602 and #795325)
7613         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7614         (Fixed bug #808779)
7615         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7616         lines that --i-code-in-asm generates
7617
7618 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7619
7620         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7621         trying to fclose a FILE* that was already closed.
7622
7623 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7624
7625         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7626         of const struct should be treated as if const themselves)
7627
7628 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7629
7630         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7631
7632 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7633
7634         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7635         Unix (/n) and DOS (/r/n) line terminations.
7636
7637 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7638
7639         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7640         bug #613775
7641
7642 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7643
7644         * src/mcs51/gen.c (genFunction, genEndFunction),
7645         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7646         and restore of EA so that stack offsets to parameters are
7647         correct when using both critical and reentrant/stack-auto.
7648         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7649         size (can be triggered in error if sloc is shared between
7650         different sized objects)
7651         * device/include/float.h: fixed macros to explicitly use
7652         unsigned long where needed
7653
7654 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7655
7656         Feature req. 799831: added code to allow nesting of critical functions
7657         * src/mcs51/gen.c (genFunction, genEndFunction)
7658         * src/ds390/gen.c (genFunction, genEndFunction)
7659
7660 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7661
7662         * src/SDCCsymt.c (sclsFromPtr),
7663         * src/SDCCsymt.h,
7664         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7665         support for standard C idiom of memory mapped variables; for
7666         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7667         to xdata int at 0x1234 tempvar = 1.
7668         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7669         provided by Akiya ISHIDA
7670
7671 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7672
7673         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7674         * src/SDCCval.c (constVal): added reduction from int to char
7675         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7676         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7677         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7678         to ignore the sign
7679         * support/regression/tests/shifts.c: fixed
7680
7681 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7682
7683         * src/z80/gen.c (genXor): Fixed bug #805445
7684
7685 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7686
7687         Fixed bug #621531 (const & volatile confusion in the type chain).
7688         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7689         refer to the const or volatile state of the pointer itself.
7690
7691         * src/SDCCast.c
7692         * src/SDCCglue.c
7693         * src/SDCCicode.c
7694         * src/SDCCsymt.c
7695         * src/SDCCval.c
7696         * src/SDCC.y
7697         * src/SDCCsymt.h
7698         * src/pic/gen.c
7699         * src/pic/ralloc.c
7700         * src/pic16/gen.c
7701         * src/pic16/ralloc.c
7702         * support/regression/tests/const.c
7703
7704 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7705
7706         When checking for duplicated modules, use absolute paths
7707         instead of relative paths.  Files changed:
7708
7709         * as/mcs51/lklib.c
7710         * link/z80/lklib.c
7711
7712 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7713
7714         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7715
7716 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7717
7718         * device/include/string.h: added size_t typedef, changed
7719         prototypes to use size_t, eliminated separate reentrant and
7720         non-reentrant declarations, added _memmove declaration
7721         * device/lib/_memcpy.c: changed to use size_t instead of int,
7722         changed /4 to >>2 to avoid division library call
7723         * device/lib/_memcmp.c,
7724         * device/lib/_memset.c,
7725         * device/lib/_strncat.c,
7726         * device/lib/_strncpy.c,
7727         * device/lib/_strncmp.c: changed to use size_t instead of int
7728         * device/lib/_memmove.c: new file (fixed bug #772294)
7729         * device/lib/Makefile.in: added _memmove.c
7730         * device/lib/z80/asm_strings.s: fixed bug #772290
7731         * support/regression/tests/bitfields.c: attempt to fix host assertion
7732         failure on amd64-unknown-linux2.2
7733
7734 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7735
7736         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7737         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7738         * as/z80/asmain.c (main): fixed bug #801766
7739
7740 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7741
7742         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7743         compilers
7744
7745 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7746
7747         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7748         reported in bug #800609
7749
7750 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7751
7752         * Top header beautifications in src/pic16 directory:
7753           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7754           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7755           pcoderegs.h, ralloc.c, ralloc.h
7756         * main.c: added top header and GPL license notice
7757         * pcode.c: fixed the if-conditional warning
7758
7759 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7760
7761         * device/lib/_mullong.c: replaced int by short for gcc
7762
7763 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7764
7765         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7766         and JUMPTABLE iCodes properly now (worked by accident before)
7767         * src/mcs51/gen.c (leftRightUseAcc),
7768         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7769         iCode properly now. Use getSize instead of nRegs since a & b
7770         aren't part of the nRegs tally.
7771
7772 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7773
7774         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7775         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7776           before instructions that use the _STATUS register
7777
7778 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7779
7780         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7781         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7782         fetching of the pointer
7783         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7784         copied from genNearPointerSet()
7785         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7786         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7787         If they pop r0/r1 they must be called in the opposite order than aopOp().
7788         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7789         (resp. --stack-auto), prepared for --xstack
7790
7791 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7792
7793         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7794
7795 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7796
7797         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7798         these ports have their own __sdcc_external_start()
7799
7800 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7801
7802         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7803         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7804         type for bits was changed. It resulted in bit variables becoming
7805         global, which is not permitted in PIC 14 assembly output.
7806
7807 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7808
7809         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7810
7811 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7812
7813         Z80 and MCS51 linkers complaint if a public symbol is defined
7814         in more than one library module:
7815
7816         * as/mcs51/lklib.c
7817         * link/z80/lklib.c
7818         * as/mcs51/Makefile.in
7819
7820 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7821
7822         A few small changes that speed up the peephole optimizer.
7823
7824         * src/SDCCpeeph.c
7825
7826 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7827
7828         Try to make the peephole optimizer smarter by maintaining
7829         an association between the assembly source code and the
7830         iCodes that originated them. Put this information to use
7831         with a new peephole rule condition "notVolatile" so that
7832         the rules can be aggressive yet still safe.
7833
7834         * src/SDCCpeeph.c
7835         * src/SDCCpeeph.h
7836         * src/mcs51/gen.c
7837         * src/mcs51/peeph.def
7838
7839 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7840
7841         Fixed bug #741761
7842
7843         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7844         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7845         if the left or right operand symbols have the accuse flag set.
7846
7847 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7848
7849         Changed the type of the result of the ! (NOT) operator to char;
7850         previously it returned the same type as the source. This allows
7851         us to eliminate all the genFloatNot functions (all of its target
7852         implementations were very buggy) since !float can use the same
7853         code as !long now.
7854
7855         * src/SDCCicode.c (ast2iCode): ! returns char
7856         * src/mcs51/gen.c (genNot, genNotFloat),
7857         * src/ds390/gen.c (genNot, genNotFloat),
7858         * src/z80/gen.c (genNot, genNotFloat),
7859         * src/pic/gen.c (genNot, genNotFloat),
7860         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7861
7862 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7863
7864         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7865         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7866            during interrupts. Ensure WSAVE is located at a shared bank address.
7867         2. Fixed page selection in some places
7868         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7869            the registers name strings.
7870         4. Fixed "signed / unsigned compare" compiler warnings.
7871         5. The PIC port manages its own allocation of the general purpose
7872            registers, but makes no attempt to reuse them. As a result when
7873            compiling it soon runs out of general purpose registers. Some
7874            additional code was added to the files pcode.c and device.c to walk
7875            through the function call tree and rename the registers so that they
7876            get reused.
7877
7878         * src/pic/device.c
7879         * src/pic/gen.c
7880         * src/pic/glue.c
7881         * src/pic/pcode.c
7882         * src/pic/pcode.h
7883         * src/pic/ralloc.c
7884         * src/pic/ralloc.h
7885         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7886         genPlus() & genMinus() when the result is the same as left or right
7887
7888 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7889
7890         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7891
7892 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7893
7894         Made bitfield a distinct type from bit so that bitfields
7895         convert as per ANSI C and bits retain their traditional
7896         boolean style behaviour. Implemented bitfield support in
7897         the z80 port.
7898
7899         * src/SDCCsymt.h,
7900         * src/SDCCsymt.c,
7901         * src/SDCCast.c,
7902         * src/cdbFile.c,
7903         * src/mcs51/gen.c,
7904         * src/ds390/gen.c: bit v bitfield split
7905         * src/z80/gen.c: New support for bitfields
7906         * support/regression/tests/bitfields.c: reenabled z80,
7907         added more tests
7908
7909 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7910
7911         Rules 246.x, 247.x relate to bitfields, the others speed up
7912         access to xdata mapped I/O devices.
7913
7914         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7915
7916 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7917
7918         Cleaned up genPackBits and genUnpackBits and added two helper
7919         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7920         for literal assignments in genPackBits (thanks to Frieder for
7921         reminding me).
7922
7923         * src/mcs51/gen.c
7924         * src/ds390/gen.c
7925
7926 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7927
7928         Fixed bug #748310 (pointer to function type mishandled when the
7929         function name is omitted). Also fixed a SIGSEGV when a function
7930         attribute (reentrant, etc) is used on a non-function or on a
7931         function but misplaced before the parameter list.
7932
7933         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7934         bug #748310
7935         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7936         * support/Util/SDCCerr.h,
7937         * support/Util/SDCCerr.c: Added func attr misuse error msg
7938
7939 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7940
7941         Fixed bug #787649 by anonymous
7942         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7943         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7944
7945 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7946
7947         Fixed numerous bitfield problems.
7948
7949         * src/SDCC.y: More bitfield related error checking
7950         * src/SDCCsymt.h,
7951         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7952         * support/Util/SDCCerr.h,
7953         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7954         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7955         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7956         * support/regression/tests/bitfields.c: tests added
7957
7958 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7959
7960         Made the constant following the "interrupt" keyword optional. If
7961         omitted, the function will not automatically be given an entry
7962         in the interrupt vector table (similar to #pragma NOIV, but
7963         less syntacticly kludgy). The interrupt number is also now
7964         range checked. Also fixed a bug in the high order bit example
7965         in the manual.
7966
7967         * src/SDCC.y
7968         * src/SDCCmem.c
7969         * src/SDCCglue.c
7970         * src/SDCCsymt.h
7971         * support/Util/SDCCerr.c
7972         * support/Util/SDCCerr.h
7973         * doc/sdccman.lyx
7974
7975 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7976
7977         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7978         * src/SDCCicode.c (operandOperation): rewritten some ops
7979         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7980         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7981         other type
7982         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7983         be re-activated by defining REDUCE_LITERALS)
7984         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7985         unsigned, but are signed by default
7986         * src/SDCCval.c (constVal): rearranged
7987         * src/SDCCval.c (valMod): preliminary fix
7988         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7989         * support/regression/literalop.c: added, work in progress
7990
7991 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7992
7993         Generate warnings for useless declarations like "char data;"
7994         that don't do what new users expect.
7995
7996         * src/SDCC.y
7997         * support/Util/SDCCerr.h
7998         * support/Util/SDCCerr.c
7999
8000 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8001
8002         * src/SDCCval.c (valMult): fix overflow detection of negative int
8003
8004 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8005
8006         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8007
8008         Changes to support big endian targets:
8009
8010         * src/ports.h
8011         * src/SDCCglue.c
8012         * src/avr/main.c
8013         * src/ds390/main.c
8014         * src/izt/i186.c
8015         * src/mcs51/main.c
8016         * src/pic/main.c
8017         * src/pic16/main.c
8018         * src/xa51/main.c
8019         * src/z80/main.c
8020
8021 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8022
8023         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8024         * device/lib/time.c: fixed warning "integer overflow in expression"
8025
8026 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8027
8028         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8029         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8030         constants are unsigned; added recognition of "u" flag for unsigned
8031         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8032         * src/SDCCval.c (valDiv, valMod): fixed signdness
8033         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8034         signedness of modulo, left and right shift
8035         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8036         * support/Util/SDCCerr.h: added warning W_INT_OVL
8037         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8038         * src/SDCCast.c (ast_print): improved output of constants
8039
8040 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8041
8042         Fixed some warnings when building with MSVC:
8043
8044         * as\mcs51\asdata.c
8045         * as\z80\asdata.c
8046         * as\mcs51\asm.h
8047         * as\z80\asm.h
8048         * link\z80\aslink.h
8049         * link\z80\lkdata.c
8050         * link\z80\lkeval.c
8051         * link\z80\lkgb.c
8052         * link\z80\lkihx.c
8053         * link\z80\lks19.c
8054         * link\z80\lksym.c
8055         * support\cpp2\cpplib.c
8056         * src\ds390\gen.c
8057         * src\mcs51\gen.c
8058
8059 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8060
8061         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8062
8063 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8064
8065         * support\librarian\clean.mk: Do not remove Makefile.
8066         * support\librarian\Makefile: added.
8067
8068 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8069
8070         Added librarian to MSVC build:
8071         * all.dsp
8072         * sdcc.dsw
8073         * support\librarian\librarian.dsp
8074
8075         'configure' not needed for librarian, removed:
8076         * support\librarian\configure
8077         * support\librarian\configure.in
8078         * support\librarian\config_in.h
8079         * support\librarian\Makefile.in
8080
8081         Hopefully these ones built the librarian and the rest of sdcc properly:
8082         * Makefile
8083         * Makefile.common.in
8084
8085         Messed up 'configure', so revert to previous version:
8086         * configure
8087         * configure.in
8088
8089 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8090
8091         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8092         there, while the mantissa of a double is "only" 53 bits wide.
8093
8094 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8095
8096         Adding sdcclib to the build.  MSVC project coming soon.
8097         Files added/changed:
8098
8099         * support\librarian\clean.mk
8100         * support\librarian\configure
8101         * support\librarian\configure.in
8102         * support\librarian\config_in.h
8103         * support\librarian\Makefile.bcc
8104         * support\librarian\Makefile.in
8105         * support\librarian\sdcclib.c
8106         * Makefile.bcc
8107         * Makefile
8108         * Makefile.common.in
8109         * configure
8110         * configure.in
8111
8112 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8113
8114         Linker now complaints if linked modules have conflicting options, for
8115         example, one compiled using --model-large and another one compiled with
8116         --model-small.  The following files were modified:
8117
8118         * as\mcs51\asdata.c
8119         * as\mcs51\aslink.h
8120         * as\mcs51\asm.h
8121         * as\mcs51\asmain.c
8122         * as\mcs51\asout.c
8123         * as\mcs51\i51pst.c
8124         * as\mcs51\lkdata.c
8125         * as\mcs51\lklibr.c
8126         * as\mcs51\lkmain.c
8127         * as\z80\asdata.c
8128         * as\z80\asm.h
8129         * as\z80\asmain.c
8130         * as\z80\asout.c
8131         * as\z80\z80pst.c
8132         * link\z80\aslink.h
8133         * link\z80\lkdata.c
8134         * link\z80\lklibr.c
8135         * link\z80\lkmain.c
8136         * src\SDCCglue.c
8137
8138 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8139
8140         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8141         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8142
8143 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8144
8145         * src/z80/mappings.i: fix _mul[us][int,long] entries
8146
8147 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8148
8149         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8150
8151 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8152
8153         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8154         * support/regression/tests/bitopcse.c: added
8155         fixed warning:
8156         * src/avr/gen.c:
8157         * src/pic/gen.c:
8158         * src/pic16/gen.c:
8159         * src/z80/gen.c:
8160         * src/xa51/gen.c:
8161
8162 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8163
8164         added support for new library format to z80, gbz80 linkers:
8165         *link/z80/aslink.h
8166         *link/z80/lklex.c
8167         *link/z80/lklib.c
8168         *link/z80/lklist.c
8169
8170 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8171
8172         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8173         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8174
8175 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8176
8177         added DUMMY_READ_VOLATILE:
8178         * src/SDCC.y:
8179         * src/avr/gen.c:
8180         * src/xa51/gen.c:
8181         * src/z80/gen.c:
8182         * src/pic/gen.c:
8183         * src/pic16/gen.c:
8184         * src/mcs51/gen.c:
8185         * src/ds390/gen.c:
8186         * src/SDCCcse.c (algebraicOpts): many improvements
8187         * src/SDCCcse.h: removed algebraicOpts()
8188         * src/SDCCicode.c (picDummyRead): added
8189
8190 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8191
8192         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8193         "Insufficient space in data memory".
8194
8195 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8196
8197         * src/mcs51/gen.c: fixed bug #771358
8198         * src/z80/gen.c: fixed bug #759087
8199
8200 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8201
8202         * src/pic16/glue.c: minor cleanup by Vangelis
8203
8204 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8205
8206         * device/include/regc515c.h: fixed #758477
8207         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8208         * device/lib/_gptrput.c: saved a few bytes
8209         * my tab spacing is 8, yours too?)
8210         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8211         * device/lib/serial.c: process RX bytes earlier than TX bytes
8212         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8213
8214 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8215
8216         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8217
8218 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8219
8220     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8221
8222 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8223
8224         * device/lib/Makefile.in: bad fix, reverted to 1.43
8225
8226 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8227
8228         * device/lib/Makefile.in: added missing z80 object files
8229
8230 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8231
8232         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8233         pic16 progress by Vangelis:
8234         * src/SDCCglobl.h:
8235         * src/SDCCmain.c:
8236         * src/pic/Makefile:
8237         * src/pic:
8238         * pic/Makefile:
8239         * pic16/device.c:
8240         * pic16/device.h:
8241         * pic16/gen.c:
8242         * pic16/gen.h:
8243         * pic16/genarith.c:
8244         * pic16/glue.c:
8245         * pic16/main.c:
8246         * pic16/pcode.c:
8247         * pic16/pcode.h:
8248         * pic16/pcodepeep.c:
8249         * pic16/peeph.def:
8250
8251 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8252
8253     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8254
8255 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8256
8257     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8258     added gbz80 build to MSVC project.
8259     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8260     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8261     from 8051 stuff and setup so it links using a .lnk file.
8262
8263 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8264
8265     * support/librarian/sdcclib.c: sdcc librarian.
8266     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8267     with sdcclib.
8268
8269 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8270
8271     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8272
8273 2003-07-02  Borut Razem <borut.razem AT siol.net>
8274
8275         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8276         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8277         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8278         src/xa51/main.c, src/z80/main.c:
8279         virtualization of glue() function: each port has it's own glue function,
8280         which is accessed by do_glue function pointer in PORT.general structure
8281
8282 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8283
8284         * DS800C400 fun, improved ROM interface and tinibios.
8285
8286 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8287
8288         * More support for DS80C400. Now includes beginning of interface to ROM.
8289
8290 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8291
8292         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8293
8294 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8295
8296         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8297
8298 2003-06-19  Borut Razem <borut.razem AT siol.net>
8299
8300         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8301
8302 2003-06-19  Borut Razem <borut.razem AT siol.net>
8303
8304         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8305         fixed Z80 port - crt0.o: cannot open.
8306
8307 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8308
8309         * support/Util/MySystem.c (merge_command): revert bad fix
8310
8311 2003-06-18  Borut Razem <borut.razem AT siol.net>
8312
8313         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8314
8315 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8316
8317         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8318         option --use-stdout sends errors to stdout instead of stderr.
8319
8320 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8321
8322         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8323
8324 2003-06-15  Borut Razem <borut.razem AT siol.net>
8325
8326         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8327         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8328         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8329         fixed width array of pointers replaced with sets;
8330         multiple include and lib paths ared transferred to preprocessor and linker
8331         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8332         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8333         fixed width array of pointers
8334         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8335         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8336         fixupPath(), getPathDifference()
8337         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8338         fixed width array of pointers
8339
8340 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8341
8342         * src/pic16/ralloc.c: fix warnings
8343         * src/pic16/pcode.c: fix warning
8344
8345 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8346
8347          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8348         know all the details, but essentially this set of changes enable
8349         the pic16 port to generate movff instructions and generate assembler
8350         directives,
8351         * src/SDCCmain.c:
8352         * src/pic16/gen.c:
8353         * src/pic16/glue.c:
8354         * src/pic16/pcode.c:
8355         * src/pic16/device.c:
8356         * src/pic16/main.c:
8357         * src/pic16/pcode.h:
8358         * src/pic16/pcoderegs.c:
8359         * src/pic16/ralloc.c:
8360         * src/pic16/ralloc.h:
8361
8362 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8363
8364         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8365         added option --vc, so sdcc errors and warnings are compatible with
8366         Microsoft Visual Studio.
8367
8368 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8369
8370         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8371           device/lib/libfloat.lib: added atof function.
8372
8373 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8374
8375         * doc/sdccman.lyx: updated to Lyx 1.3
8376         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8377         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8378         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8379
8380 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8381
8382         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8383
8384 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8385
8386         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8387           additions to the "related tools/documentation" section
8388
8389 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8390
8391         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8392
8393 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8396         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8397
8398 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8399
8400         * doc/sdccman.lyx: fix double dash and other minor things
8401         * doc/Makefile: fix double dash
8402
8403 2003-05-28  Karl Bongers(patches from Martin Helmling)
8404         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8405           condition and ignore commands.
8406
8407 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8408
8409         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8410           is in parts still quite out of date, I did changes as far as I felt makes sense
8411           for a non-native english speaker.
8412           Please feel free to add to the manual or to correct my changes.
8413         * doc/Makefile: undid touching the date of intermediate tex files.
8414
8415 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8416
8417         * doc/sdccman.lyx: Manual has an index now
8418
8419 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8420
8421         Finalize muluint/mulsint and mululong/mulslong merging:
8422         * device/lib/_mulint.c
8423         * device/lib/_mullong.c
8424         * device/lib/gbz80/mul.s
8425         * device/lib/gbz80/stubs.s
8426         * device/lib/z80/mul.s
8427         * device/lib/z80/stubs.s
8428         * src/SDCCsymt.c (initCSupport)
8429
8430 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8431
8432         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8433         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8434           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8435           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8436           instead of /Zm500.
8437
8438 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8439
8440         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8441           the regression tests I'm not brave enough to enable 245.b, 245.c
8442         * doc/sdccman.lyx: added latex preamble for hyperref package.
8443           Using pdflatex this will give you a hyperlinked pdf file with
8444           bookmarks. (prepend '%' before /usepackage if this breaks something)
8445
8446 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8447
8448          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8449
8450 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8451
8452         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8453
8454 2003-05-21    <johan AT balder>
8455
8456         * src/SDCCglue.c (printIval): fixed bug #739934
8457
8458 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8459
8460         Applied patch from bug 737905 (renamed yylineo to mylineno):
8461         * src/altlex.c
8462         * src/SDCCast.c
8463         * src/SDCglobl.h
8464         * src/SDCC.lex
8465         * src/SDCCsymt.c
8466         * src/SDCCval.c
8467         * src/pic16/pcode.c: Cleaned warnings
8468         * src/pic16/pcodeflow.c: Cleaned warnings
8469         * src/pic16/pcoderegs.c: Cleaned warnings
8470
8471 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8472
8473         * src/pic16/pcode.c: Cleaned warnings
8474         * src/pic16/pcodepeep.c: Cleaned warnings
8475         * src/pic16/ralloc.c: Cleaned warnings
8476
8477 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8478
8479         * doc/sdccman.lyx: fixed bug 739745
8480         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8481
8482 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8483
8484         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8485         it can be defined with CFLAGS when running configure
8486         * src/SDCCmain.c: fixed compiling + linking with object files
8487
8488 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8489
8490         * configure.in: configure for pic16 port,
8491             added --disable-pic16-port
8492         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8493         * src/SDCCmain.c: linkOptions is changed to set *,
8494             added if/endif conditional macros to remove options help
8495             messages from optionsTable when a port is not configured, added
8496             support for the PIc16 port in the ports table, when executing
8497             the compiler with no port specified on command line, a default
8498             port is selected with the new macro DEFAULT_PORT which is
8499             defined in port.h, in setDefaultOptions() linkOptions is removed
8500             from initialization assignment, since now it is a set,
8501             parseCmdLine uses setParseWithComma for linkOptions, in
8502             linkEdit() linkOptions are accessed with new function indexSet()
8503             which returns the i'th item of a set variable. See SDCCset.c, in
8504             linkEdit() when calling buildCmdLine(), added linkOptions as
8505             last argument. Now users can pass arguments to gplink via the
8506             -Wl option, main() uses pic16glue() to glue up pic16 programs
8507         * src/SDCCpeeph.c: various changes to support pic16
8508         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8509             return the i'th item of the set
8510         * src/SDCCset.h: added function prototype for indexSet()
8511         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8512         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8513         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8514             added macro DEFAULT_PORT
8515         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8516         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8517             generated
8518         * src/pic16/glue.c: commented out some error producing lines
8519         * src/pic16/main.c: __config directives are commented out to stop
8520             gpasm complaining and test the linkage with gplink, _linkCmd and
8521             _asmCmd changed to be more gplink and gpasm friendly
8522         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8523             produced an error when parsed, peep rule 12 is added to utilize
8524             movff, but it is commented out since the pCode does not support
8525             yet a command with 2 address arguments
8526
8527 2003-05-18    <johan AT balder>
8528
8529         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8530         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8531 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8532
8533         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8534   Added feature to script commands from file.
8535
8536 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8537
8538         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8539         * src/SDCCutil.c: include ctype.h for win32
8540
8541 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8542
8543         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8544
8545 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8546
8547         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8548   Fixed so you can set breakpoints prior to run, run does not stop
8549   on entry now.  Add tbreak.  Other enhancements and fixes for use
8550   with ddd.
8551
8552 2003-05-12  Borut Razem <borut.razem AT siol.net>
8553
8554         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8555
8556 2003-05-11  Borut Razem <borut.razem AT siol.net>
8557
8558         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8559         the path of bin directory, so that PATH is the only env. variable, which has to be set
8560         in case of standard installation.
8561         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8562         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8563         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8564
8565 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8566
8567         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8568         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8569         temp files are in the port dir; clean the gen/test directory when
8570         generating new test.c
8571         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8572         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8573         * support/regression/tests/zeropad.c: added
8574
8575 2003-05-09    <johan AT balder>
8576
8577         * src/SDCCglue.c: fixed bug #597940
8578
8579 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8580
8581         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8582   cache sfr, optimize next,step, fix off by one sourceline,
8583   support ddd list function.
8584         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8585
8586 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8587
8588         * support/regression/HTMLgen.py: added compare_s2f()
8589         * support/regression/Makefile: redo 1.27
8590         * support/regression/generate-cases.py: redo 1.5
8591
8592 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8593
8594         * support/regression/tests/float.c: workaround 33 bit hex constant
8595         * support/regression/tests/simplefloat.c: fix division for host
8596
8597 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8598
8599         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8600         that tame's the PIC's over-aggressive optimizer.
8601
8602 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8603
8604          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8605          support for MSVC.
8606
8607 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8608
8609         Initial support for DS80C400. "Hello world" runs on TINIm400
8610         (with polled I/O).
8611
8612 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8613
8614          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8615          * Some notes on ddd usage added in debugger/README
8616          Martin Helmling adding more features and fixes for ddd GUI debugger.
8617          Code added for nexti, stepi, up, down, and other adjustments.
8618
8619 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8620
8621         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8622         * src/pic/peeph.def Added two rules to optimize carry manipulation
8623         * src/pic/* removed debug printfs
8624
8625 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8626
8627         * debugger/mcs51/cmd.c: added header newalloc.h
8628
8629 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8630
8631         * as/Makefile: new EXEEXT
8632         * as/z80/Makefile: remove trailing slash of BUILDIR
8633         * as/z80/clean.mk: new EXEEXT
8634         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8635         * support/cpp2/Makefile.in: new EXEEXT
8636         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8637
8638 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8639
8640         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8641         EXEEXT was introduced to fix all related problems with targets
8642         "clean", "install" and "uninstall"; a couple of further flaws
8643         especially with "clean" have been fixed too
8644         * as/mcs51/Makefile.in
8645         * as/mcs51/clean.mk
8646         * as/z80/Makefile
8647         * Makefile
8648         * clean.mk
8649         * debugger/mcs51/Makefile.in
8650         * debugger/mcs51/clean.mk
8651         * link/z80/Makefile
8652         * link/z80/Makefile.in
8653         * link/z80/clean.mk
8654         * link/Makefile
8655         * packihx/Makefile.in
8656         * packihx/clean.mk
8657         * sim/ucsim/Makefile
8658         * sim/ucsim/clean.mk
8659         * sim/ucsim/avr.src/Makefile.in
8660         * sim/ucsim/avr.src/clean.mk
8661         * sim/ucsim/s51.src/Makefile.in
8662         * sim/ucsim/s51.src/clean.mk
8663         * sim/ucsim/xa.src/Makefile.in
8664         * sim/ucsim/xa.src/clean.mk
8665         * sim/ucsim/z80.src/Makefile.in
8666         * sim/ucsim/z80.src/clean.mk
8667         * sim/ucsim/main_in.mk
8668         * sim/ucsim/packages_in.mk
8669         * sim/ucsim/gui.src/Makefile.in
8670         * sim/ucsim/gui.src/serio.src/Makefile.in
8671         * sim/ucsim/gui.src/serio.src/clean.mk
8672         * src/Makefile.in
8673         * src/clean.mk
8674         * support/cpp2/Makefile.in
8675         * support/cpp2/clean.mk
8676         * support/makebin/Makefile
8677         * support/makebin/clean.mk
8678         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8679         * doc/sdccman.lyx: --program-suffix no longer needed
8680
8681 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8682
8683          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8684          Martin Helmling added support for ddd GUI debugger.
8685          Code added to display assembly, set variables, and other commands
8686          to interface to ddd.
8687
8688 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8689
8690         * as/Makefile: fix target clean
8691         * as/clean.mk: fix target clean
8692         * as/z80/clean.mk: fix target clean
8693
8694 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8695
8696         * Makefile.common.in: added  AT EXEEXT AT
8697         * configure.in: removed all mingw32 stuff
8698         * configure: rebuilt from configure.in
8699         * doc/sdccman.lyx: updated section "installation"
8700         * support/scripts/sdcc_mingw32: adapted to configure
8701         * support/scripts/sdcc_cygwin_mingw32: added
8702
8703 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8704
8705         * src/pic Added object file support for the PIC port
8706         * src/pic Applied patch from Craig Franklin (this started the object file support)
8707         * src/regression Updated the PIC regression tests for object files
8708
8709 2003-04-20  Borut Razem <borut.razem AT siol.net>
8710
8711         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8712           lklex.c: In function `getfid':
8713           lklex.c:203: warning: array subscript has type `char'
8714         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8715           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8716         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8717           stack handling macros
8718
8719 2003-04-19  Borut Razem <borut.razem AT siol.net>
8720
8721         * "handling space characters in file path" task:
8722         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8723         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8724         * support/Util/MySystem.h: make it self-sufficient
8725         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8726           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8727           handling space characters in file path
8728         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8729           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8730         * support/Util/MySystem.c: handling space characters in executable's path
8731
8732 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8733
8734         * as/z80/Makefile: fix permanent rebuild of z80
8735         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8736         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8737
8738 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8739
8740         * src/SDCCopt.c: add special case optimization to replace modulo by
8741           a power of two with a bitwise AND.
8742
8743 2003-04-18    <johan AT balder>
8744
8745         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8746
8747 2003-04-17    <johan AT balder>
8748
8749         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8750         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8751
8752 2003-04-13  Borut Razem <borut.razem AT siol.net>
8753
8754         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8755         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8756           fixed mingw problem in adl_NORMALIZE_PATH
8757
8758 2003-04-12  Borut Razem <borut.razem AT siol.net>
8759
8760         * fixed "#pragma SAVE/RESTORE can not be nested":
8761         * src/SDCC.lex: reworked pragma handling functions
8762         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8763         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8764
8765 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8766
8767         * src/SDCCutil.c (pathEquivalent): defined but not used
8768         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8769         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8770         * configure: rebuilt from configure.in
8771         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8772         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8773         * device/include/Makefile.in: replace sdcc_datadir
8774         * device/lib/Makefile.in: replace sdcc_datadir
8775         * Makefile.common.in: add LDFLAGS from configure
8776         * packihx/Makefile.in: use LDFLAGS
8777         * src/Makefile.in: use LDFLAGS
8778         * support/cpp2/Makefile.in: add LDFLAGS from configure
8779         * support/makebin/Makefile: use LDFLAGS
8780         * .version: bumped version number to 2.3.5
8781
8782 2003-04-12  Borut Razem <borut.razem AT siol.net>
8783
8784         * completed "different paths" task:
8785         * src/SDCCmacro.c: fixed bug in handling quotes
8786         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8787         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8788
8789 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8790
8791         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8792
8793 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8794
8795         * ds390/gen.c ds390/peeph.def: fix bug 706781
8796
8797 2003-04-11  Borut Razem <borut.razem AT siol.net>
8798
8799         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8800
8801 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8802
8803         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8804         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8805          set - this bit used to not be set...).
8806         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8807           bad code in PIC Port
8808         * src/regression/and2.c added to test bug 609268
8809         * src/regression/Makefile added and2.c to regression test
8810
8811
8812 2003-04-08    <johan AT CP255758-A>
8813
8814         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8815         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8816         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8817
8818 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8819
8820         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8821         fix bug #487815
8822         * support/cpp2/Makefile.in: fix bug #487815
8823         * configure: rebuilt from configure.in
8824         * Makefile.common.in: docdir changed, new path suffixes
8825         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8826         * sdcc_vc_in.h: reflect changes from sdccconf.h
8827         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8828         * src/SDCCutil.h: remove BINDIR hack
8829         * doc/sdccman.lyx: update new path hierarchy
8830
8831 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8832
8833         * src/SDCCpeeph.c: added okToRemoveSLOC test
8834
8835 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8836
8837         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8838
8839 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8840
8841         * src/SDCCpeeph.c: added labelIsReturnOnly test
8842         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8843
8844 2003-04-05    <johan AT balder>
8845
8846         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8847         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8848         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8849         * src/SDCCast.c: fixed a warning
8850         * src/SDCCast.h: fixed a warning
8851         * src/SDCCicode.c (operandFromAst): fixed a warning
8852
8853 2003-04-04    <johan AT balder>
8854
8855         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8856         * src/SDCCast.c (decorateType): fixed bug #715076
8857         * src/SDCC.y: fixed bug #702907
8858
8859 2003-04-03    <johan AT balder>
8860
8861         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8862         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8863         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8864         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8865         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8866
8867 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8868
8869         * _decdptr.c: fix return values
8870         * _gptrget.c: fix return values
8871         * _gptrgetc.c: fix return values
8872         * _gptrput.c: fix return values
8873         * _mulint.c: fix return values
8874         * as/z80/Makefile: fix 'make -j' problem
8875
8876 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8877
8878         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8879         * configure.in: big cleanup, updated to autoconf 2.5x
8880         * configure: rebuilt from configure.in
8881         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8882         * sdcc_vc_in.h: reflect changes from sdccconf.h
8883         * doc/Makefile: fixed a flaw in "make install"
8884
8885 2003-04-02    <johan AT balder>
8886
8887         * src/ds390/gen.c (genCmp): no comments
8888         * src/mcs51/gen.c (genCmp): no comments
8889         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8890         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8891
8892 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8893
8894         * support/regression/generate-cases.py: place generated file in given sub directory
8895         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8896         * support/regression/Makefile: improvements for 'make -j';
8897         side effect: it's simpler and faster now
8898
8899 2003-03-31  Borut Razem <borut.razem AT siol.net>
8900
8901         * src/z80/main.c: link-{port} and as-{port} defined without path
8902         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8903
8904 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8905
8906         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8907
8908 2003-03-30  Borut Razem <borut.razem AT siol.net>
8909
8910         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8911           changed type of list parameter to set
8912         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8913         * src/port.h: changed type of do_assemble() parameter to set
8914         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8915           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8916           definition of "cppoutfilename" macro with NULL value in preProcess()
8917         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8918         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8919         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8920           replaced with set *binPathSet
8921         * shash_add() deallocates the item, if allready exsists, before adding the new one
8922         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8923
8924 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8925
8926         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8927           a nested for loop bug in the PIC port
8928         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8929           for loops
8930
8931 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8932
8933         * support/Util/dbuf.h: remove C++ stuff to make it portable
8934
8935 2003-03-28  Borut Razem <borut.razem AT siol.net>
8936
8937         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8938           literal strings in stringLiteral()
8939         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8940         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8941           to the project
8942
8943 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8944
8945         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8946
8947 2003-03-26    <johan AT balder>
8948
8949         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8950         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8951         * src/SDCCast.c (decorateType): fixed " -v < 3"
8952
8953 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8954
8955         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8956         Added Lenny Story's debug infrastructure changes:
8957         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8958         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8959         * src/cdbFile.c: added
8960         * src/SDCCdebug.c: added
8961         * src/SDCCdebug.h: added
8962         * src/SDCCast.c (createFunction)
8963         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8964         * src/SDCCmain.c (parseCmdLine, main)
8965         * src/SDCCmem.c (redoStackOffsets)
8966         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8967         * src/SDCCsymt.h
8968         * src/common.h
8969         * src/avr/gen.c (genAVRCode)
8970         * src/ds390/gen.c (gen390Code)
8971         * src/mcs51/gen.c (gen51Code)
8972         * src/pic/gen.c (genpic14Code)
8973         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8974         * src/xa51/gen.c (genXA51Code)
8975         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8976
8977 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8978
8979         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8980         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8981
8982 2003-03-22    <johan AT balder>
8983
8984         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8985
8986 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8987
8988         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8989         * doc/cdbfileformat.lyx: added, written by Lenny Story
8990         * doc/Makefile: added cdbfileformat.lyx
8991         * doc/clean.mk: added cdbfileformat.lyx
8992
8993 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8994
8995         * src/mcs51/peeph.def: fix bug #705773
8996
8997 2003-03-20    <johan AT balder>
8998
8999         An sfr/sbit can have an "at #" AND an initializer
9000         * src/SDCCsymt.c (checkSClass):
9001         * src/SDCCmem.c (allocGlobal):
9002         * src/SDCCmem.c (allocLocal):
9003         * src/SDCCast.c (createBlock):
9004
9005 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9006
9007         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9008
9009 2003-03-16    <johan AT balder>
9010
9011         Undid the hackup of const and volatile, the problem is much bigger
9012         * src/SDCC.y:1.65
9013         * src/SDCCast.c:1.171
9014         * src/SDCCglue.c:1.138
9015         * src/SDCCicode.c:1.146
9016         * src/SDCCsymt.c:1.150
9017         * src/SDCCval.c:1.65
9018
9019 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9020
9021         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9022         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9023
9024 2003-03-13    <johan AT balder>
9025
9026         Hackup const and volatile modifiers in type chains a bit:
9027         * src/SDCC.y:1.63
9028         * src/SDCCast.c:1.169
9029         * src/SDCCglue.c:1.136
9030         * src/SDCCicode.c:1.143
9031         * src/SDCCsymt.c1.146
9032         * src/SDCCsymt.h1.59
9033         * src/SDCCval.c:1.63
9034
9035 2003-03-12    <johan AT balder>
9036
9037         * src/SDCCBBlock.h: more LRH debugging junk
9038         * src/SDCCcflow.h: more LRH debugging junk
9039         * src/SDCCloop.c: more LRH debugging junk
9040         * src/SDCC.y (struct_declaration): fixed bug #697590
9041         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9042         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9043         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9044
9045 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9046         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9047         test function names must now match exactly).
9048         * src/SDCCcse.c: added special case in findCheaperOp to allow
9049         extending a short integer. Makes less awful code for bug 700121 test case.
9050
9051 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9052
9053         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9054         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9055
9056 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9057
9058         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9059         actually called (operandsNotEqual() was called for all
9060         operandsNotEqualX tests).
9061
9062 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9063
9064         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9065         with shorter literals. Fixes bug 700121.
9066
9067 2003-03-11    <johan AT balder>
9068
9069         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9070
9071 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9072
9073         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9074         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9075
9076 2003-03-10  Borut Razem <borut.razem AT siol.net>
9077
9078         * src/SDCCmain.c: pipe preprocessor's output
9079         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9080         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9081         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9082         which closes all pipes in pipeSet set
9083         * src/SDCCset.c: free deleted item in function deleteSetItem()
9084         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9085         moved from z80 to src subproject
9086         * .version: increased version number to 2.3.4
9087
9088 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9089
9090         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9091         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9092         * support/regression/ports/xa51/spec.mk: fix typo
9093
9094 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9095
9096         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9097
9098 2003-03-09  Borut Razem <borut.razem AT siol.net>
9099
9100         * src/SDCCmain.c: pipe preprocessor's output
9101         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9102         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9103         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9104         which closes all pipes in pipeSet set
9105         * src/SDCCset.c: free deleted item in function deleteSetItem()
9106         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9107         moved from z80 to src subproject
9108
9109 2003-03-09  Borut Razem <borut.razem AT siol.net>
9110
9111         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9112         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9113         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9114         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9115         * src/SDCCglobl.h: unification of WIN32 native definitions
9116
9117 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9118
9119         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9120
9121 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9122
9123         * src/configure.in:   check for endianess (even while cross-compiling)
9124         * src/configure:      check for endianess (even while cross-compiling)
9125         * src/configure_in.h: check for endianess (even while cross-compiling)
9126         * src/avr/gen.c:        remove old endianess stuff
9127         * src/mcs51/gen.c:      remove old endianess stuff
9128         * src/ds390/gen.c:      remove old endianess stuff
9129         * src/pic/gen.c:        remove old endianess stuff
9130         * src/pic/genarith.c:   remove old endianess stuff
9131         * src/pic/glue.c:       fix endianess check
9132         * src/pic16/gen.c:      remove old endianess stuff
9133         * src/pic16/genarith.c: remove old endianess stuff
9134         * src/pic16/glue.c:     fix endianess check
9135         * src/xa51/gen.c:       remove old endianess stuff
9136         * src/z80/gen.c:        fix endianess check
9137         * src/SDCCglue.c:       fix endianess check
9138         * src/ds390/peeph.def: fix bug 700036
9139
9140 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9141
9142         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9143         * src/configure: find appropriate data-types on host for SDCC's int and long
9144         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9145         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9146         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9147
9148 2003-03-07    <johan AT balder>
9149
9150         Just a big NOOP:
9151                 some minor cleanups before the big shot
9152                 OP_DEFS and OP_USES now use Kevin's protection
9153                 new option --nolabelopt
9154
9155         * src/SDCCBBlock.c:
9156         * src/SDCCast.c,:
9157         * src/SDCCcflow.c:
9158         * src/SDCCcse.c:
9159         * src/SDCCicode.c:
9160         * src/SDCCicode.h:
9161         * src/SDCClabel.c:
9162         * src/SDCCloop.c:
9163         * src/SDCCmain.c:
9164         * src/ds390/ralloc.c:
9165         * src/mcs51/ralloc.c:
9166         * src/pic/ralloc.c:
9167         * src/xa51/ralloc.c:
9168         * src/z80/ralloc.c:
9169
9170 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9171
9172         * src/pic/pcode.c (get_op): fix 64 bit warnings
9173         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9174         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9175         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9176         * support/regression/tests/malloc.c: fix 64 bit warnings
9177
9178 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9179
9180         * src/mcs51/gen.c (genMinus): fixed bug 696436
9181
9182 2003-03-02  Borut Razem <borut.razem AT siol.net>
9183
9184         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9185
9186 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9187
9188         * configure.in: test for mkstemp
9189         * sdccconf_in.h: add HAVE_MKSTEMP
9190
9191 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9192
9193         * device/include/ctype.h: removed warning while using --stack-auto
9194         * device/include/malloc.h: removed warning while using --stack-auto
9195         * device/include/string.h: removed warning while using --stack-auto
9196
9197 2003-02-23  Borut Razem <borut.razem AT siol.net>
9198
9199         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9200         because NDEBUG is defined (see man assert)
9201         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9202
9203 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9204
9205         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9206         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9207
9208 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9209
9210         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9211         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9212
9213 2003-02-18    <johan AT balder>
9214
9215         * as/mcs51/asmain.c (asmbl): module can start with a digit
9216         * as/z80/asmain.c (asmbl): module can start with a digit
9217
9218 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9219
9220         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9221         * src/asm.c: fix pipe() for Mingw32
9222
9223 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9224
9225         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9226         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9227         make -V work again; --c1mode reads now from stdin
9228         * doc/sdccman.lyx: added --c1mode
9229         * support/Util/SDCCerr.c: new messages for c1 mode
9230         * support/Util/SDCCerr.h: new messages for c1 mode
9231         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9232
9233 2003-02-15    <johan AT balder>
9234
9235         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9236
9237 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9238
9239         * doc/sdccman.lyx: Environment variables, -o and other minor things
9240
9241 2003-02-14    <johan AT balder>
9242
9243         * src/xa51/main.c: before anyone really tries to use it :)
9244
9245         * Install doc's in share/sdcc/doc
9246         * removed some obsolete files
9247         * Do a proper make distclean and uninstall
9248         M Makefile.common.in
9249         R sdccbuild.sh
9250         M as/Makefile
9251         M device/include/Makefile.in
9252         M device/lib/Makefile.in
9253         M doc/sdccman.lyx
9254         M link/Makefile
9255         M sim/ucsim/doc/Makefile.in
9256         M src/clean.mk
9257         R src/avr/peeph.rul
9258         R src/xa51/peeph.rul
9259         M support/cpp2/Makefile.in
9260         M support/makebin/Makefile
9261
9262
9263 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9264
9265         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9266
9267 2003-02-10  Borut Razem <borut.razem AT siol.net>
9268
9269         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9270         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9271         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9272         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9273         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9274         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9275         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9276         src/z80/Makefile.bcc: Borland Makefile cleanup
9277         * as/z80/Makefile.bcc: Added Borland Makefile
9278         * support/cpp2/borland.h: Removed
9279
9280 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9281
9282         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9283         * src/SDCC.lex: new pragma NOIV
9284         * src/SDCCglobl.h: new pragma NOIV
9285         * src/SDCCmem.c: new pragma NOIV
9286
9287 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9288
9289         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9290
9291 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9292
9293         * src/SDCCmain.c: signal handling is switched off by --debug
9294         * doc/Makefile: small fix for install; use clean.mk again
9295         * doc/clean.mk: clean *.pdf and *.html too
9296
9297 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9298
9299         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9300         * device/lib/printfl.c: fix a ds390 bug by making it portable
9301         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9302         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9303         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9304         * debugger/mcs51/cmd.c: converted multi-line string literals
9305         * sim/ucsim/globals.cc: converted multi-line string literals
9306         * src/SDCCmain.c: introduced signal handler to remove temp files
9307         * doc/Makefile: small tweaks, implement clean
9308         * doc: removed generated files
9309
9310 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9311
9312         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9313         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9314         Address Record is not correctly generated for DS390."
9315
9316 2003-02-02  Borut Razem <borut.razem AT siol.net>
9317
9318         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9319         * as/mcs51/asm.h: fixed compilation with Borland C
9320         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9321         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9322         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9323         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9324         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9325         src/z80/Makefile.bcc: delete $(LIB) only if exist
9326         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9327
9328 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9329
9330         * device/include/malloc.h: introduced NULL
9331         * device/include/string.h: introduced NULL
9332         * device/include/stdlib.h: introduced NULL
9333         * device/lib/_memcpy.c: removed NULL
9334         * device/lib/_strcat.c: removed NULL
9335         * device/lib/_strchr.c: removed NULL
9336         * device/lib/_strcmp.c: removed NULL
9337         * device/lib/_strcpy.c: removed NULL
9338         * device/lib/_strcspn.c: removed NULL
9339         * device/lib/_strlen.c: removed NULL
9340         * device/lib/_strncat.c: removed NULL
9341         * device/lib/_strncmp.c: removed NULL
9342         * device/lib/_strncpy.c: removed NULL
9343         * device/lib/_strpbrk.c: removed NULL
9344         * device/lib/_strrchr.c: removed NULL
9345         * device/lib/_strspn.c: removed NULL
9346         * device/lib/_strstr.c: removed NULL
9347         * device/lib/_strtok.c: removed NULL
9348         * device/lib/malloc.c: removed NULL, include own header
9349
9350 2003-02-02    <johan AT balder>
9351
9352         * 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
9353         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9354         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9355         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9356         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9357         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9358
9359 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9360
9361         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9362         area 'DATA'"
9363
9364 2003-02-01    <johan AT balder>
9365
9366         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9367
9368 2003-01-31    <johan AT CP255758-A>
9369
9370         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9371
9372 2003-01-30    <johan AT balder>
9373
9374         * src/SDCCBBlock.c: automatic bug detection
9375         * src/SDCCicode.c: automatic bug detection
9376
9377 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9378
9379         * src/SDCCglobl.h:   now --xram-size 0 works
9380         * src/SDCCmain.c:    now --xram-size 0 works
9381
9382 2003-01-29    <johan AT balder>
9383
9384         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9385
9386 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9387
9388         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9389         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9390         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9391         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9392         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9393         * src/SDCCmain.c:    Added options --xram-size and --code-size
9394
9395 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9396
9397         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9398         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9399
9400 2003-01-27    <johan AT balder>
9401
9402         * src/SDCC.y: fixed bug #613764
9403
9404 2003-01-26    <johan AT balder>
9405
9406         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9407         * src/SDCCsymt.h: fixed bug #673374
9408         * src/SDCCglue.c: fixed bug #661910
9409         * src/SDCCast.c: fixed bug #458099 and 673374
9410
9411 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9412
9413         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9414         * as/mcs51/strcmpi.h: added
9415         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9416         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9417         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9418         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9419         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9420         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9421         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9422         * as/mcs51/Makefile.aslink: new module strcmpi
9423         * as/mcs51/Makefile.asx8051: new module strcmpi
9424         * as/mcs51/Makefil.bcc: new module strcmpi
9425         * as/mcs51/Makefile.in: new module strcmpi
9426         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9427
9428 2003-01-26    <johan AT balder>
9429
9430         * src/SDCCglue.c: reverted back to 1.124
9431         * src/SDCCast.c: reverted back to 1.156
9432         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9433
9434 2003-01-25    <johan AT balder>
9435
9436         * src/SDCCglue.c: A better fix for bug #661910
9437         * src/SDCCast.c: A better fix for bug #661910
9438         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9439
9440 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9441
9442         * src/Makefile.in: remove spawn.o
9443         * src/SDCCmain.c: remove spawn.h
9444         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9445         * src/spawn.c: removed
9446         * src/spawn.h: removed
9447         * support/regression/ports/ds390/spec.mk: link with -r
9448
9449 2003-01-24    <johan AT CP255758-A>
9450
9451         * src/ds390/gen.c (aopOp): fixed bug #667458
9452         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9453         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9454         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9455
9456 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9457
9458         * src/mcs51/peeph.def: better assembler identation by Frieder
9459         * src/mcs51/gen.c: better assembler identation by Frieder
9460
9461 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9462
9463         * as/z80/string.h: removed for gcc 3.2
9464         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9465         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9466
9467 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9468
9469         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9470         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9471         * support/regression/Makefile: separate temp files for ports
9472         * support/regression/generate-cases.py: separate temp files for ports
9473         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9474         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9475
9476 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9477
9478         * moved tinitalk to device/examples/ds390
9479
9480 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9481
9482         * as/mcs51/lkmem.c: rflag is for DS390
9483         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9484         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9485                          (linkEdit): move mem- and map-files the same way as ihx-files
9486         * src/z80/main.c (_setDefaultOptions): removed --generic
9487         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9488         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9489         * src/pic/glue.c (picglue): --c1mode works again
9490         * src/pic16/glue.c (pic16glue): --c1mode works again
9491         * src/asm.c (printCLine): fix #660034
9492
9493 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9494
9495         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9496         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9497         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9498         * as/mcs51/lkmem (summary): better fix for sp problem
9499         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9500         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9501         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9502                                               remove --stack-after-data
9503
9504 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9505
9506         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9507         * src/SDCCutil.c (join): ugly bug: missing '\0'
9508         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9509
9510 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9511
9512         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9513         * src/port.h: typo
9514         * src/pic/main.c (_asmCmd): gpasm supports -o
9515         * src/z80/main.c: more general macros
9516         * device/lib/Makefile.in: remove intermediate files
9517
9518 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9519
9520         * .version: Bumped version number to 2.3.3
9521         * src/SDCCBBlock.c: new option -o
9522         * src/SDCCglobl.h: new option -o
9523         * src/SDCCglue.c: new option -o
9524         * src/SDCCmain.c: new option -o
9525         * src/asm.c: new option -o
9526         * src/ds390/main.c: new option -o
9527         * src/pic/glue.c: new option -o
9528         * src/pic/pcode.c: new option -o
9529         * src/pic/ralloc.c: new option -o
9530         * src/pic16/glue.c: new option -o
9531         * src/pic16/pcode.c: new option -o
9532         * src/pic16/ralloc.c: new option -o
9533         * src/z80/main.c: new option -o
9534         * device/lib/Makefile.in: use -o
9535         * support/regression/ports/ds390/spec.mk: use -o
9536         * support/regression/ports/gbz80/spec.mk: use -o
9537         * support/regression/ports/mcs51/spec.mk: use -o
9538         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9539         * support/regression/ports/z80/spec.mk: use -o
9540         * support/regression/ports/ucz80/spec.mk: use -o
9541         * support/regression/ports/xa51/spec.mk: use -o
9542         * support/regression/fwk/lib/timeout.c: fix usage string
9543
9544 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9545         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9546
9547 2003-01-07    <johan AT balder>
9548
9549         * src/SDCCast.c (decorateType): fixed bug #600035
9550
9551 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9552         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9553         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9554         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9555         * src/pic/pcode.c: outcommented unused variable to remove warnings
9556         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9557
9558 2003-01-06    <karl AT turbobit.com>
9559         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9560    regression tests.
9561
9562 2003-01-06    <johan AT balder>
9563
9564         * src/SDCCicode.c: fixed array add
9565
9566 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9567         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9568         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9569
9570 2003-01-04    <johan AT balder>
9571
9572         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9573
9574 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9575         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9576
9577 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9578         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9579         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9580
9581 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9582         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9583
9584 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9585         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9586
9587 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9588         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9589
9590 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9591
9592     * in \sdcc\as\mcs51\ changed these files in order to create an
9593     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9594     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9595     following files to include the previous two files: aslink.dsp,
9596     Makefile.aslink, Makefile.bcc, and Makefile.in.
9597
9598     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9599     .adb instead of .cdb
9600
9601 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9602
9603         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9604         value from option --iram-size.
9605
9606 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9607
9608         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9609         dram[] array.
9610
9611 2002-09-18    <wiml AT hhhh.org>
9612
9613         * SDCClrange.h: exposed setFromRange() and setToRange()
9614         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9615           packRegsForAccUse() (bug 542397)
9616         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9617           multiple times and emitting the fetch operations more than once
9618           added aopGetUsesAcc() function to allow binary operators to
9619           fetch their operands in the correct order; made genMinus() emit
9620           compact code for X = LITERAL - Y
9621
9622 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9623         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9624         sprintf() in line 1267.
9625
9626 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9627         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9628         like ports.
9629
9630 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9631         Changes to aslink (All the changes are marked with 'JCF'):
9632
9633         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9634         summary().
9635
9636         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9637         area BSEG.  Also moves, if possible, the DATA area down into the internal
9638         ram so more space is available.
9639
9640         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9641         sflag.
9642
9643         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9644         not bytes.  Function summary() which creates a memory usage summary
9645         file with extension .mem.  Reports of overlaping stack and small stack
9646         size.  If the space for the stack is less than 16 bytes aslink trows a
9647         warning.
9648
9649         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9650         the 8051.  Option 'y' for memory summary output file.
9651
9652         Changes to sdcc (All the changes are marked with 'JCF'):
9653
9654         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9655
9656         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9657         overlaying area for it (uses RegBankUsed[4]).
9658
9659         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9660         bank zero as used by default.  By default aslink locates the stack
9661         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9662         the creation of the .mem file.  Delegates the allocation of data area
9663         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9664         the begining of the stack area to aslink.
9665
9666         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9667         glue() in SDCCglue.c creates an area for it.
9668
9669 2002-09-03  Borut Razem <borut.razem AT siol.net>
9670         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9671         sdcc/src/pic/glue.c:
9672         introduced atexit() handler for teporay files removal in case of
9673         errors, assertions, ...
9674
9675 2002-08-29  Borut Razem <borut.razem AT siol.net>
9676         * sdcc/support/cpp2/auto-host_vc_in.h:
9677         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9678         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9679         Maybe there is a similar problem with BORLANDC? It should be checked!
9680
9681         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9682         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9683         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9684         was not executed, and the compiler (cl) launched a warning:
9685         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9686
9687 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9688         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9689
9690 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9691         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9692
9693         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9694           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9695           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9696           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9697           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9698           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9699           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9700         - added Release configuration in VS projects
9701         - review of compiler an linker options
9702         - VC .exe files are generated in bin_vc directory, not to interfere
9703           with binaries generated from other projects (cygwin, mingw, bcc ...)
9704
9705         * sdcc/src/yacc.dsp: added
9706
9707         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9708         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9709         and insert the version number definitions from .version
9710
9711         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9712
9713         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9714         added - genarate auto-host.h using auto-host_vc_in.h as template
9715
9716         * sdcc/sdcc_vc.h,
9717         removed from CVS, generated automatically
9718
9719 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9720         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9721
9722 2002-08-11  Borut Razem <borut.razem AT siol.net>
9723         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9724
9725 2002-08-10  Borut Razem <borut.razem AT siol.net>
9726         * src/SDCCmain.c (main):
9727         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9728         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9729         The consequence was that some temporary files were not removed.
9730
9731         * src/SDCCglue.c:
9732         unification of code in functions tempfilename() and tempfile():
9733         function tempnam() is defined in Visual Studio 6.0 and .NET
9734
9735         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9736
9737         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9738           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9739         - removed compiler command line option /WX: Treats all warnings as errors
9740         - update a list of source files, included into the project
9741
9742         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9743           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9744         changed project type to Generic Project so that can be correcly converted to VS.NET project
9745
9746         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9747
9748         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9749
9750         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9751
9752         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9753         added return 0 statements after assert() to make compiler happy
9754
9755         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9756         added newline in the def file to keep MSC compiler satisfied
9757
9758         * sdcc/src/z80/gen.c:
9759         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9760           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9761         - solved MSC error in function aopDump()
9762
9763         * sdcc_vc.h: define PREFIX as "\\sdcc"
9764
9765 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9766         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9767
9768 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9769         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9770         - Rewrote the register banking algorithm.
9771         - Added pCode live-range analysis to registers (for now, only non-used and
9772         singly-used registers optimized away)
9773
9774         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9775
9776         * 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.
9777
9778 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9779         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9780
9781 2002-04-22  Michael Hope  <michaelh AT vroom>
9782
9783         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9784
9785         * configure.in (DD_COPT): Added include support required for gbdk.
9786
9787         * .version: Bumped version number just to increase it.
9788
9789         * src/SDCCmain.c: Added -nostdinc to the default options.
9790
9791 2002-04-15  Michael Hope  <michaelh AT vroom>
9792
9793         * device/lib/z80/printf.c (sprintf): Added.
9794
9795         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9796
9797         * src/z80/peeph.def: Added transpose redundent load rule.
9798
9799         * src/z80/main.c: Added force callee saves for jaune.
9800
9801         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9802
9803         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9804
9805 2002-03-28  Johan Knol  <johan AT balder>
9806
9807         * src/SDCCval.c: fixed bug #532436
9808
9809 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9810         * /src/port.h:
9811         Added "char *Processor" field to the port structure.
9812
9813         * /src/SDCCmain.c:
9814         Added -p option. Allows port dependent processor to be specified.
9815
9816         * all ports:
9817         Initialized the new field char *Processor field to NULL in all ports
9818
9819         * /src/pic/*:
9820         Compiler generated registers for interrupt context saving
9821         were not getting allocated.
9822
9823 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9824
9825         * /src/SDCCast.c:
9826         Fixed left shift. Will promote the left side of a left shift
9827         if a) left shifting more than size of operand or b) when assigned
9828         to something size > size of left side
9829
9830 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9831         * src/pic/*
9832         tons of changes. Register allocation has been
9833         rewritten. Added customization for the various PICs. Flow
9834         analysis is restructured. ...
9835
9836         * src/pic/device.h:
9837         Added
9838
9839         * src/pic/device.c:
9840         Added. device.c is a PIC port hack to accomodate variations
9841         in PIC devices.
9842
9843 2002-03-13  Michael Hope  <michaelh AT vroom>
9844
9845         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9846
9847 2002-03-04  johanknol  <johanknol AT manik>
9848
9849         * /src/SDCCval.c: fixed
9850
9851         const unsigned char arr[][2] = { { 0, 1 } };
9852         t18.c:1: error: Initializer element is not constant
9853
9854 2002-03-04  bela  <bela AT manik>
9855
9856         * /device/include/mcs51reg.h:
9857         ds89c420 register definition update
9858
9859 2002-03-03    <johan AT FRIJA>
9860
9861         * support/Util/SDCCerr.c: did something, but don't no why anymore
9862
9863         * support/regression/tests/bug-524691.c: made it a little less shy
9864
9865         * src/SDCCast.c (decorateType): fixed bug #524697
9866
9867         * src/SDCCast.c: made some lineno improvements
9868
9869         * src/SDCCval.c (getNelements): changed warning to error
9870
9871         * src/SDCCglue.c (printIvalArray): changed warning to error
9872
9873         * src/SDCCicode.c: fixed a warning for mingw
9874
9875         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9876
9877         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9878
9879 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9880
9881         * src/ds390/peeph.def:
9882         Added some more peephole rules
9883
9884         * src/ds390/gen.c: Various fixes & enhancements
9885
9886         * src/SDCClrange.c, src/SDCClrange.h:
9887         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9888
9889         * src/ds390/ralloc.c:
9890         various fixes & enhancements (ds390) specific
9891
9892         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9893         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9894         from rallocs.
9895
9896         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9897
9898 2002-03-02    <johan AT FRIJA>
9899
9900         * src/SDCCast.c (decorateType): fixed bug #524708
9901
9902         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9903
9904         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9905
9906 2002-03-01  Michael Hope  <michaelh AT vroom>
9907
9908         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9909
9910         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9911
9912 2002-03-01    <johan AT FRIJA>
9913
9914         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9915
9916         * src/SDCCast.c (decorateType): fixed bug #524209
9917
9918         * src/SDCCval.c (valNot): fixed bug #524195
9919
9920 2002-02-26    <johan AT balder>
9921
9922         * src/xa51/gen.c: fixed a warning
9923
9924         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9925
9926         * src/SDCCast.c (decorateType): fixed bug #522534
9927
9928 2002-02-23    <johan AT balder>
9929
9930         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9931
9932 2002-02-22    <johan AT balder>
9933
9934         * src/SDCCast.c: fixed bug #514865
9935
9936         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9937
9938 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9939
9940         * sdcc/src/SDCCloop.c:
9941         Previous fix was not good. basic blocks that have "break" or "return" are
9942         not really partof a loop , but live ranges used in these blocks should
9943         be live thru the entire loop, so set partOfLoop but don't add them to
9944         loop region
9945
9946 2002-02-21    <johan AT FRIJA>
9947
9948         * src/SDCCcse.c: fixed bug #514308
9949
9950 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9951
9952         * src/SDCCloop.c:
9953         Fixed BUG #519583. If a conditional block ended in a return/break
9954         statement inside a loop, it was not being considered part of the loop.
9955
9956         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9957
9958 2002-02-10  Karl Bongers <karl AT turbobit.com>
9959
9960         * debugger/*:
9961         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9962         with lots of comments and notes.
9963
9964         * device/examples/test2.c:
9965         Fix bug, "red" variable not being initialized(compiler complained).
9966
9967         * device/examples/Makefile, examples/test3.c:
9968         Add Makefile in device/examples folder, compiles test3.c
9969         for use as a multiple module SDCDB test case.
9970
9971         * sim/ucsim/cmd.src/cmdset.cc:
9972         Took out debug printfs in ucsim "next" command.
9973
9974         * sim/ucsim/xa.src:
9975         Karl and Johan start ucsim XA support.  Most dissassembly working,
9976         about 75% emulation done(plenty of work remaining).
9977
9978         * sim/ucsim/z80.src:
9979         Add Z80 support to ucsim, add test-ucz80 regression test,
9980         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9981         Notice z80 compiler fails on examples/test3.c/crc code.
9982
9983 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9984
9985         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9986         Added support for --parms-in-bank1
9987
9988         * src/ds390/peeph.def:
9989         added a few more peephole optimzations
9990
9991         * src/ds390/main.c:
9992         1) added __builtin_inp & __builtin_outp used to read in data of given length
9993            from a memory mapped port
9994         2) added __builtin_memcmp
9995         3) added __builtin_swapw swap bytes of a short
9996
9997         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9998         1) handle multiple send & receives from register bank1
9999         2) ralloc can now allocate DPTR1 to some liveRanges
10000
10001         * src/SDCCsymt.c, src/SDCCsymt.h:
10002         changes to handle multiple sends & receives
10003
10004         * src/SDCCptropt.h:
10005         added some pointer arithmetic optimization
10006
10007         * src/SDCCptropt.c:
10008         added some pointer arithmetic optimizations but not stable yet so not
10009         called from anywhere (will get this working shortly)
10010
10011         * src/SDCCopt.c: fixed for multiple sends & receives
10012
10013         * src/SDCCmain.c:
10014         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10015         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10016            set preprocessor defines (depending on options)
10017
10018         * src/SDCCicode.c, src/SDCCicode.h:
10019         changes made to handle multiple sends & receives
10020
10021         * src/SDCCglobl.h:
10022         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10023
10024         * src/SDCCcse.c, src/SDCCcse.h:
10025         added function findbackward def (to be used in upcoming optimization)
10026
10027         * src/SDCCcflow.c, src/SDCCcflow.h:
10028         added function returnAtEnd - to determine if a basic block terminates with
10029         a RETURN iCode
10030
10031         * src/SDCCast.c, src/SDCCast.h:
10032         added option parms-in-bank1
10033
10034         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10035         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10036         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10037         adjusted for --parms-in-bank1 option
10038
10039         * device/include/string.h:
10040         donot redefine "reentrant" keyword
10041
10042         * device/include/ds80c390.h: Added some more SFRs
10043
10044 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10045
10046         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10047
10048 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10049
10050         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10051
10052 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10053
10054         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10055
10056 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10057
10058         * Added --xram-movc option
10059
10060 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10061
10062         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10063
10064 2002-01-11  Johan Knol
10065
10066         * Added math lib of Jesus Calvino-Fraga
10067
10068 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10069
10070         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10071         * support/regression/Makefile: new target test-mcs51-stack-auto
10072         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10073
10074 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10075
10076         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10077
10078 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10079
10080         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10081
10082 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10083
10084         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10085
10086         * src/SDCCglue.h: add definition for printIvalChar()
10087
10088 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10089
10090         * src/SDCCast.c: fix #498138 by Johan
10091
10092         * src/SDCCglue.c: fix #498138 by Johan
10093
10094 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10095
10096         * support/regression/Makefile: fix clean
10097
10098         * support/regression/ports/ds390/support.c: fix transmission of last character
10099
10100 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10101
10102         * /sdcc/src/ds390/gen.c:
10103         a) improved computing address of stack variable
10104         b) took out some #if 0 code
10105         c) improved parmBytes adjustment
10106         d) improved genPlusIncr & genMinusIncr
10107         e) genCmp could generate bad code (when left assigned to DPTR)
10108         f) Fixed bug in hasInc
10109
10110         * /sdcc/src/ds390/ralloc.c:
10111         a) packRegsForSupport could mess up live information (Fixed)
10112         b) packRegsDPTRuse could be incorrect for left & right shift
10113
10114         * /sdcc/src/mcs51/ralloc.c:
10115         packRegsForSupport could mess up the live information (Fixed)
10116
10117         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10118
10119         * /sdcc/src/SDCCast.c:
10120         can reverse a loop even if function call is present as long
10121         as the loop control variable is local & is not passed as parameter
10122
10123 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10124
10125         * /sdcc/ChangeLog: *** empty log message ***
10126
10127         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10128         More builtin function additions for TININative
10129
10130         * /sdcc/src/ds390/ralloc.c:
10131         Had broken the regression testsuite
10132
10133         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10134
10135         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10136         Added funcattr hasStackParms will be set for reentrant functions when there
10137         are paramteres on the stack, this helps in minimizing frame pointer generation
10138         typeFromStr can handle function pointers now
10139
10140         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10141         *** empty log message ***
10142
10143 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10144
10145         * /src/ds390/gen.c, /src/ds390/main.c:
10146         More builtin function additions for TININative
10147
10148         * /src/ds390/ralloc.c:
10149         Had broken the regression testsuite
10150
10151         * /src/SDCCast.c: Fixed a bug in dumptree
10152
10153         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10154         Added funcattr hasStackParms will be set for reentrant functions when there
10155         are paramteres on the stack, this helps in minimizing frame pointer generation
10156         typeFromStr can handle function pointers now
10157
10158         * /doc/builtins.txt, /doc/TININative.txt:
10159         *** empty log message ***
10160
10161
10162 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10163
10164         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10165         ALPHA version for -mTININative
10166
10167         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10168         updated to reflect changes in the port structure
10169
10170         * /src/port.h:
10171         added function do_assemble (similar to do_link) if non-null this function
10172         will be called to do assembly (-mTININative) requires a multi command
10173         assembly
10174         added function genAssemblerEnd will be called to generate assembler Epilogue
10175
10176         * /src/SDCCsymt.c:
10177         added _JavaNative to debug info printing
10178
10179         * /src/SDCCmain.c: added option --tini-libid
10180         added port->do_assemble function (-mTININative) has a multi command assemble
10181
10182         * /src/SDCCglue.c: Disabled "constExpr" check
10183         added port->genAssemblerEnd function
10184
10185         * /src/SDCCglobl.h: Added option --tini-libid value
10186
10187         * /src/SDCCast.h:
10188         tookout optimizeCompare from the header (has no external references)
10189
10190         * /src/SDCCast.c: made one more function "static"
10191
10192 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10193
10194         * src/z80/mappings.i: Added z80asm support.
10195
10196         * src/z80/main.c: Added z80asm support on --asm=z80asm
10197
10198         * src/z80/gen.c: Fixed asm portability issues.
10199
10200         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10201
10202         * src/SDCCglue.c (printExterns): Added global/extern split.
10203
10204 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10205
10206         * support/regression/Makefile: added test for mcs51 model large
10207
10208         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10209
10210         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10211
10212 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10213
10214         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10215
10216 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10217
10218         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10219
10220         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10221
10222 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10223
10224         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10225
10226         * support/regression/tests/simplefloat.c: Port to mcs51.
10227
10228 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10229         * support/regression/tests/bug-485362.c: Added.
10230
10231         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10232
10233         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10234
10235         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10236
10237         * src/z80/gen.c (aopDump): Added a dump function.
10238
10239 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10240         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10241
10242         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10243
10244         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10245
10246         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10247
10248         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10249
10250         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10251
10252         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10253
10254         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10255
10256         * support/regression/ports/ds390/support.c: Use tinibios.
10257
10258         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10259
10260 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10261
10262         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10263         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10264
10265         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10266
10267         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10268
10269 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10270
10271         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10272
10273         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10274         (packRegsForIYUse): Created and optimised.
10275
10276 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10277
10278         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10279 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10280
10281         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10282
10283         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10284
10285         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10286
10287 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10288
10289         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10290
10291         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10292
10293 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10294
10295         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10296
10297         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10298
10299         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10300
10301 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10302
10303         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10304         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10305         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10306
10307         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10308
10309         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10310         (genNotFloat): Added.
10311         (genUminusFloat): Added.
10312
10313         * device/lib/z80/Makefile: Added floating pt stubs.
10314
10315         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10316
10317         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10318
10319         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10320
10321 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10322
10323         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10324
10325         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10326
10327         * sdcc/support/regression/Makefile: Add port ds390.
10328
10329         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10330
10331         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10332
10333         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10334
10335         * sdcc/support/regression/ports/ds390/support.c: Added.
10336
10337         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10338
10339         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10340
10341         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10342
10343 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10344
10345         * device/include/malloc.h: Added z80 and gbz80 support.
10346
10347         * device/lib/gbz80/heap.s: Added.
10348
10349         * device/lib/z80/heap.s: Added.
10350
10351         * device/lib/malloc.c: Added z80 and gbz80 support.
10352
10353         * support/regression/tests/malloc.c (testMalloc): Added.
10354
10355         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10356
10357         * support/regression/tests/bug-478094.c: Added.
10358
10359         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10360
10361 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10362
10363         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10364
10365         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10366
10367         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10368
10369         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10370
10371         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10372
10373 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10374
10375         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10376
10377 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10378
10379         * support/regression/tests/bug-477927.c: Added.
10380
10381         * src/z80/peeph.def: Added minor rules.
10382
10383         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10384
10385         * src/z80/peeph.def: Added jump optimisation modification.
10386
10387 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10388
10389         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10390
10391 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10392
10393         * support/regression/tests/funptrs.c: Added.
10394
10395 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10396
10397         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10398
10399 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10400
10401         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10402
10403         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10404
10405         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10406         (movLeft2ResultLong): Created.
10407
10408         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10409         (joinPushes): Added.  Joins two char pushes into a word push.
10410
10411 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10412
10413         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10414
10415         * support/makebin/Makefile (install): Added creation of dest dir.
10416
10417 2001-10-24 Karl Bongers <karl AT turbobit.com>
10418
10419         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10420
10421 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10422
10423         * src/z80/ralloc.c: Turned off faulty pack for one use.
10424
10425         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10426
10427         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10428
10429 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10430
10431         * support/regression/Makefile: Improved clean
10432
10433         * support/regression/ports/gbz80/spec.mk: Added clean
10434
10435         * support/regression/ports/host/spec.mk: Added clean
10436
10437         * support/regression/ports/z80/spec.mk: Added clean
10438
10439         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10440
10441         * support/regression/ports/mcs51/timeout.c: little improvements
10442
10443 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10444
10445         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10446
10447         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10448
10449         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10450
10451 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10452
10453         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10454
10455         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10456
10457 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10458         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10459
10460         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10461
10462         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10463
10464         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10465
10466         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10467
10468         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10469
10470         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10471
10472         * support/regression/tests/longor.c: Added.
10473
10474 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10475
10476         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10477
10478         * as/mcs51/aslink.h: define PATH_MAX
10479
10480         * as/mcs51/asm.h: define PATH_MAX
10481
10482         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10483
10484         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10485
10486         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10487
10488         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10489
10490         * src/SDCCglobl.h: define PATH_MAX
10491
10492         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10493
10494         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10495
10496 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10497
10498         * src/z80/gen.c (gencjneshort): Fixed
10499
10500         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10501
10502 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10503
10504         * support/regression/tests/bug-469671.c: Added.
10505
10506         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10507
10508 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10509
10510         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10511
10512         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10513
10514 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10515
10516         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10517
10518         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10519
10520         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10521
10522         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10523
10524         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10525
10526         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10527
10528         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10529
10530 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10531
10532         * 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.
10533
10534         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10535
10536         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10537
10538 2001-10-07    <johan AT FRIJA>
10539
10540         * device/lib/gets.c (gets): fixed the return value.
10541
10542 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10543         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10544
10545         * 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.
10546
10547         * 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.
10548
10549         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10550
10551         * src/pic/gen.c: Removed Safe_strdup.
10552
10553         * configure.in: Added option to enable libgc support.
10554
10555         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10556         (bitVectUnion): Optimised.
10557         (bitVectIntersect): Optimised.
10558         (bitVectBitsInCommon): Optimised.
10559         (bitVectCplAnd): Optimised.
10560
10561         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10562
10563 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10564
10565         * src/SDCCmain.c: distinguish between assembler debug and plain options
10566
10567         * src/avr/main.c:   remove standard assembler options
10568
10569         * src/ds390/main.c: remove standard assembler options
10570
10571         * src/mcs51/main.c: remove standard assembler options
10572
10573         * src/port.h: removed "PENDING" comment
10574
10575 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10576
10577         * src/device/lib/_mulint.c  : new, with assember functions
10578
10579         * src/device/lib/_mullong.c : new, with assember functions
10580
10581         * src/device/lib/_divuint.c : with assember functions
10582
10583         * src/device/lib/_divsint.c : with assember functions
10584
10585         * src/device/lib/_divulong.c: with assember functions
10586
10587         * src/device/lib/_divslong.c: with assember functions
10588
10589         * src/device/lib/_moduint.c : with assember functions
10590
10591         * src/device/lib/_modsint.c : with assember functions
10592
10593         * src/device/lib/_modulong.c: with assember functions
10594
10595         * src/device/lib/_modslong.c: with assember functions
10596
10597         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10598
10599         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10600
10601         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10602                                       replaced _mululong.c and _mulslong.c by _mullong.c
10603
10604 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10605
10606         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10607
10608 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10609
10610         * src/SDCCglue.c: test, if win32api is available for MINGW
10611
10612 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10613
10614         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10615         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10616         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10617         * support/regression/ports/host/spec.mk: removed GENERIC
10618         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10619         * support/regression/ports/z80/spec.mk: removed GENERIC
10620
10621 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10622
10623         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10624
10625         * support/regression/tests/bug-467035.c: Created.
10626
10627 2001-10-01    <johan AT FRIJA>
10628
10629         * src/SDCC.y: fixed bug #466586 part 1
10630
10631 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10632
10633         * SDCCicode.c: z80 has no generic pointers
10634         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10635
10636 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10637
10638         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10639
10640 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10641
10642         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10643
10644         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10645
10646 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10647
10648         * configure.in: Fixed up so that ucsim is only configured once.
10649
10650         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10651
10652         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10653         (getPathDifference): As above.
10654
10655         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10656
10657         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10658
10659 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10660         * .version: Updated to 2.3.1
10661
10662         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10663         Added copyright header.
10664
10665         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10666         (assemble): Added support for macro based assembler commands.
10667         (linkEdit): Added support for macro based linker commands.
10668         (preProcess): Changed the pre-processor to use macros.
10669         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10670         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10671
10672         * device/lib/z80/crt0.s: Added module name for debugging.
10673
10674 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10675
10676         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10677
10678         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10679
10680         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10681
10682         * src/Makefile.in: Added SDCCmacro and SDCCutil
10683
10684 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10685
10686         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10687
10688 2001-09-16    <johan AT FRIJA>
10689
10690         * 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.
10691
10692 2001-09-15    <johan AT FRIJA>
10693
10694         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10695         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10696
10697 2001-09-11    <johan AT FRIJA>
10698
10699         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10700
10701 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10702
10703         * support/regression/tests/bug-460444.c: Added test case.
10704
10705         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10706         (genCast): Added justification for all of the asserts.
10707
10708 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10709
10710         * support/regression/support.c: _xdata replaced by xdata
10711
10712         * support/regression/spec.mk: removed _generic
10713
10714 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10715
10716         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10717
10718         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10719         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10720
10721         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10722
10723         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10724
10725         * support/regression/tests/bug-460010.c: Added test case.
10726
10727         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10728
10729 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10730
10731         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10732
10733         * support/regression/testfwk.c: removed workaround for bug #436344
10734
10735         * support/regression/tests/bp.c: use less memory with mcs51
10736
10737         * support/regression/tests/bug-441448.c: use less memory
10738
10739         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10740
10741         * support/regression/collate-results.py: typo
10742
10743 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10744
10745         * support/regression/tests/fetchoverlap.c: Added new test case.
10746
10747         * support/regression/tests/bp.c: Added new test case.
10748
10749         * support/regression/tests/bug-448984.c: Added new test case.
10750
10751         * support/regression/tests/pow2shifts.c: Added new test case.
10752
10753         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10754         (genlshTwo): Fixed right shift for count > 8.
10755
10756         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10757
10758 2001-09-08    <johan AT FRIJA>
10759
10760         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10761
10762 2001-09-07    <johan AT FRIJA>
10763
10764         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10765
10766         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10767
10768 2001-09-06    <johan AT FRIJA>
10769
10770         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10771         * bernhard noted me at this: "() equals to (void)" (1.38)
10772
10773 2001-09-05    <johan AT FRIJA>
10774
10775         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10776
10777 2001-09-04    <johan AT FRIJA>
10778
10779         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10780
10781
10782 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10783
10784         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10785
10786 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10787
10788         * link/z80/aslink.h: Fixed path for PATH_MAX
10789
10790 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10791
10792         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10793
10794         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10795
10796         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10797
10798         * 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.
10799
10800 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10801
10802         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10803         (genCmp): Fixed up genCmp for the GB with longs.
10804
10805         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10806
10807         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10808
10809         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10810
10811         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10812
10813 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10814
10815         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10816
10817 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10818
10819         * 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.
10820
10821         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10822
10823 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10824
10825         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10826
10827         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10828
10829 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10830
10831   * sim/ucsim/configure:    little improvement of Cygwin-detection
10832   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10833   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10834   * support/regression/tests/bug-221100.c: small changes for mcs51
10835   * support/regression/tests/bug-221168.c: small changes for mcs51
10836   * support/regression/tests/bug-227710.c: small changes for mcs51
10837   * support/regression/tests/staticinit.c: small changes for mcs51
10838   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10839   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10840   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10841
10842 $Revision$