7b8d41070f5ab4bd935ff05810171ccca85edae5
[fw/sdcc] / ChangeLog
1 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
4           --no-peep and --peep-file <file> are used don't use default rules but
5           do use the <file>
6
7 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
8
9         * src/mcs51/gen.c (genCall): fixed bug 1457608
10
11 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
12
13         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
14         changes seem to cause (trigger?) problems with the build system.
15
16 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
17
18         * src/SDCCpeeph.c (operandsLiteral): new, added,
19           (callFuncByName): inserted operandsLiteral
20         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
21
22 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
23
24         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
25         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
26
27 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
28
29         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
30           implemented patch 1120823 Thanks to Willy De la Court (normal
31           interrupts need an interrupt number now if they are made critical),
32           and enabled nesting of critical functions though not for gbz80
33           (genCritical, genEndCritical): added functions
34           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
35         * src/z80/mappings.i: added "ei" to all mappings
36
37 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
38
39         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
40         submitted by the Debian SDCC maintainer Aurelien Jarno:
41         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
42         archive with gcc 4.1 on mips and wrote the patch"
43
44 2006-03-16 Raphael Neider <rneider AT web.de>
45
46         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
47           the left operand is shorter than the result (c* = lit-c* + int),
48           fixes bug #1450796
49         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
50           OP_SYMBOL
51
52 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
53
54         * src/.version: increased version number to 2.5.5
55         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
56         linking is done manually in pic16 port's _linkEdit,
57         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
58         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
59         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
60         allocate asmop as AOP_ACC,
61         (aopForRemat): added parameter 'bool result' in function declaration,
62         (pic16_aopGet): return AOP_ACC when accessing WREG,
63         (pic16_popGetTempReg): minor modification,
64         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
65         'pic16_allocWithIdx',
66         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
67         calling function in absolute addresses,
68         (genAssign): take into account AOP_ACC asmop,
69         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
70         * src/pic16/pcoderegs.c: some debug functions and lines added,
71         * src/pic16/ralloc.c (decodeRegType): added but commented out,
72         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
73         register too,
74         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
75         call to allocReg, not by manually allocating a new one,
76         (pic16_assignRegisters): now before going through the register
77         allocating functions mark all registers as free. This eliminates some
78         side effects resulting from peephole parser done earlier in the backbone
79
80 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
81
82         * src/SDCCicode.c (geniCodeLogic),
83         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
84
85 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
86
87         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
88           (genSend): bugfix, do not allocate and free twice,
89           (shiftRLong): handle partially overlapping aops
90         * support/regression/tests/bitopcse.c: fixed warning redefined idata
91
92 2006-03-08 Borut Razem <borut.razem AT siol.net>
93
94         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
95           for pic16
96
97 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
98
99         * support/regression/tests/bug1409955.c: new, added
100         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
101         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
102           (aopForSym, aopOp): increment asmop.allocated if reused,
103           (freeAsmop): decrement asmop.allocated and check for zero instead of
104           using asmop.freed,
105           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
106           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
107            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
108            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
109            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
110            genSignedRightShift, genRightShift, genDataPointerGet,
111            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
112            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
113             in reverse order from allocation,
114           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
115             added swappedLR to keep track
116         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
117           pdata & code for GCC, z80, gbz80 & hc08
118         * support/regression/tests/zeropad.c: moved defines to testfwk.h
119
120 2006-03-08 Raphael Neider <rneider AT web.de>
121
122         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
123
124 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
125
126         * device/include/mcs51/c8051f410.h: new SiLabs mcu
127         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
128         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
129
130 2006-03-06 Borut Razem <borut.razem AT siol.net>
131
132         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
133           made the linker quiet
134
135 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
136
137         * src/pic16/gen.c (genPcall): fixed bug #1443644
138         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
139         which dumps before the function entry point a data byte which represents
140         the number of the local variables used by the specified function, added
141         'xinst' for initial support for Extended Instruction Support,
142         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
143         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
144         port->fun_prefix anymore (may change later),
145         (genFunction, genEndFunction): do not store/restore local registers for
146         _main (this should take care the --main-return command line option in
147         the future),
148         (genOr): removed some legacy pic-port instructions,
149         * src/pic16/genarith.c (genAddLit): re-enabled old code because
150         performing operations with SFR's causes data to be written more than
151         once to each SFR. Perhaps SFRs should be handled in special cases...
152         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
153         pcode.h
154         * src/pic16/main.c (_process_pragma): stack bound checking did not take
155         into account for stack starting position,
156         (struct OPTIONS pic16_optionsTable): added command line argument
157         --extended or -y for Extended Instruction Support,
158         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
159         (deassignLRs): *** perhaps the most important change, old 'for' code
160         (commented out for reference), didn't account for some registers which
161         were left marked 'not free' after a pointer operation. The change
162         reduces register usage a lot in some cases
163
164 2006-03-04 Borut Razem <borut.razem AT siol.net>
165
166         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
167           _clean
168         * support/regression/tests/bug-524697.c: decreased array size for
169           mcs51 to fit into the internal RAM
170         * support/regression/Makefile.in: a little bit more verbose
171
172 2006-03-03 Borut Razem <borut.razem AT siol.net>
173
174         * support/regression/fwk/lib/testfwk.c,
175           support/regression/fwk/include/testfwk.h: introduced function
176           _prints(), nonrecursive _printn(), call _initEmu() from main()
177         * support/regression/ports/gbz80/support.asm,
178           support/regression/ports/ucz80/support.asm,
179           support/regression/ports/z80/support.asm,
180           support/regression/ports/ds390/support.c,
181           support/regression/ports/hc08/support.c,
182           support/regression/ports/host/support.c,
183           support/regression/ports/mcs51/support.c,
184           support/regression/ports/xa51/support.c: added empty _initEmu()
185           function
186         * support/regression/ports/pic16/gpsim.cmd,
187           support/regression/ports/pic16/spec.mk,
188           support/regression/ports/pic16/support.c,
189           support/regression/Makefile.in: added pic16 regression test
190
191 2006-03-01 Raphael Neider <rneider AT web.de>
192
193         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
194           genConstPointerGet): use safe way of generating MOVFF to cover
195             literals as well as registers, fixes bug #1440527
196         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
197             dereference
198           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
199             more correctly, fixes bug #1232186
200           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
201         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
202             gplink guess the correct processor in more cases, applied patch
203             from Till Riedel attached to and fixing bug #1436552
204
205 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
206
207         * support/regression/tests/array.c: added, contains check for #1434401
208         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
209
210 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
211
212         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
213         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
214         * device/include/mcs51/c8051f326.h,
215         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
216         * device/include/mcs51/c8051f000.h,
217         * device/include/mcs51/c8051f018.h,
218         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
219           PCON_IDLE,PCON_STOP and added sfr16 definitions
220
221 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
222
223         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
224           genGetWord): fixed bug 1409955
225
226 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
227
228         * device/include/hc08/mc68hc908gp32.h,
229         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
230
231 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
232
233         * src/SDCCast.c (constExprValue): return NULL if not a value
234         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
235         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
236         * support/regression/tests/bitfields.c: enabled signed bitfield for all
237
238 2006-02-13 Borut Razem <borut.razem AT siol.net>
239
240         * src/regression/ptrarg.c: added, fails due to bug #1430967
241         * src/regression/Makefile: ptrarg.c added, ...
242
243 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
244
245         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
246         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
247
248 2006-02-11 Borut Razem <borut.razem AT siol.net>
249
250         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
251           print "Processor: xxx" message to stdout only if --verbose
252
253 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
254
255         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
256         * support/regression/tests/bug1426356.c: added
257         * support/regression/tests/bitfields.c: removed 2 tests
258
259 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
260
261         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
262         * device/include/mcs51/c8051f330.h,
263         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
264           PCON_IDLE,PCON_STOP and added sfr16 definitions
265         * device/lib/_divsint.c,
266         * device/lib/_divuint.c,
267         * device/lib/_divulong.c,
268         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
269           register bank bug for small stackauto
270
271 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
272
273         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
274
275 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
276
277         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
278         * all.dsp: corrected several bin paths
279         * device/include/mcs51/c8051f120.h,
280         * device/include/mcs51/c8051f300.h,
281         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
282           to PCON_IDLE,PCON_STOP
283         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
284         * device/lib/printf_large.c (output_float): fixed bug 1388703
285         * support/regression/tests/bug1057979.c: added test for bug 1388703
286
287 2006-02-08 Raphael Neider <rneider AT web.de>
288
289         * src/pic/pcode.c (pciTRIS): fixed typo,
290           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
291           (LinkFlow): fixed handling of flows that end in a call,
292           (ReuseReg): perform safety check earlier
293         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
294             to work with flows at the beginning of a pBlock,
295             fixes #1426557 (Symbol not previously defined),
296           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
297             usage information
298           (RemoveUnusedRegisters): update register usage info
299         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
300             created, reuse existing ones instead
301         * src/pic/gen.c (genPcall): fixed #1424719
302
303 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
304
305         * link/z80/lkmain.c,
306         * link/z80/lklex.c,
307         * link/z80/lkdata.c,
308         * link/z80/aslink.h: fixed build on current cygwin:
309         replaced getline() by lk_getline()
310
311 2006-02-01 Borut Razem <borut.razem AT siol.net>
312
313         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
314           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
315           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
316           src/regression/bool1.c, src/regression/bool2.c,
317           src/regression/bool3.c, src/regression/call1.c,
318           src/regression/compare.c, src/regression/compare10.c,
319           src/regression/compare2.c, src/regression/compare3.c,
320           src/regression/compare4.c, src/regression/compare5.c,
321           src/regression/compare6.c, src/regression/compare7.c,
322           src/regression/compare8.c, src/regression/compare9.c,
323           src/regression/configword.c, src/regression/for.c,
324           src/regression/inline.c, src/regression/mult1.c,
325           src/regression/nestfor.c, src/regression/or1.c,
326           src/regression/pointer1.c, src/regression/ptrfunc.c,
327           src/regression/rotate1.c, src/regression/rotate2.c,
328           src/regression/rotate3.c, src/regression/rotate4.c,
329           src/regression/rotate5.c, src/regression/rotate6.c,
330           src/regression/rotate7.c, src/regression/string1.c,
331           src/regression/struct1.c, src/regression/sub.c,
332           src/regression/sub2.c, src/regression/switch1.c,
333           src/regression/while.c, src/regression/xor.c,
334           src/regression/create_stc, src/regression/simulate,
335           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
336           regression tests
337         * src/regression/gpsim_assert.h: added
338
339 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
340
341         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
342         ((void (code *) (void)) 0) ();
343         * as/hc08/aslex.c,
344         * as/hc08/aslink.h,
345         * as/hc08/asm.h,
346         * as/hc08/asmain.c,
347         * as/hc08/lkdata.c,
348         * as/hc08/lklex.c,
349         * as/hc08/lkmain.c,
350         * as/mcs51/aslex.c,
351         * as/mcs51/aslink.h,
352         * as/mcs51/asm.h,
353         * as/mcs51/asmain.c,
354         * as/mcs51/lkdata.c,
355         * as/mcs51/lklex.c,
356         * as/mcs51/lkmain.c,
357         * as/z80/aslex.c,
358         * as/z80/asm.h,
359         * as/z80/asmain.c: fixed build on current cygwin:
360         replaced getline() by as_getline()
361
362 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
363
364         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
365         declarator in the symbol chain
366         * src/SDCCsymt.h,
367         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
368         parameter list for function pointers
369         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
370         * support/regression/tests/bug-716242.c: added
371
372 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
373
374         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
375         offset if possible
376         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
377
378 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
379
380         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
381         inifinitely recurseable, added static
382         * support/regression/tests/bug-1408066.c: added
383
384 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
385
386         * src/SDCCicode.h,
387         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
388         renamed, added possibility to create "postLoopLbl"-labels
389         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
390         newiTempLoopHeaderLabel
391         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
392         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
393         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
394         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
395         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
396         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
397         (basicInduction): fixed bug #136564, made static,
398         (loopInduction): changed parameter of basicInduction, made static,
399         (addPostLoopBlock): added
400         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
401         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
402         findLoopEndSeq
403         * support/regression/tests/bug-136564.c: added
404         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
405         --std-sdcc99 to LIBSDCCFLAGS
406
407 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
408
409         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
410         while loop
411         * support/regression/tests/bug-1406131.c: added
412
413 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
414
415         * src/SDCCast.c (decorateType): fix promotion of unary minus
416         * src/SDCCsymt.c (computeType): beautified
417         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
418         (valUnaryPM, valComplement): fix sign and promotion,
419         (valNot): ANSI: result type is int (SDCC: unsigned char)
420         * support/regression/tests/uminus.c: speedup by removing superflous
421         test case 'int'
422         * support/regression/tests/onebyte.c: added promotion and signedness
423         tests for unary minus
424         * support/regressions/tests/bug-477927.c: disable warning about
425         uninitialized variables
426         * support/regression/tests/not.c: added
427
428 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
429
430         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
431         * src/mcs51/gen.c (gen51Code): show final register usage after
432         fillGaps in asm with --i-code-in-asm
433         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
434         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
435         incUsed, rliveClear, adjustIChain): made static,
436         (setFromRange): excluded because it's unused,
437         (findPrevUseSym, markWholeLoop): added,
438         (findPrevUse): rewritten; fixes bug 895992; now a complete search
439         through all branches of predecessors enables sdcc to emit the warning
440         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
441         (rlivePoint): made static, added parameter emitWarnings which is only
442         true during the first run out of two,
443         (findRecursiveSucc, findRecursivePred): removed,
444         (computeLiveRanges): made static, added parameter emitWarnings,
445         (dumpIcRlive): added for debugging only
446         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
447         removed prototype of setFromRange()
448         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
449         in call of computeLiveRanges()
450         * support/regression/tests/bug-895992.c: added
451         * support/regression/tests/bug-971834.c: added
452         * support/valdiag/tests/bug-895992.c: added
453         * support/valdiag/tests/bug-971834.c: added
454
455 2005-12-18 Raphael Neider <rneider AT web.de>
456
457         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
458           (genUnpackBits): improved code for direct operands,
459           (genPackBits): improved code for literal assignment to bitfields
460             and for direct destination operands (no FSR indirection),
461             prevented redundant AND, fixes #1362800,
462           (AccLsh): added parameter to disable masking of the result
463         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
464           skip instructions with side-effects (like incfsz),
465           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
466         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
467         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
468           fixes #1375263
469
470 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
471
472         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
473         volatile variables as spill location
474
475 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
476
477         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
478         replacing literals
479         * support/regression/tests/bug-1376320.c: added
480
481 2005-12-08 Raphael Neider <rneider AT web.de>
482
483         * src/pic/device.c: renamed is_shared to pic14_is_shared
484         * src/pic/gen.c (genIfx): re-enabled handling of sbits
485         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
486           (is_valid_identifier): added for above workaround
487
488 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
489
490         * device/lib/Makefile.in: fixed to enable port-specific-objects
491         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
492           char, thanks Hubert Sack
493         * doc/sdccman.lyx: documented --xstack-loc,
494           elaborated a bit more on interrupts and pitfalls,
495           removed "setjmp/longjmp unsupported",
496           documented some unsupported C99 features
497         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
498         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
499           if, thanks Hubert Sack
500         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
501         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
502           make make_library
503         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
504           regression tests can report resource usage (rfe 700441)
505         * support/regression/collate-results.py: report resource usage
506         * support/regression/ports/ds390/spec.mk,
507         * support/regression/ports/hc08/spec.mk,
508         * support/regression/ports/mcs51/spec.mk,
509         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
510         * support/regression/ports/ds390/uCsim.cmd,
511         * support/regression/ports/hc08/uCsim.cmd,
512         * support/regression/ports/mcs51/uCsim.cmd,
513         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
514         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
515           library, use the default one
516         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
517           building the library
518
519 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
520
521         * config.dsp: added dependency on .version and configure_vc.awk
522         * device/include/setjmp.h: updated for --stack-auto and --xstack
523         * device/include/mcs51/at89c51snd1c.h: corrected line endings
524         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
525         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
526         * device/lib/libsdcc.lib: added _setjmp
527         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
528           (decorateType): fixed bug 1372851,
529           (optimizeGetHbit): fixed warning
530         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
531           array initialisation
532         * support/regression/tests/bug1057979.c: added test for bug 1358192
533         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
534
535 2005-12-03 Borut Razem <borut.razem AT siol.net>
536
537         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
538           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
539
540 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
541
542         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
543         createIval): implement symbol independant "flexible array member",
544         (createIvalCharPtr): implemented flexible array initialisation with a
545         string
546         * src/SDCCsymt.c (copyStruct): removed,
547         (getSize): fixed misleading comment,
548         (getAllocSize): removed, the additional allocation size is now in
549         sym->flexArrayLength,
550         (checkStructFlexArray): new, syntax checks for flexible array members,
551         (compStructSize): added syntax checks for "flexible array members"
552         (copyStruct): removed,
553         (copyLinkChain): removed inefficient fix for bug 770487
554         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
555         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
556         symbol->flexArrayLength
557         * src/SDCCerr.c,
558         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
559         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
560         * support/regression/tests/structflexarray.c: added
561         * support/valdiag/tests/structflexiblearray.c: added
562
563 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
564
565         * src/SDCCast.c (decorateType): fixed bug 1368489
566         * support/Util/SDCCerr.c,
567         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
568
569 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
570
571         * device/include/mcs51/at89c51snd1c.h: added file submitted by
572           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
573
574 2005-11-27 Borut Razem <borut.razem AT siol.net>
575
576         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
577           support/cpp2/mkdeps.h: added command line option
578           -obj-ext=<extension> to SDCPP to define object file externion, used
579           for generation of make dependencies (-M)
580         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
581
582 2005-11-26 Borut Razem <borut.razem AT siol.net>
583
584         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
585           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
586           added pic and pic16 libraries
587
588 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
589
590         * device/include/float.h: Corrected typo in prototype of __fsgt
591
592 2005-11-25 Borut Razem <borut.razem AT siol.net>
593
594         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
595           added creation of model-mcs51-stack-auto libraries
596
597 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
598
599         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
600         and fields-list too
601         * src/SDCCast.c (createIvalArray): removed obsolete comment
602
603 2005-11-24 Borut Razem <borut.razem AT siol.net>
604
605         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
606           added missing device/lib/mcs51/crt*.asm sources
607
608 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
609
610         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
611
612 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
613
614         * device/lib/_fs2schar.c,
615         * device/lib/_fs2sint.c,
616         * device/lib/_fs2slong.c: optimized inline asm
617
618 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
619
620         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
621           Better handling of floats between -1.0 and 0.0.
622
623 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
624
625         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
626           (the missing "if"s prohibited removal of redundant labels)
627
628 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
629
630         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
631           Properly convert floats between -1.0 and 0.0 to long, int, and char
632           types (max integer value of negative floats tends to zero).
633         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
634           Removed changes made so to work properly with floats between
635           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
636           and _fs2char.c
637
638 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
639
640         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
641         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
642         (genCast) cosmetic change
643         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
644         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
645         from mcs51
646         * support/regression/tests/bitfields (testSignedBitfields): added
647
648 2005-11-18 Borut Razem <borut.razem AT siol.net>
649
650         * sdcc/device/lib/Makefile.in: remove all unnecessary files
651         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
652           introduced SILENT option to make building of pic16 libraries less
653
654 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
655
656         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
657           Now they work properly with floats between -1.0 and 0.0
658         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
659
660 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
661
662         * src/SDCCicode.c (printOperand): added missing else
663
664 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
665
666         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
667         reformatted for better readability
668         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
669         signed bitfields
670
671 2005-11-17 Borut Razem <borut.razem AT siol.net>
672
673         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
674           introduced SILENT option to make building of pic16 libraries less
675           verbose - used for nightly snapshot build
676         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
677           available on Win32 platforms.
678         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
679           medium, large, pic and pic16
680
681 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
682
683         * device/lib/printf_large.c: Temporary patch for bug 1358192:
684           printf("%f"...) sets fraction to zero.
685
686 2005-11-16 Raphael Neider <rneider AT web.de>
687
688         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
689           fixes #1357221
690         * src/pic/gen.c (genIfx): implemented for CARRY bit
691         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
692           to generic pointers, fixes #1357332,
693           (pic16_movLit2f): NEW,
694           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
695
696 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
697
698         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
699
700 2005-11-11 Raphael Neider <rneider AT web.de>
701
702         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
703         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
704           compute pointer's type from operand,
705           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
706           improved single bit reads, fixes bug #1353379
707
708 2005-11-09 Borut Razem <borut.razem AT siol.net>
709
710         * support/scripts/sdcc.nsi: added lib/pic to the package
711
712 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
713
714         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
715
716 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
717
718         * support/regression/tests/bug1348008.c: added
719         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
720         * support/regression/tests/bug1337835.c: updated comment
721
722 2005-11-06 Borut Razem <borut.razem AT siol.net>
723
724         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
725           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
726           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
727           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
728           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
729           dynamic construction of cl_error_class and derivates - 2.nd try
730
731 2005-11-05 Borut Razem <borut.razem AT siol.net>
732
733         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
734           bug, which caused Bus Errors on sparc solaris
735
736 2005-11-04 Borut Razem <borut.razem AT siol.net>
737
738         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
739           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
740           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
741           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
742           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
743           and derivates to resolve the initialization problem on OSX
744
745 2005-11-02 Borut Razem <borut.razem AT siol.net>
746
747         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
748           corrected typo - #include <winsock2.h>
749
750 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
751
752         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
753           (_asxxxx_mapping): added org directive for future enhancements
754
755 2005-11-01 Borut Razem <borut.razem AT siol.net>
756
757         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
758           enabled sockets on WIN32
759         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
760
761 2005-10-31 Borut Razem <borut.razem AT siol.net>
762
763         * support/regression/generate-cases.py: escape backslashes in {testcase}:
764           WIN32 backslash path delimiters should be escaped when used in C strings
765         * support/regression/tests/bitfields.c: exclude failing assertions for
766           __CYGWIN32__ and __MINGW32__ hosts
767
768 2005-10-30 Borut Razem <borut.razem AT siol.net>
769
770         * src/SDCCutil.c: corrected double comparison typo
771
772 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
773
774         * device/lib/medium/Makefile: added for new memory model medium
775         * device/include/asm/mcs51/features.h: updated for medium/pdata
776         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
777           added Multiply & Accumulate sbit's and MAC0_PAGE define
778         * device/include/mcs51/c8051f300.h: added sfr16 definitions
779         * device/include/mcs51/c8051f310.h: added sfr16 definitions
780         * device/lib/_mullong.c: update for medium model
781         * device/lib/incl.mk: added medium model
782         * doc/sdccman.lyx: documented medium model
783         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
784         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
785         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
786         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
787           (allocParms): set SCLS and OCLS to pdata for medium model
788         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
789           for pdata,
790           (powof2): return <0 if not power of 2
791         * src/avr/gen.c (genBitWise): use updated powof2
792         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
793           (shiftR2Left2Result): small optimization in setup, save acc when storing,
794           (shiftLLeftOrResult): use B if necessary
795         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
796         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
797         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
798         * support/regression/Makefile.in: added test-mcs51-medium
799         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
800
801 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
802
803         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
804         specifier unsigned
805         * device/lib/time.c (mktime): fixed bug 1334315
806
807 2005-10-28 Raphael Neider <rneider AT web.de>
808
809         * device/include/pic/p16f_common.inc: added common declarations
810         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
811
812 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
813
814         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
815           (aopPutUsesAcc): added to predict accumulator use,
816           (assignResultValue): save acc if necessary,
817           (genMinusDec): store result if indirectly addressed,
818           (genDivOneByte):  save acc if necessary,
819           (movLeft2Result): bugfix if left already in acc,
820           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
821             attention to accumulator use (esp. pdata),
822           (genReceive): receive pdata correctly
823         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
824         * src/SDCCicode.h: added isOperandInPagedSpace prototype
825
826 2005-10-27 Raphael Neider <rneider AT web.de>
827
828         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
829
830 2005-10-27 Raphael Neider <rneider AT web.de>
831
832         * .version: changed version to 2.5.4
833         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
834         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
835           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
836             arithmetics support routines
837         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
838         * device/lib/Makefile.in: also create installdir for pic
839
840         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
841           pic14 port as well
842         * src/pic/device.c (dump_sfr): rewritten to delegate register
843           placement to the linker (use `extern sym' rather than sym EQU addr),
844           (validAddress): fixed to check last specified address
845         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
846           (popGetLit): truncate literal value to 8 bit,
847           (popGet): moved assert to more appropriate place
848           (popGetExternal): create pCode operand from and mark the according
849             symbol as being `extern'
850           (popGetAddr): added sanity check on immediate's offset, provide
851             GPOINTER tag on demand
852           (aopPut): fixed for immediates,
853           (mov2w_op): move operand's address or contents to WREG (depending on
854             operand type), safer variant of mov2w,
855           (movwf,call_libraryfunc): NEW, handy abbreviations,
856           (get_argument_pcop,get_return_val_pcop,pass_argument,
857           get_returnvalue): interface for accessing function parameters and
858             return values,
859           (assignResultValuei,genRet): use new parameter/return value interface
860           (pic14_getDataSize): back to old version handling generic pointers,
861           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
862             provided implementation and/or fixed old one,
863           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
864             calls, removed legacy 8051 reference code
865           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
866           (loadSignToC): NEW, move the operands sign bit to CARRY,
867           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
868             genRightShiftSigned, accepts negative shift counts,
869           (setup_fsr): load FSR and adjust IRP (indirect memory access),
870           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
871             generic pointers, __data pointers and __code pointers,
872           (genUnpackBits,genPackBits): rewritten to work with generic pointers
873             and signed bitfields, limit bitfields to 8 bit,
874           (genDataPointerGet): fixed number of bytes read,
875           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
876           (genPointerGet,genPointerSet): fixed handling of __code pointers,
877             pointers to constant data are no longer assumed to point to __code
878             space, removed invalid pointer types,
879           (bitpatternFromVal): retrieve the PICs representation of an integer
880             or float literal,
881           (genDataPointerSet): fixed assigning to po_immediate operands,
882           (genGenPointerSet): implemented as library call,
883           (genIfx): fixed incorrect condition,
884           (genAddrOf): limit generic pointers' addresses to 2 bytes,
885             provide GPOINTER tag according to destination's storage class,
886           (genCast): added code to handle casting to generic pointers, added
887             sign-/zero extension of the result
888           (aop_isLitLike,op_isLitLike): fixed handling of immediates
889         * src/pic/gen.h: added macros to access IRP bit in STATUS register
890         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
891           extend the result
892         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
893           address/register resides in the shared banks
894           (emitSymbolToFile): improved to handle global and `pinned' symbols,
895             put all variables into separate sections (have the linker arrange
896             them)
897           (picglue): put init code and interrupt handlers in separate sections
898         * src/pic/main.c: added port specific options table, modified to PORT
899           structure to make GPOINTERs 3 byte, added pic14_options
900           (_pic14_do_link): private linking routine (update paths to libraries,
901             add libsdcc.lib by default)
902         * src/pic/main.h: declare pic14_options
903         * src/pic/pcode.c: fixed instructions i/o relations,
904           (RegCond): reverted to correct version,
905           (newpCodeOpLit): truncate literals to 8 bit,
906           (genericPrint): added debug output,
907           (getRegFromInstruction): fixed for various operand types, simplified
908           (BuildFlow): fixed broken handling of isntructions with labels
909           (LinkFlow): start at last instruction in flow (skip trailing comments),
910             pass the flow on to the next instruction after CALL
911           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
912           (insertPCodeInstruction): fixed inserting after a skip instruction,
913           (DoBankSelect): fixed for labeled instructions
914           (OptimizepBlock): honor --nopeep switch
915           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
916         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
917         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
918           (pCodeOptime2pCodes): allow disabling this optimization via
919             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
920             but is still buggy), started implementation of a dataflow based
921             pCode optimization (CSE + dead code elimination)
922           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
923         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
924           names are independant of the stack location and therefore portable across
925           devices
926
927 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
928
929         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
930           (selectSpil): fixed bug 1337835 by not spilling bit variables
931         * support/regression/tests/bug1337835.c: added test for this bug
932         * src/mcs51/peeph.def: restart after rule 3.c,
933           addded rules 263.x to optimize loading constants
934
935 2005-10-26 Raphael Neider <rneider AT web.de>
936
937         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
938         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
939           (genAssign): emit warning when casting literals to generic pointer
940             type, also applies when taking the address of a fixed variable,
941           (genCast): improved casting to generic pointers
942         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
943           extern variables, added verbose error message
944         * device/include/pic16/{string.h,errno.h}: added #pragma library c
945
946 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
947
948         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
949         carry must be complemented too
950         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
951         could be emitted by genMinus
952         * src/SDCCval.c (constVal): fixed bug 1305065
953
954 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
955
956         * src/SDCCast.c (addCast): added promotion for bit variables
957         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
958         promotion casts + optimisation
959         (optimizeGetWord): fix warning 'i' might be used uninitialized
960         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
961         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
962
963 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
964
965         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
966         all chars are promoted to int; promotion should be handled in SDCCast.c
967
968 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
969
970         * device/lib/_strcmp.c: Fixed bug 1326457
971
972 2005-10-11 Raphael Neider <rneider AT web.de>
973
974         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
975         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
976
977 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
978
979         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
980         * support/regression/tests/sfr16.c: added test for the sfr32 bug
981
982 2005-10-04 Raphael Neider <rneider AT web.de>
983
984         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
985           device/lib/pic16/pics.all: added pic18f1320
986         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
987
988 2005-09-30 Raphael Neider <rneider AT web.de>
989
990         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
991         * src/pic16/devices.inc: NEW, provides device descriptions
992         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
993
994 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
995
996         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
997           GETHBIT
998
999 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1000
1001         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1002           documented Any Order Bit, Higher Order Byte and Higher Order Word
1003         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1004         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1005           (optimizeGetAbit): new, to get any bit, not only the high bit,
1006           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1007           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1008           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1009           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1010             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1011             GETABIT, GETBYTE, GETWORD: decorate them,
1012           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1013           (ast_print): added GETABIT, GETBYTE, GETWORD
1014         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1015         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1016           (geniCodeBinary): new generic binary icode,
1017           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1018         * src/port.h: updated comment for PORT.hasExtBitOp
1019         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1020           (genGetByte): new, to get a single byte,
1021           (genGetWord): new, to get a word from a long,
1022           (gen51Code): added GETABIT, GETBYTE, GETWORD
1023         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1024
1025 2005-09-23 Raphael Neider <rneider AT web.de>
1026
1027         * configure.in, configure: have device/lib/pic configured
1028         * device/lib/Makefile.in: added model-pic14
1029         * device/lib/clean.mk: added pic/ to clean rule
1030         * device/lib/pic: added rudimentary pic14 library providing support
1031           functions for multiplication/division/generic pointer access
1032         * src/SDCCopt.c (convilong): mark support functions as extern
1033           for pic14 port as well
1034         * src/pic/gen.c (genMult): added assertions,
1035           (genpic14Code): emit warning on unhandled iCodes
1036         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1037         * src/pic/pcode.c (pCodeOpCopy),
1038         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1039           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1040           SFR_REGISTER}), made safe for future extensions
1041         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1042           instructions even if preceeded by SKIP instructions (also remove
1043           them); removed unused code
1044         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1045           prevents leaving parts of the structure uninitialized after copying
1046
1047 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1048
1049         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1050           ago by me
1051         * support/regression/tests/addsub.c: added test for the bug
1052
1053 2005-09-21 Raphael Neider <rneider AT web.de>
1054
1055         * device/include/pic16/pic18f1220.h,
1056           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1057         * device/lib/pic16/Makefile.rules: added missing opening paren
1058         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1059           are provided in genutils.c,
1060           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1061           operand/result sizes,
1062           (genCmp): assert on NULL pointers first, then check deref'ed values
1063         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1064           result size
1065
1066 2005-09-18 Raphael Neider <rneider AT web.de>
1067
1068         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1069           as these are now unused,
1070           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1071         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1072           local, avoids uninitialized pointer dereference on r->name
1073         * src/pic16/ralloc.c (newReg): fixed indentation
1074
1075 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1076
1077         * src/SDCCval.c (constVal): fixed bug 730366
1078         * support/Util/SDCCerr.c,
1079         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1080
1081 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1082
1083         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1084
1085 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1086
1087         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1088
1089 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1090
1091         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1092           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1093         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1094           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1095         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1096         * packihx/packihx.c (hexDigit): made c unsigned char
1097         * as/mcs51/lklibr.c (fndsym),
1098         * link/z80/lkgb.c (gb),
1099         * link/z80/lklibr.c (fndsym),
1100         * link/z80/lkrloc.c (relr),
1101         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1102         * src/SDCC.lex (checkCurrFile, process_pragma),
1103         * src/SDCCglue.c (spacesToUnderscores),
1104         * src/SDCCmain.c (setParseWithComma, processFile),
1105         * src/asm.c (tvsprintf, printCLine),
1106         * src/avr/gen.c (emitcode, aopPut),
1107         * src/ds390/gen.c (emitcode),
1108         * src/hc08/gen.c (emitcode, emitinline),
1109         * src/mcs51/gen.c (emitcode, genInline),
1110         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1111           tokenizeLineNode),
1112         * src/pic/ralloc.c (debugLog),
1113         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1114           tokenizeLineNode),
1115         * src/pic16/ralloc.c (debugLog),
1116         * src/z80/main.c (_process_pragma):
1117            made all ctype.h function calls safe
1118         * src/SDCCopt.c: include math.h for fabs
1119         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1120           and used them throughout the code to make ctype.h function calls safe
1121         * src/ds390/main.c (asmLineNodeFromLineNode),
1122         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1123         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1124            unsigned char*
1125         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1126           (newpCodeAsmDir): made ctype.h function calls safe
1127         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1128           pic16_emitcode):  made lbp unsigned char*
1129         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1130           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1131         * src/xa51/gen.c (emitcode),
1132         * src/z80/gen.c (_emit2): made lbp unsigned char*
1133         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1134            char*
1135
1136 2005-09-05 Raphael Neider <rneider AT web.de>
1137
1138         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1139           access bank splitpoint
1140
1141 2005-09-05 Raphael Neider <rneider AT web.de>
1142
1143         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1144
1145 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1146
1147         * .version: changed to version 2.5.3
1148         * doc/sdccman.lyx: changed version to 2.5.3,
1149           documented --codeseg and --constseg and pragma codeseg and constseg,
1150           documented bit parameters (reentrant) and bit returning
1151         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1152            currFunc->recvSize, but is this ok for all ports?
1153           (ast2iCode): result of ~ on unsigned char must be cast to int for
1154            bool to work
1155         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1156           function pointers in bit space
1157         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1158           (processFuncArgs): call port.reg_parm() with reentrancy info
1159         * src/port.h,
1160         * src/avr/main.c,
1161         * src/ds390/main.c,
1162         * src/hc08/main.c,
1163         * src/pic/main.c,
1164         * src/pic16/main.c,
1165         * src/xa51/main.c,
1166         * src/z80/main.c: port.reg_parm prototype extended with
1167           "bool reentrant" parameter
1168         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1169           options.stackAuto for allocating bit register parameters
1170         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1171           (genSend): set BitBankUsed if it is,
1172           (selectRegBank): factored out of genCall for use in genPcall,
1173           (genCall): removed redundant dtype assignmen, use selectRegBank,
1174           (genPcall): handle returning in Carry properly, save in F0 if needed,
1175           (genReceive): handle bit register parameters
1176         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1177           (mcs51_assignRegisters): enable bit registers for all reentrant
1178            functions and don't set BitBankUsed unconditionally
1179         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1180         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1181         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1182
1183 2005-08-27 Borut Razem <borut.razem AT siol.net>
1184
1185         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1186         ppc-osx (Darwin) does not support -u option. It seems that it is
1187         supported only on Linux - GNU cp
1188
1189 2005-08-25 Borut Razem <borut.razem AT siol.net>
1190
1191         * sim/ucsim/gui.src/serio.src/Makefile.in,
1192           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1193           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1194           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1195           install and strip, since the strip at /usr/ccs/bin should be used
1196           on solaris
1197
1198 2005-08-24 Borut Razem <borut.razem AT siol.net>
1199
1200         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1201
1202 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1203
1204         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1205         ffffffffu
1206
1207 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1208
1209         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1210         * as/mcs51/lkmain.c (link_main): fixed warning
1211         * device/include/stdbool.h: ds390 has no advanced bit support yet
1212         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1213         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1214         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1215           and updated their macros
1216         * src/SDCCval.c (constVal): updated comment for renamed b_long
1217
1218 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1219
1220         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1221         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1222           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1223           (oprio): set priority for '['
1224         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1225            and adb_24_bit
1226         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1227         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1228         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1229         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1230           added overlayable BIT_BANK area
1231         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1232           (summary2): explain 'T' in legenda
1233         * as/mcs51/lkrloc.c: replaced old K&R style,
1234           (relr): added R_BIT processing,
1235           (errmsg): added "Bit-addressable relocation error",
1236           (adb_bit): added for converting from byte- to bit-addressable space,
1237           (adb_24_bit): added for converting from byte- to bit-addressable space
1238         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1239            used in reentrant functions now even as return value
1240         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1241         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1242           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1243         * src/SDCCglobl.h: added indicator BitBankUsed
1244         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1245            the bit registers b0-b7
1246         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1247           (geniCodeCast): fixed bug 1263853,
1248           (geniCodeLogicAndOr): put result in bool or char,
1249           (geniCodeReceive): added parameter func for accessing the return type,
1250           (geniCodeFunctionBody): pass func to geniCodeReceive
1251         * src/SDCCmain.c: added indicator BitBankUsed
1252         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1253         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1254           (checkSClass): don't put automatic bool/bit on stack,
1255           (checkFunction): removed check on function cannot return bit
1256         * src/SDCCsymt.h: added newBoolLink prototype
1257         * src/mcs51/gen.c (rb1regs): added bit registers,
1258           (movc): created for assigning to carry,
1259           (pushReg, popReg): created for pushing registers,
1260           (sameRegs): check both AOP_REG and AOP_CRY types,
1261           (aopOp): handle bit registers,
1262           (aopPut): optimization no self-assign,
1263           (saveRegisters): push reg->base (bits) only once for bit registers,
1264            and use pushReg,
1265           (unsaveRegisters): pop reg->base only once and use popReg,
1266           (assignResultValue): added parameter func and return in carry for bits,
1267           (genIpush): optimization no reload in A if not changed,
1268           (genSend): bit parameters in reentrant functions are passed in bit
1269            registers by first assigning to bits in B, then save registers and
1270            copy B to bits,
1271           (genCall): handle returning in Carry properly, save it in F0 if needed,
1272           (genPcall): updated assignResultValue call, this is not safe yet for bit
1273            returning function !!!
1274           (genFunction): don't generate equ's for bit registers and use pushReg,
1275           (genEndFunction): take care of bit returning functions and use popReg,
1276           (genRet): return bit in Carry,
1277           (genIfx): optimize bit registers and other directly addressable bits,
1278           (genReceive): updated assignResultValue call
1279         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1280           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1281            registers when using stack-auto
1282         * src/mcs51/ralloc.c (_G): added allBitregs,
1283           (regs8051): added the bit registers,
1284           (createStackSpil): use macro IS_BIT,
1285           (getRegBit): added to allocate a bit register, else spill,
1286           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1287           (updateRegUsage): factored out to ease stepping while debugging,
1288           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1289            also allocate bit registers,
1290           (fillGaps): handle bit registers,
1291           (findAllBitregs): added to create bit vector with all bit registers,
1292           (mcs51_allBitregs): returns this bit vector,
1293           (mcs51_assignRegisters): when using stack-auto use bit registers for
1294            passing parameters and creating local variables
1295         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1296
1297 2005-08-22 Borut Razem <borut.razem AT siol.net>
1298
1299         * device/lib/Makefile.in: replaced find option -or with -o
1300           to make it run on solaris
1301
1302 2005-08-22 Raphael Neider <rneider AT web.de>
1303
1304         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1305           fixes #1265442 (crash on Solaris)
1306
1307 2005-08-20 Borut Razem <borut.razem AT siol.net>
1308
1309         * configure, configure.in: added tests for libsocket and libnsl libraries,
1310           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1311           from support/regression/Makefile.in
1312         * support/regression/Makefile.in: added
1313         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1314         * sim/ucsim/libtool: regenerated on sparc-solaris
1315         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1316           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1317           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1318           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1319           sparc-solaris, which doesn't use GNU ld linker
1320         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1321         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1322
1323 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1324
1325         * src/mcs51/peeph.def: updated comments
1326
1327 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1328
1329         * device/lib/_gptrget.c,
1330         * device/lib/_gptrput.c: slightly shorter
1331         * doc/sdccman.lyx: incremented version
1332         * src/mcs51/peeph.def: moved peephole comments to the line of first
1333           change to better keep line correlation, reanimated 186.e
1334         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1335
1336 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1337
1338         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1339           David Saxton with quotes around file name.
1340
1341 2005-08-15 Borut Razem <borut.razem AT siol.net>
1342
1343         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1344           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1345           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1346           make tests run on x86_64 platform
1347
1348 2005-08-13 Raphael Neider <rneider AT web.de>
1349
1350         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1351           as it might be executed DURING a build (parallel make is wonderful)
1352
1353 2005-08-13 Raphael Neider <rneider AT web.de>
1354
1355         * device/lib/Makefile.in (port-specific-objects-pic16):
1356           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1357         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1358           dependency
1359         * device/lib/pic16/Makefile.rules: build subdirs before creating
1360           the library, removed builddir rule, create $(builddir) early in
1361           recurse rule, use empty recurse rule for leaf directories
1362         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1363           mkdir errors (race condition), removed duplicate suffix "hex"
1364           from clean rules
1365         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1366         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1367           prevents mkdir -p from aborting on Alpha
1368
1369 2005-08-12 Raphael Neider <rneider AT web.de>
1370
1371         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1372           db-statements in order to allow for arrays of pointers in code
1373           sections to be placed without interspersed 0-padding, fixes
1374           bug #1256215
1375         * (emitStatistics): fixed division by zero for pic18f1220
1376         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1377           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1378         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1379         * (pic16_pCodeConstString): keep track of already emitted string
1380           literals to prevent "duplicate definitions of symbol _str_NR"
1381         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1382           debug message
1383         * device/lib/Makefile.in: ignore failing PIC16 library builds
1384         * device/lib/pic16/Makefile: do not build if gputils are missing
1385         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1386
1387 2005-08-10 Raphael Neider <rneider AT web.de>
1388
1389         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1390           my last commit)
1391
1392 2005-08-10 Raphael Neider <rneider AT web.de>
1393
1394         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1395           Rokas' patch to add the new fixed point type "__fixed16x16"
1396         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1397           functions for __fixed16x16 arithmetics
1398         * device/lib/pic16: reimplemented the build system to support
1399           a separate build directory, better handling of libio (create
1400           the library in a separate subdir for each architecture) and
1401           easier configuration (centralized in Makefile.common)
1402
1403 2005-08-07 Raphael Neider <rneider AT web.de>
1404
1405         * src/pic16/gen.c (genrshTwo): fixed sign extension
1406         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1407         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1408           added T0CONbits
1409         * device/include/pic16/pic18f4220.h: NEW, header for
1410           pic18f4220 and pic18f4320
1411         * device/include/pic16/pic18fregs.h: added new devices,
1412           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1413         * device/include/pic16/signal.h: resolved name clashes
1414           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1415           to also allow testing for interrupt enable bits, added
1416           comments on how to use the macros
1417         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1418         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1419           register definitions for the devices
1420         * device/lib/pic16/pics.all: added new devices
1421         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1422           allocated memory
1423         * device/lib/pic16/libc/stdlib/memfree: do not count
1424           the block header as free memory
1425         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1426           simplified and added missing end-of-blocklist-marker
1427           (reported by Peter Onion, fixes #1252814)
1428         * (_mergeHeapBlock): fixed loop condition
1429         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1430           len==0, restructured code
1431         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1432           up a bit, reduced bitfield accesses, prevent endless loops
1433           in case of heap corruption
1434         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1435           "unreferenced arguments/must return a value" warnings
1436         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1437           replaced BAUDREG with SPBRG
1438         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1439           device/lib/pic16/debug/gstack/gstack.c: replaced
1440           _naked, _asm, _endasm with __naked, __asm, __endasm
1441
1442 2005-08-05 Raphael Neider <rneider AT web.de>
1443
1444         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1445           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1446
1447 2005-08-05 Borut Razem <borut.razem AT siol.net>
1448
1449         * device/lib/Makefile.in: added missing ';'
1450         * configure: removed ^M characters
1451
1452 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1453
1454         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1455           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1456           License
1457
1458 2005-08-04 Borut Razem <borut.razem AT siol.net>
1459
1460         * configure.in: pic16 libraries build 2nd try - enable running
1461           configure in device/lib/pic16
1462         * configure: regenerated from configure.in
1463         * device/lib/Makefile.in: create $(PORT)/bin directory
1464
1465 2005-08-03 Raphael Neider <rneider AT web.de>
1466
1467         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1468           to get/set values via pointers
1469         * (genUnpackBits,genPackBits): changed detection of
1470           ptr->bitfield vs. sym.bitfield, fixed access via generic
1471           pointers, removed dead (wrong) code for multibyte bitfields
1472         * (genNearPointerGet, genGenPointerGet): removed useless code,
1473           fixed bitfield detection, fixes #1250594
1474         * (genNearPointerSet): removed useless code
1475         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1476           and introduced macro pic16_emitpcode that conditionally emits
1477           the origin of the following pCode (useful for debugging SDCC)
1478         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1479         * (createDefmap): fixed handling of LFSR for --optimize-df
1480
1481 2005-08-02 Borut Razem <borut.razem AT siol.net>
1482
1483         * device/lib/Makefile.in: pic16 libraries build enabled since
1484           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1485
1486 2005-08-02 Raphael Neider <rneider AT web.de>
1487
1488         * src/pic16/gen.c (genPackBits): removed deprecated warning
1489         * (genGenPointerSet): fixed bitfield detection
1490
1491 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1492
1493         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1494
1495 2005-07-31 Raphael Neider <rneider AT web.de>
1496
1497         * device/lib/pic16/libdev/pic18f458.c,
1498           device/include/pic16/pic18f458.h: added missing T0CONbits
1499
1500 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1501
1502         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1503
1504 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1505
1506         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1507
1508 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1509
1510         * device/include/mcs51/at89c51ed2.h: added.
1511
1512 2005-07-23 Raphael Neider <rneider AT web.de>
1513
1514         * src/pic/gen.h: added emitpcode macro for debugging
1515         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1516           and replace by macro adding debug information on demand
1517         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1518         * (gencjne): tried to fix; replaced with correct (slower) code
1519         * (gen{Unp,P}ackBits): fixed single bit access
1520         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1521         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1522           previous instruction
1523         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1524           register has to be handled with care (forbidding movement
1525           of assignments/uses, removing assignments completely, ...)
1526         * (pCodeOptime2pCodes): make use of regIsSpecial
1527         * added lots of debugging output (commented out)
1528         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1529           from being reused as result UNLESS it is known to work
1530
1531 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1532
1533         * support/Util/dbuf.h: include <stddef.h> for size_t
1534         * .version: changed to version 2.5.2
1535
1536 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1537
1538         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1539
1540 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1541
1542         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1543           (genModOneByte): removed needless psha/pula
1544
1545 2005-07-22 Raphael Neider <rneider AT web.de>
1546
1547         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1548           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1549         * src/pic/gen.c (resolveIfx): do not "invent" labels
1550         * (genSkipc): changed to positive logic
1551         * (genSkipCond): removed as no longer needed
1552         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1553           backport from PIC16
1554         * (genLeftShift): check operands are in different registers
1555         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1556           INCF does not update CARRY...
1557         * src/pic/main.c: fixed _linkCmd
1558         * src/pic/pcode.c (unlinkpCode): added inactive code
1559         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1560           alive (do not assign result and operand overlapping registers)
1561
1562 2005-07-22 Raphael Neider <rneider AT web.de>
1563
1564         * src/pic/device.c (dump_sfr): replaced register declaration with
1565           call to emitSymbolToFile() to avoid duplicate symbols
1566         * (assignRelocatableRegisters): do not declare external symbols
1567         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1568           right (take size of type, not etype)
1569         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1570         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1571         * (packRegsForAccUse): disabled assignment of WREG as
1572           the result reg to prevent occurence of just fixed #1235003,
1573           fixes #1242954
1574         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1575           symbols (avoids duplicate symbols in .asm file)
1576         * (pic14emitRegularMap): use emitSymbolToFile()
1577         * src/pic/gen.c (aopOp): fixed spillLocation handling
1578         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1579         * (genDataPointerSet): removed unneccessary variables/output
1580
1581 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1582
1583         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1584         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1585
1586 2005-07-21 Raphael Neider <rneider AT web.de>
1587
1588         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1589           architecture cannot handle them efficiently, fixes bug #1235003
1590         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1591           check for empty sets before using them (fixes bug #1232190)
1592
1593 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1594
1595         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1596           (lnksect2): generate warnings for memory overlap
1597         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1598           constseg to set the name of these segments so you can instruct the linker
1599           to place them in banks
1600         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1601         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1602           added code_seg and const_seg to options
1603         * src/SDCCglue.c (emitMaps): use options.const_seg,
1604           (createInterruptVect): put interrupt vectors in segment HOME,
1605           (glue): put HOME before static segment and put the main glue in HOME,
1606           (glue): use options.code_seg
1607         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1608         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1609           these segments so you can instruct the linker to place them in banks
1610           (linkEdit): use code_loc for HOME segment which should be the first
1611           segment in code memory now
1612         * src/SDCCmem.c: fixed more stuff like bug 1238386
1613         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1614           (changePointer): don't change function pointers to code pointers for
1615           banked functions,
1616           (compareType): added exceptional check for banked function pointers
1617         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1618         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1619           after static in code memory
1620         * src/mcs51/gen.c: added aopLiteralLong prototype,
1621           (aopForSym): use getSize for functions,
1622           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1623           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1624           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1625           the segment,
1626           (genPcall): use call for literal function pointers and generate banked
1627           calls over the one trampoline so there's only one place for the user to
1628           modify according to his/hers hardware,
1629           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1630           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1631         * src/mcs51/main.c: added keyword banked,
1632           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1633         * support/Util/SDCCerr.c,
1634         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1635           needed for passing the bank and address to the trampoline
1636         * device/lib/mcs51/crtbank.asm: added for bankswitching
1637         * device/lib/mcs51/Makefile: added crtbank
1638
1639 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1640
1641         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1642           for fields at offset 0 of a struct or union as reported
1643           on 2005-07-07 in the developer mailing list.
1644
1645 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1646
1647         * src/SDCCmem.c: fixed bug 1238386
1648
1649 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1650
1651         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1652           (patch #1144962), added peephole 300, enabled 259.x
1653         * doc/sdccman.lyx: removed screenshot and provided link instead
1654
1655 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1656
1657         * doc/sdccman.lyx: added section about debugging with ddd
1658         * doc/figures/ddd_example.eps: screenshot of debugging session
1659
1660 2005-07-04 Raphael Neider <rneider AT web.de>
1661
1662         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1663           like CODE pointers, fixes #1115683
1664         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1665           call, fixes bugs #1232211, #1228110,
1666           fixed wrong casts to pCodeFlow from pCodeInstructions
1667
1668 2005-07-04 Raphael Neider <rneider AT web.de>
1669
1670         * src/pic/gen.c (popGet): changed assert to allow for
1671           bit operands
1672         * (popGetAddr): changed signature to provide
1673           an additional index, patched all call sites
1674         * (genCmpEq): handle literal-like operands correctly
1675         * (genAddrOf): added sanity checks on __code/__data pointers
1676         * (genAssign): added handling of symbols from __code section
1677         * (gencjne): do not generate code for comparisons whose result
1678           is neither stored nor used, fixes bug #1171114
1679         * (AccLsh, AccRsh): operate on operand instead of WREG
1680         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1681           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1682           by known count
1683         * rewrote complete shift-by-literal logic, commented unused
1684           functions out
1685         * (genConstPointerGet): get multiple bytes (if result size > 1),
1686           fixed handling of non-immediate addresses
1687         * (genPointerGet): handle CODE pointers like CONST pointers
1688         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1689         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1690           operand is to be treated as a literal or not
1691         * (mov2w,genPcall,genCmpEq),
1692           src/pic/genarith.c: use aop_isLitLike() to decide between
1693           literal/register contents
1694         * (addSign): added missing offset
1695         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1696           only emit comment in debug-mode,
1697           use {aop,op}_isLitLike throughout the file
1698         * src/pic/glue.c: fix initializers for pointers (work in progress)
1699         * src/pic/pcode.c (get_op): honor index on _const symbols
1700         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1701         * (dumppBlock): added pCode size estimation
1702         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1703           check for IS_SYMOP before OP_SYMBOL'ing
1704         * fixed indentation, compacted switch-statements
1705         * (allocReg): find free register and allocate it instead of
1706           allocating new registers all the time
1707         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1708           registers as its operands (necessary only for multibyte GETs)
1709
1710 2005-07-01 Raphael Neider <rneider AT web.de>
1711
1712         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1713           debugging .asm-output macros FENTRY + FEXIT
1714         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1715           way... I wonder...
1716         * (emitpComment): NEW, printf to pCode
1717         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1718           offset handling
1719         * (popGetAddr): NEW, variant of popGet to access an immediates
1720           high(er) bytes instead of the n'th byte of memory they reference,
1721           replaced popGet with popGetAddr where neccessary
1722         * (genDataPointerGet): reactivated and fixed implementation
1723         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1724           accesses
1725         * (genDataPointerSet): fixed multibyte assignments
1726         * (genpic14Code): fixed --i-code-in-asm handling
1727         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1728         * (genPlus): fixed index-out-of-bounds error
1729         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1730         * src/pic/ralloc.c: added debugging output macro FENTRY2
1731         * (spillThis): fixed indentation, enbraced for-body for clarity
1732         * (rematStr): commented out as now unused
1733         * (regTypeNum): commented out special spill case (overwrites
1734           arbitrary values)
1735         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1736
1737 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1738
1739         * doc/sdccman.lyx: documented sfr16/sfr32,
1740           added example for using storage class with function pointers
1741         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1742
1743 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1744
1745         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1746         * device/lib/_itoa.c,
1747         * device/lib/_ltoa.c: optimized codesize
1748         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1749           but don't know how to suppress the double warning.
1750         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1751         * support/Util/SDCCerr.c,
1752         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1753
1754 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1755
1756         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1757           fixed old K&R prototypes
1758         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1759         * device/lib/_gptrget.c,
1760         * device/lib/_gptrgetc.c,
1761         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1762           also new versions for small generic pointers and banked generic pointers
1763         * src/port.h: added const_name
1764         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1765         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1766         * src/SDCCcse.c (findPrevIc): check all associative operators
1767         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1768         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1769         * src/SDCCmem.c: updated comments,
1770           set far-space to 0 for pdata, results in optimized code
1771         * src/SDCCmem.h: added macro CONST_NAME
1772         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1773           moving the info into the highest bits, see also gptrget/gptrput
1774         * src/src.dsp: added sdcc.ico to project files
1775         * src/avr/gen.c (genCast): fixed bug 0x%d
1776         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1777         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1778           relation between ptr_type and DCL_TYPE,
1779           (genCast): fixed bug 0x%d
1780         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1781           (CODE)" for const_name
1782         * src/hc08/gen.c (genCast): fixed bug 0x%d
1783         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1784           (hc08_port): added "CONST (CODE)" for const_name
1785         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1786           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1787           between ptr_type and DCL_TYPE,
1788           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1789           operand* and took AOP() inside function so sfr-ness can be checked,
1790           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1791           new prototype,
1792           (genFunction, genEndFunction): optimized stack setup,
1793           (genMinus): optimized for literals with ending zeroes (in bytes),
1794           (genCast): fixed bug 0x%d
1795         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1796           (mcs51_port): added "CONST (CODE)" for const_name
1797         * src/mcs51/peeph.def: made rule 226 more generic
1798         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1799         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1800         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1801         * src/z80/main.c (z80_port): added NULL for const_name,
1802           (gbz80_port): added NULL for const_name
1803         * support/regression/tests/bug663539.c,
1804         * support/regression/tests/sfr16.c: new tests
1805
1806 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1807
1808         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1809
1810 2005-06-24 Raphael Neider <rneider AT web.de>
1811
1812         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1813           corrected typos...
1814         * device/include/pic16/signal.h: added USBIF
1815           and SIG_USB
1816
1817 2005-06-24 Raphael Neider <rneider AT web.de>
1818
1819         * device/lib/pic16/libdev/pic18f2455.c,
1820           device/include/pic16/pic18f2455.h: NEW
1821         * device/include/pic16/pic18fregs.h,
1822           device/lib/pic16/pics.all,
1823           src/pic16/device.c: added 18f2455
1824         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1825           device/include/pic16/{pic18f[68][567].h,usart.h}:
1826           replaced MULTIPLE_USARTS define with more relaible
1827           compatibility sfrs (for USART access)
1828
1829 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1830
1831         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1832           and the output asm file line is printed on two lines.
1833
1834 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1835
1836         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1837           BGT, BLE, BHI, and BLS instructions
1838         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1839           genCmpEq): removed
1840         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1841           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1842           fixes bug #1216342
1843         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1844
1845 2005-06-15 Raphael Neider <rneider AT web.de>
1846
1847         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1848         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1849         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1850           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1851           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1852
1853 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1854
1855         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1856           Marcel Telka in bug #1215704
1857
1858 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1859
1860         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1861           located in shared memory bank.
1862
1863 2005-05-31 Raphael Neider <rneider AT web.de>
1864
1865         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1866           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1867           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1868
1869 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1870
1871         * device/lib/_strncpy.c: fixed the fix
1872
1873 2005-05-26 Raphael Neider <rneider AT web.de>
1874
1875         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1876           initializers with \0, bug #1208187
1877         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1878           intializers with \0, bug #1208187
1879
1880 2005-05-26 Raphael Neider <rneider AT web.de>
1881
1882         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1883           initializers with \0, bug #1208187
1884         * src/pic16/main.c (_process_pragma): added sanity checks
1885           for stack position and size, emit warnings when appropriate
1886
1887 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1888
1889         * device/lib/_strncpy.c: fixed not filling with \0
1890
1891 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1892
1893         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1894           createFunction),
1895         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1896           compound_statement),
1897         * src/SDCCsymt.h,
1898         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1899
1900 2005-05-24 Raphael Neider <rneider AT web.de>
1901
1902         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1903
1904 2005-05-24 Raphael Neider <rneider AT web.de>
1905
1906         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1907           TRISE definitions, closes bug #1162453
1908
1909 2005-05-22 Raphael Neider <rneider AT web.de>
1910
1911         * src/pic16/main.c (_process_pragma): check for missing
1912           arguments to pragmas code and udata
1913         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1914           consistency fixes to match other headers (thanks to Jim Paris)
1915         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1916
1917 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1918
1919         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1920
1921 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1922
1923         * support/regression/tests/bug1198642.c: new test
1924         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1925         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1926         * support/scripts/resource.h,
1927         * support/scripts/resource.rc,
1928         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1929         * support/scripts/sdcc.ico: added 32x32 icon
1930
1931 2005-05-18 Raphael Neider <rneider AT web.de>
1932
1933         * device/lib/pic16/libdev/pic18f*.c,
1934         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1935           keywords to "__sfr" and "__at (X)"
1936         * device/include/pic16/pic18fregs.h: added pic18f4520
1937         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1938           #1203088 (MPLAB compatibility)
1939
1940 2005-05-17 Raphael Neider <rneider AT web.de>
1941
1942         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1943         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1944         * device/lib/pic16/pics.all: added new devices
1945         * src/pic16/device.c: added support for pic18f4520
1946
1947 2005-05-16 Raphael Neider <rneider AT web.de>
1948         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1949         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1950         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1951           convenience function for bit access
1952
1953 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1954
1955         * device/lib/printf_large.c: fixed bug 1193299
1956         * support/regression/tests/bug1057979.c: added test %3.3s
1957
1958 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1959
1960         * device/include/mcs51/8051.h,
1961         * device/include/mcs51/8052.h: made parseable with lint
1962         * device/include/mcs51/lint.h: added include file for (sp)lint
1963         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1964         * doc/cdbfileformat.lyx,
1965         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1966
1967 2005-05-14 Raphael Neider <rneider AT web.de>
1968
1969         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1970         * device/lib/pic16/libc/stdlib/itoa.c (new)
1971         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1972         * device/lib/pic16/libio/Makefile: exclude subdir according to
1973           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1974         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1975         * src/pic16/gen.c (genFunction): prevent annoying warning
1976         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1977           nameclashes on BeOS
1978         * support/cpp2/cppmain.c (cpp_output_string): new
1979         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1980           fixes bug 1116802
1981
1982 2005-05-13 Borut Razem <borut.razem AT siol.net>
1983
1984         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1985
1986 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1987
1988         * .version: changed to version 2.5.1; back to bleeding edge development
1989
1990 2005-05-11 Borut Razem <borut.razem AT siol.net>
1991
1992         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1993           generate PDF version 1.3 documents
1994
1995 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1996
1997         * .version: changed to version 2.5.0
1998
1999 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2000
2001         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2002
2003 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2004
2005         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2006         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2007         well as many smaller updates.
2008         * .version: changed to version 2.5.0-pre1
2009
2010 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2011
2012         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2013
2014 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2015
2016         * support/regression/tests/bug1185672.c: added
2017         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2018           bug 1185672
2019         * src/mcs51/gen.c (genCall): added comments, made it look safer
2020         * src/mcs51/gen.c (genEndFunction): simplified
2021
2022 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2023
2024         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2025
2026 2005-04-14 Borut Razem <borut.razem AT siol.net>
2027
2028         * fixed bug 1045046 - SIGSEGV with really simple code?:
2029           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2030           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2031
2032 2005-04-14 Borut Razem <borut.razem AT siol.net>
2033
2034         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2035           src/pic16/device.h: temporarily disabled experimental #inline pragma
2036           for 2.5.0 release
2037
2038 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2039
2040         * device/include/z80/stdio.h,
2041         * device/include/z80/string.h: removed these highly incomplete files so
2042           SDCC can use the default ones in device/include/
2043
2044 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2045
2046         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2047         gcc warning.
2048         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2049         fix sdcpp warnings.
2050
2051 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2052
2053         * device/include/malloc.h: removed redundant __reentrant prototypes
2054         * device/lib/_mullong.c: added working xstack variant in asm (C version
2055           doesn't pass regression tests)
2056         * device/lib/bpx.c: used __data and made bpx char for mcs51
2057         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2058           (createFunction): fixed bug with xstackPtr
2059         * src/SDCCcse.c: corrected comments
2060         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2061           (killDeadCode, eBBlockFromiCode): removed unused code
2062         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2063           corrected comments
2064         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2065           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2066           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2067           (genModOneByte): fixed warning in MSVC
2068         * src/mcs51/main.c (): added comments
2069         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2070
2071 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2072
2073         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2074
2075 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2076
2077         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2078
2079 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2080
2081         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2082         characters arrays of larger size than the declared one.
2083
2084 2005-04-10 Borut Razem <borut.razem AT siol.net>
2085
2086         * src/pic/gen.c (genInline),
2087           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2088           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2089           (findNextInstruction), (findPrevInstruction),
2090           (findInstructionUsingLabel),
2091           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2092         * src/pic/pcode.c (findLabel): added missing '\n'
2093         * src/src.dsp: added SDCCdwarf2.c to the project
2094
2095 2005-04-09 Borut Razem <borut.razem AT siol.net>
2096
2097         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2098
2099 2005-04-08 Raphael Neider <rneider AT web.de>
2100
2101         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2102           into the chain after a given one) and mergeDefmapSymbols (combine
2103           defmap entries for each symbol per pcode)
2104         * (createDefmap): have defmap entries merged in the end
2105         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2106           a symbol before replacing one access type's symbol, merge symbols in
2107           the end (replacement symbol might already have an entry)
2108         * (assignValnums): keep reference to written WREG intact
2109
2110 2005-04-08 Raphael Neider <rneider AT web.de>
2111
2112         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2113           Alpha)
2114
2115 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2116
2117         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2118         bytes
2119
2120 2005-04-07 Raphael Neider <rneider AT web.de>
2121
2122         * device/include/pic16/usart.h: added compatibility defines for
2123           devices with more than one USART
2124         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2125
2126 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2127
2128         * device/lib/Makefile.in: updated for port specific include
2129
2130 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2131
2132         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2133
2134 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2135
2136         * device/include/8051.h,
2137         * device/include/8052.h,
2138         * device/include/at89S8252.h,
2139         * device/include/at89c55.h,
2140         * device/include/at89x051.h,
2141         * device/include/at89x51.h,
2142         * device/include/at89x52.h,
2143         * device/include/mcs51reg.h,
2144         * device/include/reg51.h,
2145         * device/include/reg764.h,
2146         * device/include/regc515c.h,
2147         * device/include/sab80515.h: (re)moved these 12 files
2148         * device/include/mcs51/8051.h,
2149         * device/include/mcs51/8052.h,
2150         * device/include/mcs51/at89S8252.h,
2151         * device/include/mcs51/at89c55.h,
2152         * device/include/mcs51/at89x051.h,
2153         * device/include/mcs51/at89x51.h,
2154         * device/include/mcs51/at89x52.h,
2155         * device/include/mcs51/mcs51reg.h,
2156         * device/include/mcs51/reg51.h,
2157         * device/include/mcs51/reg764.h,
2158         * device/include/mcs51/regc515c.h,
2159         * device/include/mcs51/sab80515.h: and added them here
2160
2161 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2162
2163         * device/include/stdarg.h: changed SDCC specific keywords to double
2164           underlined form.
2165         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2166           mcs51 and ds390.
2167         * device/include/hc08/mc68hc908gp32.h,
2168         * device/include/hc08/mc68hc908jb8.h,
2169         * device/include/hc08/mc68hc908jkjl.h,
2170         * device/include/hc08/mc68hc908qy.h: fixed comments
2171         * device/include/mcs51/README: updated
2172         * device/include/mcs51/c8051f120.h: added PINRSF
2173         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2174         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2175           amidst code. Also inline is not supported.
2176
2177 2005-04-06 Raphael Neider <rneider AT web.de>
2178
2179         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2180         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2181           callers stack/frame pointers
2182
2183 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2184
2185         * device/include/pic16/usart.h: added, missing in previous commit,
2186         * device/include/pic16/adc.h: fixed typo,
2187         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2188         commit,
2189         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2190         <p18fxxx.inc>
2191         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2192         uninitialized because a bug appears with gplink
2193         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2194         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2195         complains for unrecognised option
2196
2197 2005-04-05 Raphael Neider <rneider AT web.de>
2198
2199         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2200           structs as well (using memcpy)
2201         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2202           on ISRs (GOTO has no label)
2203         * src/pic16/device.h: added OF_OPTIMIZE_DF
2204         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2205           new data flow analysis/optimization
2206         * src/pic16/pcode.c: added (prototypes for and implementation of)
2207           dataflow analysis functions, fixed pCodeInstructions' inCond and
2208           outCond values, made RCALL a branch instruction
2209         * (pic16_unlinkpCode): keep C line if possible
2210         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2211           C line moved if possible
2212         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2213         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2214           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2215         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2216           new flow)
2217         * (pic16_getJumptabpCode): NEW, needed in...
2218         * (LinkFlow): fixed handling of jumptables, calls and conditional
2219           branches
2220         * (pic16_InsertCommentAfter): NEW
2221         * (pic16_pCodeReplace): made verbose and flow preserving
2222         * (AnalyzeFlow): added call to data flow analysis
2223         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2224         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2225         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2226
2227 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2228
2229         * src/SDCCast.c (decorateType): fixed bug #1105626
2230
2231 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2232
2233         * device/include/asm/pic16/features.h,
2234         * pic18f*.h headers,
2235         * device/include/pic16/adc.h,
2236         * device/include/pic16/delay.h,
2237         * device/include/pic16/i2c.h,
2238         * device/include/pic16/malloc.h,
2239         * device/include/pic16/stdio.h,
2240         * device/include/pic16/stdlib.h,
2241         * device/include/pic16/string.h,
2242         * device/lib/pic16/libc/stdio/printf_tiny.c,
2243         * device/lib/pic16/libc/stdio/printf_small.c,
2244         * device/lib/pic16/libc/stdio/strmgpsim.c,
2245         * device/lib/pic16/libc/stdio/strmmssp.c,
2246         * device/lib/pic16/libc/stdio/strmusart.c,
2247         * device/lib/pic16/libc/stdio/vfprintf.c,
2248         * device/lib/pic16/libc/stdlib/ltoa.c,
2249         * device/lib/pic16/libc/stdlib/putchar.c,
2250         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2251         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2252         * device/lib/pic16/libc/stdlib/memchrram.c,
2253         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2254         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2255         * device/lib/pic16/libio/adc/adcbusy.c,
2256         * device/lib/pic16/libio/adc/adcread.c,
2257         * device/lib/pic16/libio/adc/adcsetch.c,
2258         * device/lib/pic16/libio/usart/ubaud.c,
2259         * device/lib/pic16/libio/usart/ubusy.c,
2260         * device/lib/pic16/libio/usart/udrdy.c,
2261         * device/lib/pic16/libio/usart/uopen.c,
2262         * device/lib/pic16/libio/usart/uputc.c,
2263         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2264         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2265         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2266         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2267         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2268         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2269         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2270         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2271         specific keywords to double underlined form,
2272         * device/lib/pic16/libc/Makefile.rules,
2273         * device/lib/pic16/libsdcc/Makefile.rules,
2274         * device/lib/pic16/libm/Makefile,
2275         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2276         to compile with C standard set in Makefile.common
2277         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2278         rand.c and crc.c in compilation process,
2279         * device/lib/pic16/libsdcc/int/divuint.c,
2280         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2281         `c' from signed to unsigned,
2282         * device/lib/pic16/startup/crt0.c,
2283         * device/lib/pic16/startup/crt0i.c,
2284         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2285         keywords to double underlined form, bug fixes in _do_cinit function
2286         which prevented the correct initialization of the .idata segment,
2287         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2288         core to enter a infinite loop
2289         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2290
2291 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2292
2293         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2294
2295 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2296
2297         * device/include/Makefile.in: add support for hc08 subdirectory
2298         * device/include/hc08/: new subdirectory
2299         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2300         Lucas Loizaga, thanks!
2301         * device/include/hc08/mc68hc908qy.h,
2302         * device/include/hc08/mc68hc908gp32.h,
2303         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2304         their own directory. Changed internal macro names to use the compiler
2305         reserved namespace. Changed SDCC specific keywords to double
2306         underlined form.
2307         * device/include/math.h,
2308         * device/include/malloc.h,
2309         * device/include/stdarg.h,
2310         * device/include/stdbool.h
2311         * device/include/string.h,
2312         * device/include/tinibios.h,
2313         * device/include/ds400rom.h,
2314         * device/include/8051.h,
2315         * device/include/8052.h,
2316         * device/include/80c51xa.h,
2317         * device/include/at89c55.h,
2318         * device/include/at89S8252.h,
2319         * device/include/at89x51.h,
2320         * device/include/at89x52.h,
2321         * device/include/ds80c390.h,
2322         * device/include/reg764.h,
2323         * device/include/regc515c.h,
2324         * device/include/sab80515.h,
2325         * device/include/mcs51/c8051f000.h,
2326         * device/include/mcs51/c8051f018.h,
2327         * device/include/mcs51/c8051f020.h,
2328         * device/include/mcs51/c8051f040.h,
2329         * device/include/mcs51/c8051f060.h,
2330         * device/include/mcs51/c8051f120.h,
2331         * device/include/mcs51/c8051f300.h,
2332         * device/include/mcs51/c8051f310.h,
2333         * device/include/mcs51/c8051f320.h,
2334         * device/include/mcs51/c8051f330.h,
2335         * device/include/mcs51/c8051f350.h,
2336         * device/include/z180.h: Changed SDCC specific keywords to double
2337         underlined form.
2338
2339 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2340
2341         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2342         18F4455,
2343         * (pic16_assignConfigWordValue): disable testing of configuration
2344         register value with config mask,
2345         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2346         function with port->fun_prefix,
2347         * (genFunction): when generating a naked interrupt function never
2348         create an absolute segment placed in interrupt vector address, place
2349         the actual interrupt function at IVA instead, when an interrupt
2350         function is generated with unspecified interrupt then do not create
2351         the absolute section,
2352         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2353         code for generating a call to generic pointer get/put function with
2354         a call to function pic16_callGenericPointer(),
2355         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2356         the call to the generic pointer get/put functions with prefixing the
2357         function name with port->fun_prefix,
2358         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2359         * src/pic16/main.c (_process_pragma): prefix function with
2360         port->fun_prefix,
2361         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2362         calling assembler, old 18Fxxxx macro is deprecated,
2363         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2364         PC_ASMDIR in while condition,
2365         * (findInstruction): add PC_ASMDIR in while condition,
2366         * (buildCallTree): prefix main with port->fun_prefix,
2367         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2368         identifier for variable with banked access in instructions BTFSS,
2369         BTFSC, BCF, BSF, BTG
2370         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2371         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2372         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2373         perform optimization when enviroment variable NO_REG_OPT is set,
2374         * (insideLRBlock): NEW, return 1 if register is inside an
2375         INF_LOCALREGS block,
2376         * (RemoveRegFromLRBlock): remove a register that is completely
2377         eliminated by register optimization, but it is still left in local
2378         register store/restore in/from stack block,
2379         * (Remove2pcodes): after removing register, check to see if it
2380         should be removed from local register store/restore in/from stack
2381         block,
2382         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2383         DUMMY_READ_VOLATILE,
2384
2385         * device/include/pic16/adc.h: minor prototype modifications and
2386         update,
2387         * device/include/pic16/malloc.h: added GPL notice various
2388         modifications,
2389         * device/include/pic16/stdint.h: NEW, standard header for ints
2390         * device/include/pic16/delay.h: NEW, header for delay functions,
2391         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2392         delay1mtcy,
2393         * device/include/pic16/signal.h: NEW, header providing helper macros
2394         for implementing signal handlers,
2395         * device/include/pic16/stdio.h: added prototypes for functions,
2396         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2397         prototypes for stdin and stdout, added macro PUTCHAR to
2398         automatically implement putchar function prototype,
2399         * device/include/pic16/usart.h: modified and updated USART library,
2400         * device/lib/pic16/libio/adc/,
2401         * device/lib/pic16/libio/i2c: some modifications to improve library
2402         performance,
2403         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2404         family of functions,
2405         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2406         family of functions and other sources,
2407         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2408         of the PIC18Fxx[28] devices,
2409         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2410         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2411         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2412         _do_cinit function, because the previous failed when local variables
2413         where not placed in the same memory bank,
2414         * device/lib/pic16/libsdcc/char/: various modifications to improve
2415         library performance,
2416         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2417         information on the new functions of the c library and more...
2418
2419 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2420
2421         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2422
2423 2005-03-26 Raphael Neider <rneider AT web.de>
2424
2425         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2426           if condition == CARRY)
2427         * (genCmp): adapted to new genSkipc semantics
2428         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2429           on rIfx (genCmp was broken)
2430
2431 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2432
2433         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2434         * src/z80/main.c (_keywords[]),
2435         * src/SDCCglobal.h (struct options),
2436         * src/SDCC.y,
2437         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2438         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2439         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2440         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2441         always available in leading double underscore form. The C99 support is
2442         mostly missing, but it's a start.
2443         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2444         reserved identifier "__data".
2445
2446 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2447
2448         * src/mcs51/peeph.def: fixed bug 1170013
2449
2450 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2451
2452         * device/include/mcs51reg.h: fixed bug 842007
2453
2454 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2455
2456         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2457         last time.
2458
2459 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2460
2461         * src/port.h (struct PORT),
2462         * src/avr/ralloc.c (avr_assignRegisters),
2463         * src/avr/main.c,
2464         * src/ds390/ralloc.c (ds390_assignRegisters),
2465         * src/ds390/main.c,
2466         * src/hc08/ralloc.c (hc08_assignRegisters),
2467         * src/hc08/main.c,
2468         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2469         * src/mcs51/main.c,
2470         * src/pic/ralloc.c (pic14_assignRegisters),
2471         * src/pic/main.c,
2472         * src/pic16/ralloc.c (pic16_assignRegisters),
2473         * src/pic16/main.c,
2474         * src/xa51/ralloc.c (xa51_assignRegisters),
2475         * src/xa51/main.c,
2476         * src/z80/ralloc.c (z80_assignRegisters),
2477         * src/z80/ralloc.h,
2478         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2479         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2480         * src/SDCCcse.h,
2481         * src/SDCCdflow.c (computeDataFlow),
2482         * src/SDCCdflow.h,
2483         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2484         * src/SDCCloop.h,
2485         * src/SDCCcflow.c (*),
2486         * src/SDCCcflow.h,
2487         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2488         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2489         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2490         immedDom() returning wrong block; probably fixes bug #1160833)
2491
2492 2005-03-20 Borut Razem <borut.razem AT siol.net>
2493
2494         * support/scripts/inc2h.pl: WIN32 port
2495
2496 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2497
2498         * device/lib/makefile.in: added abs.c and labs.c
2499
2500 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2501
2502         * device/include/stdint.h: added
2503         * device/lib/abs.c: added
2504         * device/lib/labs.c: added
2505         * device/include/stdlib.h: added abs() and labs() prototypes
2506         * device/lib/libsdcc.lib: added abs and labs
2507         * device/include/float.h,
2508         * device/lib/_fsmul.c,
2509         * device/lib/printf_fast.c,
2510         * device/lib/printf_tiny.c: updated comments
2511
2512 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2513
2514         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2515         bug #1164313
2516
2517 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2518
2519         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2520         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2521
2522 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2523
2524         * device/lib/printf_large.c: removed inline assembly for portability and
2525           readability. Use printf_fast if speed or size are more important.
2526         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2527         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2528
2529 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2530
2531         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2532         prevent compiler warning
2533
2534 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2535
2536         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2537         moved to level 0 and declared as static. Also they are explicit
2538         placed in access bank. This was necessery because some times they
2539         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2540         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2541         optimizations. Currently only compare to unsigned char is implemented,
2542         * src/pic16/gen.c: added fReturnIdx array,
2543         * (struct resolvedIfx) is moved to gen.h and made public,
2544         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2545         * (aopForSym): added an optimization to directly store in stack of
2546         the operand of a SEND iCode,
2547         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2548         but as registers instead (AOP_REG) using the fReturnIdx array,
2549         * (pic16_freeAsmop): remove the freed register from the
2550         _G.sregsAlloc field,
2551         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2552         a compare of 'WREG',
2553         * (pic16_popGetTempRegCond): changed function prototype, now
2554         function takes also a bitVector argument v which holds the current
2555         set of registers that are allocated for stack access by aopForSym,
2556         registers allocated in aopForSym for accessing stack symbols are not
2557         any more part of the functions usedRegs field,
2558         * (genCall): some times aopOp is called for a stack variable to be
2559         send, aopForSym might perform the push, if this is true make sure
2560         that genCall doesn't push the variable twice by testing _G.resDirect,
2561         * (genFunction): changed testing for unspecified interrupt number
2562         from 256 to INTNO_UNSPEC,
2563         * modified selection scheme of frame pointer generation. Previously
2564         if function did use local registers a frame pointer was generated,
2565         now a frame pointer is generated only if function has arguments
2566         (that need PLUSW2 register access), or has stack arguments, or the
2567         compiler is not instructed to omit the frame pointer,
2568         * (genEndFunction): before restoring local registers that were saved
2569         in the function preamble, also restore the registers that *might*
2570         have been allocated for stack access,
2571         * (genRet): removed some old comments,
2572         * (genCmp, the active (RN's) version): added a call to the
2573         pic16_genCmp_special function to perform the compare with a more
2574         robust and optimized way,
2575         * (genInline): a feature has been added in inline code generation,
2576         which allows a wildcard variable substitution when writing inline
2577         assembly. Code is incomplete and experimental therefore undocumented,
2578         * (genCast): changed order of aopOp for result and right to allow
2579         aopForSym to directly load the result if possible,
2580         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2581         perform an optimized compare on some selected special occasions,
2582         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2583         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2584         generate an IVT any more,
2585         * src/pic16/main.c (pic16_optionsTable): added command line option
2586         --optimize-cmp,
2587         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2588         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2589         macros,
2590         * src/pic16/NOTES: Raphael Neider added in list of active developers
2591         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2592         jumptable_end to prevent bug #,
2593         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2594         inCond and outCond fields,
2595         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2596         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2597         turn off register spilling,
2598         * (packRegsForOneUse): synced with other ports' versions although it
2599         is not used currently,
2600         * (pic16_packRegisters): added an optimization while reading
2601         structure bitfields, some registers may be saved (malloc code is
2602         decreased by 80 bytes)
2603
2604 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2605
2606         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2607         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2608         this can be optimized more?
2609
2610 2005-03-10 Raphael Neider <rneider AT web.de>
2611
2612         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2613           genNearPointerGet): (hopefully) fixed access to bitfields via
2614           pointers (p->bitN = x; and x = p->bitN; failed)
2615
2616 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2617
2618         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2619
2620 2005-03-09 Raphael Neider <rneider AT web.de>
2621
2622         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2623
2624 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2625
2626         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2627         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2628           (regTypeNum): set REG_BIT type if necessary
2629         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2630         * support/regression/tests/critical.c: check bug 1144613
2631
2632 2005-03-02 Raphael Neider <rneider AT web.de>
2633
2634         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2635
2636 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2637
2638         * src/avr/ralloc.c (serialRegAssign),
2639         * src/ds390/ralloc.c (serialRegAssign),
2640         * src/hc08/ralloc.c (serialRegAssign),
2641         * src/mcs51/ralloc.c (serialRegAssign),
2642         * src/pic/ralloc.c (serialRegAssign),
2643         * src/pic16/ralloc.c (serialRegAssign),
2644         * src/xa51/ralloc.c (serialRegAssign),
2645         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2646
2647 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2648
2649         * src/SDCCast.c (decorateType): fixed bug 1124787
2650
2651 2005-02-20 Hubert Sack <sack AT digiplan.de>
2652         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2653
2654         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2655         patch #1121755
2656
2657 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2658
2659         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2660         to keep the correct label reference count when adding/removing references
2661         to labels. A peephole file using this is appended to patch #1144962.
2662
2663 2005-02-14 Raphael Neider <rneider AT web.de>
2664
2665         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2666         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2667         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2668           retrievals of result operand's value on assignment
2669
2670 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2671
2672         * device/include/pic16/string.h: modified prototype for memccpy()
2673         to memccpy(void *, void *, char, size_t)
2674         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2675         check whether to omit frame pointer or not,
2676         * (genInline): convert all occurences of "\n" to LF in inline
2677         assembler blocks, this helps formatting the inline text,
2678         * (pic16_loadFSR0): modified prototype,
2679         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2680         removed some 8051 legacy code,
2681         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2682         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2683         before allocating temporary registers in functions,
2684
2685 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2686
2687         * support/regression/tests/bitvars.c: corrected the "fix"
2688
2689 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2690
2691         * support/regression/tests/bitvars.c,
2692         * support/regression/tests/bitwise.c,
2693         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2694
2695 2005-02-10 Raphael Neider <rneider AT web.de>
2696
2697         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2698           different size for Alpha
2699         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2700
2701 2005-02-09 Raphael Neider <rneider AT web.de>
2702
2703         * src/SDCC.lex(doPragma) : save and restore warning options as well
2704           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2705         * have #pragma less_pedantic set the errorlevel to WARNING
2706           (fixes #1117001)
2707         * (cloneOptimize) : fixed wrong malloc's size
2708         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2709           facilitate correct handling of #pragma (save|restore)
2710
2711 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2712
2713         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2714
2715 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2716
2717         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2718
2719 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2720
2721         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2722
2723 2005-02-02 Raphael Neider <rneider AT web.de>
2724
2725         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2726         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2727         * (pic16_storeForReturn): fixed to allow returning function pointers
2728         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2729         * device/include/pic16/{stddef.h,stdbool.h}: added
2730
2731 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2732
2733         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2734
2735 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2736
2737         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2738         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2739          appeared to be required
2740
2741 2005-01-31 Borut Razem <borut.razem AT siol.net>
2742
2743         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2744           include/mcs51 and include/z80 directories to the package
2745
2746 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2747
2748         * src/hc08/gen.c (genFunction): fixed bug #1112752
2749
2750 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2751
2752         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2753
2754 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2755
2756         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2757
2758 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2759
2760         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2761
2762 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2763
2764         * device/include/c8051fxxx.h: removed these 6 files
2765         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2766
2767 2005-01-26 Raphael Neider <rneider AT web.de>
2768
2769         * src/pic16/gen.c (genAssign): fixed assignment from longs
2770           in codespace (were cut to three bytes)
2771         * (genDummyRead): implemented (except for CODESPACE...),
2772           fixed bug #1108575
2773         * src/pic16/glue.c (emitStatistics): beautified
2774         * device/lib/pic16/libm/Makefile: added include path
2775
2776 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2777
2778         * src/z80/gen.c (aopPut): fixed bug #1103902
2779
2780 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2781
2782         * device/lib/expf.c: fixed bug #1095792
2783
2784 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2785
2786         * device/lib/pic16/libm: added Math library sources
2787
2788 2005-01-24 Raphael Neider <rneider AT web.de>
2789
2790         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2791           to enable upcast to pCodeOpReg2 (there is no type tag to
2792           differenciate the two and pic16_popGet2p cast into PCOR2)
2793         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2794           (sizeof(sectNames) changed to sizeof(sectName))
2795           Both patches fix segfaults under MinGW.
2796
2797 2005-01-23 Raphael Neider <rneider AT web.de>
2798
2799         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2800           Safe_[mc]?alloc()'ed variables
2801         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2802           of (byte sized) temporaries (assign them to WREG for now)
2803         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2804           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2805           this might fix SIGSEGVs on MinGW...
2806         * src/SDCCopt.c (killDeadCode): restored original behaviour
2807           (volatile operands might get thrown away though)
2808
2809 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2810
2811         * src/pic16/gen.c: fixed bug #1106975,
2812         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2813         pointer update, INTCON is saved, global interrupts are disabled and
2814         restored after updateing TOS.
2815         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2816         * added function attribute 'shadowregs' to take advantage of shadow
2817         registers,
2818         * added function attribute 'wparam' as an alternative to the wparam
2819         pragma,
2820         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2821         user declares a non-ISR function as 'shadowregs',
2822         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2823
2824 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2825
2826         * .version: bumped version number to 2.4.8
2827         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2828         pic16 port,
2829         * device/lib/pic16/libio/i2c/: I2C module support library,
2830         * device/include/pic16/i2c.h: I2C support library header,
2831         * device/lib/pic16/libc/stdio/: standard IO support sources,
2832         * (printf_small.c): printf_small() source, supports float print,
2833         * (printf_tiny.c): printf_tiny() source, does not support floats,
2834         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2835         enable global optimizations for entire library source, other
2836         Makefiles in the source tree are also modified to reflect this,
2837         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2838         function,
2839         * doc/sdccman.lyx: updated to reflect new changes,
2840         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2841         sym->onStack if-case,
2842         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2843         sbit, idata, _idata, xdata, _xdata,
2844         * added pragma library, to link an external library, (see doc),
2845         * removed command line options, --pomit-config-words, --pomit-ivt,
2846         --pleave-reset-vector,
2847         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2848         when calling assembler to reflect memory model used, also define
2849         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2850         reflect stack model used,
2851         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2852         on stack return NULL,
2853
2854 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2855
2856         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2857           of the operands is volatile. Fixes #1020220
2858
2859 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2860
2861         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2862         * (OptimizeRegUsage): make sure that there is really no other flow where
2863           the first pCode is used
2864
2865 2005-01-22 Raphael Neider <rneider AT web.de>
2866
2867         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2868           to fix #1106967 (pCode->seq are not set up correctly)
2869
2870 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2871
2872         * src/SDCCglue.c (glue): make sure code area is declared before the
2873         static initialization area.
2874
2875 2005-01-21 Raphael Neider <rneider AT web.de>
2876
2877         * device/lib/Makefile.in: fixed test for pic16 install dir
2878         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2879           optimizations
2880         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2881           added --optimize-goto compiler switch and pragma wparam documentation
2882         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2883         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2884           and PRODH closing bug #1071770 (peephole optimizer)
2885
2886 2005-01-19 Raphael Neider <rneider AT web.de>
2887
2888         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2889           cmdLine buffers (used when calling sdcpp...) are large enough
2890           (MAX_PATH=256 truncates arguments leading to system halts when
2891           used in MinGW...)
2892         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2893         * (genUminus): rewritten to for efficiency
2894         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2895           used uninitialized in some cases)
2896         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2897           copy the third byte from the int -- now assumes 0x80 (data memory)
2898         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2899           operands (genAddLit expects the iCode's operands to swapped as
2900           well), fixed leftover bytes (crashed for short left operands)
2901         * (pic16_genMinusDec): performance improvements, removed false
2902           PIC14 emitSKPNCs
2903         * (pic16_genMinus): fixed to cope with differently sized operands
2904         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2905           for --obanksel > 1
2906         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2907         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2908           new banksel optimization
2909         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2910           analysis for temporary registers (segfaults...)
2911         * src/pic16/peeph.def: added rule
2912
2913 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2914
2915         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2916         which converts a float number to its ASCII representation
2917         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2918         functions to convert the fractional and integer part of a float to ASCII,
2919         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2920         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2921         ram
2922         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2923         _STATMEM macros,
2924         * device/include/pic16/adc.h: added GPL info,
2925         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2926         a pCodeOp as tested operand,
2927         * (genNearPointerGet): optimized bit testing, does not use
2928         intermediate register for bit value, test directly instead with
2929         BTFSS, BTFSC, works only for single bits,
2930         * (genpic16Code): dump the name of the iCode in the asm,
2931         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2932         renamed to pic16_decodeOp,
2933         * (serialRegAssign): do not allocate a temporary register for iCode
2934         sequences that test a single bit for 1/0
2935
2936 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2937
2938         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2939         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2940         access stack and frame pointers. They are initially assigned to
2941         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2942         accessing SFRs. Updated all occurences of modification of stack or
2943         frame pointer in gen.c and pcode.c,
2944         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2945         assigning of a literal value to pointers,
2946         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2947         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2948         selected
2949
2950 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2951
2952         * doc/sdccman.lyx: update documentation about stack pragma, added
2953         some info for stack memory models
2954
2955 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2956
2957         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2958
2959 2005-01-08 Raphael Neider <rneider AT web.de>
2960
2961         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2962           udata sections to fix bug #1097823
2963
2964 2005-01-05 Raphael Neider <rneider AT web.de>
2965
2966         * src/pic16/gen.c (genGenericShift): added handling of differently
2967           sized left operand and result
2968
2969 2005-01-04 Raphael Neider <rneider AT web.de>
2970
2971         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2972         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2973           to hold the condition bit)
2974         * added new version of genCmp (old code available via #define)
2975         * added new version of genShiftLeft/genShiftRight in a generic
2976           way, now supports shifting by negative values
2977         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2978           shiftCount (expected by genGenericShift)
2979         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2980         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2981           dump
2982         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2983           is an invalid literal too...)
2984
2985 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2986
2987         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2988         from Raphael Neider,
2989         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2990         for 8-bit literals. This fixes some literal operands which are sign
2991         extended to 16-bits ints when instruction needs only 8-bits.
2992
2993 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2994
2995         * device/lib/logf.c: added mcs51 assembly version
2996         * device/lib/expf.c: added mcs51 assembly version
2997         * device/lib/_logexpf.c: new shared asm code for expf and logf
2998         * device/include/math.h: add defines for assembly math library
2999         * device/lib/Makefile.in: build new _logexpf.c
3000         * device/lib/libfloat.lib: use new _logexpf.c
3001
3002 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3003
3004         * src/pic/device.c
3005         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3006           device types which have less than 0x7f registers.
3007
3008 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3009
3010         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3011
3012 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3013
3014         * device/lib/printf_fast.c: only build on supported arch.
3015         * device/lib/printf_tiny.c: only build on supported arch.
3016         * device/lib/printf_fast_f.c: only build if asm float lib
3017         * device/lib/_fsget1arg.c: only build if asm float lib
3018         * device/lib/_fsget2args.c: only build if asm float lib
3019         * device/lib/_fsnormalize.c: only build if asm float lib
3020         * device/lib/_fsreturnval.c: only build if asm float lib
3021         * device/lib/_fsrshift.c: only build if asm float lib
3022         * device/lib/_fsswapargs.c: only build if asm float lib
3023         * device/include/stdio.h: don't provide print_fast,
3024           print_fast_f, print_tiny prototypes if --xstack used
3025
3026 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3027
3028         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3029         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3030           to the SOURCES
3031
3032 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3033
3034         * device/lib/printf_fast_f.c: same as printf_fast, but
3035           with floating point enabled
3036         * device/lib/printf_fast.c: minor tweaks
3037         * device/include/stdio.h: add printf_fast_f
3038
3039 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3040
3041         * src/SDCCmain.c: make --float-reent default for mcs51
3042         * device/lib/_fsadd.c: added mcs51 assembly version
3043         * device/lib/_fssub.c: added mcs51 assembly version
3044         * device/lib/_fsmul.c: added mcs51 assembly version
3045         * device/lib/_fsdiv.c: added mcs51 assembly version
3046         * device/lib/_fseq.c: added mcs51 assembly version
3047         * device/lib/_fsneq.c: added mcs51 assembly version
3048         * device/lib/_fsgt.c: added mcs51 assembly version
3049         * device/lib/_fslt.c: added mcs51 assembly version
3050         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3051         * device/lib/Makefile.in: add _fscmp to build
3052         * device/lib/libfloat.lib: add _fscmp to build
3053
3054 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3055
3056         * device/lib/_fs2slong.c: added mcs51 assembly version
3057         * device/lib/_fs2sint.c: added mcs51 assembly version
3058         * device/lib/_fs2schar.c: added mcs51 assembly version
3059         * device/lib/_fs2ulong.c: added mcs51 assembly version
3060         * device/lib/_fs2uint.c: added mcs51 assembly version
3061         * device/lib/_fs2uchar.c: added mcs51 assembly version
3062         * device/lib/_slong2fs.c: added mcs51 assembly version
3063         * device/lib/_sint2fs.c: added mcs51 assembly version
3064         * device/lib/_schar2fs.c: added mcs51 assembly version
3065         * device/lib/_ulong2fs.c: added mcs51 assembly version
3066         * device/lib/_uint2fs.c: added mcs51 assembly version
3067         * device/lib/_uchar2fs.c: added mcs51 assembly version
3068         * device/include/float.h: added #define to select asm vs c
3069
3070 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3071
3072         * device/lib/printf_fast.c: improvements to float output
3073         * device/include/float.h: add defines for assembly float library
3074         * device/lib/_fsget1arg.c: receive 1 float arg
3075         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3076         * device/lib/_fsnormalize.c: normalize a float
3077         * device/lib/_fsreturnval.c: return float, various helper routines
3078         * device/lib/_fsrshift.c: right shift a float's mantissa
3079         * device/lib/_fsswapargs.c: swap 2 floats
3080         * device/lib/Makefile.in: build these 6 new files for mcs51
3081         * device/lib/libfloat.lib: add these 6 files to the library
3082
3083 2004-12-26 Borut Razem <borut.razem AT siol.net>
3084
3085         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3086           built by gcc 3.4.2
3087
3088 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3089
3090         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3091           and fully reentrant and register bank neutral.
3092         * device/lib/printf_fast.c: added float (not enabled by default),
3093           added compact/slower integer (also not enabled by default),
3094           improved size/speed of fast integer code, other minor changes
3095         * device/include/stdio.h, device/lib/Makefile.in,
3096           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3097
3098 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3099
3100         * src/pic16/pcode.c: declaring variables other than at the start of a
3101           block is not supported in C by VC6.
3102
3103 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3104
3105         * applied a previous patch from Raphael Neider that wasn't included
3106         in the previous commits, which fixes infinite loops within jumptable
3107         improvements,
3108         * made some fixes that previous patches introduced
3109
3110 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3111
3112         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3113         that fixes an issue with AOP_PCODE asmop's offset,
3114         * (pic16_popCopyReg): update instance field too,
3115         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3116         function of pic port,
3117         * (genCmp, genAnd, genAssign),
3118         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3119
3120 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3121
3122         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3123         variables initial values to idata section,
3124         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3125         variables in some functions. This utilizes parmBytes field of iCode
3126         structure to hold the offset of the variable in stack. (might be
3127         able to use the stack field too?)
3128         * applied patch from Raphael Neider # ### , # ###
3129         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3130         variable initial values in idata section,
3131         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3132         for static variables with initial value
3133         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3134         applied fix in while loop from Raphael Neider.
3135
3136 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3137
3138         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3139         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3140         * src/ds390/ralloc.c (serialRegAssign): spill bits
3141         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3142         * support/Util/SDCCerr.c,
3143         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3144         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3145         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3146
3147 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3148
3149         * device/include/sdcc-lib.h: inserted LGPL, added includes
3150           asm/ds390/features.h and asm/mcs51/features.h
3151         * device/include/asm/default/features.h,
3152         * device/include/asm/gbz80/features.h,
3153         * device/include/asm/z80/features.h: added empty _AUTOMEM
3154           and _STATMEM
3155         * device/include/asm/ds390/features.h,
3156         * device/include/asm/mcs51/features.h: added files with defines for
3157           _AUTOMEM and _STATMEM indicating automatic and static storage class
3158         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3159         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3160         * src/SDCCicode.c (geniCodeCast),
3161         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3162         * src/SDCCloop.c (loopInduction): removed unused variable lr
3163         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3164           to convertToFcall to include char modulo (RFE 1065037), added check
3165           if left operand is unsigned and use abs of literal value
3166         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3167           as it doesn't work after conversion from peephole.def to peephole.rul
3168         * src/mcs51/gen.c (toBoolean): added check for size,
3169           (genModOneByte): optimized code for signed char modulo a literal
3170           power of 2 (thanks to Hubert Sack),
3171           (genRRC): removed unnecessary "clr c",
3172           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3173         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3174           jump optimization,
3175           swapped rules 256.c and 256.d,
3176           extended 256.d by using new multiple checks (thanks Erik),
3177           added rules 256.e and 256.f,
3178           updated rule 261.a and 261.b to new generated code
3179         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3180
3181 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3182
3183         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3184           induction related bugs, including first part of bug #1074377
3185
3186 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3187
3188         * applied patch from bug-report #1076292,
3189         * applied patches for genAnd and Goto-optimizations for Raphael
3190         Neider,
3191         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3192         dump a less iCode information,
3193         * src/pic16/device.h (pic16_options_t): added field debgen,
3194         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3195         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3196         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3197         puclic,
3198         * (various functions): added macros FENTRY and FENTRY2 to functions,
3199         to emit function prologue,
3200         * (various functions): fixed indentation,
3201         * (genNearPointerGet): fixed loading of FSR0,
3202         * (genPackBits): applied patch from Raphael Neider to fix updating
3203         of FSR0 and touching only the modified bits,
3204         * src/pic16/genarith.c (various functions): added macros FENTRY to
3205         emit function prologue in comments,
3206         * src/pic16/pcode.h: added functions debugf2, debugf3,
3207         * src/pic16/ralloc.c: partial fix for packForPush caused
3208         segmentation fault,
3209
3210 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3211
3212         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3213           <stsp AT users.sourceforge.net> with reversed byte order
3214         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3215
3216 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3217
3218         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3219           bug #1074377
3220         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3221         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3222
3223 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3224
3225         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3226
3227 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3228
3229         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3230           conditions,
3231           (setFromConditionArgs): friendly operand parser for peephole rules,
3232           (operandBaseName, operandsNotRelated): new peephole condition
3233           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3234           architecture specific register naming into account, handles n-way
3235           comparisons, and supports quoted literals
3236         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3237
3238 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3239
3240         * src/mcs51/peeph.def: fixed bug #1076940
3241
3242 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3243
3244         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3245
3246 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3247
3248         Adding support for replacing ljmps with sjmps in jumptables
3249         generated for switch statements. For now you need to set the
3250         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3251         Now 4 algorithms for mcs51 jumptable generation are used:
3252         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3253         addresses loaded pc-relative for up to 112 cases and stack-pushing
3254         target addresses loaded with offset from dptr for up to 256 cases.
3255
3256         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3257         * src/mcs51/main.c: adapted constants for switch table generation
3258         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3259
3260 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3261
3262         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3263         * support/regression/tests/bug1057979.c: added test for bug 1073386
3264
3265 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3266
3267         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3268         compilers
3269
3270 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3271
3272         * src/pic16/device.h,
3273         * src/pic16/genarith.c,
3274         * src/pic16/glue.c,
3275         * src/pic16/main.c,
3276         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3277
3278 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3279
3280         Large cummulative patch for pic16 port.
3281         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3282         to call when a stack overflow occurs,
3283         * (malloc.h): added CVS Id tag,
3284         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3285         variable,
3286         * added libc directory. The current version of LibC contains string
3287         functions, ctype functions and macros and some functions of the
3288         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3289         be extensively tested in the future. Standard disclaimer here.
3290         Library is not automatically build yet. But one can build it by
3291         invoking 'make' inside the libc directory.
3292         * added ADC library under libio. Preliminary version yet.
3293
3294         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3295         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3296         aopForRemat() now and not by pic16_aopOp(),
3297         * (pic16_popGetTempReg): removed warning messgae when allocating
3298         temporary registers, its a buggy feature and will be removed,
3299         * (pic16_popGet): set register instance field in AOP_CRY,
3300         * (pic16_outBitC): fixed for results in size greater than 1,
3301         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3302         * (pic16_storeForReturn): optimized return of 0,
3303         * (genCmp): experimental code for new genCmp which uses PIC18's
3304         special compare&skip instructions. Initial tests fail some times
3305         with variables grater than 1 byte in size, so new code is disabled,
3306         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3307         a single bit,
3308         * (genCast): began a fix to optimize the casting of a bit to another
3309         bit, now assigning a bitfield to another bitfield will fail, sorry,
3310         * src/pic16/main.c: disabled the use of lr-support feature,
3311         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3312         * added some function prototypes, added function _debugf prototype,
3313         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3314         bits with offset (case PO_GPR_BIT),
3315         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3316         command line,
3317         * (isBankInstruction): modified to return 0 for no banking instruction,
3318         and 1 for banking instruction,
3319         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3320         caused stop processing pCodes after a inline assembly block,
3321         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3322         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3323         registers when it shouldn't,
3324         * src/pic16/ralloc.c (allocReg): add preliminary support for
3325         supporting a limited set of temporary registers,
3326
3327 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3328
3329         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3330           genDataPointerSet): ensure assignments always copy in MSB to LSB
3331           order,
3332           (loadRegFromAop): recognize CLRH optimization,
3333           (genFunction): optimize RECEIVE iCodes in reentrant functions
3334
3335 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3336
3337         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3338           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3339           selected.
3340         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3341         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3342           contiguous with data
3343
3344 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3345
3346         * device/lib/_gptrget.c (_gptrget),
3347         * device/lib/_gptrgetc.c (_gptrgetc),
3348         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3349           instead of sjmp to ret
3350         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3351           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3352
3353 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3354
3355         * .version: bumped version to 2.4.7
3356         * device/lib/_gptrget.c (_gptrget): is now _naked
3357         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3358         * device/lib/_gptrput.c (_gptrput): is now _naked
3359         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3360           (createFunction): fixed xstack
3361         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3362         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3363           or bit either,
3364           (geniCodeCritical): store original interrupt state in an iTemp bit
3365           var unless stack-auto
3366         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3367         * src/SDCCmain.c (setIncludePath): added include/target to search path
3368         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3369         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3370           prototype,
3371           (processFuncArgs): put bit vars in bit area
3372         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3373           unsaveRBank): fixed xstack,
3374           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3375           (genFunction, genEndFunction): fixed xstack,
3376           (genAssign): optimization don't walk backwards through mem
3377         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3378         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3379         * support/regression/Makefile: also make library (for stack-auto) when
3380           making "all" and added "test-mcs51-xstack-auto"
3381         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3382         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3383         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3384         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3385         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3386           make-library by MAKE_LIBRARY
3387         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3388           regression tests for xstack
3389         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3390         * support/regression/tests/critical.c: test for critical on mcs51
3391
3392 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3393
3394         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3395           built version of sdcc instead of installed version
3396
3397 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3398
3399         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3400         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3401           vprintf.c now
3402         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3403         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3404           WARNING: remove device/lib/build/z80/printf.o by hand when
3405           updating from previous build!
3406         * device/lib/z80/printf.c: updated comment
3407         * support/regression/tests/bug1057979.c: test all ports now
3408         * support/regression/tests/bug1065458.c: file added
3409
3410 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3411
3412         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3413           *_start and *_end symbols for static functions
3414
3415 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3416
3417         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3418           and search crt0.o in all library paths,
3419           (setIncludePath): proper handling of --nostdinc,
3420           (setLibPath): proper handling of --nostdlib
3421         * support/regression/Makefile,
3422         * support/regression/ports/ds390/spec.mk,
3423         * support/regression/ports/gbz80/spec.mk,
3424         * support/regression/ports/hc08/spec.mk,
3425         * support/regression/ports/mcs51/spec.mk,
3426         * support/regression/ports/mcs51-large/spec.mk,
3427         * support/regression/ports/mcs51-stack-auto/spec.mk,
3428         * support/regression/ports/z80/spec.mk: use include and lib files from
3429           built version of sdcc instead of installed version
3430         * doc/sdccman.lyx: fixed typo in --nostdinc
3431
3432 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3433
3434         * src/pic/pcode.c,
3435         * src/pic/device.c,
3436         * src/pic/ralloc.c,
3437         * src/pic/gen.c : added support to generate code for struct bit fields.
3438
3439 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3440
3441         * as/xa51/xa_version.h,
3442         * device/include/errno.h,
3443         * device/include/regc515c.h,
3444         * device/lib/_itoa.c,
3445         * device/lib/_ltoa.c,
3446         * device/lib/ser_ir_cts_rts.c,
3447         * sim/ucsim/xa.src/glob.cc,
3448         * sim/ucsim/xa.src/inst_gen.cc,
3449         * sim/ucsim/xa.src/xa_bit.cc,
3450         * sim/ucsim/xa.src/xa_sfr.cc,
3451         * sim/ucsim/z80.src/inst_dd.cc,
3452         * sim/ucsim/z80.src/inst_fdcb.cc,
3453         * support/scripts/keil2sdcc.pl,
3454         * src/pic16/pic16.dsp,
3455         * src/pic16/pic16a.dsp: corrected cvs line endings
3456         * device/lib/printf_large.c: fixed bug 1057979
3457         * src/pic16/gen.c: fixed non-C standard code
3458         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3459         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3460         * support/regression/ports/mcs51/support.c: reload T1 asap
3461         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3462           pdata use and clear idata startup behaviour
3463         * support/regression/tests/bug1057979.c: added
3464
3465 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3466
3467         * device/examples/ds390/ow390/ad26.h,
3468         * device/examples/ds390/ow390/cnt1d.h,
3469         * device/examples/ds390/ow390/crcutil.c,
3470         * device/examples/ds390/ow390/ownet.h,
3471         * device/examples/ds390/ow390/owsesu.c,
3472         * device/examples/ds390/ow390/swt12.h,
3473         * device/examples/ds390/ow390/swtoper.c,
3474         * device/examples/ds390/ow390/temp10.h,
3475         * device/examples/ds390/ow390/thermodl.c,
3476         * device/examples/ds390/tinitalk/tinitalk.dsp,
3477         * device/examples/ds390/tinitalk/tinitalk.dsw,
3478         * device/examples/mcs51/clock/hw.h,
3479         * device/examples/mcs51/simple2/go.bat,
3480         * device/examples/serialcomm/windows/serial.h,
3481         * device/examples/xa51/dummy.c,
3482         * device/examples/xa51/hello.c,
3483         * device/include/80c51xa.h,
3484         * device/include/at89x051.h: corrected cvs line endings
3485
3486 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3487
3488         * src/pic16/main.c (options): added command line --gstack, to trace
3489         stack over/under flows,
3490         * added pragma 'wparam' to allow passing first byte of function
3491         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3492         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3493         call to __gstack_test function and sets up the symbol as extern,
3494         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3495         * popaop): added call to pic16_testStackOverflow,
3496         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3497         wparamList list,
3498         * (genCall, genPcall): now all parameters are passed via stack
3499         except in functions that are pass to wparam pragma in which WREG is
3500         used too,
3501         * (genPcall): REENTRANT flag is checked to see if variable prototype
3502         contains reentrant keyword, don't call a non-reentrant function, via
3503         a reentrant function pointer or vice versa, functions are never
3504         passed via WREG,
3505         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3506         D.Winkler,
3507         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3508         SIGSEGV when accessing a NULL register stucture,
3509         * (pic16_printGPointerType): modified to handle UPPER modifier for
3510         function initializers, changed prototype of function to simpler one,
3511         * (pic16_printIvalFuncPtr): check to see if function is already
3512         added in externs list,
3513         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3514         optimized a move from W to SFR with a move to the same register
3515         later after a CALL,
3516         * device/lib/pic16/debug: NEW directory, contains debug features
3517         which are enabled when linking with libdebug.lib, currently command
3518         line option --gstack enables stack pointer tracing for over/under
3519         flow, corresponding sources are in debug/gstack
3520
3521 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3522
3523         * doc/sdccman.lyx: updated SDCC version,
3524         * (PIC16 port): update list of command line options,
3525         * src/pic16/device.h (structure pic16_options_t): added field gstack
3526         to enable stack overflow tracing on push/pops,
3527         * src/pic16/device.c (statistics structure): added statistics
3528         structure,
3529         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3530         pic16_dump_int_registers): increase statistics counters for each
3531         * variable which is encountered
3532         * (pic16_dump_usection): emit each .udata variable to its own udata
3533         section,
3534         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3535         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3536         parameters via stack, otherwise use old scheme,
3537         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3538         assembler output file,
3539         * src/pic16/main.c: added command line options --gstack to enable
3540         push/pop tracing for stack overflow,
3541         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3542         instructions): added size of each instruction,
3543         * (pic16_countInstruction): estimate size of instructions in
3544         the_pFile list, inline assembly blocks are not counted,
3545         * (pic16_FixRegisterBanking): trace previous register usage, when
3546         banksel optimizations is greater than 0, don't emit a redudant
3547         banksel directive,
3548
3549 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3550
3551         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3552         * src/pic16/ralloc.c : applied same fix for pic16.
3553         * src/pic/gen.c : tidied it up a little.
3554
3555 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3556
3557         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3558         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3559
3560 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3561
3562         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3563
3564 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3565
3566         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3567         non-reentrant function __modsint in the interrupt function (thus
3568         corrupting math operations during serial I/O)
3569         * device/lib/ser_ir.c: as above, changed buffersize
3570         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3571         256.c,d for zeroing
3572         * doc/Makefile: added option -t for rsync
3573
3574 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3575
3576         * src/SDCCast.h (struct ast),
3577         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3578
3579 2004-10-20 Borut Razem <borut.razem AT siol.net>
3580
3581         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3582         package
3583
3584 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3585
3586         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3587         makefile targets,
3588         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3589         support functions to replace long sequences of MOVFF's from access
3590         bank registers to stack and vice versa,
3591         * src/pic16/device.h: added new field opt_flags, where optimization
3592         flags can be set to enable certain features,
3593         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3594         * pBlock, (genFunction, genEndFunction): surroung loop for
3595         saving/loading used registers in stack with PC_INFO pCodes,
3596         INF_LREGS. Code in between can then be optimized by pCode optimizer
3597         to support function calls,
3598         * (genDataPointerSet): fixed bug which loaded float fields in
3599         structures with corrupt data,
3600         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3601         in a standard way debug info on stderr. Feature used for developing
3602         and debugging only,
3603         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3604         obsolete chunks of code,
3605         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3606         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3607         * pic16/src/pcode.c (pic16_newpCodeInfo,
3608         * (pic16_newpCodeOpLocalRegs),
3609         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3610         feature,
3611         * (pic16_pCodeConstString): printing of the initial value of a
3612         symbol as a comment is inhibited since parsing was already done by
3613         copyStr and output is corrupt,
3614         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3615
3616 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3617
3618         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3619
3620 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3621
3622         * as/mcs51/lkarea.c: removed old K&R style,
3623           (lnksect): changed check on boundary error,
3624           (lnksect2): changed check on boundary error,
3625           (lnksect2): extend XSTK to end of page if size = 1
3626         * as/mcs51/lkmain.c: removed old K&R style,
3627           (Areas51): create l_IRAM symbol
3628         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3629         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3630           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3631         * device/lib/_mullong.c: added version to be compiled with xstack
3632         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3633         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3634         * device/lib/mcs51/crtxstack.asm: fixed comment
3635         * src/SDCCglue.c: maxInterrupts defaults to 0,
3636           (emitMaps): added pdata,
3637           (createInterruptVect): (re)moved default,
3638           (glue): added pdata,
3639           (glue): moved __start__xstack to XSTK with default size 1
3640         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3641           and options.float_rent when options.stackAuto is set,
3642           (linkEdit): only write XDATA_NAME if provided on command line
3643         * src/SDCCmem.h,
3644         * src/SDCCmem.c: added pdata
3645         * src/port.h: added pdata_name to PORT
3646         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3647           (saveRegisters, unsaveRegisters): removed usage of B,
3648           (genMinus): fixed accumulator clash,
3649           (genJumpTab): added comment, this needs another look
3650         * src/mcs51/gen.c: added check for "B in use" paranoia,
3651           added pushB() and popB()
3652         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3653           chance
3654         * src/avr/main.c,
3655         * src/ds390/main.c,
3656         * src/hc08/main.c,
3657         * src/mcs51/main.c,
3658         * src/pic/main.c,
3659         * src/pic16/main.c,
3660         * src/xa51/main.c,
3661         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3662           added PSEG (PAG,XDATA) or NULL to port specifier
3663         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3664         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3665           (_mcs51_genInitStartup): removed __start__xstack equ,
3666           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3667         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3668         * src/z80/gen.c (_rleAppend): fixed warnings
3669         * support/regression/tests/zeropad.c: added pdata test
3670         * .version: bumped to 2.4.6
3671
3672 2004-10-17 Borut Razem <borut.razem AT siol.net>
3673
3674         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3675         as a part of nightly build
3676
3677 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3678
3679         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3680         WREG holds the first byte function parameters,
3681         * (aopForSym): take special case for symbols which are in FARSPACE
3682         but in CODESPACE too,
3683         * (assignResultValue): modified to take into account _G.useWreg,
3684         * (genCall): don't use wreg for parameter passing when function is
3685         declared as reentrant, too, added optimization INCF to stack
3686         pointer when stack parameter count is 1,
3687         * (genFunction, genEndFunction): refurnished and fixed to not using
3688         wreg for passing parameters when function has varargs or is
3689         reentrant, fixed bug with symbol name compare for generating
3690         functions in absolute address,
3691         * (pic16_storeForReturn): refurnished,
3692         * (genCmp): began writing a new version of the function, not ready
3693         yet, therefore it is disabled,
3694         * (genAssign): do not read code memory when assigning a function to
3695         a pointer function,
3696         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3697         array of characters, not pointer,
3698         * (pic16initialComments): in debug mode emit an .ident directive for
3699         the assembler,
3700         * (_process_pragma): emit a new warning type (internal to pic16)
3701         when setting stack to default length, emit a similar warning when
3702         placing a function at absolute address and address is not word aligned
3703         * (_pic16_parseOptions): added 'return TRUE' statement,
3704         * (_pic16_linkEdit): if compiling a source, then add the source's
3705         file object, first in the list of objects to link,
3706
3707 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3708
3709         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3710         * src/pic/main.c : removed VC warning.
3711         * src/pic/gen.c : changed comment.
3712
3713 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3714
3715         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3716         reference to a deprecated symbol _GPTRREG was causing failure to
3717         link. Thanks G. M. Gallant for the info.
3718
3719 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3720
3721         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3722         comments for Bugs item #954788.
3723
3724 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3725
3726         * src/pic16/device.c (pic16_dump_gsection,
3727         * pic16_groupRegistersInSection): handle symbols declared to be in
3728         access bank differently,
3729         * src/pic16/gen.c (struct _G): added field resDirect,
3730         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3731         send values read from stack directly to result and don't allocate
3732         temporary values,
3733         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3734         same registers,
3735         * (pic16_sameRegsOfs): NEW,
3736         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3737         free because they were not allocated from temporary pool,
3738         * pic16_popRegFromString): workaround to fix a problem with
3739         allocating variables twice or never,
3740         * (genGenPointerGet): using PRODL instead of FSR0H,
3741         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3742         instead of FSR0H,
3743         * (genAssign): take advantage of the _G.resDirect flag,
3744         * (genCast): around line 11844, use mov2f instead of directly
3745         MOVFF'ing between operands to account for literal values,
3746         * src/pic16/genutils.c: some new debug functions for gpsim have been
3747         added,
3748         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3749         float with integer part only,
3750         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3751         place variables in access bank
3752         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3753         updated sources to reflect recent changes in gen.c
3754
3755 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3756
3757         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3758         sources that searched for headers in installation path, now the
3759         device/include/pic16 is used,
3760         * src/pic16/glue.c (pic16glue),
3761         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3762         .line directives if not in debug mode, this suppresses assembler's
3763         warnings for ignored directives
3764
3765 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3766
3767         * src/port.h: made reset_regparms prototype void parameter explicit.
3768         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3769         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3770         * doc/sdccman.lyx: documented warning disabling and how to use
3771           printf_large to make it print floats.
3772         * device/include/stdbool.h: NEW
3773         * device/lib/_atof.c,
3774         * device/lib/_divuint.c,
3775         * device/lib/_divulong.c,
3776         * device/lib/expf.c,
3777         * device/lib/printf_large.c,
3778         * device/lib/sincosf.c,
3779         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3780         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3781           a completely reentrant lib.
3782
3783 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3784
3785         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3786         * device/include/pic16/stdio.h: fixed bug with colon
3787
3788 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3789
3790         * device/include/pic16/stdio.h,
3791         * device/include/pic16/stdlib.h,
3792         * device/include/pic16/math.h: NEW
3793         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3794         declared as _naked to reduce overhead
3795         * device/lib/Makefile.in (target port-specific-objects-pic16):
3796         changed * to *.* so to ignore the CVS directory,
3797         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3798         stacked variables back in stack,
3799         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3800         corruption
3801
3802 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3803
3804         * .version: bumped version number to 2.4.5
3805         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3806         * support/Util/SDCCerr.c (messages structure): added entry for
3807         W_POSSBUG2
3808
3809         Large cumulative patch for pic16 port and libraries.
3810         * device/include/pic16/sdcc-lib.h,
3811         * device/include/pic16/stdarg.h,
3812         * device/include/asm/pic16/features.h,
3813         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3814         * device/include/pic16/float.h: changes reentrant keyword with
3815         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3816         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3817         updated target build-libraries to include objects from gptr,
3818         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3819         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3820         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3821         all function headings,
3822         * src/SDCCmain.c: added global parameter userIncDirsSet,
3823         * (parseCmdLine): when option -I is encountered add directory to
3824         userIncDirsSet too,
3825         * src/version.awk: added space between control and long,
3826         * src/pic16/NOTES: added some notes for the port,
3827         * src/pic16/gen.c: added prototype for mov2fp function,
3828         * (fReturnpic16[]): properly named return value registers,
3829         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3830         * (aopForSym): added code to handle symbols with onStack flag set,
3831         symbols onStack are allocated PTRSIZE bytes,
3832         * (aopFreeAsmop): handles special case where asmops are stack objects,
3833         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3834         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3835         added argument lock to trace flaws in allocating temporary registers
3836         when developing port,
3837         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3838         * (pic16_popRegFromString): reenabled allocating a direct register
3839         from string,
3840         * (assignResultValue): various beautifications,
3841         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3842         referenced function argument,
3843         * (genIpush): reenabled to allow stacked arguments, handles only
3844         ic->parmPush iCodes,
3845         * (genCall, genPcall): major changes to allow for variable argument
3846         functions, fixed a bug with falsely restoring stack pointer after
3847         returning from call,
3848         * (genFunction): pending code for critical function,
3849         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3850         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3851         * (genNearPointerGet): fixed bug with indirect reading, was always
3852         reading from INDF0
3853         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3854         pointers,
3855         * (genAddrOf): rewrote code to take address of a stacked function parameter
3856         * (genCast): fixed casting to generic pointer type,
3857         * src/pic16/gen.h: added AOP_STA,
3858         * (struct asmop): added field stk,
3859         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3860         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3861         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3862         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3863         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3864         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3865         generic pointers,
3866         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3867         and library paths,
3868         * (pic16_port structure): generic pointer size is set to 3,
3869         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3870         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3871         compiler warning,
3872         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3873         operand is an iTemp,
3874
3875 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3876
3877         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3878         * debugger/mcs51/simi.c: addapt new syntax of s51
3879
3880 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3881
3882         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3883         * src/pic16/pcode.c: commented out some calls to free() in order to
3884         fix bug #989576,
3885
3886 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3887
3888         * src/SDCCicode.h,
3889         * src/SDCCicode.c (isiCodeInFunctionCall),
3890         * src/avr/ralloc.c (selectSpil),
3891         * src/pic/ralloc.c (selectSpil),
3892         * src/pic16/ralloc.c (selectSpil),
3893         * src/ds390/ralloc.c (selectSpil),
3894         * src/hc08/ralloc.c (selectSpil),
3895         * src/xa51/ralloc.c (selectSpil),
3896         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3897         stack in the middle of a function call sequence (fixes bug #1020268)
3898         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3899         costs associated with the minimum switch case.
3900
3901 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3902
3903         * src/SDCC.lex: fixed bug #1030549
3904
3905 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3906
3907         * src/SDCCcse.h (struct cseDef),
3908         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3909         over a function call if the CSE is derived from a symbol whose
3910         address has been taken (fixes bug #1029883)
3911         * support/regression/tests/bug-1029883: a new regression test for
3912         this bug
3913
3914 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3915
3916         * src/hc08/gen.c (emitinline): fixed bug #1029778
3917         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3918         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3919         and starts toward RFE #905167)
3920
3921 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3922
3923         * src/pic16/gen.c (mov2f): New function to move an operand to
3924         another without considering if it is a literal or a register,
3925         * (pic16_sameRegs): don't check if they are both AOP_REG,
3926         * (AccRsh): removed andmask=0 lines,
3927         * (genLeftShift): duplicated to be improved in future versions,
3928         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3929         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3930         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3931         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3932         * (insertBankSwitch): fixed inserting banksel directives algorithm
3933         for instructions that follow a skip instruction, this fixes a report
3934         for broken subtraction code generation,
3935         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3936         iCode is a left op, just in case result and right share the same
3937         registers
3938
3939 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3940
3941         * src/hc08/main.c,
3942         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3943         preservation of HX
3944         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3945         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3946         on 2004-09-12; it was buggy
3947
3948 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3949
3950         * src/SDCCsymt.h: removed RESULT_CHECK
3951         * src/SDCCast.c,
3952         * src/SDCCglue.c,
3953         * src/SDCCval.c,
3954         * src/pic/glue.c,
3955         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3956
3957 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3958
3959         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3960         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3961         configuration values no more rejected by compiler, they are assigned
3962         to configuration registers with a warning message instead,
3963         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3964         the for-loop so last conf register is emitted too,
3965         * (_pic16_initPaths): link library libsdcc.lib by default,
3966         * (_hasNativeMulFor): modified test for multiplication according to
3967         Raphael Neider's remarks. Integer multiplication is also done with
3968         support functions,
3969         * device/include/pic16/pic18fregs.h: corrected type error in while
3970         testing and including 18f6720 header file
3971
3972 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3973
3974         * src/pic16/device.h (pic16_options): removed field use_crt,
3975         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3976         until an optimization to handle single bits is added,
3977         * (pic16_loadFSR0): moved before genUnpackBits,
3978         * (genAnd): some white lines removed,
3979         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3980         leave_reset flags in pic16_options when using crt modules,
3981
3982 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3983
3984         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3985           for bugs 898889 & 979599. Also used some safer print instructions.
3986
3987 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3988
3989         * src/pic16/device.h (pic16_options_t): added field use_crt,
3990         crt_name, no_crt,
3991         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3992         catch a probable future bug,
3993         * src/pic16/gen.c: aopIdx function commented out,
3994         * (genAssign): commented out old code which used aopIdx,
3995         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3996         code, added if conditionals to take into account the --use-crt
3997         command line options,
3998         * src/pic16/main.c (pic16_optionsTable): added new command line
3999         options, --use-crt= and --no-crt,
4000         * (_pic16_linkEdit): now the proper crt object is added in the
4001         linker command line except than when --no-crt is specified,
4002         * src/pic16/pcode.c,
4003         * src/pic16/pcode.h: added some structures and functions for a new
4004         optimization scheme to compansate for instruction overhead between
4005         same iCodes, this scheme is currently under development and is not
4006         working in any way,
4007         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4008         to && operator,
4009         * device/lib/pic16/startup/crt0i.c,
4010         * device/lib/pic16/startup/crt0iz.c: added global char variable
4011         __uflags to force the generation of an idata section
4012
4013 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4014
4015         * doc/Makefile,
4016         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4017         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4018
4019 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4020
4021         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4022         Frieder) and clarified the default code optimization mode
4023
4024 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4025
4026         * src/SDCC.lex (doPragma, process_pragma),
4027         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4028         "opt_code_size", and "opt_code_balanced"
4029         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4030         regrouped options by category, added support for category headers
4031         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4032         and "--opt-code-size"
4033         * doc/sdccman.lyx: documented these new options and pragmas
4034         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4035         preference into account
4036
4037 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4038
4039         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4040           geniCodePreDec): Fixed bug 904237 by generating a warning
4041         * src/SDCCerr.h,
4042         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4043
4044 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4045
4046         * src/pic/device.c : When no max ram set validate full memory range.
4047         * src/pic/pcode.c,
4048         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4049
4050 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4051
4052         * device/lib/_gptrget.c,
4053         * device/lib/_gptrput.c: updated comment
4054         * device/lib/calloc.c,
4055         * device/lib/free.c,
4056         * device/lib/malloc.c,
4057         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4058         * src/SDCCcse.c (cseBBlock),
4059         * src/SDCCicode.c (printOperand, geniCodeArray),
4060         * src/SDCCicode.h (struct operand): fixed bug 868103
4061         * support/regression/tests/bug-868103.c: added
4062         * src/SDCCast.c (searchLitOp),
4063         * src/SDCCcse.h (struct cseDef),
4064         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4065         * src/SDCCicode.h (struct operand),
4066         * src/SDCCsymt.h (struct sym_link),
4067         * src/avr/gen.c (hasInc),
4068         * src/ds390/gen.c (hasInc),
4069         * src/hc08/gen.c (genPlusIncr, hasInc),
4070         * src/mcs51/gen.c (hasInc),
4071         * src/pic16/glue.c (pic16_printIvalChar),
4072         * src/pic16/ralloc.c (regWithIdx),
4073         * src/xa51/gen.c (hasInc) : removed warnings
4074         * src/SDCCast.c (createBlock): added comment ???
4075         * src/hc08/ralloc.c: updated comments
4076
4077 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4078
4079         * doc/sdccman.lyx: updated section on switch statements, added
4080         section about semaphore locking
4081         * doc/Makefile: added option -info for latex2html
4082         * device/lib/_gptrget.c,
4083         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4084
4085 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4086
4087         * src/pic/device.h,
4088         * src/pic/device.c,
4089         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4090          maxram is less than 0x100.
4091
4092 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4093
4094         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4095
4096 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4097
4098         * src/port.h,
4099         * src/mcs51/main.c,
4100         * src/ds390/main.c,
4101         * src/z80/main.c,
4102         * src/hc08/main.c,
4103         * src/pic/main.c,
4104         * src/pic16/main.c,
4105         * src/avr/main.c,
4106         * src/xa51/main.c
4107         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4108         a jump table is the best form for a switch statement, including
4109         automatic insertion of missing cases to make the case range
4110         continuous. Developed in collaboration with Frieder Ferlemann.
4111
4112 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4113
4114         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4115         accumulator result if it needs sign extension
4116
4117 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4118
4119         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4120
4121 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4122
4123         * device/lib/gbz80/printf.c,
4124         * device/lib/z80/printf.c: removed define for NULL
4125
4126 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4127
4128         * as/xa51/xa_link.c,
4129         * device/examples/ds390/ow390/ad26.c,
4130         * device/examples/ds390/ow390/cnt1d.c,
4131         * device/examples/ds390/ow390/counter.c,
4132         * device/examples/ds390/ow390/ds2480.h,
4133         * device/examples/ds390/ow390/ds2480ut.c,
4134         * device/examples/ds390/ow390/findtype.c,
4135         * device/examples/ds390/ow390/gethumd.c,
4136         * device/examples/ds390/ow390/owllu.c,
4137         * device/examples/ds390/ow390/ownetu.c,
4138         * device/examples/ds390/ow390/swt12.c,
4139         * device/examples/ds390/ow390/swtloop.c,
4140         * device/examples/ds390/ow390/temp.c,
4141         * device/examples/ds390/ow390/temp10.c,
4142         * device/examples/ds390/ow390/thermo21.c,
4143         * device/examples/ds390/ow390/tinilnk.c,
4144         * device/examples/ds390/ow390/tstfind.c,
4145         * device/examples/serialcomm/windows/serial.cpp,
4146         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4147         * device/include/reg51.h: fixed line endings for cvs
4148
4149 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4150
4151         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4152         packRegsForAccUse, packRegisters): new accumulator register
4153         packing algorithm
4154         * support/regression/ports/hc08/support.c (_putchar): suppress
4155         warning of unused variable
4156         * src/SDCCicode.c: added SWAP entry to codeTable
4157
4158 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4159
4160         * device/lib/sprintf.c: forgot to add this file before previous commit
4161
4162 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4163
4164         * src/pic16/gen.c (genPackBits): added operand right in function
4165         parameters, load result directly if p_type is POINTER (that is
4166         called by genNearPointerSet)
4167         * (genUnPackBits): added operand left in function parameters,
4168         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4169         FSR0 if accessing bitfields,
4170
4171 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4172
4173         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4174           _print_format; updated printf, sprintf, vsprintf
4175         * device/include/asm/default/features.h: corrected comment/define
4176         * device/lib/Makefile.in: added sprintf.c
4177         * device/lib/libsdcc.lib: added sprintf module
4178         * device/lib/printf_large.c,
4179         * device/lib/vprintf.c,
4180         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4181           into these 3 files
4182         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4183         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4184         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4185           hc08 test
4186         * support/regression/tests/zeropad.c: define idata as data for hc08
4187
4188 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4189
4190         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4191         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4192         labels are referenced at least once (even if a reference is not found)
4193         * src/hc08/gen.c (emitcode): set isComment flag for comments
4194         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4195         loads), rules 6a..6b (optimize jumps to return)
4196
4197 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4198
4199         * device/lib/acosf.c (acosf),
4200         * device/lib/asinf.c (asinf),
4201         * device/lib/atanf.c (atanf),
4202         * device/lib/ceilf.c (ceilf),
4203         * device/lib/cosf.c (cosf),
4204         * device/lib/coshf.c (coshf),
4205         * device/lib/cotf.c (cotf),
4206         * device/lib/fabsf.c (fabsf),
4207         * device/lib/floorf.c (floorf),
4208         * device/lib/log10f.c (log10f),
4209         * device/lib/logf.c (logf),
4210         * device/lib/sinf.c (sinf),
4211         * device/lib/sinhf.c (sinhf),
4212         * device/lib/sqrtf.c (sqrtf),
4213         * device/lib/tanf.c (tanf),
4214         * device/lib/tanhf.c (tanhf),
4215         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4216         replaced all instances of "reentrant" in the library functions
4217         defined in math.h with this macro.
4218         * support/regression/tests/float_trans.c: reenabled test for hc08
4219
4220 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4221
4222         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4223         erroneously deleted
4224
4225 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4226
4227         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4228         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4229         multi-byte volatile operands are used
4230         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4231         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4232         initialization to area GSINIT0 so that it would always precede
4233         any static initializers in GSINIT
4234         * support/regression/tests/zeropad.c: fixed idata define for hc08
4235         * support/regression/tests/bug-927659.c,
4236         * support/regression/tests/float_trans.c: disabled tests for hc08
4237         pending missing library routines
4238         * .version: increased version number to 2.4.4 - hc08 port now passes
4239         regression tests
4240
4241
4242 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4243
4244         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4245         * Makefile.common.in,
4246         * as/Makefile,
4247         * as/hc08/Makefile.in,
4248         * as/mcs51/Makefile.in,
4249         * as/z80/Makefile.in,
4250         * debugger/mcs51/Makefile.in,
4251         * device/include/Makefile.in,
4252         * device/lib/Makefile.in,
4253         * doc/Makefile,
4254         * link/Makefile,
4255         * link/z80/Makefile.in,
4256         * packihx/Makefile.in,
4257         * sim/ucsim/main_in.mk,
4258         * sim/ucsim/avr.src/Makefile.in,
4259         * sim/ucsim/doc/Makefile.in,
4260         * sim/ucsim/gui.src/serio.src/Makefile.in,
4261         * sim/ucsim/hc08.src/Makefile.in,
4262         * sim/ucsim/s51.src/Makefile.in,
4263         * sim/ucsim/xa.src/Makefile.in,
4264         * sim/ucsim/z80.src/Makefile.in,
4265         * src/Makefile.in,
4266         * support/cpp2/Makefile.in,
4267         * support/librarian/Makefile,
4268         * support/makebin/Makefile: added DESTDIR to the install path proposed
4269         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4270         * doc/sdccman.lyx: added DESTDIR documentation
4271
4272 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4273
4274         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4275         instruction for interrupt handlers, use fast returns when returning
4276         from high priority interrupts
4277
4278 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4279
4280         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4281         code generation
4282         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4283         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4284         bugs, ported much of Bernhard's code from mcs51
4285         * src/mcs51/gen.c (genSend),
4286         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4287         than one when calling a reentrant function
4288         * device/lib/_mullong.c: defined an alternate struct layout for big
4289         endian ports (hc08)
4290
4291 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4292
4293         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4294         test
4295
4296 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4297
4298         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4299         are sane and complete before asking the port its prefered parameter
4300         passing method (fixes bug #1017633)
4301         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4302         and _ret3
4303
4304 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4305
4306         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4307         problem in bitfields >= 8 bits.
4308
4309 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4310
4311         * src/SDCCsymt.c: undid changes that were not meant to be committed
4312
4313 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4314
4315         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4316
4317 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4318
4319         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4320           copied and wrong bit got inverted
4321
4322 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4323
4324         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4325         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4326         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4327         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4328         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4329         assignments to bitfields at known addresses
4330         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4331         reads from bitfields at known addresses
4332         * src/hc08/ralloc.c (packRegisters),
4333         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4334         genhc08Code): optimize pointer get values used as conditionals
4335         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4336         and branch
4337
4338 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4339
4340         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4341         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4342         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4343         as conditionals
4344
4345 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4346
4347         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4348
4349 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4350
4351         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4352         related problems
4353
4354 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4355
4356         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4357
4358 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4359
4360         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4361         mcs51 port
4362
4363 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4364
4365         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4366
4367 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4368
4369         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4370         cases use more compact code.
4371
4372 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4373
4374         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4375
4376 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4377
4378         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4379
4380 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4381
4382         * src/SDCCsymt.h,
4383         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4384         parameter of changePointer() from symbol* to sym_link*
4385         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4386         * src/SDCCsymt.c (compareType): void* type is castable to other
4387         pointers, but not necesarily an exact match.
4388         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4389         is no longer blindly treated as an exact match.
4390         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4391
4392 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4393
4394         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4395
4396 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4397
4398         * src/pic/gen.c,
4399         * src/pic/pcode.c,
4400         * src/pic/ralloc.h,
4401         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4402
4403 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4404
4405         * src/pic/device.c,
4406         * src/pic/device.h,
4407         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4408
4409 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4410
4411         * src/mcs51/gen.c (emitcode): fixed bug #992819
4412
4413 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4414
4415         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4416           there's no need to make it worse
4417
4418 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4419
4420         * src/mcs51/ralloc.c (deassignLR),
4421         * src/ds390/ralloc.c (deassignLR),
4422         * src/hc08/ralloc.c (deassignLR),
4423         * src/z80/ralloc.c (deassignLR),
4424         * src/pic/ralloc.c (deassignLR),
4425         * src/pic16/ralloc.c (deassignLR),
4426         * src/avr/ralloc.c (deassignLR),
4427         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4428         rlivePoint): fixed another part of bug #971834
4429
4430 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4431
4432         * src/z80/main.c: enabled "critical" keyword
4433         * src/z80/mappings.i,
4434         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4435         functions (fixes bug #979646)
4436         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4437
4438 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4439
4440         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4441           such as c:\mydir.
4442
4443 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4444
4445         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4446           doesn't disable too much optimizations
4447
4448 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4449
4450         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4451
4452 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4453
4454         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4455
4456 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4457
4458         * src/pic/gen.c tidied up tabs
4459         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4460         * src/pic/main.c tidied up tabs
4461         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4462         * src/pic/pcoderegs.c tidied up tabs
4463         * src/pic/ralloc.c tidied up tabs
4464
4465 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4466
4467         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4468         to S_FIXED for pic16 port and when symbol is not in level 0,
4469         allocate for S_REGISTER storage class and pic16 port, too,
4470         * src/pic16/device.h: prototype for checkSym,
4471         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4472         * (pic16_assignConfigWordValue): test the value and the mask to
4473         validate that the value is suitable for the configuration word,
4474         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4475         collect extern declared symbols, don't emit symbol twice, check
4476         first if symbol is in publics set first,
4477         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4478         * added command line '--fstack' which enables an experimental
4479         feature for stack access, too buggy to be used yet...
4480         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4481         * (pic16_allocDirReg): when register has storage class S_REGISTER
4482         allocate in pic16_dynAccessRegs,
4483         * device/include/pic16/pic18f????.h: modified configuration word
4484         naming convention, words started as CONFIG0H but should be CONFIG1H
4485
4486 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4487
4488         * device/include/mcs51reg.h: fixed bug 970993
4489
4490 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4491
4492         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4493         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4494         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4495         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4496         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4497         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4498           error/warning numbers,
4499           added function setWarningDisabled()
4500         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4501         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4502           _memcmp.c _memmove.c calloc.c realloc.c free.c
4503         * support/regression/tests/malloc.c: added tests for new functionality
4504         * support/regression/tests/zeropad.c: added tests for truncated initializers
4505           and initialized char arrays starting with '\x0'
4506         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4507
4508 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4509
4510         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4511
4512 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4513
4514         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4515         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4516         peephole 177.e. Thanks to anonymous
4517
4518 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4519
4520         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4521         function isn't used in the source but referenced as a
4522         variable initializer then declare it as extern in .asm file
4523
4524 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4525
4526         * .version: increased version number to 2.4.3
4527
4528         Adding version extension according to ChangeLog CVS revision
4529         * src/Makefile.in (target all): added dependency 'version.h'
4530         * (rule version.h): added rule to create version.h from ChangeLog,
4531         * (rule dep): added dependency version.h,
4532         * src/version.awk: AWK script to create version.h
4533         * src/SDCCdwarf2.c (dwWriteModule),
4534         * src/SDCCglue.c (initialComments),
4535         * src/SDCCmain.c (printVersionInfo): modified to write after
4536         version string the version extension number,
4537         * src/SDCCutil.c: included "version.h"
4538         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4539         number,
4540         * src/SDCCutil.h: added prototype for getBuildNumber
4541
4542         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4543         includeDirsSet, too,
4544         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4545         const char [] is found in function prototype...
4546
4547         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4548         moving to WREG with source is already in WREG,
4549         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4550         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4551         * (aopForSym): stack'ed symbols are partially supported, added
4552         if-clause to support symbols in FARSPACE,
4553         * (sameRegs): added test for AOP_ACC to see if registers are same,
4554         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4555         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4556         * (pic16_popRegFromString): will not allocate a new register if it
4557         doesn't find one by name, bug may have introduced...
4558         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4559         * (genIpush): revived to use pic16 port's stack,
4560         * (genAddrOf): added incomplete case for stack'ed operand,
4561         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4562         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4563         can handle multibyte operands,
4564         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4565         * (pic16initialComments): added message for MPLAB compatibility
4566         mode enabled,
4567         * src/pic16/main.h: prototype for pic16_mplab_comp,
4568         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4569         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4570         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4571         because of increased complexity of procedure,
4572         * (_process_pragma): stack pragma changed to format 'stack pos len',
4573         emit symbol '_stack_end' to conform with gplink,
4574         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4575         to search for register,
4576         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4577         PO_GPR_REGISTER,
4578         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4579         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4580         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4581         case for PO_GPR_REGISTER,
4582         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4583         dies, the new era is ahead !...
4584         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4585         pic16_dynInternalRegs,
4586         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4587         * (pic16_allocDirReg): minor optimizations and bug fixes,
4588         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4589
4590         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4591         load stack and frame pointer with address of 'stack_end' symbol
4592
4593 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4594
4595         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4596         without source code but only variable initializers
4597
4598 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4599
4600         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4601         external are not declared as extern to reduce overhead while linking
4602
4603 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4604
4605         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4606
4607 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4608
4609         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4610           Yee Keat for the patch
4611         * src/SDCCast.c (decorateType): fixed bug #979599
4612         * src/ds390/gen.h: removed local fReturnSizeDS390
4613         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4614         * src/ds390/gen.c (genAnd, genOr, genXor),
4615         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4616
4617 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4618
4619         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4620         add relFilesSet to $3, manipulate $2 to handle linking of object
4621         files without source files in command line,
4622         * device/include/pic16 (all headers): added ID location macros,
4623         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4624         entries for ID location bytes,
4625         * (pic16_assignIdByteValue): NEW,
4626         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4627         added field dumpcalltree to pic16_options_t,
4628         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4629         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4630         emitting rFalseIfx label after check_carry label,
4631         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4632         pic16_emitDIRegs), NEW
4633         * (pic16glue): dump .calltree file when option --calltree found,
4634         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4635         * (_pic16_genAssemblerPreamble): emit ID locations after
4636         configuration registers,
4637         * (pic16_linkCmd): modifications of the link command,
4638         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4639         * (pic16_pCodeInitRegisters): don't init stack registers,
4640         * (pic16_findPrevInstruction): fixed bug,
4641         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4642         bug with immediate registers,
4643         * (buildCallTree): traces stack push and pop,
4644         * (pct2): dump also stack usage for each function,
4645         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4646         * (pic16_allocDirReg): various modifications,
4647         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4648         fixed to 1,
4649
4650 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4651
4652         * src/pic16/pcode.c: removed buggy double colon
4653
4654 2004-07-01 Borut Razem <borut.razem AT siol.net>
4655
4656         * support/scripts/sdcc.nsi: added include/pic16 to setup
4657
4658 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4659
4660         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4661         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4662         target 'clean',
4663         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4664         specific command line arguments. Also added sample lkr script
4665         for placing a variable at a specific memory bank.
4666         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4667         at a specific memory bank,
4668         * (pic16_dump_isection): fixed bug which caused string literals to
4669         be omitted when dumping idata section,
4670         * (pic16_groupRegistersInSection): added code to handle registers
4671         in specific memory banks,
4672         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4673         public, all references are renamed too,
4674         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4675         AOP_DPTR2,
4676         * (pic16_storeForReturn): added case to handle when dest is WREG,
4677         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4678         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4679         pic16_rel_udata, check to see if that register is marked as being
4680         a member of a specific memory bank,
4681         * (pic16_printIvalCharPtr): added code to add string literals either
4682         to code or the idata sections,
4683         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4684         also accept the 'udata' pragma,
4685         * src/pic16/main.h: new structure types sectName and sectSym
4686         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4687         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4688         * (pic16_findPrevInstruction): fixed, it returned nothing,
4689         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4690         instruction combinations,
4691         * (pic16_FixRegisterBanking): heavily reorganised,
4692         * (pic16_AnalyzeBanking): if generating banksel directives is
4693         disabled, then don't call FixRegisterBanking at all,
4694         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4695         completely removed,
4696         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4697
4698 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4699
4700         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4701         Phuah Yee Keat <yk.phuah AT nestac.com>
4702
4703 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4704
4705         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4706         correctly the IVT even if it is relocated to some other location
4707
4708 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4709
4710         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4711         * device/include/pic16/pic18f2220.h: NEW,
4712         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4713         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4714         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4715         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4716         nodefaultlibs, ivt_loc is the location of the interrupt vector
4717         table, and nodefaultlibs signs that default libraries should not be
4718         linked in link stage,
4719         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4720         according to --ivt-loc argument,
4721         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4722         when pragma stack is found,
4723
4724 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4725
4726         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4727         256 (range check), 257 (do while), 258.a-f (bit banging
4728         f.e. on 3-wire SPI bus)
4729
4730 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4731
4732         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4733         variables used exclusively within a loop
4734
4735 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4736
4737         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4738
4739 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4740
4741         * src/SDCClrange.c (computeClash): fixed bug #971834
4742
4743 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4744
4745         * src/mcs51/gen.c (genCmp): fixed bug #975903
4746         * src/hc08/gen.c (operandsEqu),
4747         * src/ds390/gen.c (operandsEqu),
4748         * src/z80/gen.c (operandsEqu),
4749         * src/pic/gen.c (operandsEqu),
4750         * src/pic16/gen.c (operandsEqu),
4751         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4752         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4753
4754 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4755
4756         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4757
4758 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4759
4760         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4761         default case in switch statement,
4762         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4763         to eliminate problem with initialisation of pointers, but problem
4764         still exists,
4765         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4766         * (emitStaticSegment): removed various lines emitting debug info,
4767         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4768         added processor registers for utilizing EEPROM,
4769         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4770         configurable and set 8
4771
4772 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4773
4774         * .version: increased version number to 2.4.2,
4775
4776         Cumulative patch for pic16 port
4777         * src/pic16/device.c: changed scheme to dump initial values for
4778         variables in idata segment, all print_idata* functions were removed,
4779         now the pic16_printIval* will be called,
4780         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4781         * _pic16_printPointerType, pic16_printPointerType,
4782         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4783         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4784         NEW, similar to the respective functions in SDCCglue.c,
4785         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4786         way, emitting hex bytes,
4787         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4788
4789 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4790
4791         * src/avr/ralloc.c (serialRegAssign),
4792         * src/xa51/ralloc.c (serialRegAssign),
4793         * src/pic/ralloc.c (serialRegAssign),
4794         * src/pic16/ralloc.c (serialRegAssign),
4795         * src/hc08/ralloc.c (serialRegAssign),
4796         * src/z80/ralloc.c (serialRegAssign),
4797         * src/ds390/ralloc.c (serialRegAssign),
4798         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4799
4800 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4801
4802         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4803         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4804
4805 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4806
4807         Cumulative patch for pic16 port:
4808         * src/pic16/device.h (typedef PIC16_device) modified fields for
4809         defining microcontrollers,
4810         * src/pic16/device.c: added new info for all devices in Pics16 array,
4811         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4812         to be optimised out by the pCode optimiser,
4813         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4814         specially, bug reported by G.M. Gallant,
4815         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4816         as force'd so that cannot be optimised out by pCode optimiser,
4817         * src/pic16/pcode.c,
4818         * src/pic16/pcodepeeph.c,
4819         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4820         they are disabled by default, but can be enabled explicit with
4821         command argument --denable-peeps, for testing,
4822         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4823         --pomit-ivt in COMPILE_FLAGS
4824
4825 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4826
4827         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4828           compilation on MSVC
4829
4830 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4831
4832         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4833
4834 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4835
4836         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4837         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4838
4839 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4840
4841         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4842         would only assign 0x300001 register.
4843
4844 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4845
4846         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4847         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4848
4849 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4850
4851         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4852         for ds80c400
4853         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4854         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4855         added peephole 254 (left shift), 255 (jump table)
4856
4857 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4858
4859         * device/lib/Makefile.in: removed comment line with model-pic16,
4860         * (target port-specific-objects-pic16): the libraries and objects
4861         are copied to the build directory form the device/lib/pic16/bin
4862         directory
4863
4864         Cumulative patch concerning pic16 port:
4865         * library directory has been re-organized,
4866         * added support for PIC18F1220,
4867         * added headers and library sources for chips 18f1220,18f6520,
4868         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4869
4870         * configuration registers setting has changed, now each supported
4871         device has a complete description of the registers it uses,
4872         * all initialisations are moved to idata sections, these section
4873         can be absolute or relocatable,
4874         * fixed initialisation of codespace variables,
4875         * fixed warning about PCLATU and gpsim,
4876         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4877         * (genAssign): use table reads when assigning from variables in codespace,
4878         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4879         char/int variables placed in codespace,
4880         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4881         registers set in .asm file, no need for --pomit-config-words anymore,
4882         * (pic16glue): some 8051 legacy segments are commented out
4883         (to be removed completely),
4884         * added support for alternative assembler and linker with --asm=
4885         and --link= command line arguments,
4886         * peepholes are disabled automatically in the port, no need to
4887         specify on command line,
4888         * port supports natively char/int/long multiplication, but converts
4889         all divisions to support functions,
4890         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4891         to the file set in variable $2,
4892         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4893         strings in ASCII format and not in hex,
4894         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4895         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4896         allocate proper register if iCodes aren't temporary,
4897
4898 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4899
4900         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4901
4902 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4903
4904         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4905         is commented out
4906
4907 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4908
4909         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4910         computed address is reused
4911         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4912         multi-byte bitfields
4913
4914 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4915
4916         * src/z80/gen.c: (genArrayInit): must check for pointers too
4917
4918 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4919
4920         * support/regression/tests/zeropad.c: never meant to commit the
4921           nestedstruct test: removed, added check for GCC version
4922
4923 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4924
4925         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4926         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4927         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4928           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4929           bugs 928906 and 954082 half-empty initializers
4930         * src/SDCCsymt.h,
4931         * src/SDCCsymt.c (getAllocSize): added for above fix
4932         * src/z80/gen.c (genArrayInit): fixed bug 741044
4933         * support/regression/tests/zeropad.c: added tests
4934
4935 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4936
4937         * src/pic16/device.c (pic16_dump_section): corrected bug which
4938         caused some symbols of the libraries to be misplaced
4939
4940 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4941
4942         * src/pic16/glue.c,
4943         * src/pic16/ralloc.h,
4944         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4945         to fix conflict with pic port
4946
4947 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4948
4949         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4950         externs configuration variables,
4951         * src/pic16/ralloc.h,
4952         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4953         prototype in header, commented out some debug messages
4954
4955 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4956
4957         * src/pic16/glue.c,
4958         * src/pic16/main.c,
4959         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4960         for gpasm COFF object generation. Thanks to D. Hawkins for
4961         his patch info
4962
4963 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4964
4965         * src/ds390/main.c,
4966         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4967         Brock for spotting this)
4968         * src/ds390/gen.c (genEndFunction),
4969         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4970         interrupt handler and critical. Disable push/pop optimizations when
4971         peephole optimizations disabled.
4972
4973 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4974
4975         Updated pic16 library sources and headers.
4976         * device/lib/pic16/pic18f*/ ,
4977         * device/include/pic16/*.h: modified to handle structured SFR
4978         definitions
4979
4980 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4981
4982         * src/port.h (PORT structure): added hook initPaths, now each
4983         port can declare its own default search paths,
4984         which can been seen with the --print-search-dirs option,
4985         see pic16 port for example,
4986         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4987         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4988         * (doPrintSearchDirs): NEW, replaces in a central manner the
4989         printing of search dirs which was split in set*Paths functions,
4990         * (main): added call to port->initPaths and doPrintSearchDirs,
4991         * src/avr/main.c,
4992         * src/ds390/main.c,
4993         * src/hc08/main.c,
4994         * src/izt/i186.c,
4995         * src/izt/tlcs900h.c,
4996         * src/mcs51/main.c,
4997         * src/pic/main.c,
4998         * src/pic16/main.c: modified port structures to reflect addition of
4999         initPaths hook,
5000
5001         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5002         * (pic16_dump_section): for registers in same address reserve memory once,
5003         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5004         to no_banksel,
5005         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5006         result is greater in size than right or left,
5007         * (pic16_genUMult8X8_8): there are some cases where the result can
5008         be 16 bits size, so handle these,
5009         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5010         * (pic16_outBitC): modified to emit pcodes,
5011         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5012         or not,
5013         * (genDivOneByte): implemented algorithm to divide 8-bits,
5014         * (genCmp): uncommented goto, but issues still exist,
5015         * (genAnd): fixed a bug with variables >8bits,
5016         * (genPackBits): optimization added that uses BCF/BSF to change a
5017         single bit,
5018         * (genAssign): fixed bug when assigning floating point literals,
5019         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5020         __sdcc_gsinit_startup label,
5021         * src/pic16/main.c (_pic16_init): removed search directory
5022         initialisations,
5023         * (_pic16_initPaths): NEW, used to initialise search directories,
5024         * (_hasNativeMulFor): support functions for all except char/int
5025         multiplication, and char division,
5026         * (PIC16_port struct): modified entry for native mul support,
5027         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5028         no_banksel option,
5029         * (buildCallTree): call to register_usage is ifdef'ed out,
5030
5031 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5032
5033         * device/include/string.h: applied Stas Sergeev's patch to make this
5034         header file compatible with the preprocessor -Wundef option
5035         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5036         failure (fixes bug #941458)
5037
5038 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5039
5040         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5041         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5042         that the variable, not the function, should be static
5043         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5044         to be consistent with non-literal case
5045
5046 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5047
5048         * src/SDCCast.c (isConformingBody): fixed bug #949967
5049         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5050         convilong): fixed bug #952086
5051
5052 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5053
5054         * src/SDCCmem.c (allocVariables): fixed bug #955321
5055
5056 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5057
5058         * src/hc08/main.c (_hc08_genAssemblerEnd),
5059         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5060         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5061         completely eliminated the use of a temporary file
5062         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5063         when more than one file linked
5064         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5065
5066 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5067
5068         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5069         which fixes bug #543481
5070         * support/regression/tests/bug-751703.c: fixed comments left from a
5071         cut and paste error
5072         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5073         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5074         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5075         scopes
5076         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5077         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5078         are now changed to underscores in moduleName
5079
5080 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5081
5082         * as/mcs51/lkmem.c: better fix for bug #954173
5083
5084 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5085         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5086
5087         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5088         * device/include/c8051f000.h,
5089         * device/include/c8051f120.h,
5090         * device/include/c8051f300.h,
5091         * device/include/c8051f310.h,
5092         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5093         PWM16) and detab'ed
5094
5095 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5096
5097         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5098         and mailing lists, doc'ed --no-peep-comments, removed reference
5099         to knoppix (newest version has no LyX/LaTeX), other minor changes
5100         * src/SDCCglue.c (glue): save 2 bytes stack space with
5101         option --main-return. The ljmp could probably be avoided too
5102
5103 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5104
5105         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5106
5107 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5108
5109         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5110         * src/SDCCopt.c (isLocalWithoutDef),
5111         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5112         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5113         (credit to Maarten Brock for patch #949363, on which this is based)
5114         * support/regression/tests/bug-751703.c: some test cases of extern used
5115         within inner scopes.
5116
5117 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5118
5119         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5120         SPEC_STRUCT
5121         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5122         struct definitions
5123         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5124         dwWriteLabel): fix to create valid debugger symbols even when
5125         the module name has non-alphanumeric symbols in it
5126         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5127         when a variable's allocation has been optimized away
5128
5129
5130 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5131
5132         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5133         * src/hc08/main.c,
5134         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5135         * src/mcs51/main.c,
5136         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5137         * src/ds390/main.c,
5138         * src/z80/gen.c (z80_emitDebuggerSymbol),
5139         * src/z80/main.c,
5140         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5141         * src/pic/main.c,
5142         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5143         * src/pic16/main.c,
5144         * src/avr/gen.c (avr_emitDebuggerSymbol),
5145         * src/avr/main.c,
5146         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5147         * src/xa51/main.c,
5148         * src/SDCCdebug.c (emitDebuggerSymbol),
5149         * src/SDCCdebug.h,
5150         * src/port.h: added a debugger struct to the port struct. Added a
5151         callback for defining debugger symbols
5152
5153         * src/SDCCast.c (createLabel),
5154         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5155         with isitmp = 1
5156         * src/SDCCicode.h,
5157         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5158         iCode back to the ast for the function
5159
5160         * src/hc08/ralloc.c (hc08_assignRegisters),
5161         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5162         unneeded fields from the regs struct.
5163         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5164         pushReg() & pullReg() functions instead of emitcode()
5165
5166         * src/hc08/gen.c (genLabel, genhc08Code),
5167         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5168
5169         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5170         debugger hooks
5171
5172         * src/hc08/gen.c (genEndFunction, genhc08Code),
5173         * src/hc08/gen.h,
5174         * src/mcs51/gen.c (genEndFunction, gen51Code),
5175         * src/mcs51/gen.h,
5176         * src/ds390/gen.c (genEndFunction, gen390Code),
5177         * src/ds390/gen.h,
5178         * src/z80/gen.c (genEndFunction, genZ80Code),
5179         * src/z80/gen.h,
5180         * src/z80/z80.h,
5181         * src/pic/gen.c (genEndFunction, genpic14Code),
5182         * src/pic/gen.h,
5183         * src/pic16/gen.c (genEndFunction, genpic16Code),
5184         * src/pic16/gen.h,
5185         * src/avr/gen.c (genEndFunction, genAVRCode),
5186         * src/avr/gen.h,
5187         * src/xa51/gen.c (genEndFunction, genXA51Code),
5188         * src/xa51/gen.h,
5189         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5190         specific code to cdbFile.c and out of the backend code generators
5191
5192         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5193         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5194         starting address is now 0
5195
5196         * as/hc08/asm.h,
5197         * as/hc08/m08pst.c,
5198         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5199         assembler directive for DWARF support
5200         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5201
5202         * src/src.dsp,
5203         * src/Makefile.in,
5204         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5205
5206 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5207
5208         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5209         and inappropriate peephole optimization in jump tables
5210
5211 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5212
5213         * as/hc08/m08pst.c,
5214         * src/SDCCglue.c: sdccopt works for the hc08 port now
5215
5216 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5217
5218         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5219
5220 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5221
5222         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5223
5224 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5225
5226         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5227         rules
5228         * src/SDCCmain.c,
5229         * src/SDCCglobl.h,
5230         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5231         comments from the peephole optimizer replacement rules
5232         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5233         symbols
5234         * src/SDCCcse.c (updateSpillLocation),
5235         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5236         equivalents
5237         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5238         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5239         objects far pointers
5240
5241 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5242
5243         * src/SDCCsymt.h: a missing part of my last change
5244         * src/pic/ralloc.c (regTypeNum),
5245         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5246
5247 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5248
5249         * src/SDCCicode.h,
5250         * src/SDCCicode.c (aggrToPtrDclType),
5251         * src/SDCCptropt.h,
5252         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5253         ptrPseudoSymConvert),
5254         * src/pic/ralloc.c (regTypeNum),
5255         * src/pic16/ralloc.c (regTypeNum),
5256         * src/hc08/ralloc.c (regTypeNum),
5257         * src/ds390/ralloc.c (regTypeNum),
5258         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5259         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5260
5261 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5262
5263         * link/z80/lkmain.c (afile),
5264         * as/hc08/lkmain.c (afile),
5265         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5266         prevent a pointer problem when a filename has no directory and
5267         no extension specified.
5268
5269 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5270
5271         * link/z80/lkmain.c (afile): allow periods in directory names
5272         * link/z80/lkmain.c (afile),
5273         * as/mcs51/lkmain.c (afile),
5274         * as/hc08/lkmain.c (afile): allow linker script file to have an
5275         extension other than ".lnk"
5276         * link/z80/lklex.c (getfid),
5277         * link/z80/lkmain.c (parse),
5278         * as/mcs51/lklex.c (getfid),
5279         * as/mcs51/lkmain.c (parse),
5280         * as/hc08/lklex.c (getfid),
5281         * as/hc08/lkmain.c (parse): Support comments in the linker script
5282         file on lines by themselves and after filenames
5283
5284 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5285
5286         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5287
5288 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5289
5290         * src/z80/peeph-z80.def: removed some peephole rules that don't
5291         work with multibyte arithmetic (fixed bug #937126)
5292         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5293         to registers and not global variables
5294         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5295         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5296         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5297         checking for assignments not internally generated (fixed bug #931895)
5298         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5299         structure member (fixed bug #930072)
5300
5301 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5302
5303         * src/SDCCmain.c (linkEdit),
5304         * src/hc08/main.c (_hc08_parseOptions),
5305         * as/hc08/Makefile.in,
5306         * as/hc08/aslink.h,
5307         * as/hc08/asm.h,
5308         * as/hc08/m08pst.c,
5309         * as/hc08/lkrloc.c (relr, rele),
5310         * as/hc08/lkarea.c (lnkarea)
5311         * as/hc08/lkmain.c (afile, parse),
5312         * as/hc08/lkelf.c: support for ELF output
5313         * as/hc08/lks19.c (s19),
5314         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5315
5316 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5317
5318         * as/mcs51/lkihx.c: Fixed bug #899105.
5319
5320 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5321
5322         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5323         .dsp files from Unix to DOS.
5324
5325 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5326
5327         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5328         function pointers; we have been compliant for several months now.
5329         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5330         change that was accidently commented out
5331         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5332         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5333         bug #922319
5334
5335 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5336
5337         * src/hc08/gen.c: output of all of the internal debugging information
5338         is now controlled by the D() macro; it is disabled by default
5339
5340 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5341
5342         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5343         harder to keep the same registers during a CAST iCode
5344         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5345         long via int can be done in a single cast, if the signedness is
5346         correct.
5347         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5348         putchar() in tinibios.c in ds390's library
5349
5350 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5351
5352         * src/SDCCast.c (decorateType): fixed bug #898889,
5353         cast result of a literal complement too
5354         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5355         fixed check for bitfields
5356
5357 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5358
5359         * src/SDCCicode.c (geniCodeLogic): made it static,
5360         (geniCodeLogicAndOr): added in order to fix bug #905492,
5361         (ast2iCode): fixed bug #905492
5362         * support/regression/tests/bug-905492.c: added
5363         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5364         (processParms): fixed bug #927659: don't copy parms, this will clear
5365         decorated flag
5366         * support/regression/tests/bug-927659.c: added
5367
5368 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5369
5370         * src/SDCCast.c (addCast): don't cast float to char
5371         * device/lib/libsdcc.lib: added _memmove
5372
5373 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5374
5375         * device/lib/large/Makefile: fixed parallel execution by
5376         replacing `make` by `$(MAKE)`
5377
5378 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5379
5380         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5381         offsets (fixes bug #923936)
5382
5383 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5384
5385         * device/lib/small/Makefile: fixed parallel execution by
5386         replacing `make` by `$(MAKE)`
5387
5388 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5389
5390         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5391
5392 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5393
5394         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5395         * src/regression/Makefile: Regression test was not running.
5396
5397 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5398
5399         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5400         complement if possible
5401         * src/SDCCval.c (valComplement),
5402         * src/SDCCicode.c (operandOperation): fixed complement of literal
5403         * support/regression/tests/onebyte.c (testComplement): added
5404
5405 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5406
5407         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5408         return an optimized tree; actually replace actParm with the new tree
5409         * src/SDCCast.h: added some parantheses to remove side effects
5410         * support/regression/tests/bug-920866.c
5411
5412 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5413         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5414         Bit operands were not being handled properly in the pic14 port.
5415         (now src/regression/add.c passes again).
5416
5417 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5418
5419         * src/SDCC.y (labeled_statement): case and default no longer require
5420         a following statement (RFE #893037)
5421
5422 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5423
5424         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5425         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5426         disabled (fixes bug #916294)
5427         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5428         "mov a,acc"; patch provided by Lenny Story
5429         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5430
5431 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5432
5433         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5434         functions
5435         * src/ds390/gen.c (genFunction, genEndFunction),
5436         * src/ds390/ralloc.c (ds390_assignRegisters),
5437         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5438         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5439         pushed if there are parameters passed on the stack. Also, a cleaner
5440         way to decide if r0/r1 should be pushed/popped. (Together they fix
5441         bug #918693)
5442
5443 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5444
5445         * doc/sdccman.lyx,
5446         * device/lib/mcs51/crtpagesfr.asm,
5447         * device/lib/mcs51/crtxinit.asm,
5448         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5449         to avoid confusion with Si Lab's SFRPAGE register.
5450
5451 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5452
5453         * src/SDCCglue.c (emitMaps): allow public sfr variables
5454         * src/SDCCglue.c (initialComments): include compiler build date
5455         with compiler version and put the timestamp of the generated
5456         assembly file on a serperate line to be less confusing.
5457         * src/port.h: added genInitStartup hook
5458         * src/avr/main.c,
5459         * src/ds390/main.c,
5460         * src/hc08/main.c,
5461         * src/pic/main.c,
5462         * src/pic16/main.c,
5463         * src/xa51/main.c,
5464         * src/z80/main.c: genInitStartup initialize as NULL (default to
5465         historical behaviour)
5466         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5467         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5468         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5469         library instead of hard coding it into the compiler.
5470         * support/regression/ports/mcs51-stack-auto/spec.mk,
5471         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5472         * device/lib/mcs51/Makefile,
5473         * device/lib/small/Makefile,
5474         * device/lib/large/Makefile,
5475         * device/lib/mcs51/crtpagesfr.asm,
5476         * device/lib/mcs51/crtstart.asm,
5477         * device/lib/mcs51/crtxclear.asm,
5478         * device/lib/mcs51/crtxinit.asm,
5479         * device/lib/mcs51/crtclear.asm,
5480         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5481         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5482         and into user configurable files.
5483         * device/lib/clean.mk: clean mcs51 directory too
5484         * support/regression/tests/longlit.c: added static to T1 declaration
5485         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5486         accesses in the initialization code
5487
5488 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5489
5490         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5491         OSCTRIMVAL as noted in bug #916008
5492
5493 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5494
5495         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5496         in loops with multiple exits (reported as incorrect registers
5497         used by Martin Helmling in Sdcc-user list)
5498
5499 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5500
5501         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5502         made ds390 register extensions look less like error messages
5503
5504 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5505
5506         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5507         reported by Adam Wozniak in Sdcc-user list
5508
5509 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5510
5511         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5512         arithmetic optimizations, added debug output
5513
5514 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5515
5516         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5517         * sdcc.spec: updated and split sdcc into 3 rpms
5518         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5519         needed for literals of LEFT_OP and '+'
5520         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5521         introduced RESULT_TYPE_NOPROM
5522         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5523         left shift
5524         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5525         limited promotion to int only for '*'
5526         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5527
5528 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5529
5530         * src/pic16/gen.c (genSkip),
5531         (genc16bit2lit), (gencjneshort): commented out
5532         (is_LitOp): new helper function, checks operand type
5533         (genCmpEq): rewritten
5534
5535 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5536
5537         * support/regression/tests/bug-908454.c: added
5538
5539 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5540
5541         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5542         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5543         (geniCodeCast): cosmetic, don't preserve bit storage class
5544         (geniCodeLeftShift): added promotion
5545         (geniCodeLogic): fixed regression
5546         * src/SDCCsymt.c (computeTypeOr): accept bits too
5547         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5548
5549 2004-03-07  Borut Razem <borut.razem AT siol.net>
5550
5551         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5552
5553 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5554
5555         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5556         version of pic16_genPackRegisters which does not check if ic is a
5557         CAST operator,
5558         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5559         function cause string1.c regression test fails
5560
5561 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5562
5563         * sim/ucsim/configure.in,
5564         * sim/ucsim/configure,
5565         * sim/ucsim/doc/Makefile.in: use docdir
5566         * src/SDCC.y: fixed sbit atrributes
5567         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5568         * src/SDCCast.c (decorateType): |^& need special promotion handling
5569         * src/SDCCast.h,
5570         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5571         * src/SDCCsymt.h (computeType),
5572         * src/SDCCicode.c: computeType() needs op
5573         * src/SDCCsymt.c (checkTypeSanity),
5574         * doc/sddman.lyx: "plain" bitfields are unsigned
5575         * src/SDCCsymt.c (computeTypeOr): added
5576         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5577         |^& ops
5578         * src/SDCCval.c (val*): computeType() needs op
5579         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5580         * support/regression/tests/onebyte.c: added tests for |^&
5581
5582 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5583
5584         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5585         for writing icode into asm output.
5586
5587 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5588
5589         * src/pic16/device.c: added some debug lines enabled
5590         with macro DEBUG_CHECK,
5591         * src/pic16/genarith.c: more debug in genPlus,
5592         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5593         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5594         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5595         * (aopForSym): onStack symbols are re-placed in data memspace,
5596         and onStack flag is cleared,
5597         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5598         copy temporary pcodeop,
5599         * (genPcall): added warning for not updating PCLATU,
5600         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5601         always true for pic16 port,
5602         * (genMultOneWord): NEW, supports integer multiplication,
5603         * (genMult): modified to call genMultOneWord,
5604         * (ifxForOp): added warning when return NULL,
5605         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5606         flag is set before call to operandFromSymbol for implicit
5607         added structures,
5608         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5609         options.intlong_rent are set by default,
5610         * (_hasNativeMulFor): modified to allow port generation of integer
5611         multiplication,
5612         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5613         set regtype to REG_SFR for all registers, restricting seting the
5614         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5615
5616 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5617
5618         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5619         more than 500 times in the regression tests
5620
5621 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5622
5623         * support/Util/SDCCerr.h,
5624         * support/Util/SDCCerr.c,
5625         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5626         enumerator_list),
5627         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5628         for symbol conflicts.
5629         * support/valdiags/tests/enum.c,
5630         * support/valdiags/tests/tentdecl.c,
5631         * support/valdiags/tests/struct.c: expect possible error messages
5632         referring to original symbol definitions.
5633         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5634         * src/SDCCsymt.h,
5635         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5636
5637 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5638
5639         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5640
5641 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5642
5643         * src/pic16/ralloc.c (newReg): fixed bug #908929
5644
5645 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5646
5647         * src/ds390/gen.c: added missing #include "main.h"
5648
5649 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5650
5651         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5652         checking if symbol is already in set,
5653         * src/pic16/device.h: prototype for checkAddSym,
5654         * src/pic16/gen.c: (_G): added entry interruptvector,
5655         * (assignResultValue): removed some commented out lines,
5656         * (genFunction): check for ISR via sym->type, absolute section for
5657         interrupt code is created via a new pBlock, the goto instruction is
5658         placed now correctly at the interrupt vector position, changed all
5659         references from ivec to _G.interruptvector,
5660         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5661         is the interrupt is a high priority one, same for return from ISR,
5662         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5663         externs to calls of checkAddSym,
5664         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5665         pic16_pcode_verbose flag is set,
5666         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5667         * src/pic16/pcoderegs.c: message about how many registers are saved
5668         will only be emitted if pic16_pcode_verbose flag is set,
5669
5670 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5671
5672         * src/ds390/ralloc.h,
5673         * src/ds390/ralloc.c (ds390_regWithIdx),
5674         * src/ds390/gen.c (emitcode),
5675         * src/ds390/main.h,
5676         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5677         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5678         ds390operandCompare, getRegsRead, getRegsWritten,
5679         initializeAsmLineNode): customized instruction size calculation for
5680         ds390, started basis for some register optimizations
5681         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5682         corresponding assembly output
5683         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5684         missing push/pop of r0/r1. Optimized push/pops
5685
5686 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5687
5688         * src/mcs51/main.c (instructionSize): fixed ACALL size
5689         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5690
5691 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5692
5693         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5694         the sorting of rlist with NULL elements
5695         * (print_idataType, print_idata): NEW to create idata sections
5696         * src/pic16/device.h: idataSymSet new variable
5697         * src/pic16/gen.c (genFunction): fixed some bugs in string
5698         comparing, improved the absolute section creation for ISRs,
5699         added FSR0L/FSR0H in registers that are saved in an ISR,
5700         * (genInline): fixed the processing of inline snippets,
5701         now they undergo no process by the peephole optimizer
5702         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5703         are placed in idataSymSet,
5704         * (pic16emitStaticSeg): extern symbols are added in externs,
5705         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5706         switching when aboslute variables are placed in access bank memory
5707         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5708         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5709         commented out with #if,
5710         * (pic16_packRegisters): reintroduce the check for CAST because some
5711         symbols are not correctly handled,
5712         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5713         pCodeInstruction instead of pCode,
5714         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5715         pCodeAsmDir definition,
5716         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5717         directive, then the argument directive is emitted without the leading
5718         tab, hack for inline labels which must be in the first column,
5719         * (compareLabel,pic16_findNextInstruction),
5720         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5721         * (insertBankSwitch): modified for the new pCodeAsmDir,
5722
5723 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5724         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5725
5726         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5727         instance,
5728         * (pushSide): commented out with #if,
5729         * (assignResultValue): fixed some typos in saving
5730         registers,
5731         * (genPcall): FIXED and sync'ed with genCall,
5732         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5733         * (genNearPointerGet): fixed to handle some more cases,
5734         implementation scheme via table reads,
5735         * (genConstPointerGet): modified to access code memory correct,
5736         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5737         and improved to handle some cases
5738         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5739         instead of "RETLW" for init data
5740         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5741         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5742         variables are placed in access bank memory (<0x80 and >=0xf80),
5743         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5744         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5745         TBLWT_POSTDEC,TBLWT_PREINC
5746         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5747         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5748         directives
5749         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5750         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5751         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5752         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5753
5754 2004-02-29  Borut Razem <borut.razem AT siol.net>
5755
5756         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5757         support/Util/findme.h, support/Util/system.h: enhance binary relative
5758         search for lib and include by using findProgramPath()
5759
5760 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5761
5762         * src/SDCCpeeph.h,
5763         * src/SDCCpeeph.c (pcDistance),
5764         * src/port.h,
5765         * src/mcs51/ralloc.h,
5766         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5767         * src/mcs51/main.h,
5768         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5769         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5770         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5771         size calculation port specific, started basis for some register
5772         optimizations
5773         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5774         missing push/pop of r0/r1. Optimized push/pops
5775         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5776         * device/lib/_modsint.c (_modsint),
5777         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5778         and stack version so regression tests pass
5779
5780 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5781
5782         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5783         * src/SDCCast.c (decorateType): catch another small optimization
5784         with '?' operator
5785         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5786         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5787         modified to finally use computeType() all over SDCC,
5788         see Feature Request #877103
5789         * src/SDCCval.h: cosmetic
5790         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5791         valCompare(); regression tested in muldiv.c
5792         * support/regression/tests/muldiv.c (testMod): mod sign follows
5793         dividend only
5794
5795 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5796
5797         * src/SDCCast.c (decorateType): fixed bug #902362
5798         * doc/INSTALL.txt: fixed install instructions for win32
5799
5800 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5801
5802         * device/include/Makefile.in (install): fixed by replacing spaces
5803         by tabs
5804         * doc/README.txt,
5805         * doc/INSTALL.txt: updated for release
5806         * doc/sdccman.lyx: added warning for --xstack being buggy
5807
5808 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5809
5810         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5811         to eliminate build warnings.
5812         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5813
5814 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5815            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5816
5817         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5818         removed -penable-stack, added comment for stack pragma, added
5819         warning for not initializing the stack/frame registers, removed
5820         comment at interrupts section
5821
5822         Stack is made permanent, there is no ability to disable stack usage.
5823         * src/pic16/device.h,
5824         * src/pic16/device.c: removed all references to USE_STACK macro,
5825         * src/pic16/device.c (pic16_dump_section): when no elements in
5826         rlist, free rlist before return,
5827         * (pic16_dump_int_registers): NEW, internal registers are a new set
5828         of general purpose registers reused by each function,
5829         * (checkAddReg): returns 1 if registers is added to set,
5830         * (pic16_groupRegistersInSection): when a registers is of type
5831         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5832         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5833         SRCASECMP macro is moved here from device.c
5834         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5835         PO_PCLATU, PO_PRODL, PO_PRODH,
5836         * (pic16_pCodeOpType, genMinus,
5837         changed compares to "a" register, with AOP_ACC,
5838         * (pic16_genPlus): fixed some bugs and indented properly,
5839         * (pic16_addSign): changed size to size+offset in the MOVWF
5840         instruction,
5841         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5842         multiply 8-bit operand by literal, result is 8-bit,
5843         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5844         multiply 2 8-bit operand, result is 8-bit,
5845         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5846         genUMult8X*_16,
5847         * src/pic16/gen.c: changed accUse to contain WREG only,
5848         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5849         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5850         true, do not use immediate addressing any more unless sym is a
5851         pointer in codespace,
5852         * (aopForRemat): do not use immediate addressing when symbol not in
5853         codespace and when symbol's address is requested,
5854         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5855         accUse size (= 1),
5856         * (aopGet): added case for AOP_ACC and don't return "accumulator
5857         bug" but WREG instead,
5858         * (popGetTempReg): pushes contents of temporary register in stack,
5859         * (popReleaseTempReg): pops contents of temporary register from
5860         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5861         * (pic16_popGet): separated case AOP_ACC to return register WREG
5862         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5863         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5864         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5865         the use of immediate pointers to certain cases only.
5866
5867         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5868         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5869         * (assignResultValue, genCall, genRet): modified to use the new
5870         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5871         genPcall is still broken,
5872         * (genFunction): added code to create 'A' type pBlocks when
5873         interrupt functions are generated, code not extensively tested yet,
5874         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5875         * (genEndFunction): modified so ISRs pop stored registers from stack,
5876         * (genMultOneByte): cleanup,
5877         * (AccRsh): added flag andmask, to and result with appropriate mask,
5878         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5879         * (genDataPointerGet): fixed and reenabled its use,
5880         * (genNearDataPointerGet): bugs fixed,
5881         * (genDataPointerSet): bugs fixed,
5882         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5883         pic16_DumpSymbol, pic16_DumpOp,
5884         * src/pic16/genutils.h: function prototypes for the above functions,
5885         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5886         pointers,
5887         * (pic16emitRegularMap): many many many improvements, but needs a
5888         major cleanup,
5889         * src/pic16/main.c: enable_stack in pic16_options is removed,
5890         * (_pic16_parseOptions): removed command line options -penable-stack,
5891         * (_process_pragma): emit stack symbol only when stack pragma is
5892         processed,
5893         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5894         redirected to FSR0L/FSR0H pair,
5895         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5896         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5897         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5898         for immediates,
5899         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5900         * (dumpPicOptype): NEW,
5901         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5902         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5903         with movff instruction,
5904         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5905         added pic16_int_regs, some packRegsFor* functions are commented out,
5906         because produce errors,
5907         * src/pic16/NOTES: minor modifications
5908
5909 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5910
5911         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5912         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5913         --pack-iram.
5914         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5915         * as/mcs51/lkaomf51.c: fixed bug #895763
5916
5917 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5918
5919         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5920
5921 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5922
5923         * doc/sdccman.lyx: added details about the HC08 storage classes and
5924         interrupts, fixed the register usage info for z80 & gbz80
5925
5926 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5927
5928         * doc/sdccman.lyx: added more pic16 port documentation
5929         * device/include/pic16/: added header pic18fregs.h
5930
5931 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5932
5933         * doc/sdccman.lyx: added Vangelis' contribution
5934
5935 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5936
5937         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5938         extend to the next CALL or PCALL, not just to the next CALL.
5939
5940 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5941
5942         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5943
5944 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5945
5946         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5947         bug #895752 and a better fix for bug #716790
5948
5949 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5950
5951         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5952
5953 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5954
5955         * doc/sdccman.lyx: minor changes, minor changed
5956
5957 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5958
5959         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5960         which can't handle SDCC_NEWONEBYTEOPS,
5961         (geniCodeMultiply): removed conversion from mult to shift for pic14
5962         and pic16
5963
5964 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5965
5966         * src/hc08/gen.h,
5967         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5968         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5969         thus fixing bug #895406
5970
5971 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5972
5973         * device/lib/_modsint.c,
5974         * device/lib/_modslong.c: sign follows divisor only
5975         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5976         signs or signedness can be ignored
5977         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5978         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5979         added optimization for IFX,
5980         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5981         arguments;
5982         reenabled optimization for IFX, which was removed on 2004-01-11
5983         * src/SDCCast.h: added return type IFX
5984         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5985         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5986         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5987         SDCC_OLDONEBYTEOPS selects the old behaviour
5988         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5989         changed again and commented promotion rule
5990         * src/SDCCval.c (valDiv): promotion no longer necessary
5991         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5992         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5993         rewritten
5994         * support/regression/tests/onebyte.c: added
5995
5996 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5997
5998         * gen.c (genInline): reverted to old code for assemnling inline
5999         code because of bug reported James Chadd
6000
6001 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6002
6003         * ralloc.h: missing declarations from previous patch,
6004         seems that patch for ralloc.h was never applied, fixed
6005
6006 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6007            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6008
6009         * pcode.c,
6010         * pcode.h,
6011         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6012         indirect addressing. Marked FSR0 as deprecated
6013         * gen.c (pointerCode): commented out, not needed now
6014         (pic16_popGet2p): new MOVFF helper function
6015         (genGenPointerGet),
6016         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6017         (shiftRLong): removed duplicate debugging info
6018
6019 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6020
6021         * src/ds390/gen.c (genNearPointerGet),
6022         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6023         optimization with bits, but not bitfields.
6024         * src/ds390/ralloc.c (packRegisters),
6025         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6026
6027 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6028
6029         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6030
6031 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6032
6033         * src/SDCCsymt.h,
6034         * src/SDCCicode.c (operandFromSymbol),
6035         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6036         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6037         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6038         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6039         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6040         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6041         bug #892038
6042         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6043         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6044         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6045         * src/SDCCsymt.c (newSymbol),
6046         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6047         enumerator_list),
6048         * src/SDCCval.h,
6049         * src/SDCCval.c (newiList): fixed bug #885705
6050
6051 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6052
6053         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6054         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6055
6056 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6057
6058         * device/include/c8051f120.h,
6059         * device/include/c8051f300.h,
6060         * device/include/c8051f310.h: added/updated header files for Silicon
6061         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6062         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6063         in new section Submitting patches
6064
6065 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6066
6067         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6068         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6069         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6070         genGenPointerSet),
6071         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6072         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6073         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6074         genGenPointerSet),
6075         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6076         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6077         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6078         genGenPointerSet),
6079         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6080         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6081         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6082         genGenPointerSet): fixed bug #892400
6083         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6084         to eliminate build warnings.
6085         * src/SDCCast.c (processParms),
6086         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6087         fixed bug 751859
6088         * support/valdiag/valdiag.py: added GCC to the list of defines active
6089         when compiling with gcc
6090
6091 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6092
6093         * support/Util/SDCCerr.h,
6094         * support/Util/SDCCerr.c,
6095         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6096         with an incomplete type (fixed bug #883734)
6097         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6098
6099 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6100
6101         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6102
6103 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6104
6105         * src/SDCCast.c (decorateType),
6106         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6107         function pointer implementation
6108         * support/regression/tests/funptrs.c: added tests to verify both forms
6109         of function pointers work correctly. Added tests to verify parameters
6110         are passed in the correct order.
6111
6112 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6113
6114         * device.c (regCompare): registers are sorted by ascending
6115         address and increasing size,
6116         * main.c (_pic16_finaliseOptions): removed the declaration
6117         of compiler macro MCU. Now a macro of the format pic18fxxxx
6118         will be defined from the command line
6119
6120 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6121             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6122
6123         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6124         PCOP_RLCF was overwritten!
6125         * gen.c (genSkip): commented out calls to pic16_emitcode,
6126         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6127         * (genlshTwo),
6128         * (genRRC): added debugging info,
6129         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6130         overwritten while shifting,
6131         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6132         overwritten while shifting,
6133         * (AccLsh),
6134         * (AccRsh),
6135         * (shiftLLeftOrResult),
6136         * (shiftRLeftOrResult),
6137         * (shiftRLong),
6138         * (shiftLLong): Implemented with pic16_emitpcode
6139         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6140         * (genLeftShift): Fixed bug, operand for shift by variable always
6141         was "and"ed with 0x0f,
6142         * (genLeftShiftLiteral),
6143         * (genrshTwo),
6144         * (genRightShiftLiteral): added debugging info,
6145         * (genrshFour): added comment,
6146         * (genRightShift): determined signedness from operand "left"
6147         instead of "result"
6148
6149 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6150
6151         * src/SDCCicode.c (geniCodeParms),
6152         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6153         function pointers, fixed function pointer bugs #861242 and #861896
6154
6155 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6156
6157         * device/include/c8051f000.h,
6158         * device/include/c8051f120.h,
6159         * device/include/c8051f300.h: added header files for Silicon
6160         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6161
6162 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6163
6164         * src/SDCCast.c (processParams): added new type flow and restructured
6165         (gatherAutoInit): added new type flow
6166         (addCast): cosmetic changes
6167         (getLeftResultType): added new type flow for array indices, patch
6168         provided by Stas, see FR #877103
6169         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6170         array index patch by Stas
6171         * src/SDCCast.h: added prototype getResultTypeFromType()
6172         * src/SDCCval.h,
6173         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6174         * src/pic/glue.c (pic14emitStaticSeg),
6175         * src/pic16/glue.c (pic16emitStaticSeg),
6176         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6177         for initialization of symbols
6178         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6179         * support/Util/SDCCerr.h:
6180         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6181         * .version: bumped version number to 2.3.8
6182         * device/include/Makefile.in (install),
6183         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6184         avoid warnings
6185
6186 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6187
6188         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6189         Slade Rich fixed an optimization bug
6190         * src/pic/pcodepeep.c,
6191         * src/pic/pcoderegs.c
6192         * doc/Makefile (install): added test for directory
6193
6194 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6195
6196         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6197         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6198         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6199         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6200         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6201         * as/mcs51/asexpr.c (term),
6202         * as/hc08/asexpr.c (term): fixed bug #887146
6203
6204 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6205
6206         * src/z80/gen.c (genMult): handle single byte result product
6207         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6208         DUMMY_READ_VOLATILE (fixed bug #886367)
6209
6210 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6211
6212         * support/regression/tests/libmullong.c: fixed logic, on little endian
6213         hosts we ended without a mullong_wrapper()
6214
6215 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6216
6217         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6218         virus/worm forged address usage.
6219
6220 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6221
6222         Fixed promotion, it should be done on AST level:
6223         * src/SDCCast.c (addCast): added promotion to int
6224         (decorateType): updated call to upCast()
6225         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6226         usualUnaryConversions()
6227
6228 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6229
6230         * support/regression/tests/literalop.c (mulWrapper): Added a
6231         wrapper to remove integer overflow warnings.
6232
6233         * support/regression/tests/float_trans.c: Made work on host.
6234
6235         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6236         location of sz80.
6237
6238         * support/regression/generate-cases.py (main): Changed from inline
6239         to a main method.
6240
6241         * doc/Makefile (install): Changed to depth first to get rid of
6242         missing directory install warning.
6243
6244         * as/Makefile (install-doc): Made work on Mac.
6245
6246 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6247
6248         * src/SDCCast.c: added an additional type flow in decorateType() of
6249         opposite direction, see feature request #860006; it's enabled at runtime
6250         by setting the environment variable SDCC_NEWTYPEFLOW
6251         * src/SDCCast.h: changed prototype of decorateType()
6252         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6253         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6254         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6255         see feature request #877103
6256         * src/SDCCval.c: updated call of decorateType()
6257         (valBitwise): fixed bug #882876
6258         (valMinus): added promotion
6259         (valLogicAndOr): result is unsigned
6260         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6261         * src/SDCCsymt.c (computeType),
6262         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6263         must not cause an unsigned operation
6264         * src/pic/glue (pic14emitRegularMap),
6265         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6266
6267 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6268
6269         * src/pic/pcode.c (PCodeID): commented out left over debug code
6270
6271 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6272
6273         * support/valdiag/tests/overflow.c: added shift tests
6274         * src/pic/device.c,
6275         * src/pic/gen.c,
6276         * src/pic/gen.h,
6277         * src/pic/glue.c,
6278         * src/pic/main.c,
6279         * src/pic/pcode.c,
6280         * src/pic/pcode.h,
6281         * src/pic/pcodepeep.c,
6282         * src/pic/pcoderegs.c,
6283         * src/pic/ralloc.c,
6284         * src/pic/ralloc.h: applied patch from Slade Rich;
6285         added support for multiple code pages and multiple RAM banks on the
6286         PIC 14 port. The ASM files now no longer simply assume all the
6287         code / RAM are in the same page / bank. This means the linker can
6288         safely allocate code/RAM of separate ASM files to different pages/banks.
6289         * doc/sdccman.lyx: added Slade's tips
6290         * src/mcs51/peeph.def: fixed bug #880768
6291
6292 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6293
6294         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6295         * src/SDCCast.c (decorateType): fixed bug #880197
6296
6297 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6298
6299         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6300         getopt.h.
6301
6302         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6303         strtof is not part of C89 and isn't included with Mac OS X.
6304
6305 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6306
6307         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6308         shiftL2Left2Result): fixed bug #879326
6309         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6310         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6311         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6312         address fetch for clr instruction
6313         * device/lib/hc08/_mulint.c: created optimized assembly version
6314         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6315
6316 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6317
6318         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6319         proposed in FR #877103
6320
6321 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6322
6323         * src/SDCCval.c (cheapestVal): added missing checks
6324         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6325         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6326
6327 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6328
6329         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6330         equal operands
6331
6332 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6333
6334         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6335         loaded with the linker search paths (-L arguments) and the libraries
6336         to be linked with the current source (-l arguments). Changes
6337         currently will affect only the pic16 port.
6338         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6339         include path the port specific paths and port specific libraries,
6340         * gplink command now contains the $3 argument,
6341         * src/pic16/device.h,
6342         * src/pic16/device.c,: structure PIC_device is made public and
6343         renamed to PIC16_device, the same for variable Pics which is renamed
6344         to Pics16. Updated all references to them.
6345         * src/pic16/glue.c (pic16glue): corrected bug with code
6346         initialization which bypassed the variable initializations block.
6347
6348         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6349         COMPILE_FLAGS and added the --nostdinc option
6350
6351 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6352
6353         * device/include/mc68hc908jb8.h: Register defs for another member
6354         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6355
6356 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6357
6358         Documenting changes from previous commits.
6359         * configure.in (version 1.56),
6360         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6361         when generating output files to configure the pic16 library,
6362         but now I've commented it out, since gputils aren't installed in the
6363         SF compile farm, so library won't compile
6364
6365         * device/lib/Makefile.in (version 1.56): initially I've added in
6366         target 'all' the prerequestive 'model-pic16' so it compiled the
6367         pic16 library, but now I've commented it out for the same reasons
6368         above,
6369         * added targets 'model-pic16' and 'objects-pic16' to compile the
6370         library
6371         * added target 'port-specific-objects-pic16' to handle the
6372         generated libraries and copy them into the build/ directory
6373         * added target 'clean-intermediate-pic16' to clean intermediate
6374         files into pic16 directory
6375         * in target 'installdirs' added line to create directory pic16 in
6376         the installation path
6377
6378         * device/include/Makefile.in (version 1.11): in target 'install'
6379         added lines to copy all header files to installation path,
6380         * in target 'installdirs' added line create directory for pic16
6381         headers in the installation path
6382
6383 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6384
6385         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6386          a function call
6387
6388 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6389
6390         * configure,
6391         * device/lib/configure.in,
6392         * device/lib/configure: fixed for autoconf 2.57
6393
6394 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6395
6396         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6397         option so that it actually works. Made it specific to the z80, since
6398         the gbz80 doesn't have these kinds of I/O ports.
6399
6400 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6401
6402         * device/include/z180.h,
6403         * device/lib/_memcpy.c,
6404         * device/lib/_memmove.c,
6405         * device/lib/_mulint.c,
6406         * device/lib/ser_ir.c,
6407         * device/lib/ser_ir_cts_rts.c,
6408         * device/lib/_strcmp.c,
6409         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6410         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6411         portmode; added deprecation warning for bank= and protmode= forms.
6412         Also, guard against buffer overflow.
6413         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6414
6415 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6416
6417         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6418         changed interrupt vector table generation to only emit declared vectors.
6419         * device/include/Makefile.in: added missing backslash
6420         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6421
6422 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6423
6424         Mainly changes to support compilation of the device libraries
6425         * src/pic16/device.c: stack is allocated via symbol and not
6426         via literal number. The symbol is placed in the corresponding
6427         position of the data ram
6428         * (pic16_dump_section): relocatable and absolute uninitialized
6429         data are now emitted in sorted order to reduce section naming,
6430         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6431         weren't marked as being in the access bank,
6432
6433 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6434
6435         Added portion of GNU PIC Library under the directory
6436         device/include/pic16 and device/lib/pic16. These files
6437         contain the declarations of SFRs for the PIC18Fxx2 devices.
6438         The directory is initialized via configure from toplevel.
6439
6440 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6441
6442         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6443         the spilllocations to be compared correctly
6444
6445 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6446
6447         * src/SDCCast.c (decorateType): fixed bug introduced today
6448
6449 2004-01-12  Borut Razem <borut.razem AT siol.net>
6450
6451         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6452         doc/sdccman.lyx: upper case pragmas are deprecated
6453
6454 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6455
6456         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6457         in simpler and even better code
6458
6459 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6460
6461         * src/SDCCicode.c (operandOperation): fixed bug #874819
6462         * src/SDCCast.c (decorateType): fixed
6463         char foo (unsigned long ul) { return ul > 0; }
6464
6465 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6466
6467         * doc/sdccman.lyx: Moved and added some sections, small changes
6468         all over. Telling LaTeX to be less strict with word spacing
6469         to better keep the right margin. Changed some notes about
6470         maintainance of the ports in section 3.2.1 - is it OK like this?
6471
6472 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6473
6474         SDCC source changes:
6475         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6476         convilong): modified to inform the pic16 port that builtin functions
6477         are external
6478
6479         PIC16 PORT specific changes:
6480         * src/pic16/device.c pic16_dump_equates() added,
6481         processor registers declared internally by the port are emitted in
6482         the translation as equates,
6483         * src/pic16/gen.c: inline code is passed unprocessed to the
6484         translation,
6485         * (pic16_popGetLit2): fnuction modified to take second operand as
6486         pCodeOp pointer and not as literal,
6487         * (popRegFromIdx): prefixed with pic16_,
6488         * (pic16_popCombine2): modified to receive already allocated pCode
6489         operands,
6490         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6491         * (genFunction): initializes local stack frame and pushes on stack
6492         all the registers used by this function,
6493         * (genEndFunction): restores all registers from stack and restores
6494         stack frame,
6495         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6496         improvements,
6497         * (pic16glue): changed the program startup sequence,
6498         * added new dbName code 'A' for functions placed in absolute section
6499         * src/pic16/main.c: added function attribute _naked,
6500         * added pragma 'code' to place a fnuction at an absolute address,
6501         * added command line arguments --debug-ralloc and --pcode-verbose,
6502         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6503         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6504         * (pic16_newpCodeOpLit2): modified to take the second operand as
6505         pCodeOp pointer,
6506         * (pic16_printpBlock): modified to emit each function in a separate
6507         section,
6508         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6509         UPPER for immediate operands,
6510         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6511         instruction,
6512         * src/pic16/peeph.def: all peepholes with movff are commented out,
6513         because there is a problem in the pcode peep optimizer,
6514         * src/pic16/ralloc.c: the register allocator can now reuse local
6515         function symbols for another function. This saves register usage.
6516         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6517
6518         Added file src/pic16/NOTES with information about program writing on
6519         the current port version.
6520
6521 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6522
6523         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6524         and peephole 252 (array access)
6525
6526 2004-01-09  Borut Razem <borut.razem AT siol.net>
6527
6528         * src/SDCCmain.c : fixed #872250: -l command line defined library
6529           files are scanned before standard library files
6530
6531 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6532
6533         * src/SDCCast.c (decorateType): fixed bug #874046
6534
6535 2004-01-09  Borut Razem <borut.razem AT siol.net>
6536
6537         * support/scripts/sdcc.nsi: remove previous installation
6538
6539 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6540
6541         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6542         bytes for last interrupt vector (mcs51)
6543         * sdcc.spec: fixed typo
6544
6545 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6546
6547         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6548         gen51Code): more efficient parameter receive for --model-large
6549         ("bug" #845294)
6550
6551 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6552
6553         * src/ds390/main.c,
6554         * src/z80/main.c: added missed needLinkerScript flags (more than
6555         one port structure defined in these file)
6556         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6557         bug #795325
6558
6559 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6560
6561         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6562         * src/port.h: added flag needLinkerScript in port->linker
6563         structure to inform whether to create a .lnk file or not,
6564         * src/avr/main.c,
6565         * src/ds390/main.c,
6566         * src/hc08/main.c,
6567         * src/mcs51/main.c,
6568         * src/pic/main.c,
6569         * src/pic16/main.c,
6570         * src/xa51/main.c,
6571         * src/z80/main.c: changed appropriately to configure
6572         needLinkerScript flag
6573         * src/pic/gen.c,
6574         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6575         * src/pic/glue.c: added variable udata_section_name to
6576         override default uninitialized data segment definition for
6577         devices only with SHAREBANK memory (reported from Erik Epetrich)
6578         * (pic14emitOverlay): modified to emit a commented overlay segment
6579         directive when no overlay data exist
6580         * (picglue): modified to emit uninitialized data segment
6581         according to udata_section_name
6582         * src/pic/main.c (_pic14_parseOptions): added command line
6583         options --udata-section-name=[name] to override default
6584         udata definition name
6585         * modified _linkCmd and _asmCmd to include compiler passed
6586         arguments via -W option
6587         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6588         object file from '.rel' to '.o' in port->linker structure,
6589         changed size of fptr from 2 to 3 in port structure
6590
6591 2004-01-07  Borut Razem <borut.razem AT siol.net>
6592
6593         * support/scripts/sdcc.nsi: update PATH
6594         * support/scripts/sdcc.ico: craeted
6595
6596 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6597
6598         * device/include/Makefile.in: fix install
6599         * doc/Makefile: fix install
6600
6601 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6602
6603         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6604         in bug #860505
6605         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6606         how the function variable allocation summary is displayed; also
6607         include information about variables allocated to the overlay
6608         segment
6609
6610 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6611
6612         * as/mcs51/lkmain.c: Help about -Y option
6613         * as/mcs51/lkarea.c: Fixed gcc warnings
6614
6615 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6616
6617         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6618         fixed warning
6619         * support/valdiag/tests/overflow.c: added
6620         * src/SDCCast.c (decorateType),
6621         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6622         LEFT_OP (left shift)
6623
6624 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6625
6626         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6627         (default behaviour).
6628
6629 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6630
6631         A python script to validate compiler diagnostic messages. It can be
6632         used to verify that sdcc complains about bad c source code and
6633         gives a good location of the error.
6634         * support/valdiag/Makefile,
6635         * support/valdiag/valdiag.py,
6636         * support/valdiag/tests/*
6637
6638 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6639
6640         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6641         * src/SDCCsymt.c (newEnumType),
6642         * src/SDCCsymt.h
6643         * support/Util/SDCCerr.c,
6644         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6645         enum related bugs.
6646         * support/regression/tests/enum.c: added test for enum values that
6647         require at least 2 bytes of storage.
6648
6649 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6650
6651         * src/common.h: added ifndef/define/endif macros
6652         around the header file.
6653         Bug reported from Jesus Calvino-Fraga
6654
6655 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6656
6657         * sdcc.spec: updated
6658         * device/include/Makefile.in: don't install CVS directories
6659         * device/lib/Makefile.in: added removal of CVS directories after install
6660         * doc/Makefile: fixed install, added local_icons
6661         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6662         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6663         * src/ds390/gen.c (genRightShift): fixed bug #870788
6664         * src/SDCCast.c (decorateType): fixed bug #870781
6665
6666 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6667
6668         PIC16 port related changes:
6669         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6670         added variable stackPos,
6671
6672         * gen.c: genCall, assignResultValue: added support for
6673         pushing/retrieving function parameters to/from stack,
6674         genFunction,genEndFunction: setup stack frame for the
6675         generated function,
6676         genAddrOf: will be changed according to bug 863624
6677
6678         * added files genutils.c and genutils.h which contain gen*
6679         debugged and optimised functions extracted from gen.c
6680
6681         * glue.c: added variable 'externs' which holds extern symbols,
6682         pic16emitRegularMap: is modified to properly handle relocatable
6683          symbols under the new scheme,
6684         pic16createInterruptVect: is modified
6685         pic16printPublics: is modified to emit 'global' assembler directives,
6686         added pic16_printExterns to print extern symbols,
6687         pic16glue: initializes stack/frame pointer in the beginning of
6688         the assembly output. Temporary hack, will be corrected later,
6689         because gplink yet does not support stack and SDCC does not
6690         yet support a type of crt0.o object to create the final binary.
6691
6692         * Removed many lines that contain 8051 legacy code.
6693         * The code is finally placed under a 'code' directive.
6694         * Added port specific options.
6695
6696         * _process_pragma: simplified since now we do not need *special*
6697         include file to define SFR registers. But a separate header
6698         will be needed. This will be developed later.
6699         * _pic16_parseOptions: added, parses port specific options:
6700         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6701         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6702         --preplace-udata-with=
6703
6704         * _pic16_setDefaultOptions: modified to initialize section names,
6705         but hack is temporarly out of order since it needs improvement.
6706         * _pic16_genAssemblerPreamble: configuration words are emitted by
6707         their address instead of their name. This part is incomplete and
6708         supports only the 18Fxx2 devices. Other devices will emit an error
6709         during assembly since they do not contain the same set of config
6710         registers
6711         * _pic16_genIVT: is modified,
6712
6713         * pcode.c: added definitions for some hardware registers that are needed
6714         for stack support
6715         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6716         All PCI entries are updated. Now LFSR is supported.
6717         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6718         * added pic16_newpCodeOpLit2 to support instructions with
6719         two literal arguments
6720         * pic16_pCode2str: corrected code that emits assembler instructions
6721         with two literal operands and those that have an access bit modifier
6722         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6723         this fixes a bug which caused some labels to be lost, when an
6724         assembler directive was added, i.e. banksel,
6725         * pic16_FixRegisterBanking: improved logic that causes the insertion
6726         of bank switching,
6727         * InlineFunction: functions that are called once, are not any more
6728         inlined. This can be a port option in the future,
6729
6730         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6731
6732         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6733         hold the corresponding uninitialized symbols,
6734         * pic16_allocProcessorRegister: registers have explicit marked the
6735         accessBank field,
6736         * pic16_allocInternalRegister: registers are explicit marked as
6737         not used,
6738         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6739         processing list, so bit registers were lost,
6740         *
6741
6742         * ralloc.h: added field 'accessBank' and original symbol operand
6743         in register definition,
6744         * removed the field isMapped from register definition,
6745
6746         ** Several functions have been removed from various sources:
6747         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6748         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6749         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6750         pic16_assignRelocatableRegisters
6751
6752         ** others have been introduced:
6753         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6754         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6755
6756 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6757
6758         * support/scripts/inc2h.pl: changed definition of BIT_AT
6759         to emit 'sbit at' instead of 'bit at'. This was a request.
6760
6761         PIC16 port related preliminary changes:
6762         * gen.c: prefixed function popRegFromString with
6763         pic16_ and all references to it corrected
6764         * pcode.c: all pic16_pc_* hardware registers prefixed
6765         with underscore (_),
6766         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6767         * ralloc.c: newReg(): when register is REG_SFR then
6768         set address to rIdx,
6769         pic16_allocProcessorRegister(): marks register wasUsed=0
6770         pic16_writeUsedRegs(): added a call to assign processor
6771         registers via pic16_assignFixedRegisters
6772
6773 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6774
6775         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6776         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6777         variables in unused register banks.  Also the SSEG is placed
6778         wherever there is enough space for it, and IDATA can be anywhere
6779         in internal RAM.  For now compile using -Wl-Y[stack_size].
6780         The mem file is different for this option as well, since it
6781         makes no sense of talking about DSEG lenght.
6782
6783 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6784
6785         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6786         in certain cases, e.g. when ROM assignment, patch provided
6787         from Albert den Haan.
6788
6789 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6790
6791         Many signedness and type propagation fixes:
6792         * src/SDCCicode.c: made geniCodeCast() static
6793         replaced SPEC_ by IS_ (cosmetic)
6794         (operandOperation): fixed div and mod operation
6795         (usualBinaryConversions): added support for promotion of char
6796         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6797         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6798         (geniCodeAdd): an array index will stay unsigned, even if promoted
6799         from char to int
6800         (geniCodeArray): ditto
6801         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6802         * src/SDCCsymt.c (computeType): added more support for char;
6803         promotion of char is selectable by promoteCharToInt, fixed signedness
6804         for all cases
6805         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6806         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6807         * src/SDCCval (val*): replaced signedness calculation by
6808         computeType()
6809         rearranged if-branches (cosmetic)
6810         (valShift): added warning W_SHIFT_CHANGED
6811         (valCompare): fixed problem with different types
6812         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6813         * support/regression/tests/literalop.c: added many cases
6814         * support/regression/tests/ast_constant_folding.c: changed finally to
6815         'unsigned int'
6816         * .version: new year, new version: 2.3.7
6817         * src/SDCCmain.c (main): applied patch #866468
6818         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6819         provided by Scott Bronson
6820         * doc/sdccman.lyx: updated documentation for sdcdb
6821         updated and added chapter tips
6822
6823 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6824
6825         * src/SDCCsymt.h: missing from yesterday's commits
6826
6827 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6828
6829         * src/SDCC.y (struct_or_union_specifier),
6830         * support/Util/SDCCerr.c,
6831         * support/Util/SDCCerr.h: verify that struct & union tags are used
6832         as declared.
6833
6834 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6835
6836         * src/SDCCglobl.h: missing from yesterday's commits
6837
6838 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6839
6840         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6841         sft_attributes, struct_declaration, parameter_declaration,
6842         type_name, start_block, declaration_list),
6843         * src/SDCC.lex (check_type): support redefinition of typedef names
6844
6845 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6846
6847         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6848         aligned xdata arrays. Erik helped me with the if clause.
6849
6850 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6851
6852         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6853         warning
6854
6855 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6856
6857         * src/SDCCast.h,
6858         * src/SDCCast.c (newAst_),
6859         * src/SDCCicode.h,
6860         * src/SDCCicode.c (ast2iCode, newiCode),
6861         * src/SDCCglobl.h,
6862         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6863         expr, statement, expression_statement, selection_statement,
6864         iteration_statement, expr_opt, jump_statement): foundation for tracking
6865         sequence points
6866         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6867         point code too)
6868
6869 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6870
6871         * support/Util/SDCCerr.c,
6872         * src/SDCCast.h,
6873         * src/SDCCast.c (createCase, createDefault, decorateType),
6874         * src/SDCClabel.c (labelUnreach),
6875         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6876         to error messages.
6877         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6878         (with thanks to Stas Sergeev)
6879         * device/include/time.h,
6880         * device/lib/time.c (CheckTime): suppress unreachable code warning
6881
6882 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6883
6884         * src/SDCCast.c (createIvalCharPtr),
6885         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6886         bug #753752)
6887         * support/regression/tests/nullstring.c: tests for these two bugs
6888
6889 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6890
6891         * support/Util/SDCCerr.h,
6892         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6893         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6894         about storage class and 'at' used inside struct or union
6895         * src/SDCCBBlock.c (iCodeFromeBBlock),
6896         * src/SDCCcse.c (ifxOptimize),
6897         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6898         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6899         printIval, emitStaticSeg, emitOverlay),
6900         * src/SDCClabel.c (deleteIfx),
6901         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6902         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6903         gatherAutoInit, processParms),
6904         * support/Util/SDCCerr.h,
6905         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6906         reporting for post-parse errors.
6907
6908 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6909
6910         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6911         implicit casts via union; they don't work on big endian systems
6912         (possible fix for bug #861138)
6913
6914 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6915
6916         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6917         * src/mcs51/main.c: fixed the fix for bug #737001
6918
6919 2003-12-15  Borut Razem <borut.razem AT siol.net>
6920
6921         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6922
6923 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6924
6925         * support/makebin/makebin.c: put output in binary mode
6926
6927 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6928
6929         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6930         xdata and data memory on startup. Set the environment variable
6931         SDCC_NOGENRAMCLEAR to disable this.
6932         * src/mcs51/peephole.def,
6933         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6934         (allows non-interrupt and interrupt code to safely compete for a resource
6935         without the non-interrupt code having to disable interrupts)
6936
6937 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6938
6939         * src/SDCCicode.c (geniCodeAdd),
6940         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6941         with valFromType if type might be a pointer and host is big endian).
6942         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6943         types, not just integer types.
6944         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6945         multiply defined with mismatching "at" address.
6946
6947 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6948
6949         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6950         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6951         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6952         with embedded nulls (fixed bug #753752)
6953
6954 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6955
6956         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6957         Apparently this did not see much testing (endless loop)
6958
6959 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6960
6961         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6962
6963 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6964
6965         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6966         gracefully handle NULL memmap pointers
6967
6968 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6969
6970         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6971         instead of deleting the iCode when an operand is volatile
6972         * src/z80/gen.c (genDummyRead),
6973         * src/mcs51/gen.c (genDummyRead),
6974         * src/ds390/gen.c (genDummyRead),
6975         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6976         not just IC_RIGHT
6977         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6978         * src/SDCC.y: fixed bug #850420
6979
6980 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6981
6982         Applied z80 i/o port patch from Peter Townson and fixed some operators
6983         to better handle operands in A register.
6984         * device/include/z180.h
6985         * src/SDCC.y
6986         * src/SDCCglue.c
6987         * src/z80/gen.c
6988         * src/z80/gen.h
6989         * src/z80/main.c
6990         * src/z80/peeph-z80.def
6991         * src/z80/peeph.def
6992         * src/z80/z80.h
6993
6994 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6995
6996         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6997
6998 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6999
7000         * device/lib/hc08/_mullong.c: Removed extra #endif
7001
7002 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7003
7004         * sim/ucsim/hc08.src/inst.cc,
7005         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7006         carries from x to h
7007         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7008         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7009         * device/include/stdarg.h: fixed varargs for hc08
7010         * device/lib/Makefile.in,
7011         * device/lib/hc08/Makefile,
7012         * device/lib/hc08/_mulint.c,
7013         * device/lib/hc08/_mullong.c: fixed some endian problems
7014
7015 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7016
7017         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7018         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7019         * device/lib/_gptrget.c,
7020         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7021
7022 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7023
7024         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7025         * src/SDCCast.c (astErrors): fixed bug #846007
7026         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7027
7028 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         * src/SDCCast.c (decorateType): disabled a transformation I added in
7031         revision 1.188 (access to fields of a structure at an absolute address);
7032         it breaks with bitfields, extern declarations, and gcse analysis.
7033         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7034         could be assigned through a pointer, so don't complain.
7035         * src/SDCCast.c (astErrors),
7036         * src/SDCCast.h,
7037         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7038
7039 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7040
7041         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7042         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7043         output of __config directives, since gpasm now supports them
7044         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7045         pre-processor macro, i.e. -DMCU=p18f452
7046         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7047         and modified to handle 'cast' icode similarly to '=' icode
7048         * src/pic16/device.h (typedef struct PIC_device): added field
7049         'extMIface' to indicate that chip has external memory interface
7050         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7051         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7052         18F8720
7053
7054 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7055
7056         * src/SDCC.y (pointer): fixed bug #846006
7057         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7058         * src/SDCCast.c (decorateType): fixed bug #846009
7059         * src/ds390/peeph.def,
7060         * src/ds390/gen.c (genAnd, genOr),
7061         * src/mcs51/peeph.def,
7062         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7063
7064 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7065
7066         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7067         * src/SDCCdflow.c
7068         * src/SDCCcse.c
7069         * src/SDCCcse.h
7070         * src/SDCCBBlock.h
7071         * src/SDCCBBlock.c
7072
7073 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7074
7075         fixed bug #845089
7076         * src/SDCCbitv.h,
7077         * src/SDCCbitv.c: added function to free a bitvector
7078         * src/SDCClrange.h,
7079         * src/SDCClrange.c: added function to recompute the liveranges
7080         * src/avr/ralloc.c,
7081         * src/ds390/ralloc.c,
7082         * src/hc08/ralloc.c,
7083         * src/mcs51/ralloc.c,
7084         * src/pic/ralloc.c,
7085         * src/pic16/ralloc.c,
7086         * src/xa51/ralloc.c,
7087         * src/z80/ralloc.c: recompute the liveranges after register packing
7088
7089 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7090
7091         * src/SDCCloop.c (newInduction): fixed bug #845630
7092
7093 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7094
7095         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7096         inadvertantly left behind from my 2003-11-12 change
7097
7098 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7099
7100         Updated headers I neglected to commit yesterday.
7101         * src/SDCClrange.h,
7102         * src/SDCCicode.h
7103
7104 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7105
7106         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7107         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7108         * src/SDCCopt.c (eBBlockFromiCode),
7109         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7110         the creation of the key hash table from the sequencing so it can be used
7111         earlier (for some GCSE bug fixes still pending)
7112
7113 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7114
7115         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7116         * support/regression/tests/addsub.c: testing genPlus shortcut
7117
7118 2003-11-15  Borut Razem <borut.razem AT siol.net>
7119
7120         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7121
7122 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7123
7124         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7125         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7126         ordering is immaterial.
7127         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7128
7129 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7130
7131         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7132         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7133         (SIGSEV) of bug #840381
7134         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7135         unlink new file before rename if new and old filenames are the same)
7136
7137 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7138
7139         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7140         uninitialized variables) for the mcs51. Set environment variable
7141         SDCC_GENRAMCLEAR to test.
7142         xdata initialization slightly shorter
7143
7144 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7145
7146         * src/SDCCsymt.h,
7147         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7148         #838241 & 780691 (basicly the same bug)
7149         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7150         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7151
7152 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7153
7154         * src/SDCCmain.c (linkEdit): "fix" #834252
7155
7156 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7157
7158         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7159         * src/SDCCast.h,
7160         * src/SDCC.y: fixed bug #819403
7161
7162 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7163
7164         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7165         the reentrant attribute.
7166         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7167         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7168         simulation
7169         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7170         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7171         erroneously reduced to a literal.
7172         * src/hc08/ralloc.c (packRegisters, rematStr),
7173         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7174         some cases
7175
7176 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7177
7178         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7179         * doc/sdccman.lyx: changed from 'article' to 'book'
7180         * doc/Makefile: readded test_suite_spec and cdbfileformat
7181
7182 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7183
7184         * device/include/stdlib.h: include malloc.h to comply with ANSI
7185         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7186
7187 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7188
7189         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7190         * doc/clean.mk: also remove *.out files
7191         * doc/sdccman.lyx: some additions, larger top/bottom margins
7192
7193 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7194
7195         * src/SDCC.y: fixed bug #837365
7196         * support/regression/tests/bitopcse.c
7197         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7198         a symbol (might be valop instead)
7199         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7200         * device/lib/clean.mk: added hc08 to the cleaning list
7201
7202 2003-11-04  Borut Razem <borut.razem AT siol.net>
7203
7204         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7205           made 2003-11-04
7206         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7207           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7208           malloc is declared in standard stdlib.h
7209
7210 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7211
7212         * device/lib/hc08/Makefile: need to clean .rel not .o files
7213         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7214
7215 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7216
7217         * src/port.h,
7218         * src/hc08/main.c,
7219         * src/mcs51/main.c,
7220         * src/ds390/main.c,
7221         * src/z80/main.c,
7222         * src/avr/main.c,
7223         * src/pic/main.c,
7224         * src/pic16/main.c,
7225         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7226         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7227         tests (which uses the port's oclsExpense function)
7228         * src/SDCC.y,
7229         * src/SDCCast.c,
7230         * src/SDCCicode.c,
7231         * src/hc08/gen.c,
7232         * src/ds390/gen.c,
7233         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7234
7235 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7236
7237         * src/SDCCcse.c (ifxOptimize),
7238         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7239         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7240         deleting the IFX iCode.
7241         * src/hc08/ralloc.c: reduced unneeded slocs
7242         * src/hc08/gen.c: fixed bug in asmopToBoolean
7243
7244 2003-11-04  Borut Razem <borut.razem AT siol.net>
7245
7246         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7247           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7248           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7249           transferred to configure
7250
7251 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7252
7253         Use headers defined in the C[++] standards:
7254         * sim/ucsim/gui.src/serio.src/fileio.cc
7255         * sim/ucsim/gui.src/serio.src/frontend.cc
7256         * sim/ucsim/gui.src/serio.src/main.cc
7257         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7258         * support/Util/NewAlloc.c
7259         * as/hc08/lklibr.c
7260         * as/mcs51/lklibr.c
7261         * as/z80/aslist.c
7262         * as/z80/assym.c
7263
7264 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7265
7266         * Added MSVC projects for hc08 assembler and linker:
7267         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7268         /as/hc08/link_hc08.dsp
7269
7270 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7271
7272         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7273
7274 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7275
7276         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7277
7278 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7279
7280         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7281
7282 2003-10-31  Borut Razem <borut.razem AT siol.net>
7283
7284         * support/cpp2/cpplib.h,
7285           support/cpp2/cpplib.c,
7286           support/cpp2/cpplex.c,
7287           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7288           to switch _asm block preprocessing on / off. Default is
7289           #pragma preproc_asm +
7290
7291 2003-10-31  Borut Razem <borut.razem AT siol.net>
7292
7293         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7294           when outputting comment blocks (when executed with -C option) and
7295           _asm (SDCPP specific) blocks
7296
7297 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7298
7299         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7300
7301 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7302
7303         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7304
7305 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7306
7307         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7308         * src/SDCCast.c (decorateType): fixed bug #832664
7309
7310 2003-10-31  Borut Razem <borut.razem AT siol.net>
7311
7312         * support\cpp2\cpplex.c: fixed for SDCPP:
7313           comments(when executed with -C option) and _asm blocks
7314           were included even if they where in skipped #if block.
7315           Applied solution from GCC cpp 3.3.2
7316
7317 2003-10-31  Borut Razem <borut.razem AT siol.net>
7318
7319         * src/SDCC.lex: sdcc now understands both formats:
7320           '# <line_number> <file_name>' and
7321           '#line <line_number> <file_name>'
7322         * support/cpp2/cppmain.c: sdcpp now generates the standard
7323           '# <line_number> <file_name>' instead of former
7324           '#line <line_number> <file_name>'
7325
7326 2003-10-30  Borut Razem <borut.razem AT siol.net>
7327
7328         * support/cpp2/cpphash.h,
7329         * support/cpp2/cpplib.h
7330         * support/cpp2/cpplex.c,
7331         * support/cpp2/cppmain.c,
7332         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7333
7334 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7335
7336         Fixed a number of problems revealed by bug #827883.
7337         * src/SDCCloop.c (loopInvariants): Spill location of the
7338         result operand should be recomputed if extracted from
7339         a loop. Also, don't extract assignments of an iTemp
7340         from a literal.
7341         * src/SDCCast.c (isConformingBody): loop reversal should
7342         not occur if the control variable is involved with a
7343         relational operator.
7344
7345 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7346
7347         * .version: bumped to 2.3.6 to reflect the big improvements
7348         made by Erik and Klaus. Thanks!
7349
7350 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7351
7352         Replaced the livrange code.
7353         * src/SDCClrange.c: added new LR code
7354         * src/SDCCloop.c,
7355         * src/SDCCBBlock.h: removed remainig parts from old LR code
7356         * src/ds390/ralloc.c,
7357         * src/ds390/gen.c: minor fixes to make it work with new code
7358
7359 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7360
7361         * as/hc08/asm.h,
7362         * as/hc08/lkrloc.c,
7363         * src/hc08/gen.c,
7364         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7365         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7366         (tweaked fix for bug #818696)
7367
7368 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7369
7370         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7371
7372 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7373
7374         * src/SDCCmain.c,
7375         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7376         * src/mcs51/gen.c (gencjneshort),
7377         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7378         more efficient (per Scott Bronson's suggestion)
7379
7380 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7381
7382         Extended the semantics of the critical keyword to include
7383         individual statements. See RFE #827755 and #799831
7384         * src/SDCC.y
7385         * src/SDCCicode.c
7386         * src/SDCCopt.c
7387         * src/SDCCast.c
7388         * support/Util/SDCCerr.c
7389         * support/Util/SDCCerr.h
7390         * src/mcs51/gen.c
7391         * src/ds390/gen.c
7392         * src/hc08/gen.c
7393
7394 2003-10-19  Borut Razem <borut.razem AT siol.net>
7395
7396         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7397
7398 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7399
7400         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7401         Fixed bug #818696
7402         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7403         and predecrement operand is displayed
7404
7405 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7406
7407         * src/SDCCval.c (valMinus): fixed bug #826041
7408
7409 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7410
7411         Some hc08 related updates that I missed earlier
7412         * sim/ucsim/stypes.h
7413         * support/regression/ports/hc08/spec.mk
7414
7415 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7416
7417         New target "hc08" for the Motorola 68hc08 family of micros
7418
7419         * configure
7420         * configure.in
7421         * Makefile
7422         * src/hc08/*
7423         * src/SDCCmain.c
7424         * src/port.h
7425         * sim/ucsim/hc08.src/*
7426         * sim/ucsim/configure.in
7427         * src/ucsim/configure
7428         * sim/ucsim/packages_in.mk
7429         * as/hc08/*
7430         * as/Makefile
7431         * device/include/mc68hc908qy.h
7432         * device/lib/hc08/*
7433         * device/lib/Makefile.in
7434         * support/regression/ports/hc08/*
7435         * support/regression/Makefile
7436
7437 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7438
7439         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7440         regression test
7441         * src/ds390/gen.c (genCast): fixed bug #821957
7442
7443 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7444
7445         * device/lib/logf.c: "fixed" overlay bug
7446         * support/regression/ports/host/spec.mk: added m library
7447         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7448         * support/regression/tests/float_trans: added (for Eric)
7449
7450 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7451
7452         * src/mcs51/gen.c (genCpl): fixed bug
7453         http://sf.net/mailarchive/message.php?msg_id=6263915
7454
7455 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7456
7457         * src/SDCCast.c (decorateType): added extended constant folding
7458         * src/SDCCsymt.c (computeType): cleanup
7459         * src/SDCCval.c (valShift): minor optimization
7460         * support/regression/tests/ast_constant_folding.c: added
7461
7462 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7463
7464         * src/SDCCmain.c: removed some unintended changes
7465
7466 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7467
7468         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7469         * src/z80/gen.c: fixed part of bug #817589
7470         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7471
7472 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7473
7474         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7475         * src/SDCCcflow.c
7476         * src/SDCCcse.c
7477         * src/SDCCdflow.c
7478         * src/SDCClabel.c
7479         * src/SDCClrange.c
7480         * src/SDCCmem.c
7481         * src/SDCCopt.c
7482         * src/SDCCpeeph.c
7483         * src/SDCCset.c
7484         * src/avr/ralloc.c
7485         * src/ds390/ralloc.c
7486         * src/izt/ralloc.c
7487         * src/mcs51/ralloc.c
7488         * src/pic/ralloc.c
7489         * src/pic16/ralloc.c
7490         * src/xa51/ralloc.c
7491         * src/z80/ralloc.c
7492         * src/z80/gen.c: removed unused label "release:"
7493
7494 2003-10-06  Borut Razem <borut.razem AT siol.net>
7495
7496         * src/SDCC.lex: removed definition of unused variables
7497           save_optimize and save_options
7498
7499 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7500
7501         * clean.mk: removed '=' in "-maxdepth=1"
7502         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7503         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7504
7505 2003-10-06  Borut Razem <borut.razem AT siol.net>
7506
7507         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7508           my_unput() replaced by unput()
7509
7510 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7511
7512         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7513         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7514         type-punned pointer will break strict-aliasing rules"
7515         Old LR behaviour is again default; Klaus' LR can be choosen by
7516         defining the environment variable LRKLAUS
7517         * src/SDCCBBlock.h
7518         * src/SDCCloop.c
7519         * src/SDCClrange.c
7520         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7521         * clean.mk: fixed removal of files in bin/CVS/
7522         * device/lib/clean.mk: fixed removal of directories small and large
7523         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7524         * src/SDCCicode.c,
7525         * src/SDCCval.c: removed superflous test for pedantic
7526
7527 2003-10-05  Borut Razem <borut.razem AT siol.net>
7528
7529         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7530           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7531           message "unmatched #pragma SAVE and #pragma RESTORE"
7532
7533 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7534
7535         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7536           assembly, critical functions, atomic, nojtbound)
7537
7538 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7539
7540         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7541         * src/SDCCBBlock.h
7542         * src/SDCCloop.c
7543         * src/SDCCloop.h
7544         * src/SDCClrange.c
7545
7546 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7547
7548         * src/z80/gen.h,
7549         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7550         * src/mcs51/gen.h
7551         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7552         * src/ds390/gen.h
7553         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7554         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7555         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7556
7557 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7558
7559         * src/z80/gen.c (genRet): fixed bug #524753
7560         * src/z80/gen.c (genCast): fixed internal error on cast from
7561         pointer to long
7562         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7563         fix for bug #477835 to the z80
7564         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7565         for tracking iCodes in the peephole optimizer for z80
7566
7567 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7568
7569         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7570         the other part of bug #814548
7571         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7572
7573 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7574
7575         * src/SDCCcse.c: fixed part of bug #814548
7576
7577 2003-09-28  Borut Razem <borut.razem AT siol.net>
7578
7579         * src/asm.c: rewrite of printILine() to use temporary file instead
7580           a pipe
7581         * src/xa51/main.c: commented out declaration of int rewinds
7582
7583 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7584
7585         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7586
7587 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7588
7589         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7590         * src/asm.c (printILine): Fixed bug #811015
7591
7592 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7593
7594         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7595         freeing.
7596
7597 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7598
7599         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7600         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7601         to correctly handle general case of AOP_PAIRPTR
7602         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7603
7604 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7605
7606         * src/mcs51/ralloc.c (fillGaps),
7607         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7608         register positioning bug)
7609
7610 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7611
7612         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7613
7614 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7615
7616         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7617         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7618         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7619         (ralloc doesn't intentionally do this now, but perhaps later)
7620         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7621         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7622         register positioning bugs (Fixed bug #762602 and #795325)
7623         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7624         (Fixed bug #808779)
7625         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7626         lines that --i-code-in-asm generates
7627
7628 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7629
7630         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7631         trying to fclose a FILE* that was already closed.
7632
7633 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7634
7635         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7636         of const struct should be treated as if const themselves)
7637
7638 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7639
7640         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7641
7642 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7643
7644         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7645         Unix (/n) and DOS (/r/n) line terminations.
7646
7647 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7648
7649         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7650         bug #613775
7651
7652 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7653
7654         * src/mcs51/gen.c (genFunction, genEndFunction),
7655         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7656         and restore of EA so that stack offsets to parameters are
7657         correct when using both critical and reentrant/stack-auto.
7658         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7659         size (can be triggered in error if sloc is shared between
7660         different sized objects)
7661         * device/include/float.h: fixed macros to explicitly use
7662         unsigned long where needed
7663
7664 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7665
7666         Feature req. 799831: added code to allow nesting of critical functions
7667         * src/mcs51/gen.c (genFunction, genEndFunction)
7668         * src/ds390/gen.c (genFunction, genEndFunction)
7669
7670 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7671
7672         * src/SDCCsymt.c (sclsFromPtr),
7673         * src/SDCCsymt.h,
7674         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7675         support for standard C idiom of memory mapped variables; for
7676         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7677         to xdata int at 0x1234 tempvar = 1.
7678         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7679         provided by Akiya ISHIDA
7680
7681 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7682
7683         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7684         * src/SDCCval.c (constVal): added reduction from int to char
7685         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7686         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7687         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7688         to ignore the sign
7689         * support/regression/tests/shifts.c: fixed
7690
7691 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7692
7693         * src/z80/gen.c (genXor): Fixed bug #805445
7694
7695 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7696
7697         Fixed bug #621531 (const & volatile confusion in the type chain).
7698         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7699         refer to the const or volatile state of the pointer itself.
7700
7701         * src/SDCCast.c
7702         * src/SDCCglue.c
7703         * src/SDCCicode.c
7704         * src/SDCCsymt.c
7705         * src/SDCCval.c
7706         * src/SDCC.y
7707         * src/SDCCsymt.h
7708         * src/pic/gen.c
7709         * src/pic/ralloc.c
7710         * src/pic16/gen.c
7711         * src/pic16/ralloc.c
7712         * support/regression/tests/const.c
7713
7714 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7715
7716         When checking for duplicated modules, use absolute paths
7717         instead of relative paths.  Files changed:
7718
7719         * as/mcs51/lklib.c
7720         * link/z80/lklib.c
7721
7722 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7723
7724         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7725
7726 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7727
7728         * device/include/string.h: added size_t typedef, changed
7729         prototypes to use size_t, eliminated separate reentrant and
7730         non-reentrant declarations, added _memmove declaration
7731         * device/lib/_memcpy.c: changed to use size_t instead of int,
7732         changed /4 to >>2 to avoid division library call
7733         * device/lib/_memcmp.c,
7734         * device/lib/_memset.c,
7735         * device/lib/_strncat.c,
7736         * device/lib/_strncpy.c,
7737         * device/lib/_strncmp.c: changed to use size_t instead of int
7738         * device/lib/_memmove.c: new file (fixed bug #772294)
7739         * device/lib/Makefile.in: added _memmove.c
7740         * device/lib/z80/asm_strings.s: fixed bug #772290
7741         * support/regression/tests/bitfields.c: attempt to fix host assertion
7742         failure on amd64-unknown-linux2.2
7743
7744 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7745
7746         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7747         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7748         * as/z80/asmain.c (main): fixed bug #801766
7749
7750 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7751
7752         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7753         compilers
7754
7755 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7756
7757         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7758         reported in bug #800609
7759
7760 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7761
7762         * Top header beautifications in src/pic16 directory:
7763           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7764           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7765           pcoderegs.h, ralloc.c, ralloc.h
7766         * main.c: added top header and GPL license notice
7767         * pcode.c: fixed the if-conditional warning
7768
7769 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7770
7771         * device/lib/_mullong.c: replaced int by short for gcc
7772
7773 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7774
7775         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7776         and JUMPTABLE iCodes properly now (worked by accident before)
7777         * src/mcs51/gen.c (leftRightUseAcc),
7778         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7779         iCode properly now. Use getSize instead of nRegs since a & b
7780         aren't part of the nRegs tally.
7781
7782 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7783
7784         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7785         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7786           before instructions that use the _STATUS register
7787
7788 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7789
7790         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7791         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7792         fetching of the pointer
7793         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7794         copied from genNearPointerSet()
7795         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7796         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7797         If they pop r0/r1 they must be called in the opposite order than aopOp().
7798         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7799         (resp. --stack-auto), prepared for --xstack
7800
7801 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7802
7803         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7804
7805 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7806
7807         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7808         these ports have their own __sdcc_external_start()
7809
7810 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7811
7812         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7813         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7814         type for bits was changed. It resulted in bit variables becoming
7815         global, which is not permitted in PIC 14 assembly output.
7816
7817 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7818
7819         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7820
7821 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7822
7823         Z80 and MCS51 linkers complaint if a public symbol is defined
7824         in more than one library module:
7825
7826         * as/mcs51/lklib.c
7827         * link/z80/lklib.c
7828         * as/mcs51/Makefile.in
7829
7830 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7831
7832         A few small changes that speed up the peephole optimizer.
7833
7834         * src/SDCCpeeph.c
7835
7836 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7837
7838         Try to make the peephole optimizer smarter by maintaining
7839         an association between the assembly source code and the
7840         iCodes that originated them. Put this information to use
7841         with a new peephole rule condition "notVolatile" so that
7842         the rules can be aggressive yet still safe.
7843
7844         * src/SDCCpeeph.c
7845         * src/SDCCpeeph.h
7846         * src/mcs51/gen.c
7847         * src/mcs51/peeph.def
7848
7849 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7850
7851         Fixed bug #741761
7852
7853         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7854         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7855         if the left or right operand symbols have the accuse flag set.
7856
7857 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7858
7859         Changed the type of the result of the ! (NOT) operator to char;
7860         previously it returned the same type as the source. This allows
7861         us to eliminate all the genFloatNot functions (all of its target
7862         implementations were very buggy) since !float can use the same
7863         code as !long now.
7864
7865         * src/SDCCicode.c (ast2iCode): ! returns char
7866         * src/mcs51/gen.c (genNot, genNotFloat),
7867         * src/ds390/gen.c (genNot, genNotFloat),
7868         * src/z80/gen.c (genNot, genNotFloat),
7869         * src/pic/gen.c (genNot, genNotFloat),
7870         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7871
7872 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7873
7874         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7875         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7876            during interrupts. Ensure WSAVE is located at a shared bank address.
7877         2. Fixed page selection in some places
7878         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7879            the registers name strings.
7880         4. Fixed "signed / unsigned compare" compiler warnings.
7881         5. The PIC port manages its own allocation of the general purpose
7882            registers, but makes no attempt to reuse them. As a result when
7883            compiling it soon runs out of general purpose registers. Some
7884            additional code was added to the files pcode.c and device.c to walk
7885            through the function call tree and rename the registers so that they
7886            get reused.
7887
7888         * src/pic/device.c
7889         * src/pic/gen.c
7890         * src/pic/glue.c
7891         * src/pic/pcode.c
7892         * src/pic/pcode.h
7893         * src/pic/ralloc.c
7894         * src/pic/ralloc.h
7895         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7896         genPlus() & genMinus() when the result is the same as left or right
7897
7898 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7899
7900         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7901
7902 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7903
7904         Made bitfield a distinct type from bit so that bitfields
7905         convert as per ANSI C and bits retain their traditional
7906         boolean style behaviour. Implemented bitfield support in
7907         the z80 port.
7908
7909         * src/SDCCsymt.h,
7910         * src/SDCCsymt.c,
7911         * src/SDCCast.c,
7912         * src/cdbFile.c,
7913         * src/mcs51/gen.c,
7914         * src/ds390/gen.c: bit v bitfield split
7915         * src/z80/gen.c: New support for bitfields
7916         * support/regression/tests/bitfields.c: reenabled z80,
7917         added more tests
7918
7919 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7920
7921         Rules 246.x, 247.x relate to bitfields, the others speed up
7922         access to xdata mapped I/O devices.
7923
7924         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7925
7926 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7927
7928         Cleaned up genPackBits and genUnpackBits and added two helper
7929         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7930         for literal assignments in genPackBits (thanks to Frieder for
7931         reminding me).
7932
7933         * src/mcs51/gen.c
7934         * src/ds390/gen.c
7935
7936 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7937
7938         Fixed bug #748310 (pointer to function type mishandled when the
7939         function name is omitted). Also fixed a SIGSEGV when a function
7940         attribute (reentrant, etc) is used on a non-function or on a
7941         function but misplaced before the parameter list.
7942
7943         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7944         bug #748310
7945         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7946         * support/Util/SDCCerr.h,
7947         * support/Util/SDCCerr.c: Added func attr misuse error msg
7948
7949 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7950
7951         Fixed bug #787649 by anonymous
7952         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7953         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7954
7955 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7956
7957         Fixed numerous bitfield problems.
7958
7959         * src/SDCC.y: More bitfield related error checking
7960         * src/SDCCsymt.h,
7961         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7962         * support/Util/SDCCerr.h,
7963         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7964         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7965         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7966         * support/regression/tests/bitfields.c: tests added
7967
7968 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7969
7970         Made the constant following the "interrupt" keyword optional. If
7971         omitted, the function will not automatically be given an entry
7972         in the interrupt vector table (similar to #pragma NOIV, but
7973         less syntacticly kludgy). The interrupt number is also now
7974         range checked. Also fixed a bug in the high order bit example
7975         in the manual.
7976
7977         * src/SDCC.y
7978         * src/SDCCmem.c
7979         * src/SDCCglue.c
7980         * src/SDCCsymt.h
7981         * support/Util/SDCCerr.c
7982         * support/Util/SDCCerr.h
7983         * doc/sdccman.lyx
7984
7985 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7986
7987         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7988         * src/SDCCicode.c (operandOperation): rewritten some ops
7989         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7990         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7991         other type
7992         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7993         be re-activated by defining REDUCE_LITERALS)
7994         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7995         unsigned, but are signed by default
7996         * src/SDCCval.c (constVal): rearranged
7997         * src/SDCCval.c (valMod): preliminary fix
7998         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7999         * support/regression/literalop.c: added, work in progress
8000
8001 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8002
8003         Generate warnings for useless declarations like "char data;"
8004         that don't do what new users expect.
8005
8006         * src/SDCC.y
8007         * support/Util/SDCCerr.h
8008         * support/Util/SDCCerr.c
8009
8010 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8011
8012         * src/SDCCval.c (valMult): fix overflow detection of negative int
8013
8014 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8015
8016         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8017
8018         Changes to support big endian targets:
8019
8020         * src/ports.h
8021         * src/SDCCglue.c
8022         * src/avr/main.c
8023         * src/ds390/main.c
8024         * src/izt/i186.c
8025         * src/mcs51/main.c
8026         * src/pic/main.c
8027         * src/pic16/main.c
8028         * src/xa51/main.c
8029         * src/z80/main.c
8030
8031 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8032
8033         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8034         * device/lib/time.c: fixed warning "integer overflow in expression"
8035
8036 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8037
8038         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8039         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8040         constants are unsigned; added recognition of "u" flag for unsigned
8041         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8042         * src/SDCCval.c (valDiv, valMod): fixed signdness
8043         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8044         signedness of modulo, left and right shift
8045         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8046         * support/Util/SDCCerr.h: added warning W_INT_OVL
8047         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8048         * src/SDCCast.c (ast_print): improved output of constants
8049
8050 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8051
8052         Fixed some warnings when building with MSVC:
8053
8054         * as\mcs51\asdata.c
8055         * as\z80\asdata.c
8056         * as\mcs51\asm.h
8057         * as\z80\asm.h
8058         * link\z80\aslink.h
8059         * link\z80\lkdata.c
8060         * link\z80\lkeval.c
8061         * link\z80\lkgb.c
8062         * link\z80\lkihx.c
8063         * link\z80\lks19.c
8064         * link\z80\lksym.c
8065         * support\cpp2\cpplib.c
8066         * src\ds390\gen.c
8067         * src\mcs51\gen.c
8068
8069 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8070
8071         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8072
8073 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8074
8075         * support\librarian\clean.mk: Do not remove Makefile.
8076         * support\librarian\Makefile: added.
8077
8078 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8079
8080         Added librarian to MSVC build:
8081         * all.dsp
8082         * sdcc.dsw
8083         * support\librarian\librarian.dsp
8084
8085         'configure' not needed for librarian, removed:
8086         * support\librarian\configure
8087         * support\librarian\configure.in
8088         * support\librarian\config_in.h
8089         * support\librarian\Makefile.in
8090
8091         Hopefully these ones built the librarian and the rest of sdcc properly:
8092         * Makefile
8093         * Makefile.common.in
8094
8095         Messed up 'configure', so revert to previous version:
8096         * configure
8097         * configure.in
8098
8099 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8100
8101         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8102         there, while the mantissa of a double is "only" 53 bits wide.
8103
8104 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8105
8106         Adding sdcclib to the build.  MSVC project coming soon.
8107         Files added/changed:
8108
8109         * support\librarian\clean.mk
8110         * support\librarian\configure
8111         * support\librarian\configure.in
8112         * support\librarian\config_in.h
8113         * support\librarian\Makefile.bcc
8114         * support\librarian\Makefile.in
8115         * support\librarian\sdcclib.c
8116         * Makefile.bcc
8117         * Makefile
8118         * Makefile.common.in
8119         * configure
8120         * configure.in
8121
8122 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8123
8124         Linker now complaints if linked modules have conflicting options, for
8125         example, one compiled using --model-large and another one compiled with
8126         --model-small.  The following files were modified:
8127
8128         * as\mcs51\asdata.c
8129         * as\mcs51\aslink.h
8130         * as\mcs51\asm.h
8131         * as\mcs51\asmain.c
8132         * as\mcs51\asout.c
8133         * as\mcs51\i51pst.c
8134         * as\mcs51\lkdata.c
8135         * as\mcs51\lklibr.c
8136         * as\mcs51\lkmain.c
8137         * as\z80\asdata.c
8138         * as\z80\asm.h
8139         * as\z80\asmain.c
8140         * as\z80\asout.c
8141         * as\z80\z80pst.c
8142         * link\z80\aslink.h
8143         * link\z80\lkdata.c
8144         * link\z80\lklibr.c
8145         * link\z80\lkmain.c
8146         * src\SDCCglue.c
8147
8148 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8149
8150         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8151         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8152
8153 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8154
8155         * src/z80/mappings.i: fix _mul[us][int,long] entries
8156
8157 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8158
8159         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8160
8161 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8162
8163         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8164         * support/regression/tests/bitopcse.c: added
8165         fixed warning:
8166         * src/avr/gen.c:
8167         * src/pic/gen.c:
8168         * src/pic16/gen.c:
8169         * src/z80/gen.c:
8170         * src/xa51/gen.c:
8171
8172 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8173
8174         added support for new library format to z80, gbz80 linkers:
8175         *link/z80/aslink.h
8176         *link/z80/lklex.c
8177         *link/z80/lklib.c
8178         *link/z80/lklist.c
8179
8180 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8181
8182         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8183         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8184
8185 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8186
8187         added DUMMY_READ_VOLATILE:
8188         * src/SDCC.y:
8189         * src/avr/gen.c:
8190         * src/xa51/gen.c:
8191         * src/z80/gen.c:
8192         * src/pic/gen.c:
8193         * src/pic16/gen.c:
8194         * src/mcs51/gen.c:
8195         * src/ds390/gen.c:
8196         * src/SDCCcse.c (algebraicOpts): many improvements
8197         * src/SDCCcse.h: removed algebraicOpts()
8198         * src/SDCCicode.c (picDummyRead): added
8199
8200 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8201
8202         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8203         "Insufficient space in data memory".
8204
8205 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8206
8207         * src/mcs51/gen.c: fixed bug #771358
8208         * src/z80/gen.c: fixed bug #759087
8209
8210 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8211
8212         * src/pic16/glue.c: minor cleanup by Vangelis
8213
8214 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8215
8216         * device/include/regc515c.h: fixed #758477
8217         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8218         * device/lib/_gptrput.c: saved a few bytes
8219         * my tab spacing is 8, yours too?)
8220         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8221         * device/lib/serial.c: process RX bytes earlier than TX bytes
8222         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8223
8224 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8225
8226         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8227
8228 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8229
8230     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8231
8232 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8233
8234         * device/lib/Makefile.in: bad fix, reverted to 1.43
8235
8236 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8237
8238         * device/lib/Makefile.in: added missing z80 object files
8239
8240 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8241
8242         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8243         pic16 progress by Vangelis:
8244         * src/SDCCglobl.h:
8245         * src/SDCCmain.c:
8246         * src/pic/Makefile:
8247         * src/pic:
8248         * pic/Makefile:
8249         * pic16/device.c:
8250         * pic16/device.h:
8251         * pic16/gen.c:
8252         * pic16/gen.h:
8253         * pic16/genarith.c:
8254         * pic16/glue.c:
8255         * pic16/main.c:
8256         * pic16/pcode.c:
8257         * pic16/pcode.h:
8258         * pic16/pcodepeep.c:
8259         * pic16/peeph.def:
8260
8261 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8262
8263     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8264
8265 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8266
8267     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8268     added gbz80 build to MSVC project.
8269     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8270     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8271     from 8051 stuff and setup so it links using a .lnk file.
8272
8273 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8274
8275     * support/librarian/sdcclib.c: sdcc librarian.
8276     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8277     with sdcclib.
8278
8279 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8280
8281     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8282
8283 2003-07-02  Borut Razem <borut.razem AT siol.net>
8284
8285         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8286         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8287         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8288         src/xa51/main.c, src/z80/main.c:
8289         virtualization of glue() function: each port has it's own glue function,
8290         which is accessed by do_glue function pointer in PORT.general structure
8291
8292 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8293
8294         * DS800C400 fun, improved ROM interface and tinibios.
8295
8296 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8297
8298         * More support for DS80C400. Now includes beginning of interface to ROM.
8299
8300 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8301
8302         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8303
8304 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8305
8306         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8307
8308 2003-06-19  Borut Razem <borut.razem AT siol.net>
8309
8310         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8311
8312 2003-06-19  Borut Razem <borut.razem AT siol.net>
8313
8314         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8315         fixed Z80 port - crt0.o: cannot open.
8316
8317 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8318
8319         * support/Util/MySystem.c (merge_command): revert bad fix
8320
8321 2003-06-18  Borut Razem <borut.razem AT siol.net>
8322
8323         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8324
8325 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8326
8327         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8328         option --use-stdout sends errors to stdout instead of stderr.
8329
8330 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8331
8332         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8333
8334 2003-06-15  Borut Razem <borut.razem AT siol.net>
8335
8336         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8337         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8338         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8339         fixed width array of pointers replaced with sets;
8340         multiple include and lib paths ared transferred to preprocessor and linker
8341         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8342         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8343         fixed width array of pointers
8344         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8345         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8346         fixupPath(), getPathDifference()
8347         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8348         fixed width array of pointers
8349
8350 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8351
8352         * src/pic16/ralloc.c: fix warnings
8353         * src/pic16/pcode.c: fix warning
8354
8355 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8356
8357          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8358         know all the details, but essentially this set of changes enable
8359         the pic16 port to generate movff instructions and generate assembler
8360         directives,
8361         * src/SDCCmain.c:
8362         * src/pic16/gen.c:
8363         * src/pic16/glue.c:
8364         * src/pic16/pcode.c:
8365         * src/pic16/device.c:
8366         * src/pic16/main.c:
8367         * src/pic16/pcode.h:
8368         * src/pic16/pcoderegs.c:
8369         * src/pic16/ralloc.c:
8370         * src/pic16/ralloc.h:
8371
8372 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8373
8374         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8375         added option --vc, so sdcc errors and warnings are compatible with
8376         Microsoft Visual Studio.
8377
8378 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8379
8380         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8381           device/lib/libfloat.lib: added atof function.
8382
8383 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8384
8385         * doc/sdccman.lyx: updated to Lyx 1.3
8386         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8387         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8388         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8389
8390 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8391
8392         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8393
8394 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8395
8396         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8397           additions to the "related tools/documentation" section
8398
8399 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8400
8401         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8402
8403 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8404
8405         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8406         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8407
8408 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8409
8410         * doc/sdccman.lyx: fix double dash and other minor things
8411         * doc/Makefile: fix double dash
8412
8413 2003-05-28  Karl Bongers(patches from Martin Helmling)
8414         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8415           condition and ignore commands.
8416
8417 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8418
8419         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8420           is in parts still quite out of date, I did changes as far as I felt makes sense
8421           for a non-native english speaker.
8422           Please feel free to add to the manual or to correct my changes.
8423         * doc/Makefile: undid touching the date of intermediate tex files.
8424
8425 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8426
8427         * doc/sdccman.lyx: Manual has an index now
8428
8429 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8430
8431         Finalize muluint/mulsint and mululong/mulslong merging:
8432         * device/lib/_mulint.c
8433         * device/lib/_mullong.c
8434         * device/lib/gbz80/mul.s
8435         * device/lib/gbz80/stubs.s
8436         * device/lib/z80/mul.s
8437         * device/lib/z80/stubs.s
8438         * src/SDCCsymt.c (initCSupport)
8439
8440 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8441
8442         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8443         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8444           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8445           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8446           instead of /Zm500.
8447
8448 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8449
8450         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8451           the regression tests I'm not brave enough to enable 245.b, 245.c
8452         * doc/sdccman.lyx: added latex preamble for hyperref package.
8453           Using pdflatex this will give you a hyperlinked pdf file with
8454           bookmarks. (prepend '%' before /usepackage if this breaks something)
8455
8456 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8457
8458          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8459
8460 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8461
8462         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8463
8464 2003-05-21    <johan AT balder>
8465
8466         * src/SDCCglue.c (printIval): fixed bug #739934
8467
8468 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8469
8470         Applied patch from bug 737905 (renamed yylineo to mylineno):
8471         * src/altlex.c
8472         * src/SDCCast.c
8473         * src/SDCglobl.h
8474         * src/SDCC.lex
8475         * src/SDCCsymt.c
8476         * src/SDCCval.c
8477         * src/pic16/pcode.c: Cleaned warnings
8478         * src/pic16/pcodeflow.c: Cleaned warnings
8479         * src/pic16/pcoderegs.c: Cleaned warnings
8480
8481 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8482
8483         * src/pic16/pcode.c: Cleaned warnings
8484         * src/pic16/pcodepeep.c: Cleaned warnings
8485         * src/pic16/ralloc.c: Cleaned warnings
8486
8487 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8488
8489         * doc/sdccman.lyx: fixed bug 739745
8490         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8491
8492 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8493
8494         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8495         it can be defined with CFLAGS when running configure
8496         * src/SDCCmain.c: fixed compiling + linking with object files
8497
8498 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8499
8500         * configure.in: configure for pic16 port,
8501             added --disable-pic16-port
8502         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8503         * src/SDCCmain.c: linkOptions is changed to set *,
8504             added if/endif conditional macros to remove options help
8505             messages from optionsTable when a port is not configured, added
8506             support for the PIc16 port in the ports table, when executing
8507             the compiler with no port specified on command line, a default
8508             port is selected with the new macro DEFAULT_PORT which is
8509             defined in port.h, in setDefaultOptions() linkOptions is removed
8510             from initialization assignment, since now it is a set,
8511             parseCmdLine uses setParseWithComma for linkOptions, in
8512             linkEdit() linkOptions are accessed with new function indexSet()
8513             which returns the i'th item of a set variable. See SDCCset.c, in
8514             linkEdit() when calling buildCmdLine(), added linkOptions as
8515             last argument. Now users can pass arguments to gplink via the
8516             -Wl option, main() uses pic16glue() to glue up pic16 programs
8517         * src/SDCCpeeph.c: various changes to support pic16
8518         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8519             return the i'th item of the set
8520         * src/SDCCset.h: added function prototype for indexSet()
8521         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8522         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8523         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8524             added macro DEFAULT_PORT
8525         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8526         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8527             generated
8528         * src/pic16/glue.c: commented out some error producing lines
8529         * src/pic16/main.c: __config directives are commented out to stop
8530             gpasm complaining and test the linkage with gplink, _linkCmd and
8531             _asmCmd changed to be more gplink and gpasm friendly
8532         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8533             produced an error when parsed, peep rule 12 is added to utilize
8534             movff, but it is commented out since the pCode does not support
8535             yet a command with 2 address arguments
8536
8537 2003-05-18    <johan AT balder>
8538
8539         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8540         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8541 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8542
8543         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8544   Added feature to script commands from file.
8545
8546 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8547
8548         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8549         * src/SDCCutil.c: include ctype.h for win32
8550
8551 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8552
8553         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8554
8555 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8556
8557         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8558   Fixed so you can set breakpoints prior to run, run does not stop
8559   on entry now.  Add tbreak.  Other enhancements and fixes for use
8560   with ddd.
8561
8562 2003-05-12  Borut Razem <borut.razem AT siol.net>
8563
8564         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8565
8566 2003-05-11  Borut Razem <borut.razem AT siol.net>
8567
8568         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8569         the path of bin directory, so that PATH is the only env. variable, which has to be set
8570         in case of standard installation.
8571         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8572         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8573         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8574
8575 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8576
8577         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8578         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8579         temp files are in the port dir; clean the gen/test directory when
8580         generating new test.c
8581         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8582         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8583         * support/regression/tests/zeropad.c: added
8584
8585 2003-05-09    <johan AT balder>
8586
8587         * src/SDCCglue.c: fixed bug #597940
8588
8589 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8590
8591         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8592   cache sfr, optimize next,step, fix off by one sourceline,
8593   support ddd list function.
8594         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8595
8596 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8597
8598         * support/regression/HTMLgen.py: added compare_s2f()
8599         * support/regression/Makefile: redo 1.27
8600         * support/regression/generate-cases.py: redo 1.5
8601
8602 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8603
8604         * support/regression/tests/float.c: workaround 33 bit hex constant
8605         * support/regression/tests/simplefloat.c: fix division for host
8606
8607 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8608
8609         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8610         that tame's the PIC's over-aggressive optimizer.
8611
8612 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8613
8614          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8615          support for MSVC.
8616
8617 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8618
8619         Initial support for DS80C400. "Hello world" runs on TINIm400
8620         (with polled I/O).
8621
8622 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8623
8624          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8625          * Some notes on ddd usage added in debugger/README
8626          Martin Helmling adding more features and fixes for ddd GUI debugger.
8627          Code added for nexti, stepi, up, down, and other adjustments.
8628
8629 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8630
8631         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8632         * src/pic/peeph.def Added two rules to optimize carry manipulation
8633         * src/pic/* removed debug printfs
8634
8635 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8636
8637         * debugger/mcs51/cmd.c: added header newalloc.h
8638
8639 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8640
8641         * as/Makefile: new EXEEXT
8642         * as/z80/Makefile: remove trailing slash of BUILDIR
8643         * as/z80/clean.mk: new EXEEXT
8644         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8645         * support/cpp2/Makefile.in: new EXEEXT
8646         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8647
8648 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8649
8650         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8651         EXEEXT was introduced to fix all related problems with targets
8652         "clean", "install" and "uninstall"; a couple of further flaws
8653         especially with "clean" have been fixed too
8654         * as/mcs51/Makefile.in
8655         * as/mcs51/clean.mk
8656         * as/z80/Makefile
8657         * Makefile
8658         * clean.mk
8659         * debugger/mcs51/Makefile.in
8660         * debugger/mcs51/clean.mk
8661         * link/z80/Makefile
8662         * link/z80/Makefile.in
8663         * link/z80/clean.mk
8664         * link/Makefile
8665         * packihx/Makefile.in
8666         * packihx/clean.mk
8667         * sim/ucsim/Makefile
8668         * sim/ucsim/clean.mk
8669         * sim/ucsim/avr.src/Makefile.in
8670         * sim/ucsim/avr.src/clean.mk
8671         * sim/ucsim/s51.src/Makefile.in
8672         * sim/ucsim/s51.src/clean.mk
8673         * sim/ucsim/xa.src/Makefile.in
8674         * sim/ucsim/xa.src/clean.mk
8675         * sim/ucsim/z80.src/Makefile.in
8676         * sim/ucsim/z80.src/clean.mk
8677         * sim/ucsim/main_in.mk
8678         * sim/ucsim/packages_in.mk
8679         * sim/ucsim/gui.src/Makefile.in
8680         * sim/ucsim/gui.src/serio.src/Makefile.in
8681         * sim/ucsim/gui.src/serio.src/clean.mk
8682         * src/Makefile.in
8683         * src/clean.mk
8684         * support/cpp2/Makefile.in
8685         * support/cpp2/clean.mk
8686         * support/makebin/Makefile
8687         * support/makebin/clean.mk
8688         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8689         * doc/sdccman.lyx: --program-suffix no longer needed
8690
8691 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8692
8693          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8694          Martin Helmling added support for ddd GUI debugger.
8695          Code added to display assembly, set variables, and other commands
8696          to interface to ddd.
8697
8698 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8699
8700         * as/Makefile: fix target clean
8701         * as/clean.mk: fix target clean
8702         * as/z80/clean.mk: fix target clean
8703
8704 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8705
8706         * Makefile.common.in: added  AT EXEEXT AT
8707         * configure.in: removed all mingw32 stuff
8708         * configure: rebuilt from configure.in
8709         * doc/sdccman.lyx: updated section "installation"
8710         * support/scripts/sdcc_mingw32: adapted to configure
8711         * support/scripts/sdcc_cygwin_mingw32: added
8712
8713 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8714
8715         * src/pic Added object file support for the PIC port
8716         * src/pic Applied patch from Craig Franklin (this started the object file support)
8717         * src/regression Updated the PIC regression tests for object files
8718
8719 2003-04-20  Borut Razem <borut.razem AT siol.net>
8720
8721         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8722           lklex.c: In function `getfid':
8723           lklex.c:203: warning: array subscript has type `char'
8724         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8725           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8726         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8727           stack handling macros
8728
8729 2003-04-19  Borut Razem <borut.razem AT siol.net>
8730
8731         * "handling space characters in file path" task:
8732         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8733         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8734         * support/Util/MySystem.h: make it self-sufficient
8735         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8736           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8737           handling space characters in file path
8738         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8739           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8740         * support/Util/MySystem.c: handling space characters in executable's path
8741
8742 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8743
8744         * as/z80/Makefile: fix permanent rebuild of z80
8745         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8746         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8747
8748 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8749
8750         * src/SDCCopt.c: add special case optimization to replace modulo by
8751           a power of two with a bitwise AND.
8752
8753 2003-04-18    <johan AT balder>
8754
8755         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8756
8757 2003-04-17    <johan AT balder>
8758
8759         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8760         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8761
8762 2003-04-13  Borut Razem <borut.razem AT siol.net>
8763
8764         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8765         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8766           fixed mingw problem in adl_NORMALIZE_PATH
8767
8768 2003-04-12  Borut Razem <borut.razem AT siol.net>
8769
8770         * fixed "#pragma SAVE/RESTORE can not be nested":
8771         * src/SDCC.lex: reworked pragma handling functions
8772         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8773         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8774
8775 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8776
8777         * src/SDCCutil.c (pathEquivalent): defined but not used
8778         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8779         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8780         * configure: rebuilt from configure.in
8781         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8782         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8783         * device/include/Makefile.in: replace sdcc_datadir
8784         * device/lib/Makefile.in: replace sdcc_datadir
8785         * Makefile.common.in: add LDFLAGS from configure
8786         * packihx/Makefile.in: use LDFLAGS
8787         * src/Makefile.in: use LDFLAGS
8788         * support/cpp2/Makefile.in: add LDFLAGS from configure
8789         * support/makebin/Makefile: use LDFLAGS
8790         * .version: bumped version number to 2.3.5
8791
8792 2003-04-12  Borut Razem <borut.razem AT siol.net>
8793
8794         * completed "different paths" task:
8795         * src/SDCCmacro.c: fixed bug in handling quotes
8796         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8797         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8798
8799 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8800
8801         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8802
8803 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8804
8805         * ds390/gen.c ds390/peeph.def: fix bug 706781
8806
8807 2003-04-11  Borut Razem <borut.razem AT siol.net>
8808
8809         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8810
8811 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8812
8813         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8814         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8815          set - this bit used to not be set...).
8816         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8817           bad code in PIC Port
8818         * src/regression/and2.c added to test bug 609268
8819         * src/regression/Makefile added and2.c to regression test
8820
8821
8822 2003-04-08    <johan AT CP255758-A>
8823
8824         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8825         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8826         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8827
8828 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8829
8830         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8831         fix bug #487815
8832         * support/cpp2/Makefile.in: fix bug #487815
8833         * configure: rebuilt from configure.in
8834         * Makefile.common.in: docdir changed, new path suffixes
8835         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8836         * sdcc_vc_in.h: reflect changes from sdccconf.h
8837         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8838         * src/SDCCutil.h: remove BINDIR hack
8839         * doc/sdccman.lyx: update new path hierarchy
8840
8841 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8842
8843         * src/SDCCpeeph.c: added okToRemoveSLOC test
8844
8845 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8846
8847         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8848
8849 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8850
8851         * src/SDCCpeeph.c: added labelIsReturnOnly test
8852         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8853
8854 2003-04-05    <johan AT balder>
8855
8856         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8857         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8858         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8859         * src/SDCCast.c: fixed a warning
8860         * src/SDCCast.h: fixed a warning
8861         * src/SDCCicode.c (operandFromAst): fixed a warning
8862
8863 2003-04-04    <johan AT balder>
8864
8865         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8866         * src/SDCCast.c (decorateType): fixed bug #715076
8867         * src/SDCC.y: fixed bug #702907
8868
8869 2003-04-03    <johan AT balder>
8870
8871         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8872         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8873         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8874         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8875         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8876
8877 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8878
8879         * _decdptr.c: fix return values
8880         * _gptrget.c: fix return values
8881         * _gptrgetc.c: fix return values
8882         * _gptrput.c: fix return values
8883         * _mulint.c: fix return values
8884         * as/z80/Makefile: fix 'make -j' problem
8885
8886 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8887
8888         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8889         * configure.in: big cleanup, updated to autoconf 2.5x
8890         * configure: rebuilt from configure.in
8891         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8892         * sdcc_vc_in.h: reflect changes from sdccconf.h
8893         * doc/Makefile: fixed a flaw in "make install"
8894
8895 2003-04-02    <johan AT balder>
8896
8897         * src/ds390/gen.c (genCmp): no comments
8898         * src/mcs51/gen.c (genCmp): no comments
8899         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8900         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8901
8902 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8903
8904         * support/regression/generate-cases.py: place generated file in given sub directory
8905         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8906         * support/regression/Makefile: improvements for 'make -j';
8907         side effect: it's simpler and faster now
8908
8909 2003-03-31  Borut Razem <borut.razem AT siol.net>
8910
8911         * src/z80/main.c: link-{port} and as-{port} defined without path
8912         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8913
8914 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8915
8916         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8917
8918 2003-03-30  Borut Razem <borut.razem AT siol.net>
8919
8920         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8921           changed type of list parameter to set
8922         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8923         * src/port.h: changed type of do_assemble() parameter to set
8924         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8925           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8926           definition of "cppoutfilename" macro with NULL value in preProcess()
8927         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8928         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8929         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8930           replaced with set *binPathSet
8931         * shash_add() deallocates the item, if allready exsists, before adding the new one
8932         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8933
8934 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8935
8936         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8937           a nested for loop bug in the PIC port
8938         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8939           for loops
8940
8941 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8942
8943         * support/Util/dbuf.h: remove C++ stuff to make it portable
8944
8945 2003-03-28  Borut Razem <borut.razem AT siol.net>
8946
8947         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8948           literal strings in stringLiteral()
8949         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8950         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8951           to the project
8952
8953 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8954
8955         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8956
8957 2003-03-26    <johan AT balder>
8958
8959         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8960         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8961         * src/SDCCast.c (decorateType): fixed " -v < 3"
8962
8963 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8964
8965         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8966         Added Lenny Story's debug infrastructure changes:
8967         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8968         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8969         * src/cdbFile.c: added
8970         * src/SDCCdebug.c: added
8971         * src/SDCCdebug.h: added
8972         * src/SDCCast.c (createFunction)
8973         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8974         * src/SDCCmain.c (parseCmdLine, main)
8975         * src/SDCCmem.c (redoStackOffsets)
8976         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8977         * src/SDCCsymt.h
8978         * src/common.h
8979         * src/avr/gen.c (genAVRCode)
8980         * src/ds390/gen.c (gen390Code)
8981         * src/mcs51/gen.c (gen51Code)
8982         * src/pic/gen.c (genpic14Code)
8983         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8984         * src/xa51/gen.c (genXA51Code)
8985         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8986
8987 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8988
8989         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8990         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8991
8992 2003-03-22    <johan AT balder>
8993
8994         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8995
8996 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8997
8998         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8999         * doc/cdbfileformat.lyx: added, written by Lenny Story
9000         * doc/Makefile: added cdbfileformat.lyx
9001         * doc/clean.mk: added cdbfileformat.lyx
9002
9003 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9004
9005         * src/mcs51/peeph.def: fix bug #705773
9006
9007 2003-03-20    <johan AT balder>
9008
9009         An sfr/sbit can have an "at #" AND an initializer
9010         * src/SDCCsymt.c (checkSClass):
9011         * src/SDCCmem.c (allocGlobal):
9012         * src/SDCCmem.c (allocLocal):
9013         * src/SDCCast.c (createBlock):
9014
9015 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9016
9017         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9018
9019 2003-03-16    <johan AT balder>
9020
9021         Undid the hackup of const and volatile, the problem is much bigger
9022         * src/SDCC.y:1.65
9023         * src/SDCCast.c:1.171
9024         * src/SDCCglue.c:1.138
9025         * src/SDCCicode.c:1.146
9026         * src/SDCCsymt.c:1.150
9027         * src/SDCCval.c:1.65
9028
9029 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9030
9031         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9032         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9033
9034 2003-03-13    <johan AT balder>
9035
9036         Hackup const and volatile modifiers in type chains a bit:
9037         * src/SDCC.y:1.63
9038         * src/SDCCast.c:1.169
9039         * src/SDCCglue.c:1.136
9040         * src/SDCCicode.c:1.143
9041         * src/SDCCsymt.c1.146
9042         * src/SDCCsymt.h1.59
9043         * src/SDCCval.c:1.63
9044
9045 2003-03-12    <johan AT balder>
9046
9047         * src/SDCCBBlock.h: more LRH debugging junk
9048         * src/SDCCcflow.h: more LRH debugging junk
9049         * src/SDCCloop.c: more LRH debugging junk
9050         * src/SDCC.y (struct_declaration): fixed bug #697590
9051         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9052         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9053         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9054
9055 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9056         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9057         test function names must now match exactly).
9058         * src/SDCCcse.c: added special case in findCheaperOp to allow
9059         extending a short integer. Makes less awful code for bug 700121 test case.
9060
9061 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9062
9063         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9064         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9065
9066 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9067
9068         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9069         actually called (operandsNotEqual() was called for all
9070         operandsNotEqualX tests).
9071
9072 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9073
9074         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9075         with shorter literals. Fixes bug 700121.
9076
9077 2003-03-11    <johan AT balder>
9078
9079         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9080
9081 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9082
9083         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9084         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9085
9086 2003-03-10  Borut Razem <borut.razem AT siol.net>
9087
9088         * src/SDCCmain.c: pipe preprocessor's output
9089         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9090         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9091         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9092         which closes all pipes in pipeSet set
9093         * src/SDCCset.c: free deleted item in function deleteSetItem()
9094         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9095         moved from z80 to src subproject
9096         * .version: increased version number to 2.3.4
9097
9098 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9099
9100         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9101         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9102         * support/regression/ports/xa51/spec.mk: fix typo
9103
9104 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9105
9106         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9107
9108 2003-03-09  Borut Razem <borut.razem AT siol.net>
9109
9110         * src/SDCCmain.c: pipe preprocessor's output
9111         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9112         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9113         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9114         which closes all pipes in pipeSet set
9115         * src/SDCCset.c: free deleted item in function deleteSetItem()
9116         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9117         moved from z80 to src subproject
9118
9119 2003-03-09  Borut Razem <borut.razem AT siol.net>
9120
9121         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9122         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9123         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9124         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9125         * src/SDCCglobl.h: unification of WIN32 native definitions
9126
9127 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9128
9129         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9130
9131 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9132
9133         * src/configure.in:   check for endianess (even while cross-compiling)
9134         * src/configure:      check for endianess (even while cross-compiling)
9135         * src/configure_in.h: check for endianess (even while cross-compiling)
9136         * src/avr/gen.c:        remove old endianess stuff
9137         * src/mcs51/gen.c:      remove old endianess stuff
9138         * src/ds390/gen.c:      remove old endianess stuff
9139         * src/pic/gen.c:        remove old endianess stuff
9140         * src/pic/genarith.c:   remove old endianess stuff
9141         * src/pic/glue.c:       fix endianess check
9142         * src/pic16/gen.c:      remove old endianess stuff
9143         * src/pic16/genarith.c: remove old endianess stuff
9144         * src/pic16/glue.c:     fix endianess check
9145         * src/xa51/gen.c:       remove old endianess stuff
9146         * src/z80/gen.c:        fix endianess check
9147         * src/SDCCglue.c:       fix endianess check
9148         * src/ds390/peeph.def: fix bug 700036
9149
9150 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9151
9152         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9153         * src/configure: find appropriate data-types on host for SDCC's int and long
9154         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9155         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9156         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9157
9158 2003-03-07    <johan AT balder>
9159
9160         Just a big NOOP:
9161                 some minor cleanups before the big shot
9162                 OP_DEFS and OP_USES now use Kevin's protection
9163                 new option --nolabelopt
9164
9165         * src/SDCCBBlock.c:
9166         * src/SDCCast.c,:
9167         * src/SDCCcflow.c:
9168         * src/SDCCcse.c:
9169         * src/SDCCicode.c:
9170         * src/SDCCicode.h:
9171         * src/SDCClabel.c:
9172         * src/SDCCloop.c:
9173         * src/SDCCmain.c:
9174         * src/ds390/ralloc.c:
9175         * src/mcs51/ralloc.c:
9176         * src/pic/ralloc.c:
9177         * src/xa51/ralloc.c:
9178         * src/z80/ralloc.c:
9179
9180 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9181
9182         * src/pic/pcode.c (get_op): fix 64 bit warnings
9183         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9184         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9185         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9186         * support/regression/tests/malloc.c: fix 64 bit warnings
9187
9188 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9189
9190         * src/mcs51/gen.c (genMinus): fixed bug 696436
9191
9192 2003-03-02  Borut Razem <borut.razem AT siol.net>
9193
9194         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9195
9196 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9197
9198         * configure.in: test for mkstemp
9199         * sdccconf_in.h: add HAVE_MKSTEMP
9200
9201 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9202
9203         * device/include/ctype.h: removed warning while using --stack-auto
9204         * device/include/malloc.h: removed warning while using --stack-auto
9205         * device/include/string.h: removed warning while using --stack-auto
9206
9207 2003-02-23  Borut Razem <borut.razem AT siol.net>
9208
9209         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9210         because NDEBUG is defined (see man assert)
9211         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9212
9213 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9214
9215         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9216         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9217
9218 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9219
9220         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9221         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9222
9223 2003-02-18    <johan AT balder>
9224
9225         * as/mcs51/asmain.c (asmbl): module can start with a digit
9226         * as/z80/asmain.c (asmbl): module can start with a digit
9227
9228 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9229
9230         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9231         * src/asm.c: fix pipe() for Mingw32
9232
9233 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9234
9235         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9236         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9237         make -V work again; --c1mode reads now from stdin
9238         * doc/sdccman.lyx: added --c1mode
9239         * support/Util/SDCCerr.c: new messages for c1 mode
9240         * support/Util/SDCCerr.h: new messages for c1 mode
9241         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9242
9243 2003-02-15    <johan AT balder>
9244
9245         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9246
9247 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9248
9249         * doc/sdccman.lyx: Environment variables, -o and other minor things
9250
9251 2003-02-14    <johan AT balder>
9252
9253         * src/xa51/main.c: before anyone really tries to use it :)
9254
9255         * Install doc's in share/sdcc/doc
9256         * removed some obsolete files
9257         * Do a proper make distclean and uninstall
9258         M Makefile.common.in
9259         R sdccbuild.sh
9260         M as/Makefile
9261         M device/include/Makefile.in
9262         M device/lib/Makefile.in
9263         M doc/sdccman.lyx
9264         M link/Makefile
9265         M sim/ucsim/doc/Makefile.in
9266         M src/clean.mk
9267         R src/avr/peeph.rul
9268         R src/xa51/peeph.rul
9269         M support/cpp2/Makefile.in
9270         M support/makebin/Makefile
9271
9272
9273 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9274
9275         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9276
9277 2003-02-10  Borut Razem <borut.razem AT siol.net>
9278
9279         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9280         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9281         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9282         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9283         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9284         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9285         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9286         src/z80/Makefile.bcc: Borland Makefile cleanup
9287         * as/z80/Makefile.bcc: Added Borland Makefile
9288         * support/cpp2/borland.h: Removed
9289
9290 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9291
9292         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9293         * src/SDCC.lex: new pragma NOIV
9294         * src/SDCCglobl.h: new pragma NOIV
9295         * src/SDCCmem.c: new pragma NOIV
9296
9297 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9298
9299         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9300
9301 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9302
9303         * src/SDCCmain.c: signal handling is switched off by --debug
9304         * doc/Makefile: small fix for install; use clean.mk again
9305         * doc/clean.mk: clean *.pdf and *.html too
9306
9307 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9308
9309         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9310         * device/lib/printfl.c: fix a ds390 bug by making it portable
9311         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9312         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9313         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9314         * debugger/mcs51/cmd.c: converted multi-line string literals
9315         * sim/ucsim/globals.cc: converted multi-line string literals
9316         * src/SDCCmain.c: introduced signal handler to remove temp files
9317         * doc/Makefile: small tweaks, implement clean
9318         * doc: removed generated files
9319
9320 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9321
9322         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9323         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9324         Address Record is not correctly generated for DS390."
9325
9326 2003-02-02  Borut Razem <borut.razem AT siol.net>
9327
9328         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9329         * as/mcs51/asm.h: fixed compilation with Borland C
9330         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9331         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9332         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9333         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9334         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9335         src/z80/Makefile.bcc: delete $(LIB) only if exist
9336         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9337
9338 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9339
9340         * device/include/malloc.h: introduced NULL
9341         * device/include/string.h: introduced NULL
9342         * device/include/stdlib.h: introduced NULL
9343         * device/lib/_memcpy.c: removed NULL
9344         * device/lib/_strcat.c: removed NULL
9345         * device/lib/_strchr.c: removed NULL
9346         * device/lib/_strcmp.c: removed NULL
9347         * device/lib/_strcpy.c: removed NULL
9348         * device/lib/_strcspn.c: removed NULL
9349         * device/lib/_strlen.c: removed NULL
9350         * device/lib/_strncat.c: removed NULL
9351         * device/lib/_strncmp.c: removed NULL
9352         * device/lib/_strncpy.c: removed NULL
9353         * device/lib/_strpbrk.c: removed NULL
9354         * device/lib/_strrchr.c: removed NULL
9355         * device/lib/_strspn.c: removed NULL
9356         * device/lib/_strstr.c: removed NULL
9357         * device/lib/_strtok.c: removed NULL
9358         * device/lib/malloc.c: removed NULL, include own header
9359
9360 2003-02-02    <johan AT balder>
9361
9362         * 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
9363         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9364         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9365         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9366         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9367         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9368
9369 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9370
9371         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9372         area 'DATA'"
9373
9374 2003-02-01    <johan AT balder>
9375
9376         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9377
9378 2003-01-31    <johan AT CP255758-A>
9379
9380         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9381
9382 2003-01-30    <johan AT balder>
9383
9384         * src/SDCCBBlock.c: automatic bug detection
9385         * src/SDCCicode.c: automatic bug detection
9386
9387 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9388
9389         * src/SDCCglobl.h:   now --xram-size 0 works
9390         * src/SDCCmain.c:    now --xram-size 0 works
9391
9392 2003-01-29    <johan AT balder>
9393
9394         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9395
9396 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9397
9398         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9399         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9400         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9401         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9402         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9403         * src/SDCCmain.c:    Added options --xram-size and --code-size
9404
9405 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9406
9407         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9408         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9409
9410 2003-01-27    <johan AT balder>
9411
9412         * src/SDCC.y: fixed bug #613764
9413
9414 2003-01-26    <johan AT balder>
9415
9416         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9417         * src/SDCCsymt.h: fixed bug #673374
9418         * src/SDCCglue.c: fixed bug #661910
9419         * src/SDCCast.c: fixed bug #458099 and 673374
9420
9421 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9422
9423         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9424         * as/mcs51/strcmpi.h: added
9425         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9426         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9427         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9428         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9429         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9430         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9431         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9432         * as/mcs51/Makefile.aslink: new module strcmpi
9433         * as/mcs51/Makefile.asx8051: new module strcmpi
9434         * as/mcs51/Makefil.bcc: new module strcmpi
9435         * as/mcs51/Makefile.in: new module strcmpi
9436         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9437
9438 2003-01-26    <johan AT balder>
9439
9440         * src/SDCCglue.c: reverted back to 1.124
9441         * src/SDCCast.c: reverted back to 1.156
9442         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9443
9444 2003-01-25    <johan AT balder>
9445
9446         * src/SDCCglue.c: A better fix for bug #661910
9447         * src/SDCCast.c: A better fix for bug #661910
9448         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9449
9450 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9451
9452         * src/Makefile.in: remove spawn.o
9453         * src/SDCCmain.c: remove spawn.h
9454         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9455         * src/spawn.c: removed
9456         * src/spawn.h: removed
9457         * support/regression/ports/ds390/spec.mk: link with -r
9458
9459 2003-01-24    <johan AT CP255758-A>
9460
9461         * src/ds390/gen.c (aopOp): fixed bug #667458
9462         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9463         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9464         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9465
9466 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9467
9468         * src/mcs51/peeph.def: better assembler identation by Frieder
9469         * src/mcs51/gen.c: better assembler identation by Frieder
9470
9471 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9472
9473         * as/z80/string.h: removed for gcc 3.2
9474         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9475         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9476
9477 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9478
9479         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9480         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9481         * support/regression/Makefile: separate temp files for ports
9482         * support/regression/generate-cases.py: separate temp files for ports
9483         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9484         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9485
9486 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9487
9488         * moved tinitalk to device/examples/ds390
9489
9490 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9491
9492         * as/mcs51/lkmem.c: rflag is for DS390
9493         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9494         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9495                          (linkEdit): move mem- and map-files the same way as ihx-files
9496         * src/z80/main.c (_setDefaultOptions): removed --generic
9497         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9498         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9499         * src/pic/glue.c (picglue): --c1mode works again
9500         * src/pic16/glue.c (pic16glue): --c1mode works again
9501         * src/asm.c (printCLine): fix #660034
9502
9503 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9504
9505         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9506         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9507         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9508         * as/mcs51/lkmem (summary): better fix for sp problem
9509         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9510         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9511         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9512                                               remove --stack-after-data
9513
9514 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9515
9516         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9517         * src/SDCCutil.c (join): ugly bug: missing '\0'
9518         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9519
9520 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9521
9522         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9523         * src/port.h: typo
9524         * src/pic/main.c (_asmCmd): gpasm supports -o
9525         * src/z80/main.c: more general macros
9526         * device/lib/Makefile.in: remove intermediate files
9527
9528 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9529
9530         * .version: Bumped version number to 2.3.3
9531         * src/SDCCBBlock.c: new option -o
9532         * src/SDCCglobl.h: new option -o
9533         * src/SDCCglue.c: new option -o
9534         * src/SDCCmain.c: new option -o
9535         * src/asm.c: new option -o
9536         * src/ds390/main.c: new option -o
9537         * src/pic/glue.c: new option -o
9538         * src/pic/pcode.c: new option -o
9539         * src/pic/ralloc.c: new option -o
9540         * src/pic16/glue.c: new option -o
9541         * src/pic16/pcode.c: new option -o
9542         * src/pic16/ralloc.c: new option -o
9543         * src/z80/main.c: new option -o
9544         * device/lib/Makefile.in: use -o
9545         * support/regression/ports/ds390/spec.mk: use -o
9546         * support/regression/ports/gbz80/spec.mk: use -o
9547         * support/regression/ports/mcs51/spec.mk: use -o
9548         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9549         * support/regression/ports/z80/spec.mk: use -o
9550         * support/regression/ports/ucz80/spec.mk: use -o
9551         * support/regression/ports/xa51/spec.mk: use -o
9552         * support/regression/fwk/lib/timeout.c: fix usage string
9553
9554 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9555         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9556
9557 2003-01-07    <johan AT balder>
9558
9559         * src/SDCCast.c (decorateType): fixed bug #600035
9560
9561 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9562         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9563         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9564         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9565         * src/pic/pcode.c: outcommented unused variable to remove warnings
9566         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9567
9568 2003-01-06    <karl AT turbobit.com>
9569         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9570    regression tests.
9571
9572 2003-01-06    <johan AT balder>
9573
9574         * src/SDCCicode.c: fixed array add
9575
9576 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9577         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9578         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9579
9580 2003-01-04    <johan AT balder>
9581
9582         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9583
9584 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9585         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9586
9587 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9588         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9589         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9590
9591 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9592         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9593
9594 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9595         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9596
9597 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9598         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9599
9600 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9601
9602     * in \sdcc\as\mcs51\ changed these files in order to create an
9603     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9604     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9605     following files to include the previous two files: aslink.dsp,
9606     Makefile.aslink, Makefile.bcc, and Makefile.in.
9607
9608     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9609     .adb instead of .cdb
9610
9611 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9612
9613         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9614         value from option --iram-size.
9615
9616 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9617
9618         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9619         dram[] array.
9620
9621 2002-09-18    <wiml AT hhhh.org>
9622
9623         * SDCClrange.h: exposed setFromRange() and setToRange()
9624         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9625           packRegsForAccUse() (bug 542397)
9626         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9627           multiple times and emitting the fetch operations more than once
9628           added aopGetUsesAcc() function to allow binary operators to
9629           fetch their operands in the correct order; made genMinus() emit
9630           compact code for X = LITERAL - Y
9631
9632 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9633         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9634         sprintf() in line 1267.
9635
9636 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9637         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9638         like ports.
9639
9640 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9641         Changes to aslink (All the changes are marked with 'JCF'):
9642
9643         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9644         summary().
9645
9646         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9647         area BSEG.  Also moves, if possible, the DATA area down into the internal
9648         ram so more space is available.
9649
9650         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9651         sflag.
9652
9653         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9654         not bytes.  Function summary() which creates a memory usage summary
9655         file with extension .mem.  Reports of overlaping stack and small stack
9656         size.  If the space for the stack is less than 16 bytes aslink trows a
9657         warning.
9658
9659         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9660         the 8051.  Option 'y' for memory summary output file.
9661
9662         Changes to sdcc (All the changes are marked with 'JCF'):
9663
9664         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9665
9666         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9667         overlaying area for it (uses RegBankUsed[4]).
9668
9669         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9670         bank zero as used by default.  By default aslink locates the stack
9671         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9672         the creation of the .mem file.  Delegates the allocation of data area
9673         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9674         the begining of the stack area to aslink.
9675
9676         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9677         glue() in SDCCglue.c creates an area for it.
9678
9679 2002-09-03  Borut Razem <borut.razem AT siol.net>
9680         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9681         sdcc/src/pic/glue.c:
9682         introduced atexit() handler for teporay files removal in case of
9683         errors, assertions, ...
9684
9685 2002-08-29  Borut Razem <borut.razem AT siol.net>
9686         * sdcc/support/cpp2/auto-host_vc_in.h:
9687         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9688         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9689         Maybe there is a similar problem with BORLANDC? It should be checked!
9690
9691         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9692         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9693         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9694         was not executed, and the compiler (cl) launched a warning:
9695         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9696
9697 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9698         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9699
9700 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9701         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9702
9703         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9704           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9705           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9706           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9707           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9708           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9709           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9710         - added Release configuration in VS projects
9711         - review of compiler an linker options
9712         - VC .exe files are generated in bin_vc directory, not to interfere
9713           with binaries generated from other projects (cygwin, mingw, bcc ...)
9714
9715         * sdcc/src/yacc.dsp: added
9716
9717         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9718         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9719         and insert the version number definitions from .version
9720
9721         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9722
9723         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9724         added - genarate auto-host.h using auto-host_vc_in.h as template
9725
9726         * sdcc/sdcc_vc.h,
9727         removed from CVS, generated automatically
9728
9729 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9730         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9731
9732 2002-08-11  Borut Razem <borut.razem AT siol.net>
9733         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9734
9735 2002-08-10  Borut Razem <borut.razem AT siol.net>
9736         * src/SDCCmain.c (main):
9737         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9738         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9739         The consequence was that some temporary files were not removed.
9740
9741         * src/SDCCglue.c:
9742         unification of code in functions tempfilename() and tempfile():
9743         function tempnam() is defined in Visual Studio 6.0 and .NET
9744
9745         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9746
9747         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9748           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9749         - removed compiler command line option /WX: Treats all warnings as errors
9750         - update a list of source files, included into the project
9751
9752         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9753           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9754         changed project type to Generic Project so that can be correcly converted to VS.NET project
9755
9756         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9757
9758         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9759
9760         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9761
9762         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9763         added return 0 statements after assert() to make compiler happy
9764
9765         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9766         added newline in the def file to keep MSC compiler satisfied
9767
9768         * sdcc/src/z80/gen.c:
9769         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9770           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9771         - solved MSC error in function aopDump()
9772
9773         * sdcc_vc.h: define PREFIX as "\\sdcc"
9774
9775 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9776         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9777
9778 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9779         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9780         - Rewrote the register banking algorithm.
9781         - Added pCode live-range analysis to registers (for now, only non-used and
9782         singly-used registers optimized away)
9783
9784         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9785
9786         * 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.
9787
9788 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9789         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9790
9791 2002-04-22  Michael Hope  <michaelh AT vroom>
9792
9793         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9794
9795         * configure.in (DD_COPT): Added include support required for gbdk.
9796
9797         * .version: Bumped version number just to increase it.
9798
9799         * src/SDCCmain.c: Added -nostdinc to the default options.
9800
9801 2002-04-15  Michael Hope  <michaelh AT vroom>
9802
9803         * device/lib/z80/printf.c (sprintf): Added.
9804
9805         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9806
9807         * src/z80/peeph.def: Added transpose redundent load rule.
9808
9809         * src/z80/main.c: Added force callee saves for jaune.
9810
9811         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9812
9813         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9814
9815 2002-03-28  Johan Knol  <johan AT balder>
9816
9817         * src/SDCCval.c: fixed bug #532436
9818
9819 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9820         * /src/port.h:
9821         Added "char *Processor" field to the port structure.
9822
9823         * /src/SDCCmain.c:
9824         Added -p option. Allows port dependent processor to be specified.
9825
9826         * all ports:
9827         Initialized the new field char *Processor field to NULL in all ports
9828
9829         * /src/pic/*:
9830         Compiler generated registers for interrupt context saving
9831         were not getting allocated.
9832
9833 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9834
9835         * /src/SDCCast.c:
9836         Fixed left shift. Will promote the left side of a left shift
9837         if a) left shifting more than size of operand or b) when assigned
9838         to something size > size of left side
9839
9840 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9841         * src/pic/*
9842         tons of changes. Register allocation has been
9843         rewritten. Added customization for the various PICs. Flow
9844         analysis is restructured. ...
9845
9846         * src/pic/device.h:
9847         Added
9848
9849         * src/pic/device.c:
9850         Added. device.c is a PIC port hack to accomodate variations
9851         in PIC devices.
9852
9853 2002-03-13  Michael Hope  <michaelh AT vroom>
9854
9855         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9856
9857 2002-03-04  johanknol  <johanknol AT manik>
9858
9859         * /src/SDCCval.c: fixed
9860
9861         const unsigned char arr[][2] = { { 0, 1 } };
9862         t18.c:1: error: Initializer element is not constant
9863
9864 2002-03-04  bela  <bela AT manik>
9865
9866         * /device/include/mcs51reg.h:
9867         ds89c420 register definition update
9868
9869 2002-03-03    <johan AT FRIJA>
9870
9871         * support/Util/SDCCerr.c: did something, but don't no why anymore
9872
9873         * support/regression/tests/bug-524691.c: made it a little less shy
9874
9875         * src/SDCCast.c (decorateType): fixed bug #524697
9876
9877         * src/SDCCast.c: made some lineno improvements
9878
9879         * src/SDCCval.c (getNelements): changed warning to error
9880
9881         * src/SDCCglue.c (printIvalArray): changed warning to error
9882
9883         * src/SDCCicode.c: fixed a warning for mingw
9884
9885         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9886
9887         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9888
9889 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9890
9891         * src/ds390/peeph.def:
9892         Added some more peephole rules
9893
9894         * src/ds390/gen.c: Various fixes & enhancements
9895
9896         * src/SDCClrange.c, src/SDCClrange.h:
9897         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9898
9899         * src/ds390/ralloc.c:
9900         various fixes & enhancements (ds390) specific
9901
9902         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9903         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9904         from rallocs.
9905
9906         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9907
9908 2002-03-02    <johan AT FRIJA>
9909
9910         * src/SDCCast.c (decorateType): fixed bug #524708
9911
9912         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9913
9914         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9915
9916 2002-03-01  Michael Hope  <michaelh AT vroom>
9917
9918         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9919
9920         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9921
9922 2002-03-01    <johan AT FRIJA>
9923
9924         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9925
9926         * src/SDCCast.c (decorateType): fixed bug #524209
9927
9928         * src/SDCCval.c (valNot): fixed bug #524195
9929
9930 2002-02-26    <johan AT balder>
9931
9932         * src/xa51/gen.c: fixed a warning
9933
9934         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9935
9936         * src/SDCCast.c (decorateType): fixed bug #522534
9937
9938 2002-02-23    <johan AT balder>
9939
9940         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9941
9942 2002-02-22    <johan AT balder>
9943
9944         * src/SDCCast.c: fixed bug #514865
9945
9946         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9947
9948 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9949
9950         * sdcc/src/SDCCloop.c:
9951         Previous fix was not good. basic blocks that have "break" or "return" are
9952         not really partof a loop , but live ranges used in these blocks should
9953         be live thru the entire loop, so set partOfLoop but don't add them to
9954         loop region
9955
9956 2002-02-21    <johan AT FRIJA>
9957
9958         * src/SDCCcse.c: fixed bug #514308
9959
9960 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9961
9962         * src/SDCCloop.c:
9963         Fixed BUG #519583. If a conditional block ended in a return/break
9964         statement inside a loop, it was not being considered part of the loop.
9965
9966         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9967
9968 2002-02-10  Karl Bongers <karl AT turbobit.com>
9969
9970         * debugger/*:
9971         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9972         with lots of comments and notes.
9973
9974         * device/examples/test2.c:
9975         Fix bug, "red" variable not being initialized(compiler complained).
9976
9977         * device/examples/Makefile, examples/test3.c:
9978         Add Makefile in device/examples folder, compiles test3.c
9979         for use as a multiple module SDCDB test case.
9980
9981         * sim/ucsim/cmd.src/cmdset.cc:
9982         Took out debug printfs in ucsim "next" command.
9983
9984         * sim/ucsim/xa.src:
9985         Karl and Johan start ucsim XA support.  Most dissassembly working,
9986         about 75% emulation done(plenty of work remaining).
9987
9988         * sim/ucsim/z80.src:
9989         Add Z80 support to ucsim, add test-ucz80 regression test,
9990         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9991         Notice z80 compiler fails on examples/test3.c/crc code.
9992
9993 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9994
9995         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9996         Added support for --parms-in-bank1
9997
9998         * src/ds390/peeph.def:
9999         added a few more peephole optimzations
10000
10001         * src/ds390/main.c:
10002         1) added __builtin_inp & __builtin_outp used to read in data of given length
10003            from a memory mapped port
10004         2) added __builtin_memcmp
10005         3) added __builtin_swapw swap bytes of a short
10006
10007         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10008         1) handle multiple send & receives from register bank1
10009         2) ralloc can now allocate DPTR1 to some liveRanges
10010
10011         * src/SDCCsymt.c, src/SDCCsymt.h:
10012         changes to handle multiple sends & receives
10013
10014         * src/SDCCptropt.h:
10015         added some pointer arithmetic optimization
10016
10017         * src/SDCCptropt.c:
10018         added some pointer arithmetic optimizations but not stable yet so not
10019         called from anywhere (will get this working shortly)
10020
10021         * src/SDCCopt.c: fixed for multiple sends & receives
10022
10023         * src/SDCCmain.c:
10024         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10025         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10026            set preprocessor defines (depending on options)
10027
10028         * src/SDCCicode.c, src/SDCCicode.h:
10029         changes made to handle multiple sends & receives
10030
10031         * src/SDCCglobl.h:
10032         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10033
10034         * src/SDCCcse.c, src/SDCCcse.h:
10035         added function findbackward def (to be used in upcoming optimization)
10036
10037         * src/SDCCcflow.c, src/SDCCcflow.h:
10038         added function returnAtEnd - to determine if a basic block terminates with
10039         a RETURN iCode
10040
10041         * src/SDCCast.c, src/SDCCast.h:
10042         added option parms-in-bank1
10043
10044         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10045         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10046         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10047         adjusted for --parms-in-bank1 option
10048
10049         * device/include/string.h:
10050         donot redefine "reentrant" keyword
10051
10052         * device/include/ds80c390.h: Added some more SFRs
10053
10054 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10055
10056         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10057
10058 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10059
10060         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10061
10062 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10063
10064         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10065
10066 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10067
10068         * Added --xram-movc option
10069
10070 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10071
10072         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10073
10074 2002-01-11  Johan Knol
10075
10076         * Added math lib of Jesus Calvino-Fraga
10077
10078 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10079
10080         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10081         * support/regression/Makefile: new target test-mcs51-stack-auto
10082         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10083
10084 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10085
10086         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10087
10088 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10089
10090         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10091
10092 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10093
10094         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10095
10096         * src/SDCCglue.h: add definition for printIvalChar()
10097
10098 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10099
10100         * src/SDCCast.c: fix #498138 by Johan
10101
10102         * src/SDCCglue.c: fix #498138 by Johan
10103
10104 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10105
10106         * support/regression/Makefile: fix clean
10107
10108         * support/regression/ports/ds390/support.c: fix transmission of last character
10109
10110 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10111
10112         * /sdcc/src/ds390/gen.c:
10113         a) improved computing address of stack variable
10114         b) took out some #if 0 code
10115         c) improved parmBytes adjustment
10116         d) improved genPlusIncr & genMinusIncr
10117         e) genCmp could generate bad code (when left assigned to DPTR)
10118         f) Fixed bug in hasInc
10119
10120         * /sdcc/src/ds390/ralloc.c:
10121         a) packRegsForSupport could mess up live information (Fixed)
10122         b) packRegsDPTRuse could be incorrect for left & right shift
10123
10124         * /sdcc/src/mcs51/ralloc.c:
10125         packRegsForSupport could mess up the live information (Fixed)
10126
10127         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10128
10129         * /sdcc/src/SDCCast.c:
10130         can reverse a loop even if function call is present as long
10131         as the loop control variable is local & is not passed as parameter
10132
10133 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10134
10135         * /sdcc/ChangeLog: *** empty log message ***
10136
10137         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10138         More builtin function additions for TININative
10139
10140         * /sdcc/src/ds390/ralloc.c:
10141         Had broken the regression testsuite
10142
10143         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10144
10145         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10146         Added funcattr hasStackParms will be set for reentrant functions when there
10147         are paramteres on the stack, this helps in minimizing frame pointer generation
10148         typeFromStr can handle function pointers now
10149
10150         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10151         *** empty log message ***
10152
10153 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10154
10155         * /src/ds390/gen.c, /src/ds390/main.c:
10156         More builtin function additions for TININative
10157
10158         * /src/ds390/ralloc.c:
10159         Had broken the regression testsuite
10160
10161         * /src/SDCCast.c: Fixed a bug in dumptree
10162
10163         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10164         Added funcattr hasStackParms will be set for reentrant functions when there
10165         are paramteres on the stack, this helps in minimizing frame pointer generation
10166         typeFromStr can handle function pointers now
10167
10168         * /doc/builtins.txt, /doc/TININative.txt:
10169         *** empty log message ***
10170
10171
10172 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10173
10174         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10175         ALPHA version for -mTININative
10176
10177         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10178         updated to reflect changes in the port structure
10179
10180         * /src/port.h:
10181         added function do_assemble (similar to do_link) if non-null this function
10182         will be called to do assembly (-mTININative) requires a multi command
10183         assembly
10184         added function genAssemblerEnd will be called to generate assembler Epilogue
10185
10186         * /src/SDCCsymt.c:
10187         added _JavaNative to debug info printing
10188
10189         * /src/SDCCmain.c: added option --tini-libid
10190         added port->do_assemble function (-mTININative) has a multi command assemble
10191
10192         * /src/SDCCglue.c: Disabled "constExpr" check
10193         added port->genAssemblerEnd function
10194
10195         * /src/SDCCglobl.h: Added option --tini-libid value
10196
10197         * /src/SDCCast.h:
10198         tookout optimizeCompare from the header (has no external references)
10199
10200         * /src/SDCCast.c: made one more function "static"
10201
10202 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10203
10204         * src/z80/mappings.i: Added z80asm support.
10205
10206         * src/z80/main.c: Added z80asm support on --asm=z80asm
10207
10208         * src/z80/gen.c: Fixed asm portability issues.
10209
10210         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10211
10212         * src/SDCCglue.c (printExterns): Added global/extern split.
10213
10214 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10215
10216         * support/regression/Makefile: added test for mcs51 model large
10217
10218         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10219
10220         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10221
10222 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10223
10224         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10225
10226 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10227
10228         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10229
10230         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10231
10232 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10233
10234         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10235
10236         * support/regression/tests/simplefloat.c: Port to mcs51.
10237
10238 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10239         * support/regression/tests/bug-485362.c: Added.
10240
10241         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10242
10243         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10244
10245         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10246
10247         * src/z80/gen.c (aopDump): Added a dump function.
10248
10249 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10250         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10251
10252         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10253
10254         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10255
10256         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10257
10258         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10259
10260         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10261
10262         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10263
10264         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10265
10266         * support/regression/ports/ds390/support.c: Use tinibios.
10267
10268         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10269
10270 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10271
10272         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10273         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10274
10275         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10276
10277         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10278
10279 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10280
10281         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10282
10283         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10284         (packRegsForIYUse): Created and optimised.
10285
10286 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10287
10288         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10289 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10290
10291         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10292
10293         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10294
10295         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10296
10297 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10298
10299         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10300
10301         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10302
10303 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10304
10305         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10306
10307         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10308
10309         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10310
10311 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10312
10313         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10314         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10315         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10316
10317         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10318
10319         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10320         (genNotFloat): Added.
10321         (genUminusFloat): Added.
10322
10323         * device/lib/z80/Makefile: Added floating pt stubs.
10324
10325         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10326
10327         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10328
10329         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10330
10331 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10332
10333         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10334
10335         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10336
10337         * sdcc/support/regression/Makefile: Add port ds390.
10338
10339         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10340
10341         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10342
10343         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10344
10345         * sdcc/support/regression/ports/ds390/support.c: Added.
10346
10347         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10348
10349         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10350
10351         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10352
10353 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10354
10355         * device/include/malloc.h: Added z80 and gbz80 support.
10356
10357         * device/lib/gbz80/heap.s: Added.
10358
10359         * device/lib/z80/heap.s: Added.
10360
10361         * device/lib/malloc.c: Added z80 and gbz80 support.
10362
10363         * support/regression/tests/malloc.c (testMalloc): Added.
10364
10365         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10366
10367         * support/regression/tests/bug-478094.c: Added.
10368
10369         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10370
10371 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10372
10373         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10374
10375         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10376
10377         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10378
10379         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10380
10381         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10382
10383 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10384
10385         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10386
10387 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10388
10389         * support/regression/tests/bug-477927.c: Added.
10390
10391         * src/z80/peeph.def: Added minor rules.
10392
10393         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10394
10395         * src/z80/peeph.def: Added jump optimisation modification.
10396
10397 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10398
10399         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10400
10401 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10402
10403         * support/regression/tests/funptrs.c: Added.
10404
10405 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10406
10407         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10408
10409 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10410
10411         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10412
10413         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10414
10415         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10416         (movLeft2ResultLong): Created.
10417
10418         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10419         (joinPushes): Added.  Joins two char pushes into a word push.
10420
10421 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10422
10423         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10424
10425         * support/makebin/Makefile (install): Added creation of dest dir.
10426
10427 2001-10-24 Karl Bongers <karl AT turbobit.com>
10428
10429         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10430
10431 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10432
10433         * src/z80/ralloc.c: Turned off faulty pack for one use.
10434
10435         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10436
10437         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10438
10439 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10440
10441         * support/regression/Makefile: Improved clean
10442
10443         * support/regression/ports/gbz80/spec.mk: Added clean
10444
10445         * support/regression/ports/host/spec.mk: Added clean
10446
10447         * support/regression/ports/z80/spec.mk: Added clean
10448
10449         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10450
10451         * support/regression/ports/mcs51/timeout.c: little improvements
10452
10453 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10454
10455         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10456
10457         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10458
10459         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10460
10461 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10462
10463         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10464
10465         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10466
10467 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10468         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10469
10470         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10471
10472         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10473
10474         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10475
10476         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10477
10478         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10479
10480         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10481
10482         * support/regression/tests/longor.c: Added.
10483
10484 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10485
10486         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10487
10488         * as/mcs51/aslink.h: define PATH_MAX
10489
10490         * as/mcs51/asm.h: define PATH_MAX
10491
10492         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10493
10494         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10495
10496         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10497
10498         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10499
10500         * src/SDCCglobl.h: define PATH_MAX
10501
10502         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10503
10504         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10505
10506 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10507
10508         * src/z80/gen.c (gencjneshort): Fixed
10509
10510         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10511
10512 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10513
10514         * support/regression/tests/bug-469671.c: Added.
10515
10516         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10517
10518 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10519
10520         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10521
10522         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10523
10524 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10525
10526         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10527
10528         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10529
10530         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10531
10532         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10533
10534         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10535
10536         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10537
10538         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10539
10540 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10541
10542         * 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.
10543
10544         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10545
10546         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10547
10548 2001-10-07    <johan AT FRIJA>
10549
10550         * device/lib/gets.c (gets): fixed the return value.
10551
10552 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10553         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10554
10555         * 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.
10556
10557         * 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.
10558
10559         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10560
10561         * src/pic/gen.c: Removed Safe_strdup.
10562
10563         * configure.in: Added option to enable libgc support.
10564
10565         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10566         (bitVectUnion): Optimised.
10567         (bitVectIntersect): Optimised.
10568         (bitVectBitsInCommon): Optimised.
10569         (bitVectCplAnd): Optimised.
10570
10571         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10572
10573 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10574
10575         * src/SDCCmain.c: distinguish between assembler debug and plain options
10576
10577         * src/avr/main.c:   remove standard assembler options
10578
10579         * src/ds390/main.c: remove standard assembler options
10580
10581         * src/mcs51/main.c: remove standard assembler options
10582
10583         * src/port.h: removed "PENDING" comment
10584
10585 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10586
10587         * src/device/lib/_mulint.c  : new, with assember functions
10588
10589         * src/device/lib/_mullong.c : new, with assember functions
10590
10591         * src/device/lib/_divuint.c : with assember functions
10592
10593         * src/device/lib/_divsint.c : with assember functions
10594
10595         * src/device/lib/_divulong.c: with assember functions
10596
10597         * src/device/lib/_divslong.c: with assember functions
10598
10599         * src/device/lib/_moduint.c : with assember functions
10600
10601         * src/device/lib/_modsint.c : with assember functions
10602
10603         * src/device/lib/_modulong.c: with assember functions
10604
10605         * src/device/lib/_modslong.c: with assember functions
10606
10607         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10608
10609         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10610
10611         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10612                                       replaced _mululong.c and _mulslong.c by _mullong.c
10613
10614 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10615
10616         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10617
10618 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10619
10620         * src/SDCCglue.c: test, if win32api is available for MINGW
10621
10622 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10623
10624         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10625         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10626         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10627         * support/regression/ports/host/spec.mk: removed GENERIC
10628         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10629         * support/regression/ports/z80/spec.mk: removed GENERIC
10630
10631 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10632
10633         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10634
10635         * support/regression/tests/bug-467035.c: Created.
10636
10637 2001-10-01    <johan AT FRIJA>
10638
10639         * src/SDCC.y: fixed bug #466586 part 1
10640
10641 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10642
10643         * SDCCicode.c: z80 has no generic pointers
10644         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10645
10646 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10647
10648         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10649
10650 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10651
10652         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10653
10654         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10655
10656 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10657
10658         * configure.in: Fixed up so that ucsim is only configured once.
10659
10660         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10661
10662         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10663         (getPathDifference): As above.
10664
10665         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10666
10667         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10668
10669 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10670         * .version: Updated to 2.3.1
10671
10672         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10673         Added copyright header.
10674
10675         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10676         (assemble): Added support for macro based assembler commands.
10677         (linkEdit): Added support for macro based linker commands.
10678         (preProcess): Changed the pre-processor to use macros.
10679         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10680         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10681
10682         * device/lib/z80/crt0.s: Added module name for debugging.
10683
10684 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10685
10686         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10687
10688         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10689
10690         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10691
10692         * src/Makefile.in: Added SDCCmacro and SDCCutil
10693
10694 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10695
10696         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10697
10698 2001-09-16    <johan AT FRIJA>
10699
10700         * 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.
10701
10702 2001-09-15    <johan AT FRIJA>
10703
10704         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10705         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10706
10707 2001-09-11    <johan AT FRIJA>
10708
10709         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10710
10711 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10712
10713         * support/regression/tests/bug-460444.c: Added test case.
10714
10715         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10716         (genCast): Added justification for all of the asserts.
10717
10718 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10719
10720         * support/regression/support.c: _xdata replaced by xdata
10721
10722         * support/regression/spec.mk: removed _generic
10723
10724 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10725
10726         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10727
10728         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10729         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10730
10731         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10732
10733         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10734
10735         * support/regression/tests/bug-460010.c: Added test case.
10736
10737         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10738
10739 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10740
10741         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10742
10743         * support/regression/testfwk.c: removed workaround for bug #436344
10744
10745         * support/regression/tests/bp.c: use less memory with mcs51
10746
10747         * support/regression/tests/bug-441448.c: use less memory
10748
10749         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10750
10751         * support/regression/collate-results.py: typo
10752
10753 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10754
10755         * support/regression/tests/fetchoverlap.c: Added new test case.
10756
10757         * support/regression/tests/bp.c: Added new test case.
10758
10759         * support/regression/tests/bug-448984.c: Added new test case.
10760
10761         * support/regression/tests/pow2shifts.c: Added new test case.
10762
10763         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10764         (genlshTwo): Fixed right shift for count > 8.
10765
10766         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10767
10768 2001-09-08    <johan AT FRIJA>
10769
10770         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10771
10772 2001-09-07    <johan AT FRIJA>
10773
10774         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10775
10776         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10777
10778 2001-09-06    <johan AT FRIJA>
10779
10780         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10781         * bernhard noted me at this: "() equals to (void)" (1.38)
10782
10783 2001-09-05    <johan AT FRIJA>
10784
10785         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10786
10787 2001-09-04    <johan AT FRIJA>
10788
10789         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10790
10791
10792 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10793
10794         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10795
10796 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10797
10798         * link/z80/aslink.h: Fixed path for PATH_MAX
10799
10800 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10801
10802         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10803
10804         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10805
10806         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10807
10808         * 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.
10809
10810 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10811
10812         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10813         (genCmp): Fixed up genCmp for the GB with longs.
10814
10815         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10816
10817         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10818
10819         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10820
10821         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10822
10823 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10824
10825         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10826
10827 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10828
10829         * 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.
10830
10831         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10832
10833 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10834
10835         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10836
10837         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10838
10839 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10840
10841   * sim/ucsim/configure:    little improvement of Cygwin-detection
10842   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10843   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10844   * support/regression/tests/bug-221100.c: small changes for mcs51
10845   * support/regression/tests/bug-221168.c: small changes for mcs51
10846   * support/regression/tests/bug-227710.c: small changes for mcs51
10847   * support/regression/tests/staticinit.c: small changes for mcs51
10848   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10849   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10850   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10851
10852 $Revision$