* src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
[fw/sdcc] / ChangeLog
1 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
4           version number
5
6 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
7
8         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
9           --no-peep and --peep-file <file> are used don't use default rules but
10           do use the <file>
11
12 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
13
14         * src/mcs51/gen.c (genCall): fixed bug 1457608
15
16 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
17
18         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
19         changes seem to cause (trigger?) problems with the build system.
20
21 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
22
23         * src/SDCCpeeph.c (operandsLiteral): new, added,
24           (callFuncByName): inserted operandsLiteral
25         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
26
27 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
28
29         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
30         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
31
32 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
33
34         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
35           implemented patch 1120823 Thanks to Willy De la Court (normal
36           interrupts need an interrupt number now if they are made critical),
37           and enabled nesting of critical functions though not for gbz80
38           (genCritical, genEndCritical): added functions
39           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
40         * src/z80/mappings.i: added "ei" to all mappings
41
42 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
43
44         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
45         submitted by the Debian SDCC maintainer Aurelien Jarno:
46         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
47         archive with gcc 4.1 on mips and wrote the patch"
48
49 2006-03-16 Raphael Neider <rneider AT web.de>
50
51         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
52           the left operand is shorter than the result (c* = lit-c* + int),
53           fixes bug #1450796
54         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
55           OP_SYMBOL
56
57 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
58
59         * src/.version: increased version number to 2.5.5
60         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
61         linking is done manually in pic16 port's _linkEdit,
62         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
63         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
64         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
65         allocate asmop as AOP_ACC,
66         (aopForRemat): added parameter 'bool result' in function declaration,
67         (pic16_aopGet): return AOP_ACC when accessing WREG,
68         (pic16_popGetTempReg): minor modification,
69         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
70         'pic16_allocWithIdx',
71         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
72         calling function in absolute addresses,
73         (genAssign): take into account AOP_ACC asmop,
74         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
75         * src/pic16/pcoderegs.c: some debug functions and lines added,
76         * src/pic16/ralloc.c (decodeRegType): added but commented out,
77         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
78         register too,
79         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
80         call to allocReg, not by manually allocating a new one,
81         (pic16_assignRegisters): now before going through the register
82         allocating functions mark all registers as free. This eliminates some
83         side effects resulting from peephole parser done earlier in the backbone
84
85 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
86
87         * src/SDCCicode.c (geniCodeLogic),
88         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
89
90 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
91
92         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
93           (genSend): bugfix, do not allocate and free twice,
94           (shiftRLong): handle partially overlapping aops
95         * support/regression/tests/bitopcse.c: fixed warning redefined idata
96
97 2006-03-08 Borut Razem <borut.razem AT siol.net>
98
99         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
100           for pic16
101
102 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
103
104         * support/regression/tests/bug1409955.c: new, added
105         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
106         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
107           (aopForSym, aopOp): increment asmop.allocated if reused,
108           (freeAsmop): decrement asmop.allocated and check for zero instead of
109           using asmop.freed,
110           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
111           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
112            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
113            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
114            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
115            genSignedRightShift, genRightShift, genDataPointerGet,
116            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
117            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
118             in reverse order from allocation,
119           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
120             added swappedLR to keep track
121         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
122           pdata & code for GCC, z80, gbz80 & hc08
123         * support/regression/tests/zeropad.c: moved defines to testfwk.h
124
125 2006-03-08 Raphael Neider <rneider AT web.de>
126
127         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
128
129 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
130
131         * device/include/mcs51/c8051f410.h: new SiLabs mcu
132         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
133         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
134
135 2006-03-06 Borut Razem <borut.razem AT siol.net>
136
137         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
138           made the linker quiet
139
140 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
141
142         * src/pic16/gen.c (genPcall): fixed bug #1443644
143         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
144         which dumps before the function entry point a data byte which represents
145         the number of the local variables used by the specified function, added
146         'xinst' for initial support for Extended Instruction Support,
147         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
148         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
149         port->fun_prefix anymore (may change later),
150         (genFunction, genEndFunction): do not store/restore local registers for
151         _main (this should take care the --main-return command line option in
152         the future),
153         (genOr): removed some legacy pic-port instructions,
154         * src/pic16/genarith.c (genAddLit): re-enabled old code because
155         performing operations with SFR's causes data to be written more than
156         once to each SFR. Perhaps SFRs should be handled in special cases...
157         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
158         pcode.h
159         * src/pic16/main.c (_process_pragma): stack bound checking did not take
160         into account for stack starting position,
161         (struct OPTIONS pic16_optionsTable): added command line argument
162         --extended or -y for Extended Instruction Support,
163         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
164         (deassignLRs): *** perhaps the most important change, old 'for' code
165         (commented out for reference), didn't account for some registers which
166         were left marked 'not free' after a pointer operation. The change
167         reduces register usage a lot in some cases
168
169 2006-03-04 Borut Razem <borut.razem AT siol.net>
170
171         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
172           _clean
173         * support/regression/tests/bug-524697.c: decreased array size for
174           mcs51 to fit into the internal RAM
175         * support/regression/Makefile.in: a little bit more verbose
176
177 2006-03-03 Borut Razem <borut.razem AT siol.net>
178
179         * support/regression/fwk/lib/testfwk.c,
180           support/regression/fwk/include/testfwk.h: introduced function
181           _prints(), nonrecursive _printn(), call _initEmu() from main()
182         * support/regression/ports/gbz80/support.asm,
183           support/regression/ports/ucz80/support.asm,
184           support/regression/ports/z80/support.asm,
185           support/regression/ports/ds390/support.c,
186           support/regression/ports/hc08/support.c,
187           support/regression/ports/host/support.c,
188           support/regression/ports/mcs51/support.c,
189           support/regression/ports/xa51/support.c: added empty _initEmu()
190           function
191         * support/regression/ports/pic16/gpsim.cmd,
192           support/regression/ports/pic16/spec.mk,
193           support/regression/ports/pic16/support.c,
194           support/regression/Makefile.in: added pic16 regression test
195
196 2006-03-01 Raphael Neider <rneider AT web.de>
197
198         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
199           genConstPointerGet): use safe way of generating MOVFF to cover
200             literals as well as registers, fixes bug #1440527
201         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
202             dereference
203           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
204             more correctly, fixes bug #1232186
205           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
206         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
207             gplink guess the correct processor in more cases, applied patch
208             from Till Riedel attached to and fixing bug #1436552
209
210 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
211
212         * support/regression/tests/array.c: added, contains check for #1434401
213         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
214
215 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
216
217         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
218         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
219         * device/include/mcs51/c8051f326.h,
220         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
221         * device/include/mcs51/c8051f000.h,
222         * device/include/mcs51/c8051f018.h,
223         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
224           PCON_IDLE,PCON_STOP and added sfr16 definitions
225
226 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
227
228         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
229           genGetWord): fixed bug 1409955
230
231 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
232
233         * device/include/hc08/mc68hc908gp32.h,
234         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
235
236 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
237
238         * src/SDCCast.c (constExprValue): return NULL if not a value
239         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
240         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
241         * support/regression/tests/bitfields.c: enabled signed bitfield for all
242
243 2006-02-13 Borut Razem <borut.razem AT siol.net>
244
245         * src/regression/ptrarg.c: added, fails due to bug #1430967
246         * src/regression/Makefile: ptrarg.c added, ...
247
248 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
249
250         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
251         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
252
253 2006-02-11 Borut Razem <borut.razem AT siol.net>
254
255         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
256           print "Processor: xxx" message to stdout only if --verbose
257
258 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
259
260         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
261         * support/regression/tests/bug1426356.c: added
262         * support/regression/tests/bitfields.c: removed 2 tests
263
264 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
265
266         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
267         * device/include/mcs51/c8051f330.h,
268         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
269           PCON_IDLE,PCON_STOP and added sfr16 definitions
270         * device/lib/_divsint.c,
271         * device/lib/_divuint.c,
272         * device/lib/_divulong.c,
273         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
274           register bank bug for small stackauto
275
276 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
277
278         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
279
280 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
281
282         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
283         * all.dsp: corrected several bin paths
284         * device/include/mcs51/c8051f120.h,
285         * device/include/mcs51/c8051f300.h,
286         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
287           to PCON_IDLE,PCON_STOP
288         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
289         * device/lib/printf_large.c (output_float): fixed bug 1388703
290         * support/regression/tests/bug1057979.c: added test for bug 1388703
291
292 2006-02-08 Raphael Neider <rneider AT web.de>
293
294         * src/pic/pcode.c (pciTRIS): fixed typo,
295           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
296           (LinkFlow): fixed handling of flows that end in a call,
297           (ReuseReg): perform safety check earlier
298         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
299             to work with flows at the beginning of a pBlock,
300             fixes #1426557 (Symbol not previously defined),
301           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
302             usage information
303           (RemoveUnusedRegisters): update register usage info
304         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
305             created, reuse existing ones instead
306         * src/pic/gen.c (genPcall): fixed #1424719
307
308 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
309
310         * link/z80/lkmain.c,
311         * link/z80/lklex.c,
312         * link/z80/lkdata.c,
313         * link/z80/aslink.h: fixed build on current cygwin:
314         replaced getline() by lk_getline()
315
316 2006-02-01 Borut Razem <borut.razem AT siol.net>
317
318         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
319           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
320           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
321           src/regression/bool1.c, src/regression/bool2.c,
322           src/regression/bool3.c, src/regression/call1.c,
323           src/regression/compare.c, src/regression/compare10.c,
324           src/regression/compare2.c, src/regression/compare3.c,
325           src/regression/compare4.c, src/regression/compare5.c,
326           src/regression/compare6.c, src/regression/compare7.c,
327           src/regression/compare8.c, src/regression/compare9.c,
328           src/regression/configword.c, src/regression/for.c,
329           src/regression/inline.c, src/regression/mult1.c,
330           src/regression/nestfor.c, src/regression/or1.c,
331           src/regression/pointer1.c, src/regression/ptrfunc.c,
332           src/regression/rotate1.c, src/regression/rotate2.c,
333           src/regression/rotate3.c, src/regression/rotate4.c,
334           src/regression/rotate5.c, src/regression/rotate6.c,
335           src/regression/rotate7.c, src/regression/string1.c,
336           src/regression/struct1.c, src/regression/sub.c,
337           src/regression/sub2.c, src/regression/switch1.c,
338           src/regression/while.c, src/regression/xor.c,
339           src/regression/create_stc, src/regression/simulate,
340           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
341           regression tests
342         * src/regression/gpsim_assert.h: added
343
344 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
345
346         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
347         ((void (code *) (void)) 0) ();
348         * as/hc08/aslex.c,
349         * as/hc08/aslink.h,
350         * as/hc08/asm.h,
351         * as/hc08/asmain.c,
352         * as/hc08/lkdata.c,
353         * as/hc08/lklex.c,
354         * as/hc08/lkmain.c,
355         * as/mcs51/aslex.c,
356         * as/mcs51/aslink.h,
357         * as/mcs51/asm.h,
358         * as/mcs51/asmain.c,
359         * as/mcs51/lkdata.c,
360         * as/mcs51/lklex.c,
361         * as/mcs51/lkmain.c,
362         * as/z80/aslex.c,
363         * as/z80/asm.h,
364         * as/z80/asmain.c: fixed build on current cygwin:
365         replaced getline() by as_getline()
366
367 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
368
369         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
370         declarator in the symbol chain
371         * src/SDCCsymt.h,
372         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
373         parameter list for function pointers
374         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
375         * support/regression/tests/bug-716242.c: added
376
377 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
378
379         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
380         offset if possible
381         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
382
383 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
384
385         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
386         inifinitely recurseable, added static
387         * support/regression/tests/bug-1408066.c: added
388
389 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
390
391         * src/SDCCicode.h,
392         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
393         renamed, added possibility to create "postLoopLbl"-labels
394         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
395         newiTempLoopHeaderLabel
396         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
397         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
398         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
399         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
400         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
401         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
402         (basicInduction): fixed bug #136564, made static,
403         (loopInduction): changed parameter of basicInduction, made static,
404         (addPostLoopBlock): added
405         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
406         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
407         findLoopEndSeq
408         * support/regression/tests/bug-136564.c: added
409         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
410         --std-sdcc99 to LIBSDCCFLAGS
411
412 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
413
414         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
415         while loop
416         * support/regression/tests/bug-1406131.c: added
417
418 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
419
420         * src/SDCCast.c (decorateType): fix promotion of unary minus
421         * src/SDCCsymt.c (computeType): beautified
422         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
423         (valUnaryPM, valComplement): fix sign and promotion,
424         (valNot): ANSI: result type is int (SDCC: unsigned char)
425         * support/regression/tests/uminus.c: speedup by removing superflous
426         test case 'int'
427         * support/regression/tests/onebyte.c: added promotion and signedness
428         tests for unary minus
429         * support/regressions/tests/bug-477927.c: disable warning about
430         uninitialized variables
431         * support/regression/tests/not.c: added
432
433 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
434
435         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
436         * src/mcs51/gen.c (gen51Code): show final register usage after
437         fillGaps in asm with --i-code-in-asm
438         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
439         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
440         incUsed, rliveClear, adjustIChain): made static,
441         (setFromRange): excluded because it's unused,
442         (findPrevUseSym, markWholeLoop): added,
443         (findPrevUse): rewritten; fixes bug 895992; now a complete search
444         through all branches of predecessors enables sdcc to emit the warning
445         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
446         (rlivePoint): made static, added parameter emitWarnings which is only
447         true during the first run out of two,
448         (findRecursiveSucc, findRecursivePred): removed,
449         (computeLiveRanges): made static, added parameter emitWarnings,
450         (dumpIcRlive): added for debugging only
451         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
452         removed prototype of setFromRange()
453         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
454         in call of computeLiveRanges()
455         * support/regression/tests/bug-895992.c: added
456         * support/regression/tests/bug-971834.c: added
457         * support/valdiag/tests/bug-895992.c: added
458         * support/valdiag/tests/bug-971834.c: added
459
460 2005-12-18 Raphael Neider <rneider AT web.de>
461
462         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
463           (genUnpackBits): improved code for direct operands,
464           (genPackBits): improved code for literal assignment to bitfields
465             and for direct destination operands (no FSR indirection),
466             prevented redundant AND, fixes #1362800,
467           (AccLsh): added parameter to disable masking of the result
468         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
469           skip instructions with side-effects (like incfsz),
470           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
471         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
472         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
473           fixes #1375263
474
475 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
476
477         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
478         volatile variables as spill location
479
480 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
481
482         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
483         replacing literals
484         * support/regression/tests/bug-1376320.c: added
485
486 2005-12-08 Raphael Neider <rneider AT web.de>
487
488         * src/pic/device.c: renamed is_shared to pic14_is_shared
489         * src/pic/gen.c (genIfx): re-enabled handling of sbits
490         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
491           (is_valid_identifier): added for above workaround
492
493 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
494
495         * device/lib/Makefile.in: fixed to enable port-specific-objects
496         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
497           char, thanks Hubert Sack
498         * doc/sdccman.lyx: documented --xstack-loc,
499           elaborated a bit more on interrupts and pitfalls,
500           removed "setjmp/longjmp unsupported",
501           documented some unsupported C99 features
502         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
503         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
504           if, thanks Hubert Sack
505         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
506         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
507           make make_library
508         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
509           regression tests can report resource usage (rfe 700441)
510         * support/regression/collate-results.py: report resource usage
511         * support/regression/ports/ds390/spec.mk,
512         * support/regression/ports/hc08/spec.mk,
513         * support/regression/ports/mcs51/spec.mk,
514         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
515         * support/regression/ports/ds390/uCsim.cmd,
516         * support/regression/ports/hc08/uCsim.cmd,
517         * support/regression/ports/mcs51/uCsim.cmd,
518         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
519         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
520           library, use the default one
521         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
522           building the library
523
524 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
525
526         * config.dsp: added dependency on .version and configure_vc.awk
527         * device/include/setjmp.h: updated for --stack-auto and --xstack
528         * device/include/mcs51/at89c51snd1c.h: corrected line endings
529         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
530         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
531         * device/lib/libsdcc.lib: added _setjmp
532         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
533           (decorateType): fixed bug 1372851,
534           (optimizeGetHbit): fixed warning
535         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
536           array initialisation
537         * support/regression/tests/bug1057979.c: added test for bug 1358192
538         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
539
540 2005-12-03 Borut Razem <borut.razem AT siol.net>
541
542         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
543           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
544
545 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
546
547         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
548         createIval): implement symbol independant "flexible array member",
549         (createIvalCharPtr): implemented flexible array initialisation with a
550         string
551         * src/SDCCsymt.c (copyStruct): removed,
552         (getSize): fixed misleading comment,
553         (getAllocSize): removed, the additional allocation size is now in
554         sym->flexArrayLength,
555         (checkStructFlexArray): new, syntax checks for flexible array members,
556         (compStructSize): added syntax checks for "flexible array members"
557         (copyStruct): removed,
558         (copyLinkChain): removed inefficient fix for bug 770487
559         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
560         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
561         symbol->flexArrayLength
562         * src/SDCCerr.c,
563         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
564         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
565         * support/regression/tests/structflexarray.c: added
566         * support/valdiag/tests/structflexiblearray.c: added
567
568 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
569
570         * src/SDCCast.c (decorateType): fixed bug 1368489
571         * support/Util/SDCCerr.c,
572         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
573
574 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
575
576         * device/include/mcs51/at89c51snd1c.h: added file submitted by
577           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
578
579 2005-11-27 Borut Razem <borut.razem AT siol.net>
580
581         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
582           support/cpp2/mkdeps.h: added command line option
583           -obj-ext=<extension> to SDCPP to define object file externion, used
584           for generation of make dependencies (-M)
585         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
586
587 2005-11-26 Borut Razem <borut.razem AT siol.net>
588
589         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
590           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
591           added pic and pic16 libraries
592
593 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
594
595         * device/include/float.h: Corrected typo in prototype of __fsgt
596
597 2005-11-25 Borut Razem <borut.razem AT siol.net>
598
599         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
600           added creation of model-mcs51-stack-auto libraries
601
602 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
603
604         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
605         and fields-list too
606         * src/SDCCast.c (createIvalArray): removed obsolete comment
607
608 2005-11-24 Borut Razem <borut.razem AT siol.net>
609
610         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
611           added missing device/lib/mcs51/crt*.asm sources
612
613 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
614
615         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
616
617 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
618
619         * device/lib/_fs2schar.c,
620         * device/lib/_fs2sint.c,
621         * device/lib/_fs2slong.c: optimized inline asm
622
623 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
624
625         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
626           Better handling of floats between -1.0 and 0.0.
627
628 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
629
630         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
631           (the missing "if"s prohibited removal of redundant labels)
632
633 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
634
635         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
636           Properly convert floats between -1.0 and 0.0 to long, int, and char
637           types (max integer value of negative floats tends to zero).
638         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
639           Removed changes made so to work properly with floats between
640           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
641           and _fs2char.c
642
643 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
644
645         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
646         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
647         (genCast) cosmetic change
648         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
649         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
650         from mcs51
651         * support/regression/tests/bitfields (testSignedBitfields): added
652
653 2005-11-18 Borut Razem <borut.razem AT siol.net>
654
655         * sdcc/device/lib/Makefile.in: remove all unnecessary files
656         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
657           introduced SILENT option to make building of pic16 libraries less
658
659 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
660
661         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
662           Now they work properly with floats between -1.0 and 0.0
663         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
664
665 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
666
667         * src/SDCCicode.c (printOperand): added missing else
668
669 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
670
671         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
672         reformatted for better readability
673         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
674         signed bitfields
675
676 2005-11-17 Borut Razem <borut.razem AT siol.net>
677
678         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
679           introduced SILENT option to make building of pic16 libraries less
680           verbose - used for nightly snapshot build
681         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
682           available on Win32 platforms.
683         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
684           medium, large, pic and pic16
685
686 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
687
688         * device/lib/printf_large.c: Temporary patch for bug 1358192:
689           printf("%f"...) sets fraction to zero.
690
691 2005-11-16 Raphael Neider <rneider AT web.de>
692
693         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
694           fixes #1357221
695         * src/pic/gen.c (genIfx): implemented for CARRY bit
696         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
697           to generic pointers, fixes #1357332,
698           (pic16_movLit2f): NEW,
699           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
700
701 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
702
703         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
704
705 2005-11-11 Raphael Neider <rneider AT web.de>
706
707         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
708         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
709           compute pointer's type from operand,
710           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
711           improved single bit reads, fixes bug #1353379
712
713 2005-11-09 Borut Razem <borut.razem AT siol.net>
714
715         * support/scripts/sdcc.nsi: added lib/pic to the package
716
717 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
718
719         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
720
721 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
722
723         * support/regression/tests/bug1348008.c: added
724         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
725         * support/regression/tests/bug1337835.c: updated comment
726
727 2005-11-06 Borut Razem <borut.razem AT siol.net>
728
729         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
730           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
731           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
732           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
733           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
734           dynamic construction of cl_error_class and derivates - 2.nd try
735
736 2005-11-05 Borut Razem <borut.razem AT siol.net>
737
738         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
739           bug, which caused Bus Errors on sparc solaris
740
741 2005-11-04 Borut Razem <borut.razem AT siol.net>
742
743         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
744           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
745           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
746           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
747           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
748           and derivates to resolve the initialization problem on OSX
749
750 2005-11-02 Borut Razem <borut.razem AT siol.net>
751
752         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
753           corrected typo - #include <winsock2.h>
754
755 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
756
757         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
758           (_asxxxx_mapping): added org directive for future enhancements
759
760 2005-11-01 Borut Razem <borut.razem AT siol.net>
761
762         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
763           enabled sockets on WIN32
764         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
765
766 2005-10-31 Borut Razem <borut.razem AT siol.net>
767
768         * support/regression/generate-cases.py: escape backslashes in {testcase}:
769           WIN32 backslash path delimiters should be escaped when used in C strings
770         * support/regression/tests/bitfields.c: exclude failing assertions for
771           __CYGWIN32__ and __MINGW32__ hosts
772
773 2005-10-30 Borut Razem <borut.razem AT siol.net>
774
775         * src/SDCCutil.c: corrected double comparison typo
776
777 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
778
779         * device/lib/medium/Makefile: added for new memory model medium
780         * device/include/asm/mcs51/features.h: updated for medium/pdata
781         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
782           added Multiply & Accumulate sbit's and MAC0_PAGE define
783         * device/include/mcs51/c8051f300.h: added sfr16 definitions
784         * device/include/mcs51/c8051f310.h: added sfr16 definitions
785         * device/lib/_mullong.c: update for medium model
786         * device/lib/incl.mk: added medium model
787         * doc/sdccman.lyx: documented medium model
788         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
789         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
790         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
791         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
792           (allocParms): set SCLS and OCLS to pdata for medium model
793         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
794           for pdata,
795           (powof2): return <0 if not power of 2
796         * src/avr/gen.c (genBitWise): use updated powof2
797         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
798           (shiftR2Left2Result): small optimization in setup, save acc when storing,
799           (shiftLLeftOrResult): use B if necessary
800         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
801         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
802         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
803         * support/regression/Makefile.in: added test-mcs51-medium
804         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
805
806 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
807
808         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
809         specifier unsigned
810         * device/lib/time.c (mktime): fixed bug 1334315
811
812 2005-10-28 Raphael Neider <rneider AT web.de>
813
814         * device/include/pic/p16f_common.inc: added common declarations
815         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
816
817 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
818
819         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
820           (aopPutUsesAcc): added to predict accumulator use,
821           (assignResultValue): save acc if necessary,
822           (genMinusDec): store result if indirectly addressed,
823           (genDivOneByte):  save acc if necessary,
824           (movLeft2Result): bugfix if left already in acc,
825           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
826             attention to accumulator use (esp. pdata),
827           (genReceive): receive pdata correctly
828         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
829         * src/SDCCicode.h: added isOperandInPagedSpace prototype
830
831 2005-10-27 Raphael Neider <rneider AT web.de>
832
833         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
834
835 2005-10-27 Raphael Neider <rneider AT web.de>
836
837         * .version: changed version to 2.5.4
838         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
839         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
840           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
841             arithmetics support routines
842         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
843         * device/lib/Makefile.in: also create installdir for pic
844
845         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
846           pic14 port as well
847         * src/pic/device.c (dump_sfr): rewritten to delegate register
848           placement to the linker (use `extern sym' rather than sym EQU addr),
849           (validAddress): fixed to check last specified address
850         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
851           (popGetLit): truncate literal value to 8 bit,
852           (popGet): moved assert to more appropriate place
853           (popGetExternal): create pCode operand from and mark the according
854             symbol as being `extern'
855           (popGetAddr): added sanity check on immediate's offset, provide
856             GPOINTER tag on demand
857           (aopPut): fixed for immediates,
858           (mov2w_op): move operand's address or contents to WREG (depending on
859             operand type), safer variant of mov2w,
860           (movwf,call_libraryfunc): NEW, handy abbreviations,
861           (get_argument_pcop,get_return_val_pcop,pass_argument,
862           get_returnvalue): interface for accessing function parameters and
863             return values,
864           (assignResultValuei,genRet): use new parameter/return value interface
865           (pic14_getDataSize): back to old version handling generic pointers,
866           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
867             provided implementation and/or fixed old one,
868           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
869             calls, removed legacy 8051 reference code
870           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
871           (loadSignToC): NEW, move the operands sign bit to CARRY,
872           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
873             genRightShiftSigned, accepts negative shift counts,
874           (setup_fsr): load FSR and adjust IRP (indirect memory access),
875           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
876             generic pointers, __data pointers and __code pointers,
877           (genUnpackBits,genPackBits): rewritten to work with generic pointers
878             and signed bitfields, limit bitfields to 8 bit,
879           (genDataPointerGet): fixed number of bytes read,
880           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
881           (genPointerGet,genPointerSet): fixed handling of __code pointers,
882             pointers to constant data are no longer assumed to point to __code
883             space, removed invalid pointer types,
884           (bitpatternFromVal): retrieve the PICs representation of an integer
885             or float literal,
886           (genDataPointerSet): fixed assigning to po_immediate operands,
887           (genGenPointerSet): implemented as library call,
888           (genIfx): fixed incorrect condition,
889           (genAddrOf): limit generic pointers' addresses to 2 bytes,
890             provide GPOINTER tag according to destination's storage class,
891           (genCast): added code to handle casting to generic pointers, added
892             sign-/zero extension of the result
893           (aop_isLitLike,op_isLitLike): fixed handling of immediates
894         * src/pic/gen.h: added macros to access IRP bit in STATUS register
895         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
896           extend the result
897         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
898           address/register resides in the shared banks
899           (emitSymbolToFile): improved to handle global and `pinned' symbols,
900             put all variables into separate sections (have the linker arrange
901             them)
902           (picglue): put init code and interrupt handlers in separate sections
903         * src/pic/main.c: added port specific options table, modified to PORT
904           structure to make GPOINTERs 3 byte, added pic14_options
905           (_pic14_do_link): private linking routine (update paths to libraries,
906             add libsdcc.lib by default)
907         * src/pic/main.h: declare pic14_options
908         * src/pic/pcode.c: fixed instructions i/o relations,
909           (RegCond): reverted to correct version,
910           (newpCodeOpLit): truncate literals to 8 bit,
911           (genericPrint): added debug output,
912           (getRegFromInstruction): fixed for various operand types, simplified
913           (BuildFlow): fixed broken handling of isntructions with labels
914           (LinkFlow): start at last instruction in flow (skip trailing comments),
915             pass the flow on to the next instruction after CALL
916           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
917           (insertPCodeInstruction): fixed inserting after a skip instruction,
918           (DoBankSelect): fixed for labeled instructions
919           (OptimizepBlock): honor --nopeep switch
920           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
921         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
922         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
923           (pCodeOptime2pCodes): allow disabling this optimization via
924             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
925             but is still buggy), started implementation of a dataflow based
926             pCode optimization (CSE + dead code elimination)
927           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
928         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
929           names are independant of the stack location and therefore portable across
930           devices
931
932 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
933
934         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
935           (selectSpil): fixed bug 1337835 by not spilling bit variables
936         * support/regression/tests/bug1337835.c: added test for this bug
937         * src/mcs51/peeph.def: restart after rule 3.c,
938           addded rules 263.x to optimize loading constants
939
940 2005-10-26 Raphael Neider <rneider AT web.de>
941
942         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
943         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
944           (genAssign): emit warning when casting literals to generic pointer
945             type, also applies when taking the address of a fixed variable,
946           (genCast): improved casting to generic pointers
947         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
948           extern variables, added verbose error message
949         * device/include/pic16/{string.h,errno.h}: added #pragma library c
950
951 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
952
953         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
954         carry must be complemented too
955         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
956         could be emitted by genMinus
957         * src/SDCCval.c (constVal): fixed bug 1305065
958
959 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
960
961         * src/SDCCast.c (addCast): added promotion for bit variables
962         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
963         promotion casts + optimisation
964         (optimizeGetWord): fix warning 'i' might be used uninitialized
965         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
966         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
967
968 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
969
970         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
971         all chars are promoted to int; promotion should be handled in SDCCast.c
972
973 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
974
975         * device/lib/_strcmp.c: Fixed bug 1326457
976
977 2005-10-11 Raphael Neider <rneider AT web.de>
978
979         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
980         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
981
982 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
983
984         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
985         * support/regression/tests/sfr16.c: added test for the sfr32 bug
986
987 2005-10-04 Raphael Neider <rneider AT web.de>
988
989         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
990           device/lib/pic16/pics.all: added pic18f1320
991         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
992
993 2005-09-30 Raphael Neider <rneider AT web.de>
994
995         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
996         * src/pic16/devices.inc: NEW, provides device descriptions
997         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
998
999 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1000
1001         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1002           GETHBIT
1003
1004 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1005
1006         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1007           documented Any Order Bit, Higher Order Byte and Higher Order Word
1008         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1009         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1010           (optimizeGetAbit): new, to get any bit, not only the high bit,
1011           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1012           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1013           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1014           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1015             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1016             GETABIT, GETBYTE, GETWORD: decorate them,
1017           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1018           (ast_print): added GETABIT, GETBYTE, GETWORD
1019         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1020         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1021           (geniCodeBinary): new generic binary icode,
1022           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1023         * src/port.h: updated comment for PORT.hasExtBitOp
1024         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1025           (genGetByte): new, to get a single byte,
1026           (genGetWord): new, to get a word from a long,
1027           (gen51Code): added GETABIT, GETBYTE, GETWORD
1028         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1029
1030 2005-09-23 Raphael Neider <rneider AT web.de>
1031
1032         * configure.in, configure: have device/lib/pic configured
1033         * device/lib/Makefile.in: added model-pic14
1034         * device/lib/clean.mk: added pic/ to clean rule
1035         * device/lib/pic: added rudimentary pic14 library providing support
1036           functions for multiplication/division/generic pointer access
1037         * src/SDCCopt.c (convilong): mark support functions as extern
1038           for pic14 port as well
1039         * src/pic/gen.c (genMult): added assertions,
1040           (genpic14Code): emit warning on unhandled iCodes
1041         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1042         * src/pic/pcode.c (pCodeOpCopy),
1043         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1044           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1045           SFR_REGISTER}), made safe for future extensions
1046         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1047           instructions even if preceeded by SKIP instructions (also remove
1048           them); removed unused code
1049         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1050           prevents leaving parts of the structure uninitialized after copying
1051
1052 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1053
1054         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1055           ago by me
1056         * support/regression/tests/addsub.c: added test for the bug
1057
1058 2005-09-21 Raphael Neider <rneider AT web.de>
1059
1060         * device/include/pic16/pic18f1220.h,
1061           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1062         * device/lib/pic16/Makefile.rules: added missing opening paren
1063         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1064           are provided in genutils.c,
1065           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1066           operand/result sizes,
1067           (genCmp): assert on NULL pointers first, then check deref'ed values
1068         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1069           result size
1070
1071 2005-09-18 Raphael Neider <rneider AT web.de>
1072
1073         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1074           as these are now unused,
1075           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1076         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1077           local, avoids uninitialized pointer dereference on r->name
1078         * src/pic16/ralloc.c (newReg): fixed indentation
1079
1080 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1081
1082         * src/SDCCval.c (constVal): fixed bug 730366
1083         * support/Util/SDCCerr.c,
1084         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1085
1086 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1087
1088         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1089
1090 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1091
1092         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1093
1094 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1095
1096         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1097           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1098         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1099           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1100         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1101         * packihx/packihx.c (hexDigit): made c unsigned char
1102         * as/mcs51/lklibr.c (fndsym),
1103         * link/z80/lkgb.c (gb),
1104         * link/z80/lklibr.c (fndsym),
1105         * link/z80/lkrloc.c (relr),
1106         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1107         * src/SDCC.lex (checkCurrFile, process_pragma),
1108         * src/SDCCglue.c (spacesToUnderscores),
1109         * src/SDCCmain.c (setParseWithComma, processFile),
1110         * src/asm.c (tvsprintf, printCLine),
1111         * src/avr/gen.c (emitcode, aopPut),
1112         * src/ds390/gen.c (emitcode),
1113         * src/hc08/gen.c (emitcode, emitinline),
1114         * src/mcs51/gen.c (emitcode, genInline),
1115         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1116           tokenizeLineNode),
1117         * src/pic/ralloc.c (debugLog),
1118         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1119           tokenizeLineNode),
1120         * src/pic16/ralloc.c (debugLog),
1121         * src/z80/main.c (_process_pragma):
1122            made all ctype.h function calls safe
1123         * src/SDCCopt.c: include math.h for fabs
1124         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1125           and used them throughout the code to make ctype.h function calls safe
1126         * src/ds390/main.c (asmLineNodeFromLineNode),
1127         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1128         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1129            unsigned char*
1130         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1131           (newpCodeAsmDir): made ctype.h function calls safe
1132         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1133           pic16_emitcode):  made lbp unsigned char*
1134         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1135           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1136         * src/xa51/gen.c (emitcode),
1137         * src/z80/gen.c (_emit2): made lbp unsigned char*
1138         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1139            char*
1140
1141 2005-09-05 Raphael Neider <rneider AT web.de>
1142
1143         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1144           access bank splitpoint
1145
1146 2005-09-05 Raphael Neider <rneider AT web.de>
1147
1148         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1149
1150 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1151
1152         * .version: changed to version 2.5.3
1153         * doc/sdccman.lyx: changed version to 2.5.3,
1154           documented --codeseg and --constseg and pragma codeseg and constseg,
1155           documented bit parameters (reentrant) and bit returning
1156         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1157            currFunc->recvSize, but is this ok for all ports?
1158           (ast2iCode): result of ~ on unsigned char must be cast to int for
1159            bool to work
1160         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1161           function pointers in bit space
1162         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1163           (processFuncArgs): call port.reg_parm() with reentrancy info
1164         * src/port.h,
1165         * src/avr/main.c,
1166         * src/ds390/main.c,
1167         * src/hc08/main.c,
1168         * src/pic/main.c,
1169         * src/pic16/main.c,
1170         * src/xa51/main.c,
1171         * src/z80/main.c: port.reg_parm prototype extended with
1172           "bool reentrant" parameter
1173         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1174           options.stackAuto for allocating bit register parameters
1175         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1176           (genSend): set BitBankUsed if it is,
1177           (selectRegBank): factored out of genCall for use in genPcall,
1178           (genCall): removed redundant dtype assignmen, use selectRegBank,
1179           (genPcall): handle returning in Carry properly, save in F0 if needed,
1180           (genReceive): handle bit register parameters
1181         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1182           (mcs51_assignRegisters): enable bit registers for all reentrant
1183            functions and don't set BitBankUsed unconditionally
1184         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1185         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1186         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1187
1188 2005-08-27 Borut Razem <borut.razem AT siol.net>
1189
1190         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1191         ppc-osx (Darwin) does not support -u option. It seems that it is
1192         supported only on Linux - GNU cp
1193
1194 2005-08-25 Borut Razem <borut.razem AT siol.net>
1195
1196         * sim/ucsim/gui.src/serio.src/Makefile.in,
1197           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1198           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1199           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1200           install and strip, since the strip at /usr/ccs/bin should be used
1201           on solaris
1202
1203 2005-08-24 Borut Razem <borut.razem AT siol.net>
1204
1205         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1206
1207 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1208
1209         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1210         ffffffffu
1211
1212 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1213
1214         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1215         * as/mcs51/lkmain.c (link_main): fixed warning
1216         * device/include/stdbool.h: ds390 has no advanced bit support yet
1217         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1218         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1219         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1220           and updated their macros
1221         * src/SDCCval.c (constVal): updated comment for renamed b_long
1222
1223 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1224
1225         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1226         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1227           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1228           (oprio): set priority for '['
1229         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1230            and adb_24_bit
1231         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1232         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1233         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1234         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1235           added overlayable BIT_BANK area
1236         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1237           (summary2): explain 'T' in legenda
1238         * as/mcs51/lkrloc.c: replaced old K&R style,
1239           (relr): added R_BIT processing,
1240           (errmsg): added "Bit-addressable relocation error",
1241           (adb_bit): added for converting from byte- to bit-addressable space,
1242           (adb_24_bit): added for converting from byte- to bit-addressable space
1243         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1244            used in reentrant functions now even as return value
1245         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1246         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1247           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1248         * src/SDCCglobl.h: added indicator BitBankUsed
1249         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1250            the bit registers b0-b7
1251         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1252           (geniCodeCast): fixed bug 1263853,
1253           (geniCodeLogicAndOr): put result in bool or char,
1254           (geniCodeReceive): added parameter func for accessing the return type,
1255           (geniCodeFunctionBody): pass func to geniCodeReceive
1256         * src/SDCCmain.c: added indicator BitBankUsed
1257         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1258         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1259           (checkSClass): don't put automatic bool/bit on stack,
1260           (checkFunction): removed check on function cannot return bit
1261         * src/SDCCsymt.h: added newBoolLink prototype
1262         * src/mcs51/gen.c (rb1regs): added bit registers,
1263           (movc): created for assigning to carry,
1264           (pushReg, popReg): created for pushing registers,
1265           (sameRegs): check both AOP_REG and AOP_CRY types,
1266           (aopOp): handle bit registers,
1267           (aopPut): optimization no self-assign,
1268           (saveRegisters): push reg->base (bits) only once for bit registers,
1269            and use pushReg,
1270           (unsaveRegisters): pop reg->base only once and use popReg,
1271           (assignResultValue): added parameter func and return in carry for bits,
1272           (genIpush): optimization no reload in A if not changed,
1273           (genSend): bit parameters in reentrant functions are passed in bit
1274            registers by first assigning to bits in B, then save registers and
1275            copy B to bits,
1276           (genCall): handle returning in Carry properly, save it in F0 if needed,
1277           (genPcall): updated assignResultValue call, this is not safe yet for bit
1278            returning function !!!
1279           (genFunction): don't generate equ's for bit registers and use pushReg,
1280           (genEndFunction): take care of bit returning functions and use popReg,
1281           (genRet): return bit in Carry,
1282           (genIfx): optimize bit registers and other directly addressable bits,
1283           (genReceive): updated assignResultValue call
1284         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1285           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1286            registers when using stack-auto
1287         * src/mcs51/ralloc.c (_G): added allBitregs,
1288           (regs8051): added the bit registers,
1289           (createStackSpil): use macro IS_BIT,
1290           (getRegBit): added to allocate a bit register, else spill,
1291           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1292           (updateRegUsage): factored out to ease stepping while debugging,
1293           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1294            also allocate bit registers,
1295           (fillGaps): handle bit registers,
1296           (findAllBitregs): added to create bit vector with all bit registers,
1297           (mcs51_allBitregs): returns this bit vector,
1298           (mcs51_assignRegisters): when using stack-auto use bit registers for
1299            passing parameters and creating local variables
1300         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1301
1302 2005-08-22 Borut Razem <borut.razem AT siol.net>
1303
1304         * device/lib/Makefile.in: replaced find option -or with -o
1305           to make it run on solaris
1306
1307 2005-08-22 Raphael Neider <rneider AT web.de>
1308
1309         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1310           fixes #1265442 (crash on Solaris)
1311
1312 2005-08-20 Borut Razem <borut.razem AT siol.net>
1313
1314         * configure, configure.in: added tests for libsocket and libnsl libraries,
1315           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1316           from support/regression/Makefile.in
1317         * support/regression/Makefile.in: added
1318         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1319         * sim/ucsim/libtool: regenerated on sparc-solaris
1320         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1321           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1322           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1323           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1324           sparc-solaris, which doesn't use GNU ld linker
1325         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1326         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1327
1328 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1329
1330         * src/mcs51/peeph.def: updated comments
1331
1332 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1333
1334         * device/lib/_gptrget.c,
1335         * device/lib/_gptrput.c: slightly shorter
1336         * doc/sdccman.lyx: incremented version
1337         * src/mcs51/peeph.def: moved peephole comments to the line of first
1338           change to better keep line correlation, reanimated 186.e
1339         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1340
1341 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1342
1343         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1344           David Saxton with quotes around file name.
1345
1346 2005-08-15 Borut Razem <borut.razem AT siol.net>
1347
1348         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1349           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1350           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1351           make tests run on x86_64 platform
1352
1353 2005-08-13 Raphael Neider <rneider AT web.de>
1354
1355         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1356           as it might be executed DURING a build (parallel make is wonderful)
1357
1358 2005-08-13 Raphael Neider <rneider AT web.de>
1359
1360         * device/lib/Makefile.in (port-specific-objects-pic16):
1361           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1362         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1363           dependency
1364         * device/lib/pic16/Makefile.rules: build subdirs before creating
1365           the library, removed builddir rule, create $(builddir) early in
1366           recurse rule, use empty recurse rule for leaf directories
1367         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1368           mkdir errors (race condition), removed duplicate suffix "hex"
1369           from clean rules
1370         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1371         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1372           prevents mkdir -p from aborting on Alpha
1373
1374 2005-08-12 Raphael Neider <rneider AT web.de>
1375
1376         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1377           db-statements in order to allow for arrays of pointers in code
1378           sections to be placed without interspersed 0-padding, fixes
1379           bug #1256215
1380         * (emitStatistics): fixed division by zero for pic18f1220
1381         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1382           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1383         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1384         * (pic16_pCodeConstString): keep track of already emitted string
1385           literals to prevent "duplicate definitions of symbol _str_NR"
1386         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1387           debug message
1388         * device/lib/Makefile.in: ignore failing PIC16 library builds
1389         * device/lib/pic16/Makefile: do not build if gputils are missing
1390         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1391
1392 2005-08-10 Raphael Neider <rneider AT web.de>
1393
1394         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1395           my last commit)
1396
1397 2005-08-10 Raphael Neider <rneider AT web.de>
1398
1399         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1400           Rokas' patch to add the new fixed point type "__fixed16x16"
1401         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1402           functions for __fixed16x16 arithmetics
1403         * device/lib/pic16: reimplemented the build system to support
1404           a separate build directory, better handling of libio (create
1405           the library in a separate subdir for each architecture) and
1406           easier configuration (centralized in Makefile.common)
1407
1408 2005-08-07 Raphael Neider <rneider AT web.de>
1409
1410         * src/pic16/gen.c (genrshTwo): fixed sign extension
1411         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1412         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1413           added T0CONbits
1414         * device/include/pic16/pic18f4220.h: NEW, header for
1415           pic18f4220 and pic18f4320
1416         * device/include/pic16/pic18fregs.h: added new devices,
1417           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1418         * device/include/pic16/signal.h: resolved name clashes
1419           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1420           to also allow testing for interrupt enable bits, added
1421           comments on how to use the macros
1422         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1423         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1424           register definitions for the devices
1425         * device/lib/pic16/pics.all: added new devices
1426         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1427           allocated memory
1428         * device/lib/pic16/libc/stdlib/memfree: do not count
1429           the block header as free memory
1430         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1431           simplified and added missing end-of-blocklist-marker
1432           (reported by Peter Onion, fixes #1252814)
1433         * (_mergeHeapBlock): fixed loop condition
1434         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1435           len==0, restructured code
1436         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1437           up a bit, reduced bitfield accesses, prevent endless loops
1438           in case of heap corruption
1439         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1440           "unreferenced arguments/must return a value" warnings
1441         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1442           replaced BAUDREG with SPBRG
1443         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1444           device/lib/pic16/debug/gstack/gstack.c: replaced
1445           _naked, _asm, _endasm with __naked, __asm, __endasm
1446
1447 2005-08-05 Raphael Neider <rneider AT web.de>
1448
1449         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1450           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1451
1452 2005-08-05 Borut Razem <borut.razem AT siol.net>
1453
1454         * device/lib/Makefile.in: added missing ';'
1455         * configure: removed ^M characters
1456
1457 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1458
1459         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1460           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1461           License
1462
1463 2005-08-04 Borut Razem <borut.razem AT siol.net>
1464
1465         * configure.in: pic16 libraries build 2nd try - enable running
1466           configure in device/lib/pic16
1467         * configure: regenerated from configure.in
1468         * device/lib/Makefile.in: create $(PORT)/bin directory
1469
1470 2005-08-03 Raphael Neider <rneider AT web.de>
1471
1472         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1473           to get/set values via pointers
1474         * (genUnpackBits,genPackBits): changed detection of
1475           ptr->bitfield vs. sym.bitfield, fixed access via generic
1476           pointers, removed dead (wrong) code for multibyte bitfields
1477         * (genNearPointerGet, genGenPointerGet): removed useless code,
1478           fixed bitfield detection, fixes #1250594
1479         * (genNearPointerSet): removed useless code
1480         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1481           and introduced macro pic16_emitpcode that conditionally emits
1482           the origin of the following pCode (useful for debugging SDCC)
1483         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1484         * (createDefmap): fixed handling of LFSR for --optimize-df
1485
1486 2005-08-02 Borut Razem <borut.razem AT siol.net>
1487
1488         * device/lib/Makefile.in: pic16 libraries build enabled since
1489           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1490
1491 2005-08-02 Raphael Neider <rneider AT web.de>
1492
1493         * src/pic16/gen.c (genPackBits): removed deprecated warning
1494         * (genGenPointerSet): fixed bitfield detection
1495
1496 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1497
1498         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1499
1500 2005-07-31 Raphael Neider <rneider AT web.de>
1501
1502         * device/lib/pic16/libdev/pic18f458.c,
1503           device/include/pic16/pic18f458.h: added missing T0CONbits
1504
1505 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1506
1507         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1508
1509 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1510
1511         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1512
1513 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1514
1515         * device/include/mcs51/at89c51ed2.h: added.
1516
1517 2005-07-23 Raphael Neider <rneider AT web.de>
1518
1519         * src/pic/gen.h: added emitpcode macro for debugging
1520         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1521           and replace by macro adding debug information on demand
1522         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1523         * (gencjne): tried to fix; replaced with correct (slower) code
1524         * (gen{Unp,P}ackBits): fixed single bit access
1525         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1526         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1527           previous instruction
1528         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1529           register has to be handled with care (forbidding movement
1530           of assignments/uses, removing assignments completely, ...)
1531         * (pCodeOptime2pCodes): make use of regIsSpecial
1532         * added lots of debugging output (commented out)
1533         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1534           from being reused as result UNLESS it is known to work
1535
1536 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1537
1538         * support/Util/dbuf.h: include <stddef.h> for size_t
1539         * .version: changed to version 2.5.2
1540
1541 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1542
1543         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1544
1545 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1546
1547         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1548           (genModOneByte): removed needless psha/pula
1549
1550 2005-07-22 Raphael Neider <rneider AT web.de>
1551
1552         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1553           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1554         * src/pic/gen.c (resolveIfx): do not "invent" labels
1555         * (genSkipc): changed to positive logic
1556         * (genSkipCond): removed as no longer needed
1557         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1558           backport from PIC16
1559         * (genLeftShift): check operands are in different registers
1560         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1561           INCF does not update CARRY...
1562         * src/pic/main.c: fixed _linkCmd
1563         * src/pic/pcode.c (unlinkpCode): added inactive code
1564         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1565           alive (do not assign result and operand overlapping registers)
1566
1567 2005-07-22 Raphael Neider <rneider AT web.de>
1568
1569         * src/pic/device.c (dump_sfr): replaced register declaration with
1570           call to emitSymbolToFile() to avoid duplicate symbols
1571         * (assignRelocatableRegisters): do not declare external symbols
1572         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1573           right (take size of type, not etype)
1574         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1575         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1576         * (packRegsForAccUse): disabled assignment of WREG as
1577           the result reg to prevent occurence of just fixed #1235003,
1578           fixes #1242954
1579         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1580           symbols (avoids duplicate symbols in .asm file)
1581         * (pic14emitRegularMap): use emitSymbolToFile()
1582         * src/pic/gen.c (aopOp): fixed spillLocation handling
1583         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1584         * (genDataPointerSet): removed unneccessary variables/output
1585
1586 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1587
1588         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1589         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1590
1591 2005-07-21 Raphael Neider <rneider AT web.de>
1592
1593         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1594           architecture cannot handle them efficiently, fixes bug #1235003
1595         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1596           check for empty sets before using them (fixes bug #1232190)
1597
1598 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1599
1600         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1601           (lnksect2): generate warnings for memory overlap
1602         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1603           constseg to set the name of these segments so you can instruct the linker
1604           to place them in banks
1605         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1606         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1607           added code_seg and const_seg to options
1608         * src/SDCCglue.c (emitMaps): use options.const_seg,
1609           (createInterruptVect): put interrupt vectors in segment HOME,
1610           (glue): put HOME before static segment and put the main glue in HOME,
1611           (glue): use options.code_seg
1612         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1613         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1614           these segments so you can instruct the linker to place them in banks
1615           (linkEdit): use code_loc for HOME segment which should be the first
1616           segment in code memory now
1617         * src/SDCCmem.c: fixed more stuff like bug 1238386
1618         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1619           (changePointer): don't change function pointers to code pointers for
1620           banked functions,
1621           (compareType): added exceptional check for banked function pointers
1622         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1623         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1624           after static in code memory
1625         * src/mcs51/gen.c: added aopLiteralLong prototype,
1626           (aopForSym): use getSize for functions,
1627           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1628           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1629           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1630           the segment,
1631           (genPcall): use call for literal function pointers and generate banked
1632           calls over the one trampoline so there's only one place for the user to
1633           modify according to his/hers hardware,
1634           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1635           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1636         * src/mcs51/main.c: added keyword banked,
1637           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1638         * support/Util/SDCCerr.c,
1639         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1640           needed for passing the bank and address to the trampoline
1641         * device/lib/mcs51/crtbank.asm: added for bankswitching
1642         * device/lib/mcs51/Makefile: added crtbank
1643
1644 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1645
1646         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1647           for fields at offset 0 of a struct or union as reported
1648           on 2005-07-07 in the developer mailing list.
1649
1650 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1651
1652         * src/SDCCmem.c: fixed bug 1238386
1653
1654 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1655
1656         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1657           (patch #1144962), added peephole 300, enabled 259.x
1658         * doc/sdccman.lyx: removed screenshot and provided link instead
1659
1660 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1661
1662         * doc/sdccman.lyx: added section about debugging with ddd
1663         * doc/figures/ddd_example.eps: screenshot of debugging session
1664
1665 2005-07-04 Raphael Neider <rneider AT web.de>
1666
1667         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1668           like CODE pointers, fixes #1115683
1669         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1670           call, fixes bugs #1232211, #1228110,
1671           fixed wrong casts to pCodeFlow from pCodeInstructions
1672
1673 2005-07-04 Raphael Neider <rneider AT web.de>
1674
1675         * src/pic/gen.c (popGet): changed assert to allow for
1676           bit operands
1677         * (popGetAddr): changed signature to provide
1678           an additional index, patched all call sites
1679         * (genCmpEq): handle literal-like operands correctly
1680         * (genAddrOf): added sanity checks on __code/__data pointers
1681         * (genAssign): added handling of symbols from __code section
1682         * (gencjne): do not generate code for comparisons whose result
1683           is neither stored nor used, fixes bug #1171114
1684         * (AccLsh, AccRsh): operate on operand instead of WREG
1685         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1686           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1687           by known count
1688         * rewrote complete shift-by-literal logic, commented unused
1689           functions out
1690         * (genConstPointerGet): get multiple bytes (if result size > 1),
1691           fixed handling of non-immediate addresses
1692         * (genPointerGet): handle CODE pointers like CONST pointers
1693         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1694         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1695           operand is to be treated as a literal or not
1696         * (mov2w,genPcall,genCmpEq),
1697           src/pic/genarith.c: use aop_isLitLike() to decide between
1698           literal/register contents
1699         * (addSign): added missing offset
1700         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1701           only emit comment in debug-mode,
1702           use {aop,op}_isLitLike throughout the file
1703         * src/pic/glue.c: fix initializers for pointers (work in progress)
1704         * src/pic/pcode.c (get_op): honor index on _const symbols
1705         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1706         * (dumppBlock): added pCode size estimation
1707         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1708           check for IS_SYMOP before OP_SYMBOL'ing
1709         * fixed indentation, compacted switch-statements
1710         * (allocReg): find free register and allocate it instead of
1711           allocating new registers all the time
1712         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1713           registers as its operands (necessary only for multibyte GETs)
1714
1715 2005-07-01 Raphael Neider <rneider AT web.de>
1716
1717         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1718           debugging .asm-output macros FENTRY + FEXIT
1719         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1720           way... I wonder...
1721         * (emitpComment): NEW, printf to pCode
1722         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1723           offset handling
1724         * (popGetAddr): NEW, variant of popGet to access an immediates
1725           high(er) bytes instead of the n'th byte of memory they reference,
1726           replaced popGet with popGetAddr where neccessary
1727         * (genDataPointerGet): reactivated and fixed implementation
1728         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1729           accesses
1730         * (genDataPointerSet): fixed multibyte assignments
1731         * (genpic14Code): fixed --i-code-in-asm handling
1732         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1733         * (genPlus): fixed index-out-of-bounds error
1734         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1735         * src/pic/ralloc.c: added debugging output macro FENTRY2
1736         * (spillThis): fixed indentation, enbraced for-body for clarity
1737         * (rematStr): commented out as now unused
1738         * (regTypeNum): commented out special spill case (overwrites
1739           arbitrary values)
1740         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1741
1742 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1743
1744         * doc/sdccman.lyx: documented sfr16/sfr32,
1745           added example for using storage class with function pointers
1746         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1747
1748 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1749
1750         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1751         * device/lib/_itoa.c,
1752         * device/lib/_ltoa.c: optimized codesize
1753         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1754           but don't know how to suppress the double warning.
1755         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1756         * support/Util/SDCCerr.c,
1757         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1758
1759 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1760
1761         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1762           fixed old K&R prototypes
1763         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1764         * device/lib/_gptrget.c,
1765         * device/lib/_gptrgetc.c,
1766         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1767           also new versions for small generic pointers and banked generic pointers
1768         * src/port.h: added const_name
1769         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1770         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1771         * src/SDCCcse.c (findPrevIc): check all associative operators
1772         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1773         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1774         * src/SDCCmem.c: updated comments,
1775           set far-space to 0 for pdata, results in optimized code
1776         * src/SDCCmem.h: added macro CONST_NAME
1777         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1778           moving the info into the highest bits, see also gptrget/gptrput
1779         * src/src.dsp: added sdcc.ico to project files
1780         * src/avr/gen.c (genCast): fixed bug 0x%d
1781         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1782         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1783           relation between ptr_type and DCL_TYPE,
1784           (genCast): fixed bug 0x%d
1785         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1786           (CODE)" for const_name
1787         * src/hc08/gen.c (genCast): fixed bug 0x%d
1788         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1789           (hc08_port): added "CONST (CODE)" for const_name
1790         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1791           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1792           between ptr_type and DCL_TYPE,
1793           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1794           operand* and took AOP() inside function so sfr-ness can be checked,
1795           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1796           new prototype,
1797           (genFunction, genEndFunction): optimized stack setup,
1798           (genMinus): optimized for literals with ending zeroes (in bytes),
1799           (genCast): fixed bug 0x%d
1800         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1801           (mcs51_port): added "CONST (CODE)" for const_name
1802         * src/mcs51/peeph.def: made rule 226 more generic
1803         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1804         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1805         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1806         * src/z80/main.c (z80_port): added NULL for const_name,
1807           (gbz80_port): added NULL for const_name
1808         * support/regression/tests/bug663539.c,
1809         * support/regression/tests/sfr16.c: new tests
1810
1811 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1812
1813         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1814
1815 2005-06-24 Raphael Neider <rneider AT web.de>
1816
1817         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1818           corrected typos...
1819         * device/include/pic16/signal.h: added USBIF
1820           and SIG_USB
1821
1822 2005-06-24 Raphael Neider <rneider AT web.de>
1823
1824         * device/lib/pic16/libdev/pic18f2455.c,
1825           device/include/pic16/pic18f2455.h: NEW
1826         * device/include/pic16/pic18fregs.h,
1827           device/lib/pic16/pics.all,
1828           src/pic16/device.c: added 18f2455
1829         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1830           device/include/pic16/{pic18f[68][567].h,usart.h}:
1831           replaced MULTIPLE_USARTS define with more relaible
1832           compatibility sfrs (for USART access)
1833
1834 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1835
1836         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1837           and the output asm file line is printed on two lines.
1838
1839 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1840
1841         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1842           BGT, BLE, BHI, and BLS instructions
1843         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1844           genCmpEq): removed
1845         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1846           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1847           fixes bug #1216342
1848         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1849
1850 2005-06-15 Raphael Neider <rneider AT web.de>
1851
1852         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1853         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1854         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1855           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1856           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1857
1858 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1859
1860         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1861           Marcel Telka in bug #1215704
1862
1863 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1864
1865         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1866           located in shared memory bank.
1867
1868 2005-05-31 Raphael Neider <rneider AT web.de>
1869
1870         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1871           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1872           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1873
1874 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1875
1876         * device/lib/_strncpy.c: fixed the fix
1877
1878 2005-05-26 Raphael Neider <rneider AT web.de>
1879
1880         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1881           initializers with \0, bug #1208187
1882         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1883           intializers with \0, bug #1208187
1884
1885 2005-05-26 Raphael Neider <rneider AT web.de>
1886
1887         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1888           initializers with \0, bug #1208187
1889         * src/pic16/main.c (_process_pragma): added sanity checks
1890           for stack position and size, emit warnings when appropriate
1891
1892 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1893
1894         * device/lib/_strncpy.c: fixed not filling with \0
1895
1896 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1897
1898         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1899           createFunction),
1900         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1901           compound_statement),
1902         * src/SDCCsymt.h,
1903         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1904
1905 2005-05-24 Raphael Neider <rneider AT web.de>
1906
1907         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1908
1909 2005-05-24 Raphael Neider <rneider AT web.de>
1910
1911         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1912           TRISE definitions, closes bug #1162453
1913
1914 2005-05-22 Raphael Neider <rneider AT web.de>
1915
1916         * src/pic16/main.c (_process_pragma): check for missing
1917           arguments to pragmas code and udata
1918         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1919           consistency fixes to match other headers (thanks to Jim Paris)
1920         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1921
1922 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1923
1924         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1925
1926 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1927
1928         * support/regression/tests/bug1198642.c: new test
1929         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1930         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1931         * support/scripts/resource.h,
1932         * support/scripts/resource.rc,
1933         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1934         * support/scripts/sdcc.ico: added 32x32 icon
1935
1936 2005-05-18 Raphael Neider <rneider AT web.de>
1937
1938         * device/lib/pic16/libdev/pic18f*.c,
1939         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1940           keywords to "__sfr" and "__at (X)"
1941         * device/include/pic16/pic18fregs.h: added pic18f4520
1942         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1943           #1203088 (MPLAB compatibility)
1944
1945 2005-05-17 Raphael Neider <rneider AT web.de>
1946
1947         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1948         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1949         * device/lib/pic16/pics.all: added new devices
1950         * src/pic16/device.c: added support for pic18f4520
1951
1952 2005-05-16 Raphael Neider <rneider AT web.de>
1953         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1954         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1955         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1956           convenience function for bit access
1957
1958 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1959
1960         * device/lib/printf_large.c: fixed bug 1193299
1961         * support/regression/tests/bug1057979.c: added test %3.3s
1962
1963 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1964
1965         * device/include/mcs51/8051.h,
1966         * device/include/mcs51/8052.h: made parseable with lint
1967         * device/include/mcs51/lint.h: added include file for (sp)lint
1968         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1969         * doc/cdbfileformat.lyx,
1970         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1971
1972 2005-05-14 Raphael Neider <rneider AT web.de>
1973
1974         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1975         * device/lib/pic16/libc/stdlib/itoa.c (new)
1976         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1977         * device/lib/pic16/libio/Makefile: exclude subdir according to
1978           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1979         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1980         * src/pic16/gen.c (genFunction): prevent annoying warning
1981         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1982           nameclashes on BeOS
1983         * support/cpp2/cppmain.c (cpp_output_string): new
1984         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1985           fixes bug 1116802
1986
1987 2005-05-13 Borut Razem <borut.razem AT siol.net>
1988
1989         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1990
1991 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1992
1993         * .version: changed to version 2.5.1; back to bleeding edge development
1994
1995 2005-05-11 Borut Razem <borut.razem AT siol.net>
1996
1997         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1998           generate PDF version 1.3 documents
1999
2000 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2001
2002         * .version: changed to version 2.5.0
2003
2004 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2005
2006         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2007
2008 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2009
2010         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2011         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2012         well as many smaller updates.
2013         * .version: changed to version 2.5.0-pre1
2014
2015 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2016
2017         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2018
2019 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2020
2021         * support/regression/tests/bug1185672.c: added
2022         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2023           bug 1185672
2024         * src/mcs51/gen.c (genCall): added comments, made it look safer
2025         * src/mcs51/gen.c (genEndFunction): simplified
2026
2027 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2028
2029         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2030
2031 2005-04-14 Borut Razem <borut.razem AT siol.net>
2032
2033         * fixed bug 1045046 - SIGSEGV with really simple code?:
2034           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2035           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2036
2037 2005-04-14 Borut Razem <borut.razem AT siol.net>
2038
2039         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2040           src/pic16/device.h: temporarily disabled experimental #inline pragma
2041           for 2.5.0 release
2042
2043 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2044
2045         * device/include/z80/stdio.h,
2046         * device/include/z80/string.h: removed these highly incomplete files so
2047           SDCC can use the default ones in device/include/
2048
2049 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2050
2051         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2052         gcc warning.
2053         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2054         fix sdcpp warnings.
2055
2056 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2057
2058         * device/include/malloc.h: removed redundant __reentrant prototypes
2059         * device/lib/_mullong.c: added working xstack variant in asm (C version
2060           doesn't pass regression tests)
2061         * device/lib/bpx.c: used __data and made bpx char for mcs51
2062         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2063           (createFunction): fixed bug with xstackPtr
2064         * src/SDCCcse.c: corrected comments
2065         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2066           (killDeadCode, eBBlockFromiCode): removed unused code
2067         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2068           corrected comments
2069         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2070           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2071           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2072           (genModOneByte): fixed warning in MSVC
2073         * src/mcs51/main.c (): added comments
2074         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2075
2076 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2077
2078         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2079
2080 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2081
2082         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2083
2084 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2085
2086         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2087         characters arrays of larger size than the declared one.
2088
2089 2005-04-10 Borut Razem <borut.razem AT siol.net>
2090
2091         * src/pic/gen.c (genInline),
2092           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2093           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2094           (findNextInstruction), (findPrevInstruction),
2095           (findInstructionUsingLabel),
2096           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2097         * src/pic/pcode.c (findLabel): added missing '\n'
2098         * src/src.dsp: added SDCCdwarf2.c to the project
2099
2100 2005-04-09 Borut Razem <borut.razem AT siol.net>
2101
2102         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2103
2104 2005-04-08 Raphael Neider <rneider AT web.de>
2105
2106         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2107           into the chain after a given one) and mergeDefmapSymbols (combine
2108           defmap entries for each symbol per pcode)
2109         * (createDefmap): have defmap entries merged in the end
2110         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2111           a symbol before replacing one access type's symbol, merge symbols in
2112           the end (replacement symbol might already have an entry)
2113         * (assignValnums): keep reference to written WREG intact
2114
2115 2005-04-08 Raphael Neider <rneider AT web.de>
2116
2117         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2118           Alpha)
2119
2120 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2121
2122         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2123         bytes
2124
2125 2005-04-07 Raphael Neider <rneider AT web.de>
2126
2127         * device/include/pic16/usart.h: added compatibility defines for
2128           devices with more than one USART
2129         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2130
2131 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2132
2133         * device/lib/Makefile.in: updated for port specific include
2134
2135 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2136
2137         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2138
2139 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2140
2141         * device/include/8051.h,
2142         * device/include/8052.h,
2143         * device/include/at89S8252.h,
2144         * device/include/at89c55.h,
2145         * device/include/at89x051.h,
2146         * device/include/at89x51.h,
2147         * device/include/at89x52.h,
2148         * device/include/mcs51reg.h,
2149         * device/include/reg51.h,
2150         * device/include/reg764.h,
2151         * device/include/regc515c.h,
2152         * device/include/sab80515.h: (re)moved these 12 files
2153         * device/include/mcs51/8051.h,
2154         * device/include/mcs51/8052.h,
2155         * device/include/mcs51/at89S8252.h,
2156         * device/include/mcs51/at89c55.h,
2157         * device/include/mcs51/at89x051.h,
2158         * device/include/mcs51/at89x51.h,
2159         * device/include/mcs51/at89x52.h,
2160         * device/include/mcs51/mcs51reg.h,
2161         * device/include/mcs51/reg51.h,
2162         * device/include/mcs51/reg764.h,
2163         * device/include/mcs51/regc515c.h,
2164         * device/include/mcs51/sab80515.h: and added them here
2165
2166 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2167
2168         * device/include/stdarg.h: changed SDCC specific keywords to double
2169           underlined form.
2170         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2171           mcs51 and ds390.
2172         * device/include/hc08/mc68hc908gp32.h,
2173         * device/include/hc08/mc68hc908jb8.h,
2174         * device/include/hc08/mc68hc908jkjl.h,
2175         * device/include/hc08/mc68hc908qy.h: fixed comments
2176         * device/include/mcs51/README: updated
2177         * device/include/mcs51/c8051f120.h: added PINRSF
2178         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2179         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2180           amidst code. Also inline is not supported.
2181
2182 2005-04-06 Raphael Neider <rneider AT web.de>
2183
2184         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2185         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2186           callers stack/frame pointers
2187
2188 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2189
2190         * device/include/pic16/usart.h: added, missing in previous commit,
2191         * device/include/pic16/adc.h: fixed typo,
2192         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2193         commit,
2194         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2195         <p18fxxx.inc>
2196         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2197         uninitialized because a bug appears with gplink
2198         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2199         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2200         complains for unrecognised option
2201
2202 2005-04-05 Raphael Neider <rneider AT web.de>
2203
2204         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2205           structs as well (using memcpy)
2206         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2207           on ISRs (GOTO has no label)
2208         * src/pic16/device.h: added OF_OPTIMIZE_DF
2209         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2210           new data flow analysis/optimization
2211         * src/pic16/pcode.c: added (prototypes for and implementation of)
2212           dataflow analysis functions, fixed pCodeInstructions' inCond and
2213           outCond values, made RCALL a branch instruction
2214         * (pic16_unlinkpCode): keep C line if possible
2215         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2216           C line moved if possible
2217         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2218         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2219           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2220         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2221           new flow)
2222         * (pic16_getJumptabpCode): NEW, needed in...
2223         * (LinkFlow): fixed handling of jumptables, calls and conditional
2224           branches
2225         * (pic16_InsertCommentAfter): NEW
2226         * (pic16_pCodeReplace): made verbose and flow preserving
2227         * (AnalyzeFlow): added call to data flow analysis
2228         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2229         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2230         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2231
2232 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2233
2234         * src/SDCCast.c (decorateType): fixed bug #1105626
2235
2236 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2237
2238         * device/include/asm/pic16/features.h,
2239         * pic18f*.h headers,
2240         * device/include/pic16/adc.h,
2241         * device/include/pic16/delay.h,
2242         * device/include/pic16/i2c.h,
2243         * device/include/pic16/malloc.h,
2244         * device/include/pic16/stdio.h,
2245         * device/include/pic16/stdlib.h,
2246         * device/include/pic16/string.h,
2247         * device/lib/pic16/libc/stdio/printf_tiny.c,
2248         * device/lib/pic16/libc/stdio/printf_small.c,
2249         * device/lib/pic16/libc/stdio/strmgpsim.c,
2250         * device/lib/pic16/libc/stdio/strmmssp.c,
2251         * device/lib/pic16/libc/stdio/strmusart.c,
2252         * device/lib/pic16/libc/stdio/vfprintf.c,
2253         * device/lib/pic16/libc/stdlib/ltoa.c,
2254         * device/lib/pic16/libc/stdlib/putchar.c,
2255         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2256         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2257         * device/lib/pic16/libc/stdlib/memchrram.c,
2258         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2259         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2260         * device/lib/pic16/libio/adc/adcbusy.c,
2261         * device/lib/pic16/libio/adc/adcread.c,
2262         * device/lib/pic16/libio/adc/adcsetch.c,
2263         * device/lib/pic16/libio/usart/ubaud.c,
2264         * device/lib/pic16/libio/usart/ubusy.c,
2265         * device/lib/pic16/libio/usart/udrdy.c,
2266         * device/lib/pic16/libio/usart/uopen.c,
2267         * device/lib/pic16/libio/usart/uputc.c,
2268         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2269         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2270         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2271         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2272         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2273         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2274         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2275         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2276         specific keywords to double underlined form,
2277         * device/lib/pic16/libc/Makefile.rules,
2278         * device/lib/pic16/libsdcc/Makefile.rules,
2279         * device/lib/pic16/libm/Makefile,
2280         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2281         to compile with C standard set in Makefile.common
2282         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2283         rand.c and crc.c in compilation process,
2284         * device/lib/pic16/libsdcc/int/divuint.c,
2285         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2286         `c' from signed to unsigned,
2287         * device/lib/pic16/startup/crt0.c,
2288         * device/lib/pic16/startup/crt0i.c,
2289         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2290         keywords to double underlined form, bug fixes in _do_cinit function
2291         which prevented the correct initialization of the .idata segment,
2292         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2293         core to enter a infinite loop
2294         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2295
2296 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2297
2298         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2299
2300 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2301
2302         * device/include/Makefile.in: add support for hc08 subdirectory
2303         * device/include/hc08/: new subdirectory
2304         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2305         Lucas Loizaga, thanks!
2306         * device/include/hc08/mc68hc908qy.h,
2307         * device/include/hc08/mc68hc908gp32.h,
2308         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2309         their own directory. Changed internal macro names to use the compiler
2310         reserved namespace. Changed SDCC specific keywords to double
2311         underlined form.
2312         * device/include/math.h,
2313         * device/include/malloc.h,
2314         * device/include/stdarg.h,
2315         * device/include/stdbool.h
2316         * device/include/string.h,
2317         * device/include/tinibios.h,
2318         * device/include/ds400rom.h,
2319         * device/include/8051.h,
2320         * device/include/8052.h,
2321         * device/include/80c51xa.h,
2322         * device/include/at89c55.h,
2323         * device/include/at89S8252.h,
2324         * device/include/at89x51.h,
2325         * device/include/at89x52.h,
2326         * device/include/ds80c390.h,
2327         * device/include/reg764.h,
2328         * device/include/regc515c.h,
2329         * device/include/sab80515.h,
2330         * device/include/mcs51/c8051f000.h,
2331         * device/include/mcs51/c8051f018.h,
2332         * device/include/mcs51/c8051f020.h,
2333         * device/include/mcs51/c8051f040.h,
2334         * device/include/mcs51/c8051f060.h,
2335         * device/include/mcs51/c8051f120.h,
2336         * device/include/mcs51/c8051f300.h,
2337         * device/include/mcs51/c8051f310.h,
2338         * device/include/mcs51/c8051f320.h,
2339         * device/include/mcs51/c8051f330.h,
2340         * device/include/mcs51/c8051f350.h,
2341         * device/include/z180.h: Changed SDCC specific keywords to double
2342         underlined form.
2343
2344 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2345
2346         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2347         18F4455,
2348         * (pic16_assignConfigWordValue): disable testing of configuration
2349         register value with config mask,
2350         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2351         function with port->fun_prefix,
2352         * (genFunction): when generating a naked interrupt function never
2353         create an absolute segment placed in interrupt vector address, place
2354         the actual interrupt function at IVA instead, when an interrupt
2355         function is generated with unspecified interrupt then do not create
2356         the absolute section,
2357         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2358         code for generating a call to generic pointer get/put function with
2359         a call to function pic16_callGenericPointer(),
2360         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2361         the call to the generic pointer get/put functions with prefixing the
2362         function name with port->fun_prefix,
2363         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2364         * src/pic16/main.c (_process_pragma): prefix function with
2365         port->fun_prefix,
2366         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2367         calling assembler, old 18Fxxxx macro is deprecated,
2368         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2369         PC_ASMDIR in while condition,
2370         * (findInstruction): add PC_ASMDIR in while condition,
2371         * (buildCallTree): prefix main with port->fun_prefix,
2372         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2373         identifier for variable with banked access in instructions BTFSS,
2374         BTFSC, BCF, BSF, BTG
2375         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2376         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2377         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2378         perform optimization when enviroment variable NO_REG_OPT is set,
2379         * (insideLRBlock): NEW, return 1 if register is inside an
2380         INF_LOCALREGS block,
2381         * (RemoveRegFromLRBlock): remove a register that is completely
2382         eliminated by register optimization, but it is still left in local
2383         register store/restore in/from stack block,
2384         * (Remove2pcodes): after removing register, check to see if it
2385         should be removed from local register store/restore in/from stack
2386         block,
2387         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2388         DUMMY_READ_VOLATILE,
2389
2390         * device/include/pic16/adc.h: minor prototype modifications and
2391         update,
2392         * device/include/pic16/malloc.h: added GPL notice various
2393         modifications,
2394         * device/include/pic16/stdint.h: NEW, standard header for ints
2395         * device/include/pic16/delay.h: NEW, header for delay functions,
2396         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2397         delay1mtcy,
2398         * device/include/pic16/signal.h: NEW, header providing helper macros
2399         for implementing signal handlers,
2400         * device/include/pic16/stdio.h: added prototypes for functions,
2401         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2402         prototypes for stdin and stdout, added macro PUTCHAR to
2403         automatically implement putchar function prototype,
2404         * device/include/pic16/usart.h: modified and updated USART library,
2405         * device/lib/pic16/libio/adc/,
2406         * device/lib/pic16/libio/i2c: some modifications to improve library
2407         performance,
2408         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2409         family of functions,
2410         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2411         family of functions and other sources,
2412         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2413         of the PIC18Fxx[28] devices,
2414         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2415         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2416         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2417         _do_cinit function, because the previous failed when local variables
2418         where not placed in the same memory bank,
2419         * device/lib/pic16/libsdcc/char/: various modifications to improve
2420         library performance,
2421         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2422         information on the new functions of the c library and more...
2423
2424 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2425
2426         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2427
2428 2005-03-26 Raphael Neider <rneider AT web.de>
2429
2430         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2431           if condition == CARRY)
2432         * (genCmp): adapted to new genSkipc semantics
2433         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2434           on rIfx (genCmp was broken)
2435
2436 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2437
2438         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2439         * src/z80/main.c (_keywords[]),
2440         * src/SDCCglobal.h (struct options),
2441         * src/SDCC.y,
2442         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2443         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2444         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2445         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2446         always available in leading double underscore form. The C99 support is
2447         mostly missing, but it's a start.
2448         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2449         reserved identifier "__data".
2450
2451 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2452
2453         * src/mcs51/peeph.def: fixed bug 1170013
2454
2455 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2456
2457         * device/include/mcs51reg.h: fixed bug 842007
2458
2459 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2460
2461         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2462         last time.
2463
2464 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2465
2466         * src/port.h (struct PORT),
2467         * src/avr/ralloc.c (avr_assignRegisters),
2468         * src/avr/main.c,
2469         * src/ds390/ralloc.c (ds390_assignRegisters),
2470         * src/ds390/main.c,
2471         * src/hc08/ralloc.c (hc08_assignRegisters),
2472         * src/hc08/main.c,
2473         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2474         * src/mcs51/main.c,
2475         * src/pic/ralloc.c (pic14_assignRegisters),
2476         * src/pic/main.c,
2477         * src/pic16/ralloc.c (pic16_assignRegisters),
2478         * src/pic16/main.c,
2479         * src/xa51/ralloc.c (xa51_assignRegisters),
2480         * src/xa51/main.c,
2481         * src/z80/ralloc.c (z80_assignRegisters),
2482         * src/z80/ralloc.h,
2483         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2484         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2485         * src/SDCCcse.h,
2486         * src/SDCCdflow.c (computeDataFlow),
2487         * src/SDCCdflow.h,
2488         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2489         * src/SDCCloop.h,
2490         * src/SDCCcflow.c (*),
2491         * src/SDCCcflow.h,
2492         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2493         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2494         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2495         immedDom() returning wrong block; probably fixes bug #1160833)
2496
2497 2005-03-20 Borut Razem <borut.razem AT siol.net>
2498
2499         * support/scripts/inc2h.pl: WIN32 port
2500
2501 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2502
2503         * device/lib/makefile.in: added abs.c and labs.c
2504
2505 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2506
2507         * device/include/stdint.h: added
2508         * device/lib/abs.c: added
2509         * device/lib/labs.c: added
2510         * device/include/stdlib.h: added abs() and labs() prototypes
2511         * device/lib/libsdcc.lib: added abs and labs
2512         * device/include/float.h,
2513         * device/lib/_fsmul.c,
2514         * device/lib/printf_fast.c,
2515         * device/lib/printf_tiny.c: updated comments
2516
2517 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2518
2519         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2520         bug #1164313
2521
2522 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2523
2524         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2525         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2526
2527 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2528
2529         * device/lib/printf_large.c: removed inline assembly for portability and
2530           readability. Use printf_fast if speed or size are more important.
2531         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2532         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2533
2534 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2535
2536         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2537         prevent compiler warning
2538
2539 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2540
2541         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2542         moved to level 0 and declared as static. Also they are explicit
2543         placed in access bank. This was necessery because some times they
2544         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2545         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2546         optimizations. Currently only compare to unsigned char is implemented,
2547         * src/pic16/gen.c: added fReturnIdx array,
2548         * (struct resolvedIfx) is moved to gen.h and made public,
2549         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2550         * (aopForSym): added an optimization to directly store in stack of
2551         the operand of a SEND iCode,
2552         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2553         but as registers instead (AOP_REG) using the fReturnIdx array,
2554         * (pic16_freeAsmop): remove the freed register from the
2555         _G.sregsAlloc field,
2556         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2557         a compare of 'WREG',
2558         * (pic16_popGetTempRegCond): changed function prototype, now
2559         function takes also a bitVector argument v which holds the current
2560         set of registers that are allocated for stack access by aopForSym,
2561         registers allocated in aopForSym for accessing stack symbols are not
2562         any more part of the functions usedRegs field,
2563         * (genCall): some times aopOp is called for a stack variable to be
2564         send, aopForSym might perform the push, if this is true make sure
2565         that genCall doesn't push the variable twice by testing _G.resDirect,
2566         * (genFunction): changed testing for unspecified interrupt number
2567         from 256 to INTNO_UNSPEC,
2568         * modified selection scheme of frame pointer generation. Previously
2569         if function did use local registers a frame pointer was generated,
2570         now a frame pointer is generated only if function has arguments
2571         (that need PLUSW2 register access), or has stack arguments, or the
2572         compiler is not instructed to omit the frame pointer,
2573         * (genEndFunction): before restoring local registers that were saved
2574         in the function preamble, also restore the registers that *might*
2575         have been allocated for stack access,
2576         * (genRet): removed some old comments,
2577         * (genCmp, the active (RN's) version): added a call to the
2578         pic16_genCmp_special function to perform the compare with a more
2579         robust and optimized way,
2580         * (genInline): a feature has been added in inline code generation,
2581         which allows a wildcard variable substitution when writing inline
2582         assembly. Code is incomplete and experimental therefore undocumented,
2583         * (genCast): changed order of aopOp for result and right to allow
2584         aopForSym to directly load the result if possible,
2585         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2586         perform an optimized compare on some selected special occasions,
2587         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2588         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2589         generate an IVT any more,
2590         * src/pic16/main.c (pic16_optionsTable): added command line option
2591         --optimize-cmp,
2592         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2593         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2594         macros,
2595         * src/pic16/NOTES: Raphael Neider added in list of active developers
2596         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2597         jumptable_end to prevent bug #,
2598         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2599         inCond and outCond fields,
2600         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2601         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2602         turn off register spilling,
2603         * (packRegsForOneUse): synced with other ports' versions although it
2604         is not used currently,
2605         * (pic16_packRegisters): added an optimization while reading
2606         structure bitfields, some registers may be saved (malloc code is
2607         decreased by 80 bytes)
2608
2609 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2610
2611         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2612         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2613         this can be optimized more?
2614
2615 2005-03-10 Raphael Neider <rneider AT web.de>
2616
2617         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2618           genNearPointerGet): (hopefully) fixed access to bitfields via
2619           pointers (p->bitN = x; and x = p->bitN; failed)
2620
2621 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2622
2623         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2624
2625 2005-03-09 Raphael Neider <rneider AT web.de>
2626
2627         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2628
2629 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2630
2631         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2632         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2633           (regTypeNum): set REG_BIT type if necessary
2634         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2635         * support/regression/tests/critical.c: check bug 1144613
2636
2637 2005-03-02 Raphael Neider <rneider AT web.de>
2638
2639         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2640
2641 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2642
2643         * src/avr/ralloc.c (serialRegAssign),
2644         * src/ds390/ralloc.c (serialRegAssign),
2645         * src/hc08/ralloc.c (serialRegAssign),
2646         * src/mcs51/ralloc.c (serialRegAssign),
2647         * src/pic/ralloc.c (serialRegAssign),
2648         * src/pic16/ralloc.c (serialRegAssign),
2649         * src/xa51/ralloc.c (serialRegAssign),
2650         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2651
2652 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2653
2654         * src/SDCCast.c (decorateType): fixed bug 1124787
2655
2656 2005-02-20 Hubert Sack <sack AT digiplan.de>
2657         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2658
2659         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2660         patch #1121755
2661
2662 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2663
2664         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2665         to keep the correct label reference count when adding/removing references
2666         to labels. A peephole file using this is appended to patch #1144962.
2667
2668 2005-02-14 Raphael Neider <rneider AT web.de>
2669
2670         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2671         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2672         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2673           retrievals of result operand's value on assignment
2674
2675 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2676
2677         * device/include/pic16/string.h: modified prototype for memccpy()
2678         to memccpy(void *, void *, char, size_t)
2679         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2680         check whether to omit frame pointer or not,
2681         * (genInline): convert all occurences of "\n" to LF in inline
2682         assembler blocks, this helps formatting the inline text,
2683         * (pic16_loadFSR0): modified prototype,
2684         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2685         removed some 8051 legacy code,
2686         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2687         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2688         before allocating temporary registers in functions,
2689
2690 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2691
2692         * support/regression/tests/bitvars.c: corrected the "fix"
2693
2694 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2695
2696         * support/regression/tests/bitvars.c,
2697         * support/regression/tests/bitwise.c,
2698         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2699
2700 2005-02-10 Raphael Neider <rneider AT web.de>
2701
2702         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2703           different size for Alpha
2704         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2705
2706 2005-02-09 Raphael Neider <rneider AT web.de>
2707
2708         * src/SDCC.lex(doPragma) : save and restore warning options as well
2709           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2710         * have #pragma less_pedantic set the errorlevel to WARNING
2711           (fixes #1117001)
2712         * (cloneOptimize) : fixed wrong malloc's size
2713         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2714           facilitate correct handling of #pragma (save|restore)
2715
2716 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2717
2718         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2719
2720 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2721
2722         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2723
2724 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2725
2726         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2727
2728 2005-02-02 Raphael Neider <rneider AT web.de>
2729
2730         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2731         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2732         * (pic16_storeForReturn): fixed to allow returning function pointers
2733         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2734         * device/include/pic16/{stddef.h,stdbool.h}: added
2735
2736 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2737
2738         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2739
2740 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2741
2742         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2743         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2744          appeared to be required
2745
2746 2005-01-31 Borut Razem <borut.razem AT siol.net>
2747
2748         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2749           include/mcs51 and include/z80 directories to the package
2750
2751 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2752
2753         * src/hc08/gen.c (genFunction): fixed bug #1112752
2754
2755 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2756
2757         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2758
2759 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2760
2761         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2762
2763 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2764
2765         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2766
2767 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2768
2769         * device/include/c8051fxxx.h: removed these 6 files
2770         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2771
2772 2005-01-26 Raphael Neider <rneider AT web.de>
2773
2774         * src/pic16/gen.c (genAssign): fixed assignment from longs
2775           in codespace (were cut to three bytes)
2776         * (genDummyRead): implemented (except for CODESPACE...),
2777           fixed bug #1108575
2778         * src/pic16/glue.c (emitStatistics): beautified
2779         * device/lib/pic16/libm/Makefile: added include path
2780
2781 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2782
2783         * src/z80/gen.c (aopPut): fixed bug #1103902
2784
2785 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2786
2787         * device/lib/expf.c: fixed bug #1095792
2788
2789 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2790
2791         * device/lib/pic16/libm: added Math library sources
2792
2793 2005-01-24 Raphael Neider <rneider AT web.de>
2794
2795         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2796           to enable upcast to pCodeOpReg2 (there is no type tag to
2797           differenciate the two and pic16_popGet2p cast into PCOR2)
2798         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2799           (sizeof(sectNames) changed to sizeof(sectName))
2800           Both patches fix segfaults under MinGW.
2801
2802 2005-01-23 Raphael Neider <rneider AT web.de>
2803
2804         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2805           Safe_[mc]?alloc()'ed variables
2806         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2807           of (byte sized) temporaries (assign them to WREG for now)
2808         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2809           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2810           this might fix SIGSEGVs on MinGW...
2811         * src/SDCCopt.c (killDeadCode): restored original behaviour
2812           (volatile operands might get thrown away though)
2813
2814 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2815
2816         * src/pic16/gen.c: fixed bug #1106975,
2817         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2818         pointer update, INTCON is saved, global interrupts are disabled and
2819         restored after updateing TOS.
2820         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2821         * added function attribute 'shadowregs' to take advantage of shadow
2822         registers,
2823         * added function attribute 'wparam' as an alternative to the wparam
2824         pragma,
2825         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2826         user declares a non-ISR function as 'shadowregs',
2827         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2828
2829 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2830
2831         * .version: bumped version number to 2.4.8
2832         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2833         pic16 port,
2834         * device/lib/pic16/libio/i2c/: I2C module support library,
2835         * device/include/pic16/i2c.h: I2C support library header,
2836         * device/lib/pic16/libc/stdio/: standard IO support sources,
2837         * (printf_small.c): printf_small() source, supports float print,
2838         * (printf_tiny.c): printf_tiny() source, does not support floats,
2839         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2840         enable global optimizations for entire library source, other
2841         Makefiles in the source tree are also modified to reflect this,
2842         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2843         function,
2844         * doc/sdccman.lyx: updated to reflect new changes,
2845         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2846         sym->onStack if-case,
2847         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2848         sbit, idata, _idata, xdata, _xdata,
2849         * added pragma library, to link an external library, (see doc),
2850         * removed command line options, --pomit-config-words, --pomit-ivt,
2851         --pleave-reset-vector,
2852         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2853         when calling assembler to reflect memory model used, also define
2854         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2855         reflect stack model used,
2856         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2857         on stack return NULL,
2858
2859 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2860
2861         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2862           of the operands is volatile. Fixes #1020220
2863
2864 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2865
2866         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2867         * (OptimizeRegUsage): make sure that there is really no other flow where
2868           the first pCode is used
2869
2870 2005-01-22 Raphael Neider <rneider AT web.de>
2871
2872         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2873           to fix #1106967 (pCode->seq are not set up correctly)
2874
2875 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2876
2877         * src/SDCCglue.c (glue): make sure code area is declared before the
2878         static initialization area.
2879
2880 2005-01-21 Raphael Neider <rneider AT web.de>
2881
2882         * device/lib/Makefile.in: fixed test for pic16 install dir
2883         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2884           optimizations
2885         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2886           added --optimize-goto compiler switch and pragma wparam documentation
2887         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2888         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2889           and PRODH closing bug #1071770 (peephole optimizer)
2890
2891 2005-01-19 Raphael Neider <rneider AT web.de>
2892
2893         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2894           cmdLine buffers (used when calling sdcpp...) are large enough
2895           (MAX_PATH=256 truncates arguments leading to system halts when
2896           used in MinGW...)
2897         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2898         * (genUminus): rewritten to for efficiency
2899         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2900           used uninitialized in some cases)
2901         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2902           copy the third byte from the int -- now assumes 0x80 (data memory)
2903         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2904           operands (genAddLit expects the iCode's operands to swapped as
2905           well), fixed leftover bytes (crashed for short left operands)
2906         * (pic16_genMinusDec): performance improvements, removed false
2907           PIC14 emitSKPNCs
2908         * (pic16_genMinus): fixed to cope with differently sized operands
2909         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2910           for --obanksel > 1
2911         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2912         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2913           new banksel optimization
2914         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2915           analysis for temporary registers (segfaults...)
2916         * src/pic16/peeph.def: added rule
2917
2918 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2919
2920         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2921         which converts a float number to its ASCII representation
2922         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2923         functions to convert the fractional and integer part of a float to ASCII,
2924         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2925         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2926         ram
2927         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2928         _STATMEM macros,
2929         * device/include/pic16/adc.h: added GPL info,
2930         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2931         a pCodeOp as tested operand,
2932         * (genNearPointerGet): optimized bit testing, does not use
2933         intermediate register for bit value, test directly instead with
2934         BTFSS, BTFSC, works only for single bits,
2935         * (genpic16Code): dump the name of the iCode in the asm,
2936         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2937         renamed to pic16_decodeOp,
2938         * (serialRegAssign): do not allocate a temporary register for iCode
2939         sequences that test a single bit for 1/0
2940
2941 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2942
2943         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2944         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2945         access stack and frame pointers. They are initially assigned to
2946         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2947         accessing SFRs. Updated all occurences of modification of stack or
2948         frame pointer in gen.c and pcode.c,
2949         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2950         assigning of a literal value to pointers,
2951         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2952         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2953         selected
2954
2955 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2956
2957         * doc/sdccman.lyx: update documentation about stack pragma, added
2958         some info for stack memory models
2959
2960 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2961
2962         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2963
2964 2005-01-08 Raphael Neider <rneider AT web.de>
2965
2966         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2967           udata sections to fix bug #1097823
2968
2969 2005-01-05 Raphael Neider <rneider AT web.de>
2970
2971         * src/pic16/gen.c (genGenericShift): added handling of differently
2972           sized left operand and result
2973
2974 2005-01-04 Raphael Neider <rneider AT web.de>
2975
2976         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2977         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2978           to hold the condition bit)
2979         * added new version of genCmp (old code available via #define)
2980         * added new version of genShiftLeft/genShiftRight in a generic
2981           way, now supports shifting by negative values
2982         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2983           shiftCount (expected by genGenericShift)
2984         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2985         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2986           dump
2987         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2988           is an invalid literal too...)
2989
2990 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2991
2992         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2993         from Raphael Neider,
2994         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2995         for 8-bit literals. This fixes some literal operands which are sign
2996         extended to 16-bits ints when instruction needs only 8-bits.
2997
2998 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2999
3000         * device/lib/logf.c: added mcs51 assembly version
3001         * device/lib/expf.c: added mcs51 assembly version
3002         * device/lib/_logexpf.c: new shared asm code for expf and logf
3003         * device/include/math.h: add defines for assembly math library
3004         * device/lib/Makefile.in: build new _logexpf.c
3005         * device/lib/libfloat.lib: use new _logexpf.c
3006
3007 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3008
3009         * src/pic/device.c
3010         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3011           device types which have less than 0x7f registers.
3012
3013 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3014
3015         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3016
3017 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3018
3019         * device/lib/printf_fast.c: only build on supported arch.
3020         * device/lib/printf_tiny.c: only build on supported arch.
3021         * device/lib/printf_fast_f.c: only build if asm float lib
3022         * device/lib/_fsget1arg.c: only build if asm float lib
3023         * device/lib/_fsget2args.c: only build if asm float lib
3024         * device/lib/_fsnormalize.c: only build if asm float lib
3025         * device/lib/_fsreturnval.c: only build if asm float lib
3026         * device/lib/_fsrshift.c: only build if asm float lib
3027         * device/lib/_fsswapargs.c: only build if asm float lib
3028         * device/include/stdio.h: don't provide print_fast,
3029           print_fast_f, print_tiny prototypes if --xstack used
3030
3031 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3032
3033         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3034         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3035           to the SOURCES
3036
3037 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3038
3039         * device/lib/printf_fast_f.c: same as printf_fast, but
3040           with floating point enabled
3041         * device/lib/printf_fast.c: minor tweaks
3042         * device/include/stdio.h: add printf_fast_f
3043
3044 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3045
3046         * src/SDCCmain.c: make --float-reent default for mcs51
3047         * device/lib/_fsadd.c: added mcs51 assembly version
3048         * device/lib/_fssub.c: added mcs51 assembly version
3049         * device/lib/_fsmul.c: added mcs51 assembly version
3050         * device/lib/_fsdiv.c: added mcs51 assembly version
3051         * device/lib/_fseq.c: added mcs51 assembly version
3052         * device/lib/_fsneq.c: added mcs51 assembly version
3053         * device/lib/_fsgt.c: added mcs51 assembly version
3054         * device/lib/_fslt.c: added mcs51 assembly version
3055         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3056         * device/lib/Makefile.in: add _fscmp to build
3057         * device/lib/libfloat.lib: add _fscmp to build
3058
3059 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3060
3061         * device/lib/_fs2slong.c: added mcs51 assembly version
3062         * device/lib/_fs2sint.c: added mcs51 assembly version
3063         * device/lib/_fs2schar.c: added mcs51 assembly version
3064         * device/lib/_fs2ulong.c: added mcs51 assembly version
3065         * device/lib/_fs2uint.c: added mcs51 assembly version
3066         * device/lib/_fs2uchar.c: added mcs51 assembly version
3067         * device/lib/_slong2fs.c: added mcs51 assembly version
3068         * device/lib/_sint2fs.c: added mcs51 assembly version
3069         * device/lib/_schar2fs.c: added mcs51 assembly version
3070         * device/lib/_ulong2fs.c: added mcs51 assembly version
3071         * device/lib/_uint2fs.c: added mcs51 assembly version
3072         * device/lib/_uchar2fs.c: added mcs51 assembly version
3073         * device/include/float.h: added #define to select asm vs c
3074
3075 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3076
3077         * device/lib/printf_fast.c: improvements to float output
3078         * device/include/float.h: add defines for assembly float library
3079         * device/lib/_fsget1arg.c: receive 1 float arg
3080         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3081         * device/lib/_fsnormalize.c: normalize a float
3082         * device/lib/_fsreturnval.c: return float, various helper routines
3083         * device/lib/_fsrshift.c: right shift a float's mantissa
3084         * device/lib/_fsswapargs.c: swap 2 floats
3085         * device/lib/Makefile.in: build these 6 new files for mcs51
3086         * device/lib/libfloat.lib: add these 6 files to the library
3087
3088 2004-12-26 Borut Razem <borut.razem AT siol.net>
3089
3090         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3091           built by gcc 3.4.2
3092
3093 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3094
3095         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3096           and fully reentrant and register bank neutral.
3097         * device/lib/printf_fast.c: added float (not enabled by default),
3098           added compact/slower integer (also not enabled by default),
3099           improved size/speed of fast integer code, other minor changes
3100         * device/include/stdio.h, device/lib/Makefile.in,
3101           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3102
3103 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3104
3105         * src/pic16/pcode.c: declaring variables other than at the start of a
3106           block is not supported in C by VC6.
3107
3108 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3109
3110         * applied a previous patch from Raphael Neider that wasn't included
3111         in the previous commits, which fixes infinite loops within jumptable
3112         improvements,
3113         * made some fixes that previous patches introduced
3114
3115 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3116
3117         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3118         that fixes an issue with AOP_PCODE asmop's offset,
3119         * (pic16_popCopyReg): update instance field too,
3120         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3121         function of pic port,
3122         * (genCmp, genAnd, genAssign),
3123         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3124
3125 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3126
3127         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3128         variables initial values to idata section,
3129         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3130         variables in some functions. This utilizes parmBytes field of iCode
3131         structure to hold the offset of the variable in stack. (might be
3132         able to use the stack field too?)
3133         * applied patch from Raphael Neider # ### , # ###
3134         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3135         variable initial values in idata section,
3136         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3137         for static variables with initial value
3138         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3139         applied fix in while loop from Raphael Neider.
3140
3141 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3142
3143         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3144         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3145         * src/ds390/ralloc.c (serialRegAssign): spill bits
3146         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3147         * support/Util/SDCCerr.c,
3148         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3149         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3150         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3151
3152 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3153
3154         * device/include/sdcc-lib.h: inserted LGPL, added includes
3155           asm/ds390/features.h and asm/mcs51/features.h
3156         * device/include/asm/default/features.h,
3157         * device/include/asm/gbz80/features.h,
3158         * device/include/asm/z80/features.h: added empty _AUTOMEM
3159           and _STATMEM
3160         * device/include/asm/ds390/features.h,
3161         * device/include/asm/mcs51/features.h: added files with defines for
3162           _AUTOMEM and _STATMEM indicating automatic and static storage class
3163         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3164         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3165         * src/SDCCicode.c (geniCodeCast),
3166         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3167         * src/SDCCloop.c (loopInduction): removed unused variable lr
3168         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3169           to convertToFcall to include char modulo (RFE 1065037), added check
3170           if left operand is unsigned and use abs of literal value
3171         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3172           as it doesn't work after conversion from peephole.def to peephole.rul
3173         * src/mcs51/gen.c (toBoolean): added check for size,
3174           (genModOneByte): optimized code for signed char modulo a literal
3175           power of 2 (thanks to Hubert Sack),
3176           (genRRC): removed unnecessary "clr c",
3177           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3178         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3179           jump optimization,
3180           swapped rules 256.c and 256.d,
3181           extended 256.d by using new multiple checks (thanks Erik),
3182           added rules 256.e and 256.f,
3183           updated rule 261.a and 261.b to new generated code
3184         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3185
3186 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3187
3188         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3189           induction related bugs, including first part of bug #1074377
3190
3191 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3192
3193         * applied patch from bug-report #1076292,
3194         * applied patches for genAnd and Goto-optimizations for Raphael
3195         Neider,
3196         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3197         dump a less iCode information,
3198         * src/pic16/device.h (pic16_options_t): added field debgen,
3199         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3200         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3201         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3202         puclic,
3203         * (various functions): added macros FENTRY and FENTRY2 to functions,
3204         to emit function prologue,
3205         * (various functions): fixed indentation,
3206         * (genNearPointerGet): fixed loading of FSR0,
3207         * (genPackBits): applied patch from Raphael Neider to fix updating
3208         of FSR0 and touching only the modified bits,
3209         * src/pic16/genarith.c (various functions): added macros FENTRY to
3210         emit function prologue in comments,
3211         * src/pic16/pcode.h: added functions debugf2, debugf3,
3212         * src/pic16/ralloc.c: partial fix for packForPush caused
3213         segmentation fault,
3214
3215 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3216
3217         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3218           <stsp AT users.sourceforge.net> with reversed byte order
3219         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3220
3221 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3222
3223         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3224           bug #1074377
3225         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3226         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3227
3228 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3229
3230         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3231
3232 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3233
3234         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3235           conditions,
3236           (setFromConditionArgs): friendly operand parser for peephole rules,
3237           (operandBaseName, operandsNotRelated): new peephole condition
3238           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3239           architecture specific register naming into account, handles n-way
3240           comparisons, and supports quoted literals
3241         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3242
3243 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3244
3245         * src/mcs51/peeph.def: fixed bug #1076940
3246
3247 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3248
3249         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3250
3251 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3252
3253         Adding support for replacing ljmps with sjmps in jumptables
3254         generated for switch statements. For now you need to set the
3255         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3256         Now 4 algorithms for mcs51 jumptable generation are used:
3257         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3258         addresses loaded pc-relative for up to 112 cases and stack-pushing
3259         target addresses loaded with offset from dptr for up to 256 cases.
3260
3261         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3262         * src/mcs51/main.c: adapted constants for switch table generation
3263         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3264
3265 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3266
3267         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3268         * support/regression/tests/bug1057979.c: added test for bug 1073386
3269
3270 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3271
3272         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3273         compilers
3274
3275 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3276
3277         * src/pic16/device.h,
3278         * src/pic16/genarith.c,
3279         * src/pic16/glue.c,
3280         * src/pic16/main.c,
3281         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3282
3283 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3284
3285         Large cummulative patch for pic16 port.
3286         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3287         to call when a stack overflow occurs,
3288         * (malloc.h): added CVS Id tag,
3289         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3290         variable,
3291         * added libc directory. The current version of LibC contains string
3292         functions, ctype functions and macros and some functions of the
3293         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3294         be extensively tested in the future. Standard disclaimer here.
3295         Library is not automatically build yet. But one can build it by
3296         invoking 'make' inside the libc directory.
3297         * added ADC library under libio. Preliminary version yet.
3298
3299         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3300         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3301         aopForRemat() now and not by pic16_aopOp(),
3302         * (pic16_popGetTempReg): removed warning messgae when allocating
3303         temporary registers, its a buggy feature and will be removed,
3304         * (pic16_popGet): set register instance field in AOP_CRY,
3305         * (pic16_outBitC): fixed for results in size greater than 1,
3306         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3307         * (pic16_storeForReturn): optimized return of 0,
3308         * (genCmp): experimental code for new genCmp which uses PIC18's
3309         special compare&skip instructions. Initial tests fail some times
3310         with variables grater than 1 byte in size, so new code is disabled,
3311         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3312         a single bit,
3313         * (genCast): began a fix to optimize the casting of a bit to another
3314         bit, now assigning a bitfield to another bitfield will fail, sorry,
3315         * src/pic16/main.c: disabled the use of lr-support feature,
3316         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3317         * added some function prototypes, added function _debugf prototype,
3318         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3319         bits with offset (case PO_GPR_BIT),
3320         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3321         command line,
3322         * (isBankInstruction): modified to return 0 for no banking instruction,
3323         and 1 for banking instruction,
3324         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3325         caused stop processing pCodes after a inline assembly block,
3326         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3327         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3328         registers when it shouldn't,
3329         * src/pic16/ralloc.c (allocReg): add preliminary support for
3330         supporting a limited set of temporary registers,
3331
3332 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3333
3334         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3335           genDataPointerSet): ensure assignments always copy in MSB to LSB
3336           order,
3337           (loadRegFromAop): recognize CLRH optimization,
3338           (genFunction): optimize RECEIVE iCodes in reentrant functions
3339
3340 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3341
3342         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3343           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3344           selected.
3345         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3346         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3347           contiguous with data
3348
3349 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3350
3351         * device/lib/_gptrget.c (_gptrget),
3352         * device/lib/_gptrgetc.c (_gptrgetc),
3353         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3354           instead of sjmp to ret
3355         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3356           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3357
3358 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3359
3360         * .version: bumped version to 2.4.7
3361         * device/lib/_gptrget.c (_gptrget): is now _naked
3362         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3363         * device/lib/_gptrput.c (_gptrput): is now _naked
3364         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3365           (createFunction): fixed xstack
3366         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3367         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3368           or bit either,
3369           (geniCodeCritical): store original interrupt state in an iTemp bit
3370           var unless stack-auto
3371         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3372         * src/SDCCmain.c (setIncludePath): added include/target to search path
3373         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3374         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3375           prototype,
3376           (processFuncArgs): put bit vars in bit area
3377         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3378           unsaveRBank): fixed xstack,
3379           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3380           (genFunction, genEndFunction): fixed xstack,
3381           (genAssign): optimization don't walk backwards through mem
3382         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3383         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3384         * support/regression/Makefile: also make library (for stack-auto) when
3385           making "all" and added "test-mcs51-xstack-auto"
3386         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3387         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3388         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3389         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3390         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3391           make-library by MAKE_LIBRARY
3392         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3393           regression tests for xstack
3394         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3395         * support/regression/tests/critical.c: test for critical on mcs51
3396
3397 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3398
3399         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3400           built version of sdcc instead of installed version
3401
3402 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3403
3404         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3405         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3406           vprintf.c now
3407         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3408         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3409           WARNING: remove device/lib/build/z80/printf.o by hand when
3410           updating from previous build!
3411         * device/lib/z80/printf.c: updated comment
3412         * support/regression/tests/bug1057979.c: test all ports now
3413         * support/regression/tests/bug1065458.c: file added
3414
3415 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3416
3417         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3418           *_start and *_end symbols for static functions
3419
3420 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3421
3422         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3423           and search crt0.o in all library paths,
3424           (setIncludePath): proper handling of --nostdinc,
3425           (setLibPath): proper handling of --nostdlib
3426         * support/regression/Makefile,
3427         * support/regression/ports/ds390/spec.mk,
3428         * support/regression/ports/gbz80/spec.mk,
3429         * support/regression/ports/hc08/spec.mk,
3430         * support/regression/ports/mcs51/spec.mk,
3431         * support/regression/ports/mcs51-large/spec.mk,
3432         * support/regression/ports/mcs51-stack-auto/spec.mk,
3433         * support/regression/ports/z80/spec.mk: use include and lib files from
3434           built version of sdcc instead of installed version
3435         * doc/sdccman.lyx: fixed typo in --nostdinc
3436
3437 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3438
3439         * src/pic/pcode.c,
3440         * src/pic/device.c,
3441         * src/pic/ralloc.c,
3442         * src/pic/gen.c : added support to generate code for struct bit fields.
3443
3444 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3445
3446         * as/xa51/xa_version.h,
3447         * device/include/errno.h,
3448         * device/include/regc515c.h,
3449         * device/lib/_itoa.c,
3450         * device/lib/_ltoa.c,
3451         * device/lib/ser_ir_cts_rts.c,
3452         * sim/ucsim/xa.src/glob.cc,
3453         * sim/ucsim/xa.src/inst_gen.cc,
3454         * sim/ucsim/xa.src/xa_bit.cc,
3455         * sim/ucsim/xa.src/xa_sfr.cc,
3456         * sim/ucsim/z80.src/inst_dd.cc,
3457         * sim/ucsim/z80.src/inst_fdcb.cc,
3458         * support/scripts/keil2sdcc.pl,
3459         * src/pic16/pic16.dsp,
3460         * src/pic16/pic16a.dsp: corrected cvs line endings
3461         * device/lib/printf_large.c: fixed bug 1057979
3462         * src/pic16/gen.c: fixed non-C standard code
3463         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3464         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3465         * support/regression/ports/mcs51/support.c: reload T1 asap
3466         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3467           pdata use and clear idata startup behaviour
3468         * support/regression/tests/bug1057979.c: added
3469
3470 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3471
3472         * device/examples/ds390/ow390/ad26.h,
3473         * device/examples/ds390/ow390/cnt1d.h,
3474         * device/examples/ds390/ow390/crcutil.c,
3475         * device/examples/ds390/ow390/ownet.h,
3476         * device/examples/ds390/ow390/owsesu.c,
3477         * device/examples/ds390/ow390/swt12.h,
3478         * device/examples/ds390/ow390/swtoper.c,
3479         * device/examples/ds390/ow390/temp10.h,
3480         * device/examples/ds390/ow390/thermodl.c,
3481         * device/examples/ds390/tinitalk/tinitalk.dsp,
3482         * device/examples/ds390/tinitalk/tinitalk.dsw,
3483         * device/examples/mcs51/clock/hw.h,
3484         * device/examples/mcs51/simple2/go.bat,
3485         * device/examples/serialcomm/windows/serial.h,
3486         * device/examples/xa51/dummy.c,
3487         * device/examples/xa51/hello.c,
3488         * device/include/80c51xa.h,
3489         * device/include/at89x051.h: corrected cvs line endings
3490
3491 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3492
3493         * src/pic16/main.c (options): added command line --gstack, to trace
3494         stack over/under flows,
3495         * added pragma 'wparam' to allow passing first byte of function
3496         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3497         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3498         call to __gstack_test function and sets up the symbol as extern,
3499         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3500         * popaop): added call to pic16_testStackOverflow,
3501         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3502         wparamList list,
3503         * (genCall, genPcall): now all parameters are passed via stack
3504         except in functions that are pass to wparam pragma in which WREG is
3505         used too,
3506         * (genPcall): REENTRANT flag is checked to see if variable prototype
3507         contains reentrant keyword, don't call a non-reentrant function, via
3508         a reentrant function pointer or vice versa, functions are never
3509         passed via WREG,
3510         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3511         D.Winkler,
3512         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3513         SIGSEGV when accessing a NULL register stucture,
3514         * (pic16_printGPointerType): modified to handle UPPER modifier for
3515         function initializers, changed prototype of function to simpler one,
3516         * (pic16_printIvalFuncPtr): check to see if function is already
3517         added in externs list,
3518         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3519         optimized a move from W to SFR with a move to the same register
3520         later after a CALL,
3521         * device/lib/pic16/debug: NEW directory, contains debug features
3522         which are enabled when linking with libdebug.lib, currently command
3523         line option --gstack enables stack pointer tracing for over/under
3524         flow, corresponding sources are in debug/gstack
3525
3526 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3527
3528         * doc/sdccman.lyx: updated SDCC version,
3529         * (PIC16 port): update list of command line options,
3530         * src/pic16/device.h (structure pic16_options_t): added field gstack
3531         to enable stack overflow tracing on push/pops,
3532         * src/pic16/device.c (statistics structure): added statistics
3533         structure,
3534         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3535         pic16_dump_int_registers): increase statistics counters for each
3536         * variable which is encountered
3537         * (pic16_dump_usection): emit each .udata variable to its own udata
3538         section,
3539         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3540         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3541         parameters via stack, otherwise use old scheme,
3542         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3543         assembler output file,
3544         * src/pic16/main.c: added command line options --gstack to enable
3545         push/pop tracing for stack overflow,
3546         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3547         instructions): added size of each instruction,
3548         * (pic16_countInstruction): estimate size of instructions in
3549         the_pFile list, inline assembly blocks are not counted,
3550         * (pic16_FixRegisterBanking): trace previous register usage, when
3551         banksel optimizations is greater than 0, don't emit a redudant
3552         banksel directive,
3553
3554 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3555
3556         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3557         * src/pic16/ralloc.c : applied same fix for pic16.
3558         * src/pic/gen.c : tidied it up a little.
3559
3560 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3561
3562         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3563         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3564
3565 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3566
3567         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3568
3569 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3570
3571         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3572         non-reentrant function __modsint in the interrupt function (thus
3573         corrupting math operations during serial I/O)
3574         * device/lib/ser_ir.c: as above, changed buffersize
3575         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3576         256.c,d for zeroing
3577         * doc/Makefile: added option -t for rsync
3578
3579 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3580
3581         * src/SDCCast.h (struct ast),
3582         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3583
3584 2004-10-20 Borut Razem <borut.razem AT siol.net>
3585
3586         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3587         package
3588
3589 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3590
3591         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3592         makefile targets,
3593         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3594         support functions to replace long sequences of MOVFF's from access
3595         bank registers to stack and vice versa,
3596         * src/pic16/device.h: added new field opt_flags, where optimization
3597         flags can be set to enable certain features,
3598         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3599         * pBlock, (genFunction, genEndFunction): surroung loop for
3600         saving/loading used registers in stack with PC_INFO pCodes,
3601         INF_LREGS. Code in between can then be optimized by pCode optimizer
3602         to support function calls,
3603         * (genDataPointerSet): fixed bug which loaded float fields in
3604         structures with corrupt data,
3605         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3606         in a standard way debug info on stderr. Feature used for developing
3607         and debugging only,
3608         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3609         obsolete chunks of code,
3610         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3611         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3612         * pic16/src/pcode.c (pic16_newpCodeInfo,
3613         * (pic16_newpCodeOpLocalRegs),
3614         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3615         feature,
3616         * (pic16_pCodeConstString): printing of the initial value of a
3617         symbol as a comment is inhibited since parsing was already done by
3618         copyStr and output is corrupt,
3619         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3620
3621 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3622
3623         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3624
3625 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3626
3627         * as/mcs51/lkarea.c: removed old K&R style,
3628           (lnksect): changed check on boundary error,
3629           (lnksect2): changed check on boundary error,
3630           (lnksect2): extend XSTK to end of page if size = 1
3631         * as/mcs51/lkmain.c: removed old K&R style,
3632           (Areas51): create l_IRAM symbol
3633         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3634         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3635           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3636         * device/lib/_mullong.c: added version to be compiled with xstack
3637         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3638         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3639         * device/lib/mcs51/crtxstack.asm: fixed comment
3640         * src/SDCCglue.c: maxInterrupts defaults to 0,
3641           (emitMaps): added pdata,
3642           (createInterruptVect): (re)moved default,
3643           (glue): added pdata,
3644           (glue): moved __start__xstack to XSTK with default size 1
3645         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3646           and options.float_rent when options.stackAuto is set,
3647           (linkEdit): only write XDATA_NAME if provided on command line
3648         * src/SDCCmem.h,
3649         * src/SDCCmem.c: added pdata
3650         * src/port.h: added pdata_name to PORT
3651         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3652           (saveRegisters, unsaveRegisters): removed usage of B,
3653           (genMinus): fixed accumulator clash,
3654           (genJumpTab): added comment, this needs another look
3655         * src/mcs51/gen.c: added check for "B in use" paranoia,
3656           added pushB() and popB()
3657         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3658           chance
3659         * src/avr/main.c,
3660         * src/ds390/main.c,
3661         * src/hc08/main.c,
3662         * src/mcs51/main.c,
3663         * src/pic/main.c,
3664         * src/pic16/main.c,
3665         * src/xa51/main.c,
3666         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3667           added PSEG (PAG,XDATA) or NULL to port specifier
3668         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3669         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3670           (_mcs51_genInitStartup): removed __start__xstack equ,
3671           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3672         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3673         * src/z80/gen.c (_rleAppend): fixed warnings
3674         * support/regression/tests/zeropad.c: added pdata test
3675         * .version: bumped to 2.4.6
3676
3677 2004-10-17 Borut Razem <borut.razem AT siol.net>
3678
3679         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3680         as a part of nightly build
3681
3682 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3683
3684         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3685         WREG holds the first byte function parameters,
3686         * (aopForSym): take special case for symbols which are in FARSPACE
3687         but in CODESPACE too,
3688         * (assignResultValue): modified to take into account _G.useWreg,
3689         * (genCall): don't use wreg for parameter passing when function is
3690         declared as reentrant, too, added optimization INCF to stack
3691         pointer when stack parameter count is 1,
3692         * (genFunction, genEndFunction): refurnished and fixed to not using
3693         wreg for passing parameters when function has varargs or is
3694         reentrant, fixed bug with symbol name compare for generating
3695         functions in absolute address,
3696         * (pic16_storeForReturn): refurnished,
3697         * (genCmp): began writing a new version of the function, not ready
3698         yet, therefore it is disabled,
3699         * (genAssign): do not read code memory when assigning a function to
3700         a pointer function,
3701         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3702         array of characters, not pointer,
3703         * (pic16initialComments): in debug mode emit an .ident directive for
3704         the assembler,
3705         * (_process_pragma): emit a new warning type (internal to pic16)
3706         when setting stack to default length, emit a similar warning when
3707         placing a function at absolute address and address is not word aligned
3708         * (_pic16_parseOptions): added 'return TRUE' statement,
3709         * (_pic16_linkEdit): if compiling a source, then add the source's
3710         file object, first in the list of objects to link,
3711
3712 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3713
3714         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3715         * src/pic/main.c : removed VC warning.
3716         * src/pic/gen.c : changed comment.
3717
3718 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3719
3720         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3721         reference to a deprecated symbol _GPTRREG was causing failure to
3722         link. Thanks G. M. Gallant for the info.
3723
3724 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3725
3726         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3727         comments for Bugs item #954788.
3728
3729 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3730
3731         * src/pic16/device.c (pic16_dump_gsection,
3732         * pic16_groupRegistersInSection): handle symbols declared to be in
3733         access bank differently,
3734         * src/pic16/gen.c (struct _G): added field resDirect,
3735         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3736         send values read from stack directly to result and don't allocate
3737         temporary values,
3738         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3739         same registers,
3740         * (pic16_sameRegsOfs): NEW,
3741         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3742         free because they were not allocated from temporary pool,
3743         * pic16_popRegFromString): workaround to fix a problem with
3744         allocating variables twice or never,
3745         * (genGenPointerGet): using PRODL instead of FSR0H,
3746         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3747         instead of FSR0H,
3748         * (genAssign): take advantage of the _G.resDirect flag,
3749         * (genCast): around line 11844, use mov2f instead of directly
3750         MOVFF'ing between operands to account for literal values,
3751         * src/pic16/genutils.c: some new debug functions for gpsim have been
3752         added,
3753         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3754         float with integer part only,
3755         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3756         place variables in access bank
3757         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3758         updated sources to reflect recent changes in gen.c
3759
3760 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3761
3762         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3763         sources that searched for headers in installation path, now the
3764         device/include/pic16 is used,
3765         * src/pic16/glue.c (pic16glue),
3766         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3767         .line directives if not in debug mode, this suppresses assembler's
3768         warnings for ignored directives
3769
3770 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3771
3772         * src/port.h: made reset_regparms prototype void parameter explicit.
3773         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3774         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3775         * doc/sdccman.lyx: documented warning disabling and how to use
3776           printf_large to make it print floats.
3777         * device/include/stdbool.h: NEW
3778         * device/lib/_atof.c,
3779         * device/lib/_divuint.c,
3780         * device/lib/_divulong.c,
3781         * device/lib/expf.c,
3782         * device/lib/printf_large.c,
3783         * device/lib/sincosf.c,
3784         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3785         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3786           a completely reentrant lib.
3787
3788 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3789
3790         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3791         * device/include/pic16/stdio.h: fixed bug with colon
3792
3793 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3794
3795         * device/include/pic16/stdio.h,
3796         * device/include/pic16/stdlib.h,
3797         * device/include/pic16/math.h: NEW
3798         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3799         declared as _naked to reduce overhead
3800         * device/lib/Makefile.in (target port-specific-objects-pic16):
3801         changed * to *.* so to ignore the CVS directory,
3802         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3803         stacked variables back in stack,
3804         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3805         corruption
3806
3807 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3808
3809         * .version: bumped version number to 2.4.5
3810         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3811         * support/Util/SDCCerr.c (messages structure): added entry for
3812         W_POSSBUG2
3813
3814         Large cumulative patch for pic16 port and libraries.
3815         * device/include/pic16/sdcc-lib.h,
3816         * device/include/pic16/stdarg.h,
3817         * device/include/asm/pic16/features.h,
3818         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3819         * device/include/pic16/float.h: changes reentrant keyword with
3820         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3821         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3822         updated target build-libraries to include objects from gptr,
3823         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3824         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3825         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3826         all function headings,
3827         * src/SDCCmain.c: added global parameter userIncDirsSet,
3828         * (parseCmdLine): when option -I is encountered add directory to
3829         userIncDirsSet too,
3830         * src/version.awk: added space between control and long,
3831         * src/pic16/NOTES: added some notes for the port,
3832         * src/pic16/gen.c: added prototype for mov2fp function,
3833         * (fReturnpic16[]): properly named return value registers,
3834         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3835         * (aopForSym): added code to handle symbols with onStack flag set,
3836         symbols onStack are allocated PTRSIZE bytes,
3837         * (aopFreeAsmop): handles special case where asmops are stack objects,
3838         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3839         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3840         added argument lock to trace flaws in allocating temporary registers
3841         when developing port,
3842         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3843         * (pic16_popRegFromString): reenabled allocating a direct register
3844         from string,
3845         * (assignResultValue): various beautifications,
3846         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3847         referenced function argument,
3848         * (genIpush): reenabled to allow stacked arguments, handles only
3849         ic->parmPush iCodes,
3850         * (genCall, genPcall): major changes to allow for variable argument
3851         functions, fixed a bug with falsely restoring stack pointer after
3852         returning from call,
3853         * (genFunction): pending code for critical function,
3854         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3855         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3856         * (genNearPointerGet): fixed bug with indirect reading, was always
3857         reading from INDF0
3858         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3859         pointers,
3860         * (genAddrOf): rewrote code to take address of a stacked function parameter
3861         * (genCast): fixed casting to generic pointer type,
3862         * src/pic16/gen.h: added AOP_STA,
3863         * (struct asmop): added field stk,
3864         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3865         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3866         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3867         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3868         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3869         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3870         generic pointers,
3871         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3872         and library paths,
3873         * (pic16_port structure): generic pointer size is set to 3,
3874         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3875         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3876         compiler warning,
3877         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3878         operand is an iTemp,
3879
3880 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3881
3882         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3883         * debugger/mcs51/simi.c: addapt new syntax of s51
3884
3885 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3886
3887         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3888         * src/pic16/pcode.c: commented out some calls to free() in order to
3889         fix bug #989576,
3890
3891 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3892
3893         * src/SDCCicode.h,
3894         * src/SDCCicode.c (isiCodeInFunctionCall),
3895         * src/avr/ralloc.c (selectSpil),
3896         * src/pic/ralloc.c (selectSpil),
3897         * src/pic16/ralloc.c (selectSpil),
3898         * src/ds390/ralloc.c (selectSpil),
3899         * src/hc08/ralloc.c (selectSpil),
3900         * src/xa51/ralloc.c (selectSpil),
3901         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3902         stack in the middle of a function call sequence (fixes bug #1020268)
3903         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3904         costs associated with the minimum switch case.
3905
3906 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3907
3908         * src/SDCC.lex: fixed bug #1030549
3909
3910 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3911
3912         * src/SDCCcse.h (struct cseDef),
3913         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3914         over a function call if the CSE is derived from a symbol whose
3915         address has been taken (fixes bug #1029883)
3916         * support/regression/tests/bug-1029883: a new regression test for
3917         this bug
3918
3919 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3920
3921         * src/hc08/gen.c (emitinline): fixed bug #1029778
3922         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3923         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3924         and starts toward RFE #905167)
3925
3926 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3927
3928         * src/pic16/gen.c (mov2f): New function to move an operand to
3929         another without considering if it is a literal or a register,
3930         * (pic16_sameRegs): don't check if they are both AOP_REG,
3931         * (AccRsh): removed andmask=0 lines,
3932         * (genLeftShift): duplicated to be improved in future versions,
3933         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3934         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3935         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3936         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3937         * (insertBankSwitch): fixed inserting banksel directives algorithm
3938         for instructions that follow a skip instruction, this fixes a report
3939         for broken subtraction code generation,
3940         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3941         iCode is a left op, just in case result and right share the same
3942         registers
3943
3944 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3945
3946         * src/hc08/main.c,
3947         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3948         preservation of HX
3949         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3950         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3951         on 2004-09-12; it was buggy
3952
3953 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3954
3955         * src/SDCCsymt.h: removed RESULT_CHECK
3956         * src/SDCCast.c,
3957         * src/SDCCglue.c,
3958         * src/SDCCval.c,
3959         * src/pic/glue.c,
3960         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3961
3962 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3963
3964         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3965         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3966         configuration values no more rejected by compiler, they are assigned
3967         to configuration registers with a warning message instead,
3968         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3969         the for-loop so last conf register is emitted too,
3970         * (_pic16_initPaths): link library libsdcc.lib by default,
3971         * (_hasNativeMulFor): modified test for multiplication according to
3972         Raphael Neider's remarks. Integer multiplication is also done with
3973         support functions,
3974         * device/include/pic16/pic18fregs.h: corrected type error in while
3975         testing and including 18f6720 header file
3976
3977 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3978
3979         * src/pic16/device.h (pic16_options): removed field use_crt,
3980         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3981         until an optimization to handle single bits is added,
3982         * (pic16_loadFSR0): moved before genUnpackBits,
3983         * (genAnd): some white lines removed,
3984         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3985         leave_reset flags in pic16_options when using crt modules,
3986
3987 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3988
3989         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3990           for bugs 898889 & 979599. Also used some safer print instructions.
3991
3992 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3993
3994         * src/pic16/device.h (pic16_options_t): added field use_crt,
3995         crt_name, no_crt,
3996         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3997         catch a probable future bug,
3998         * src/pic16/gen.c: aopIdx function commented out,
3999         * (genAssign): commented out old code which used aopIdx,
4000         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4001         code, added if conditionals to take into account the --use-crt
4002         command line options,
4003         * src/pic16/main.c (pic16_optionsTable): added new command line
4004         options, --use-crt= and --no-crt,
4005         * (_pic16_linkEdit): now the proper crt object is added in the
4006         linker command line except than when --no-crt is specified,
4007         * src/pic16/pcode.c,
4008         * src/pic16/pcode.h: added some structures and functions for a new
4009         optimization scheme to compansate for instruction overhead between
4010         same iCodes, this scheme is currently under development and is not
4011         working in any way,
4012         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4013         to && operator,
4014         * device/lib/pic16/startup/crt0i.c,
4015         * device/lib/pic16/startup/crt0iz.c: added global char variable
4016         __uflags to force the generation of an idata section
4017
4018 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4019
4020         * doc/Makefile,
4021         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4022         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4023
4024 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4025
4026         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4027         Frieder) and clarified the default code optimization mode
4028
4029 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4030
4031         * src/SDCC.lex (doPragma, process_pragma),
4032         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4033         "opt_code_size", and "opt_code_balanced"
4034         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4035         regrouped options by category, added support for category headers
4036         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4037         and "--opt-code-size"
4038         * doc/sdccman.lyx: documented these new options and pragmas
4039         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4040         preference into account
4041
4042 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4043
4044         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4045           geniCodePreDec): Fixed bug 904237 by generating a warning
4046         * src/SDCCerr.h,
4047         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4048
4049 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4050
4051         * src/pic/device.c : When no max ram set validate full memory range.
4052         * src/pic/pcode.c,
4053         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4054
4055 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4056
4057         * device/lib/_gptrget.c,
4058         * device/lib/_gptrput.c: updated comment
4059         * device/lib/calloc.c,
4060         * device/lib/free.c,
4061         * device/lib/malloc.c,
4062         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4063         * src/SDCCcse.c (cseBBlock),
4064         * src/SDCCicode.c (printOperand, geniCodeArray),
4065         * src/SDCCicode.h (struct operand): fixed bug 868103
4066         * support/regression/tests/bug-868103.c: added
4067         * src/SDCCast.c (searchLitOp),
4068         * src/SDCCcse.h (struct cseDef),
4069         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4070         * src/SDCCicode.h (struct operand),
4071         * src/SDCCsymt.h (struct sym_link),
4072         * src/avr/gen.c (hasInc),
4073         * src/ds390/gen.c (hasInc),
4074         * src/hc08/gen.c (genPlusIncr, hasInc),
4075         * src/mcs51/gen.c (hasInc),
4076         * src/pic16/glue.c (pic16_printIvalChar),
4077         * src/pic16/ralloc.c (regWithIdx),
4078         * src/xa51/gen.c (hasInc) : removed warnings
4079         * src/SDCCast.c (createBlock): added comment ???
4080         * src/hc08/ralloc.c: updated comments
4081
4082 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4083
4084         * doc/sdccman.lyx: updated section on switch statements, added
4085         section about semaphore locking
4086         * doc/Makefile: added option -info for latex2html
4087         * device/lib/_gptrget.c,
4088         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4089
4090 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4091
4092         * src/pic/device.h,
4093         * src/pic/device.c,
4094         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4095          maxram is less than 0x100.
4096
4097 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4098
4099         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4100
4101 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4102
4103         * src/port.h,
4104         * src/mcs51/main.c,
4105         * src/ds390/main.c,
4106         * src/z80/main.c,
4107         * src/hc08/main.c,
4108         * src/pic/main.c,
4109         * src/pic16/main.c,
4110         * src/avr/main.c,
4111         * src/xa51/main.c
4112         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4113         a jump table is the best form for a switch statement, including
4114         automatic insertion of missing cases to make the case range
4115         continuous. Developed in collaboration with Frieder Ferlemann.
4116
4117 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4118
4119         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4120         accumulator result if it needs sign extension
4121
4122 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4123
4124         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4125
4126 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4127
4128         * device/lib/gbz80/printf.c,
4129         * device/lib/z80/printf.c: removed define for NULL
4130
4131 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4132
4133         * as/xa51/xa_link.c,
4134         * device/examples/ds390/ow390/ad26.c,
4135         * device/examples/ds390/ow390/cnt1d.c,
4136         * device/examples/ds390/ow390/counter.c,
4137         * device/examples/ds390/ow390/ds2480.h,
4138         * device/examples/ds390/ow390/ds2480ut.c,
4139         * device/examples/ds390/ow390/findtype.c,
4140         * device/examples/ds390/ow390/gethumd.c,
4141         * device/examples/ds390/ow390/owllu.c,
4142         * device/examples/ds390/ow390/ownetu.c,
4143         * device/examples/ds390/ow390/swt12.c,
4144         * device/examples/ds390/ow390/swtloop.c,
4145         * device/examples/ds390/ow390/temp.c,
4146         * device/examples/ds390/ow390/temp10.c,
4147         * device/examples/ds390/ow390/thermo21.c,
4148         * device/examples/ds390/ow390/tinilnk.c,
4149         * device/examples/ds390/ow390/tstfind.c,
4150         * device/examples/serialcomm/windows/serial.cpp,
4151         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4152         * device/include/reg51.h: fixed line endings for cvs
4153
4154 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4155
4156         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4157         packRegsForAccUse, packRegisters): new accumulator register
4158         packing algorithm
4159         * support/regression/ports/hc08/support.c (_putchar): suppress
4160         warning of unused variable
4161         * src/SDCCicode.c: added SWAP entry to codeTable
4162
4163 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4164
4165         * device/lib/sprintf.c: forgot to add this file before previous commit
4166
4167 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4168
4169         * src/pic16/gen.c (genPackBits): added operand right in function
4170         parameters, load result directly if p_type is POINTER (that is
4171         called by genNearPointerSet)
4172         * (genUnPackBits): added operand left in function parameters,
4173         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4174         FSR0 if accessing bitfields,
4175
4176 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4177
4178         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4179           _print_format; updated printf, sprintf, vsprintf
4180         * device/include/asm/default/features.h: corrected comment/define
4181         * device/lib/Makefile.in: added sprintf.c
4182         * device/lib/libsdcc.lib: added sprintf module
4183         * device/lib/printf_large.c,
4184         * device/lib/vprintf.c,
4185         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4186           into these 3 files
4187         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4188         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4189         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4190           hc08 test
4191         * support/regression/tests/zeropad.c: define idata as data for hc08
4192
4193 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4194
4195         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4196         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4197         labels are referenced at least once (even if a reference is not found)
4198         * src/hc08/gen.c (emitcode): set isComment flag for comments
4199         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4200         loads), rules 6a..6b (optimize jumps to return)
4201
4202 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4203
4204         * device/lib/acosf.c (acosf),
4205         * device/lib/asinf.c (asinf),
4206         * device/lib/atanf.c (atanf),
4207         * device/lib/ceilf.c (ceilf),
4208         * device/lib/cosf.c (cosf),
4209         * device/lib/coshf.c (coshf),
4210         * device/lib/cotf.c (cotf),
4211         * device/lib/fabsf.c (fabsf),
4212         * device/lib/floorf.c (floorf),
4213         * device/lib/log10f.c (log10f),
4214         * device/lib/logf.c (logf),
4215         * device/lib/sinf.c (sinf),
4216         * device/lib/sinhf.c (sinhf),
4217         * device/lib/sqrtf.c (sqrtf),
4218         * device/lib/tanf.c (tanf),
4219         * device/lib/tanhf.c (tanhf),
4220         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4221         replaced all instances of "reentrant" in the library functions
4222         defined in math.h with this macro.
4223         * support/regression/tests/float_trans.c: reenabled test for hc08
4224
4225 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4226
4227         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4228         erroneously deleted
4229
4230 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4231
4232         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4233         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4234         multi-byte volatile operands are used
4235         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4236         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4237         initialization to area GSINIT0 so that it would always precede
4238         any static initializers in GSINIT
4239         * support/regression/tests/zeropad.c: fixed idata define for hc08
4240         * support/regression/tests/bug-927659.c,
4241         * support/regression/tests/float_trans.c: disabled tests for hc08
4242         pending missing library routines
4243         * .version: increased version number to 2.4.4 - hc08 port now passes
4244         regression tests
4245
4246
4247 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4248
4249         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4250         * Makefile.common.in,
4251         * as/Makefile,
4252         * as/hc08/Makefile.in,
4253         * as/mcs51/Makefile.in,
4254         * as/z80/Makefile.in,
4255         * debugger/mcs51/Makefile.in,
4256         * device/include/Makefile.in,
4257         * device/lib/Makefile.in,
4258         * doc/Makefile,
4259         * link/Makefile,
4260         * link/z80/Makefile.in,
4261         * packihx/Makefile.in,
4262         * sim/ucsim/main_in.mk,
4263         * sim/ucsim/avr.src/Makefile.in,
4264         * sim/ucsim/doc/Makefile.in,
4265         * sim/ucsim/gui.src/serio.src/Makefile.in,
4266         * sim/ucsim/hc08.src/Makefile.in,
4267         * sim/ucsim/s51.src/Makefile.in,
4268         * sim/ucsim/xa.src/Makefile.in,
4269         * sim/ucsim/z80.src/Makefile.in,
4270         * src/Makefile.in,
4271         * support/cpp2/Makefile.in,
4272         * support/librarian/Makefile,
4273         * support/makebin/Makefile: added DESTDIR to the install path proposed
4274         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4275         * doc/sdccman.lyx: added DESTDIR documentation
4276
4277 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4278
4279         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4280         instruction for interrupt handlers, use fast returns when returning
4281         from high priority interrupts
4282
4283 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4284
4285         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4286         code generation
4287         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4288         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4289         bugs, ported much of Bernhard's code from mcs51
4290         * src/mcs51/gen.c (genSend),
4291         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4292         than one when calling a reentrant function
4293         * device/lib/_mullong.c: defined an alternate struct layout for big
4294         endian ports (hc08)
4295
4296 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4297
4298         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4299         test
4300
4301 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4304         are sane and complete before asking the port its prefered parameter
4305         passing method (fixes bug #1017633)
4306         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4307         and _ret3
4308
4309 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4310
4311         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4312         problem in bitfields >= 8 bits.
4313
4314 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4315
4316         * src/SDCCsymt.c: undid changes that were not meant to be committed
4317
4318 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4319
4320         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4321
4322 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4323
4324         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4325           copied and wrong bit got inverted
4326
4327 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4328
4329         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4330         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4331         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4332         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4333         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4334         assignments to bitfields at known addresses
4335         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4336         reads from bitfields at known addresses
4337         * src/hc08/ralloc.c (packRegisters),
4338         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4339         genhc08Code): optimize pointer get values used as conditionals
4340         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4341         and branch
4342
4343 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4344
4345         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4346         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4347         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4348         as conditionals
4349
4350 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4351
4352         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4353
4354 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4355
4356         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4357         related problems
4358
4359 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4360
4361         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4362
4363 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4364
4365         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4366         mcs51 port
4367
4368 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4369
4370         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4371
4372 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4373
4374         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4375         cases use more compact code.
4376
4377 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4378
4379         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4380
4381 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4382
4383         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4384
4385 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4386
4387         * src/SDCCsymt.h,
4388         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4389         parameter of changePointer() from symbol* to sym_link*
4390         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4391         * src/SDCCsymt.c (compareType): void* type is castable to other
4392         pointers, but not necesarily an exact match.
4393         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4394         is no longer blindly treated as an exact match.
4395         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4396
4397 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4398
4399         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4400
4401 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4402
4403         * src/pic/gen.c,
4404         * src/pic/pcode.c,
4405         * src/pic/ralloc.h,
4406         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4407
4408 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4409
4410         * src/pic/device.c,
4411         * src/pic/device.h,
4412         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4413
4414 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4415
4416         * src/mcs51/gen.c (emitcode): fixed bug #992819
4417
4418 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4419
4420         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4421           there's no need to make it worse
4422
4423 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4424
4425         * src/mcs51/ralloc.c (deassignLR),
4426         * src/ds390/ralloc.c (deassignLR),
4427         * src/hc08/ralloc.c (deassignLR),
4428         * src/z80/ralloc.c (deassignLR),
4429         * src/pic/ralloc.c (deassignLR),
4430         * src/pic16/ralloc.c (deassignLR),
4431         * src/avr/ralloc.c (deassignLR),
4432         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4433         rlivePoint): fixed another part of bug #971834
4434
4435 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4436
4437         * src/z80/main.c: enabled "critical" keyword
4438         * src/z80/mappings.i,
4439         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4440         functions (fixes bug #979646)
4441         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4442
4443 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4444
4445         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4446           such as c:\mydir.
4447
4448 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4449
4450         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4451           doesn't disable too much optimizations
4452
4453 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4454
4455         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4456
4457 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4458
4459         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4460
4461 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4462
4463         * src/pic/gen.c tidied up tabs
4464         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4465         * src/pic/main.c tidied up tabs
4466         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4467         * src/pic/pcoderegs.c tidied up tabs
4468         * src/pic/ralloc.c tidied up tabs
4469
4470 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4471
4472         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4473         to S_FIXED for pic16 port and when symbol is not in level 0,
4474         allocate for S_REGISTER storage class and pic16 port, too,
4475         * src/pic16/device.h: prototype for checkSym,
4476         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4477         * (pic16_assignConfigWordValue): test the value and the mask to
4478         validate that the value is suitable for the configuration word,
4479         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4480         collect extern declared symbols, don't emit symbol twice, check
4481         first if symbol is in publics set first,
4482         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4483         * added command line '--fstack' which enables an experimental
4484         feature for stack access, too buggy to be used yet...
4485         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4486         * (pic16_allocDirReg): when register has storage class S_REGISTER
4487         allocate in pic16_dynAccessRegs,
4488         * device/include/pic16/pic18f????.h: modified configuration word
4489         naming convention, words started as CONFIG0H but should be CONFIG1H
4490
4491 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4492
4493         * device/include/mcs51reg.h: fixed bug 970993
4494
4495 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4496
4497         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4498         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4499         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4500         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4501         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4502         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4503           error/warning numbers,
4504           added function setWarningDisabled()
4505         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4506         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4507           _memcmp.c _memmove.c calloc.c realloc.c free.c
4508         * support/regression/tests/malloc.c: added tests for new functionality
4509         * support/regression/tests/zeropad.c: added tests for truncated initializers
4510           and initialized char arrays starting with '\x0'
4511         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4512
4513 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4514
4515         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4516
4517 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4518
4519         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4520         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4521         peephole 177.e. Thanks to anonymous
4522
4523 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4524
4525         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4526         function isn't used in the source but referenced as a
4527         variable initializer then declare it as extern in .asm file
4528
4529 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4530
4531         * .version: increased version number to 2.4.3
4532
4533         Adding version extension according to ChangeLog CVS revision
4534         * src/Makefile.in (target all): added dependency 'version.h'
4535         * (rule version.h): added rule to create version.h from ChangeLog,
4536         * (rule dep): added dependency version.h,
4537         * src/version.awk: AWK script to create version.h
4538         * src/SDCCdwarf2.c (dwWriteModule),
4539         * src/SDCCglue.c (initialComments),
4540         * src/SDCCmain.c (printVersionInfo): modified to write after
4541         version string the version extension number,
4542         * src/SDCCutil.c: included "version.h"
4543         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4544         number,
4545         * src/SDCCutil.h: added prototype for getBuildNumber
4546
4547         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4548         includeDirsSet, too,
4549         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4550         const char [] is found in function prototype...
4551
4552         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4553         moving to WREG with source is already in WREG,
4554         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4555         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4556         * (aopForSym): stack'ed symbols are partially supported, added
4557         if-clause to support symbols in FARSPACE,
4558         * (sameRegs): added test for AOP_ACC to see if registers are same,
4559         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4560         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4561         * (pic16_popRegFromString): will not allocate a new register if it
4562         doesn't find one by name, bug may have introduced...
4563         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4564         * (genIpush): revived to use pic16 port's stack,
4565         * (genAddrOf): added incomplete case for stack'ed operand,
4566         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4567         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4568         can handle multibyte operands,
4569         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4570         * (pic16initialComments): added message for MPLAB compatibility
4571         mode enabled,
4572         * src/pic16/main.h: prototype for pic16_mplab_comp,
4573         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4574         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4575         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4576         because of increased complexity of procedure,
4577         * (_process_pragma): stack pragma changed to format 'stack pos len',
4578         emit symbol '_stack_end' to conform with gplink,
4579         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4580         to search for register,
4581         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4582         PO_GPR_REGISTER,
4583         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4584         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4585         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4586         case for PO_GPR_REGISTER,
4587         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4588         dies, the new era is ahead !...
4589         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4590         pic16_dynInternalRegs,
4591         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4592         * (pic16_allocDirReg): minor optimizations and bug fixes,
4593         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4594
4595         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4596         load stack and frame pointer with address of 'stack_end' symbol
4597
4598 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4599
4600         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4601         without source code but only variable initializers
4602
4603 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4604
4605         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4606         external are not declared as extern to reduce overhead while linking
4607
4608 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4609
4610         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4611
4612 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4613
4614         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4615           Yee Keat for the patch
4616         * src/SDCCast.c (decorateType): fixed bug #979599
4617         * src/ds390/gen.h: removed local fReturnSizeDS390
4618         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4619         * src/ds390/gen.c (genAnd, genOr, genXor),
4620         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4621
4622 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4623
4624         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4625         add relFilesSet to $3, manipulate $2 to handle linking of object
4626         files without source files in command line,
4627         * device/include/pic16 (all headers): added ID location macros,
4628         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4629         entries for ID location bytes,
4630         * (pic16_assignIdByteValue): NEW,
4631         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4632         added field dumpcalltree to pic16_options_t,
4633         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4634         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4635         emitting rFalseIfx label after check_carry label,
4636         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4637         pic16_emitDIRegs), NEW
4638         * (pic16glue): dump .calltree file when option --calltree found,
4639         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4640         * (_pic16_genAssemblerPreamble): emit ID locations after
4641         configuration registers,
4642         * (pic16_linkCmd): modifications of the link command,
4643         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4644         * (pic16_pCodeInitRegisters): don't init stack registers,
4645         * (pic16_findPrevInstruction): fixed bug,
4646         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4647         bug with immediate registers,
4648         * (buildCallTree): traces stack push and pop,
4649         * (pct2): dump also stack usage for each function,
4650         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4651         * (pic16_allocDirReg): various modifications,
4652         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4653         fixed to 1,
4654
4655 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4656
4657         * src/pic16/pcode.c: removed buggy double colon
4658
4659 2004-07-01 Borut Razem <borut.razem AT siol.net>
4660
4661         * support/scripts/sdcc.nsi: added include/pic16 to setup
4662
4663 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4664
4665         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4666         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4667         target 'clean',
4668         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4669         specific command line arguments. Also added sample lkr script
4670         for placing a variable at a specific memory bank.
4671         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4672         at a specific memory bank,
4673         * (pic16_dump_isection): fixed bug which caused string literals to
4674         be omitted when dumping idata section,
4675         * (pic16_groupRegistersInSection): added code to handle registers
4676         in specific memory banks,
4677         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4678         public, all references are renamed too,
4679         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4680         AOP_DPTR2,
4681         * (pic16_storeForReturn): added case to handle when dest is WREG,
4682         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4683         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4684         pic16_rel_udata, check to see if that register is marked as being
4685         a member of a specific memory bank,
4686         * (pic16_printIvalCharPtr): added code to add string literals either
4687         to code or the idata sections,
4688         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4689         also accept the 'udata' pragma,
4690         * src/pic16/main.h: new structure types sectName and sectSym
4691         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4692         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4693         * (pic16_findPrevInstruction): fixed, it returned nothing,
4694         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4695         instruction combinations,
4696         * (pic16_FixRegisterBanking): heavily reorganised,
4697         * (pic16_AnalyzeBanking): if generating banksel directives is
4698         disabled, then don't call FixRegisterBanking at all,
4699         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4700         completely removed,
4701         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4702
4703 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4704
4705         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4706         Phuah Yee Keat <yk.phuah AT nestac.com>
4707
4708 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4709
4710         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4711         correctly the IVT even if it is relocated to some other location
4712
4713 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4714
4715         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4716         * device/include/pic16/pic18f2220.h: NEW,
4717         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4718         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4719         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4720         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4721         nodefaultlibs, ivt_loc is the location of the interrupt vector
4722         table, and nodefaultlibs signs that default libraries should not be
4723         linked in link stage,
4724         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4725         according to --ivt-loc argument,
4726         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4727         when pragma stack is found,
4728
4729 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4730
4731         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4732         256 (range check), 257 (do while), 258.a-f (bit banging
4733         f.e. on 3-wire SPI bus)
4734
4735 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4736
4737         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4738         variables used exclusively within a loop
4739
4740 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4741
4742         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4743
4744 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4745
4746         * src/SDCClrange.c (computeClash): fixed bug #971834
4747
4748 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4749
4750         * src/mcs51/gen.c (genCmp): fixed bug #975903
4751         * src/hc08/gen.c (operandsEqu),
4752         * src/ds390/gen.c (operandsEqu),
4753         * src/z80/gen.c (operandsEqu),
4754         * src/pic/gen.c (operandsEqu),
4755         * src/pic16/gen.c (operandsEqu),
4756         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4757         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4758
4759 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4760
4761         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4762
4763 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4764
4765         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4766         default case in switch statement,
4767         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4768         to eliminate problem with initialisation of pointers, but problem
4769         still exists,
4770         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4771         * (emitStaticSegment): removed various lines emitting debug info,
4772         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4773         added processor registers for utilizing EEPROM,
4774         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4775         configurable and set 8
4776
4777 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4778
4779         * .version: increased version number to 2.4.2,
4780
4781         Cumulative patch for pic16 port
4782         * src/pic16/device.c: changed scheme to dump initial values for
4783         variables in idata segment, all print_idata* functions were removed,
4784         now the pic16_printIval* will be called,
4785         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4786         * _pic16_printPointerType, pic16_printPointerType,
4787         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4788         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4789         NEW, similar to the respective functions in SDCCglue.c,
4790         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4791         way, emitting hex bytes,
4792         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4793
4794 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4795
4796         * src/avr/ralloc.c (serialRegAssign),
4797         * src/xa51/ralloc.c (serialRegAssign),
4798         * src/pic/ralloc.c (serialRegAssign),
4799         * src/pic16/ralloc.c (serialRegAssign),
4800         * src/hc08/ralloc.c (serialRegAssign),
4801         * src/z80/ralloc.c (serialRegAssign),
4802         * src/ds390/ralloc.c (serialRegAssign),
4803         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4804
4805 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4806
4807         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4808         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4809
4810 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4811
4812         Cumulative patch for pic16 port:
4813         * src/pic16/device.h (typedef PIC16_device) modified fields for
4814         defining microcontrollers,
4815         * src/pic16/device.c: added new info for all devices in Pics16 array,
4816         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4817         to be optimised out by the pCode optimiser,
4818         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4819         specially, bug reported by G.M. Gallant,
4820         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4821         as force'd so that cannot be optimised out by pCode optimiser,
4822         * src/pic16/pcode.c,
4823         * src/pic16/pcodepeeph.c,
4824         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4825         they are disabled by default, but can be enabled explicit with
4826         command argument --denable-peeps, for testing,
4827         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4828         --pomit-ivt in COMPILE_FLAGS
4829
4830 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4831
4832         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4833           compilation on MSVC
4834
4835 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4836
4837         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4838
4839 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4840
4841         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4842         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4843
4844 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4845
4846         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4847         would only assign 0x300001 register.
4848
4849 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4850
4851         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4852         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4853
4854 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4855
4856         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4857         for ds80c400
4858         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4859         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4860         added peephole 254 (left shift), 255 (jump table)
4861
4862 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4863
4864         * device/lib/Makefile.in: removed comment line with model-pic16,
4865         * (target port-specific-objects-pic16): the libraries and objects
4866         are copied to the build directory form the device/lib/pic16/bin
4867         directory
4868
4869         Cumulative patch concerning pic16 port:
4870         * library directory has been re-organized,
4871         * added support for PIC18F1220,
4872         * added headers and library sources for chips 18f1220,18f6520,
4873         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4874
4875         * configuration registers setting has changed, now each supported
4876         device has a complete description of the registers it uses,
4877         * all initialisations are moved to idata sections, these section
4878         can be absolute or relocatable,
4879         * fixed initialisation of codespace variables,
4880         * fixed warning about PCLATU and gpsim,
4881         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4882         * (genAssign): use table reads when assigning from variables in codespace,
4883         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4884         char/int variables placed in codespace,
4885         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4886         registers set in .asm file, no need for --pomit-config-words anymore,
4887         * (pic16glue): some 8051 legacy segments are commented out
4888         (to be removed completely),
4889         * added support for alternative assembler and linker with --asm=
4890         and --link= command line arguments,
4891         * peepholes are disabled automatically in the port, no need to
4892         specify on command line,
4893         * port supports natively char/int/long multiplication, but converts
4894         all divisions to support functions,
4895         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4896         to the file set in variable $2,
4897         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4898         strings in ASCII format and not in hex,
4899         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4900         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4901         allocate proper register if iCodes aren't temporary,
4902
4903 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4904
4905         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4906
4907 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4908
4909         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4910         is commented out
4911
4912 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4913
4914         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4915         computed address is reused
4916         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4917         multi-byte bitfields
4918
4919 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4920
4921         * src/z80/gen.c: (genArrayInit): must check for pointers too
4922
4923 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4924
4925         * support/regression/tests/zeropad.c: never meant to commit the
4926           nestedstruct test: removed, added check for GCC version
4927
4928 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4929
4930         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4931         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4932         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4933           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4934           bugs 928906 and 954082 half-empty initializers
4935         * src/SDCCsymt.h,
4936         * src/SDCCsymt.c (getAllocSize): added for above fix
4937         * src/z80/gen.c (genArrayInit): fixed bug 741044
4938         * support/regression/tests/zeropad.c: added tests
4939
4940 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4941
4942         * src/pic16/device.c (pic16_dump_section): corrected bug which
4943         caused some symbols of the libraries to be misplaced
4944
4945 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4946
4947         * src/pic16/glue.c,
4948         * src/pic16/ralloc.h,
4949         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4950         to fix conflict with pic port
4951
4952 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4953
4954         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4955         externs configuration variables,
4956         * src/pic16/ralloc.h,
4957         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4958         prototype in header, commented out some debug messages
4959
4960 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4961
4962         * src/pic16/glue.c,
4963         * src/pic16/main.c,
4964         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4965         for gpasm COFF object generation. Thanks to D. Hawkins for
4966         his patch info
4967
4968 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4969
4970         * src/ds390/main.c,
4971         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4972         Brock for spotting this)
4973         * src/ds390/gen.c (genEndFunction),
4974         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4975         interrupt handler and critical. Disable push/pop optimizations when
4976         peephole optimizations disabled.
4977
4978 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4979
4980         Updated pic16 library sources and headers.
4981         * device/lib/pic16/pic18f*/ ,
4982         * device/include/pic16/*.h: modified to handle structured SFR
4983         definitions
4984
4985 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4986
4987         * src/port.h (PORT structure): added hook initPaths, now each
4988         port can declare its own default search paths,
4989         which can been seen with the --print-search-dirs option,
4990         see pic16 port for example,
4991         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4992         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4993         * (doPrintSearchDirs): NEW, replaces in a central manner the
4994         printing of search dirs which was split in set*Paths functions,
4995         * (main): added call to port->initPaths and doPrintSearchDirs,
4996         * src/avr/main.c,
4997         * src/ds390/main.c,
4998         * src/hc08/main.c,
4999         * src/izt/i186.c,
5000         * src/izt/tlcs900h.c,
5001         * src/mcs51/main.c,
5002         * src/pic/main.c,
5003         * src/pic16/main.c: modified port structures to reflect addition of
5004         initPaths hook,
5005
5006         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5007         * (pic16_dump_section): for registers in same address reserve memory once,
5008         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5009         to no_banksel,
5010         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5011         result is greater in size than right or left,
5012         * (pic16_genUMult8X8_8): there are some cases where the result can
5013         be 16 bits size, so handle these,
5014         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5015         * (pic16_outBitC): modified to emit pcodes,
5016         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5017         or not,
5018         * (genDivOneByte): implemented algorithm to divide 8-bits,
5019         * (genCmp): uncommented goto, but issues still exist,
5020         * (genAnd): fixed a bug with variables >8bits,
5021         * (genPackBits): optimization added that uses BCF/BSF to change a
5022         single bit,
5023         * (genAssign): fixed bug when assigning floating point literals,
5024         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5025         __sdcc_gsinit_startup label,
5026         * src/pic16/main.c (_pic16_init): removed search directory
5027         initialisations,
5028         * (_pic16_initPaths): NEW, used to initialise search directories,
5029         * (_hasNativeMulFor): support functions for all except char/int
5030         multiplication, and char division,
5031         * (PIC16_port struct): modified entry for native mul support,
5032         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5033         no_banksel option,
5034         * (buildCallTree): call to register_usage is ifdef'ed out,
5035
5036 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5037
5038         * device/include/string.h: applied Stas Sergeev's patch to make this
5039         header file compatible with the preprocessor -Wundef option
5040         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5041         failure (fixes bug #941458)
5042
5043 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5044
5045         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5046         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5047         that the variable, not the function, should be static
5048         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5049         to be consistent with non-literal case
5050
5051 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5052
5053         * src/SDCCast.c (isConformingBody): fixed bug #949967
5054         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5055         convilong): fixed bug #952086
5056
5057 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5058
5059         * src/SDCCmem.c (allocVariables): fixed bug #955321
5060
5061 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5062
5063         * src/hc08/main.c (_hc08_genAssemblerEnd),
5064         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5065         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5066         completely eliminated the use of a temporary file
5067         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5068         when more than one file linked
5069         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5070
5071 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5072
5073         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5074         which fixes bug #543481
5075         * support/regression/tests/bug-751703.c: fixed comments left from a
5076         cut and paste error
5077         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5078         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5079         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5080         scopes
5081         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5082         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5083         are now changed to underscores in moduleName
5084
5085 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5086
5087         * as/mcs51/lkmem.c: better fix for bug #954173
5088
5089 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5090         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5091
5092         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5093         * device/include/c8051f000.h,
5094         * device/include/c8051f120.h,
5095         * device/include/c8051f300.h,
5096         * device/include/c8051f310.h,
5097         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5098         PWM16) and detab'ed
5099
5100 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5101
5102         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5103         and mailing lists, doc'ed --no-peep-comments, removed reference
5104         to knoppix (newest version has no LyX/LaTeX), other minor changes
5105         * src/SDCCglue.c (glue): save 2 bytes stack space with
5106         option --main-return. The ljmp could probably be avoided too
5107
5108 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5109
5110         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5111
5112 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5113
5114         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5115         * src/SDCCopt.c (isLocalWithoutDef),
5116         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5117         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5118         (credit to Maarten Brock for patch #949363, on which this is based)
5119         * support/regression/tests/bug-751703.c: some test cases of extern used
5120         within inner scopes.
5121
5122 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5123
5124         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5125         SPEC_STRUCT
5126         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5127         struct definitions
5128         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5129         dwWriteLabel): fix to create valid debugger symbols even when
5130         the module name has non-alphanumeric symbols in it
5131         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5132         when a variable's allocation has been optimized away
5133
5134
5135 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5138         * src/hc08/main.c,
5139         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5140         * src/mcs51/main.c,
5141         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5142         * src/ds390/main.c,
5143         * src/z80/gen.c (z80_emitDebuggerSymbol),
5144         * src/z80/main.c,
5145         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5146         * src/pic/main.c,
5147         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5148         * src/pic16/main.c,
5149         * src/avr/gen.c (avr_emitDebuggerSymbol),
5150         * src/avr/main.c,
5151         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5152         * src/xa51/main.c,
5153         * src/SDCCdebug.c (emitDebuggerSymbol),
5154         * src/SDCCdebug.h,
5155         * src/port.h: added a debugger struct to the port struct. Added a
5156         callback for defining debugger symbols
5157
5158         * src/SDCCast.c (createLabel),
5159         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5160         with isitmp = 1
5161         * src/SDCCicode.h,
5162         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5163         iCode back to the ast for the function
5164
5165         * src/hc08/ralloc.c (hc08_assignRegisters),
5166         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5167         unneeded fields from the regs struct.
5168         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5169         pushReg() & pullReg() functions instead of emitcode()
5170
5171         * src/hc08/gen.c (genLabel, genhc08Code),
5172         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5173
5174         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5175         debugger hooks
5176
5177         * src/hc08/gen.c (genEndFunction, genhc08Code),
5178         * src/hc08/gen.h,
5179         * src/mcs51/gen.c (genEndFunction, gen51Code),
5180         * src/mcs51/gen.h,
5181         * src/ds390/gen.c (genEndFunction, gen390Code),
5182         * src/ds390/gen.h,
5183         * src/z80/gen.c (genEndFunction, genZ80Code),
5184         * src/z80/gen.h,
5185         * src/z80/z80.h,
5186         * src/pic/gen.c (genEndFunction, genpic14Code),
5187         * src/pic/gen.h,
5188         * src/pic16/gen.c (genEndFunction, genpic16Code),
5189         * src/pic16/gen.h,
5190         * src/avr/gen.c (genEndFunction, genAVRCode),
5191         * src/avr/gen.h,
5192         * src/xa51/gen.c (genEndFunction, genXA51Code),
5193         * src/xa51/gen.h,
5194         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5195         specific code to cdbFile.c and out of the backend code generators
5196
5197         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5198         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5199         starting address is now 0
5200
5201         * as/hc08/asm.h,
5202         * as/hc08/m08pst.c,
5203         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5204         assembler directive for DWARF support
5205         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5206
5207         * src/src.dsp,
5208         * src/Makefile.in,
5209         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5210
5211 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5212
5213         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5214         and inappropriate peephole optimization in jump tables
5215
5216 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5217
5218         * as/hc08/m08pst.c,
5219         * src/SDCCglue.c: sdccopt works for the hc08 port now
5220
5221 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5222
5223         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5224
5225 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5226
5227         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5228
5229 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5230
5231         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5232         rules
5233         * src/SDCCmain.c,
5234         * src/SDCCglobl.h,
5235         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5236         comments from the peephole optimizer replacement rules
5237         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5238         symbols
5239         * src/SDCCcse.c (updateSpillLocation),
5240         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5241         equivalents
5242         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5243         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5244         objects far pointers
5245
5246 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5247
5248         * src/SDCCsymt.h: a missing part of my last change
5249         * src/pic/ralloc.c (regTypeNum),
5250         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5251
5252 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5253
5254         * src/SDCCicode.h,
5255         * src/SDCCicode.c (aggrToPtrDclType),
5256         * src/SDCCptropt.h,
5257         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5258         ptrPseudoSymConvert),
5259         * src/pic/ralloc.c (regTypeNum),
5260         * src/pic16/ralloc.c (regTypeNum),
5261         * src/hc08/ralloc.c (regTypeNum),
5262         * src/ds390/ralloc.c (regTypeNum),
5263         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5264         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5265
5266 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5267
5268         * link/z80/lkmain.c (afile),
5269         * as/hc08/lkmain.c (afile),
5270         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5271         prevent a pointer problem when a filename has no directory and
5272         no extension specified.
5273
5274 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5275
5276         * link/z80/lkmain.c (afile): allow periods in directory names
5277         * link/z80/lkmain.c (afile),
5278         * as/mcs51/lkmain.c (afile),
5279         * as/hc08/lkmain.c (afile): allow linker script file to have an
5280         extension other than ".lnk"
5281         * link/z80/lklex.c (getfid),
5282         * link/z80/lkmain.c (parse),
5283         * as/mcs51/lklex.c (getfid),
5284         * as/mcs51/lkmain.c (parse),
5285         * as/hc08/lklex.c (getfid),
5286         * as/hc08/lkmain.c (parse): Support comments in the linker script
5287         file on lines by themselves and after filenames
5288
5289 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5290
5291         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5292
5293 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5294
5295         * src/z80/peeph-z80.def: removed some peephole rules that don't
5296         work with multibyte arithmetic (fixed bug #937126)
5297         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5298         to registers and not global variables
5299         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5300         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5301         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5302         checking for assignments not internally generated (fixed bug #931895)
5303         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5304         structure member (fixed bug #930072)
5305
5306 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5307
5308         * src/SDCCmain.c (linkEdit),
5309         * src/hc08/main.c (_hc08_parseOptions),
5310         * as/hc08/Makefile.in,
5311         * as/hc08/aslink.h,
5312         * as/hc08/asm.h,
5313         * as/hc08/m08pst.c,
5314         * as/hc08/lkrloc.c (relr, rele),
5315         * as/hc08/lkarea.c (lnkarea)
5316         * as/hc08/lkmain.c (afile, parse),
5317         * as/hc08/lkelf.c: support for ELF output
5318         * as/hc08/lks19.c (s19),
5319         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5320
5321 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5322
5323         * as/mcs51/lkihx.c: Fixed bug #899105.
5324
5325 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5326
5327         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5328         .dsp files from Unix to DOS.
5329
5330 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5331
5332         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5333         function pointers; we have been compliant for several months now.
5334         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5335         change that was accidently commented out
5336         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5337         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5338         bug #922319
5339
5340 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5341
5342         * src/hc08/gen.c: output of all of the internal debugging information
5343         is now controlled by the D() macro; it is disabled by default
5344
5345 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5346
5347         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5348         harder to keep the same registers during a CAST iCode
5349         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5350         long via int can be done in a single cast, if the signedness is
5351         correct.
5352         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5353         putchar() in tinibios.c in ds390's library
5354
5355 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5356
5357         * src/SDCCast.c (decorateType): fixed bug #898889,
5358         cast result of a literal complement too
5359         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5360         fixed check for bitfields
5361
5362 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5363
5364         * src/SDCCicode.c (geniCodeLogic): made it static,
5365         (geniCodeLogicAndOr): added in order to fix bug #905492,
5366         (ast2iCode): fixed bug #905492
5367         * support/regression/tests/bug-905492.c: added
5368         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5369         (processParms): fixed bug #927659: don't copy parms, this will clear
5370         decorated flag
5371         * support/regression/tests/bug-927659.c: added
5372
5373 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5374
5375         * src/SDCCast.c (addCast): don't cast float to char
5376         * device/lib/libsdcc.lib: added _memmove
5377
5378 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5379
5380         * device/lib/large/Makefile: fixed parallel execution by
5381         replacing `make` by `$(MAKE)`
5382
5383 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5384
5385         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5386         offsets (fixes bug #923936)
5387
5388 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5389
5390         * device/lib/small/Makefile: fixed parallel execution by
5391         replacing `make` by `$(MAKE)`
5392
5393 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5394
5395         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5396
5397 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5398
5399         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5400         * src/regression/Makefile: Regression test was not running.
5401
5402 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5403
5404         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5405         complement if possible
5406         * src/SDCCval.c (valComplement),
5407         * src/SDCCicode.c (operandOperation): fixed complement of literal
5408         * support/regression/tests/onebyte.c (testComplement): added
5409
5410 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5411
5412         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5413         return an optimized tree; actually replace actParm with the new tree
5414         * src/SDCCast.h: added some parantheses to remove side effects
5415         * support/regression/tests/bug-920866.c
5416
5417 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5418         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5419         Bit operands were not being handled properly in the pic14 port.
5420         (now src/regression/add.c passes again).
5421
5422 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5423
5424         * src/SDCC.y (labeled_statement): case and default no longer require
5425         a following statement (RFE #893037)
5426
5427 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5428
5429         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5430         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5431         disabled (fixes bug #916294)
5432         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5433         "mov a,acc"; patch provided by Lenny Story
5434         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5435
5436 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5437
5438         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5439         functions
5440         * src/ds390/gen.c (genFunction, genEndFunction),
5441         * src/ds390/ralloc.c (ds390_assignRegisters),
5442         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5443         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5444         pushed if there are parameters passed on the stack. Also, a cleaner
5445         way to decide if r0/r1 should be pushed/popped. (Together they fix
5446         bug #918693)
5447
5448 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5449
5450         * doc/sdccman.lyx,
5451         * device/lib/mcs51/crtpagesfr.asm,
5452         * device/lib/mcs51/crtxinit.asm,
5453         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5454         to avoid confusion with Si Lab's SFRPAGE register.
5455
5456 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5457
5458         * src/SDCCglue.c (emitMaps): allow public sfr variables
5459         * src/SDCCglue.c (initialComments): include compiler build date
5460         with compiler version and put the timestamp of the generated
5461         assembly file on a serperate line to be less confusing.
5462         * src/port.h: added genInitStartup hook
5463         * src/avr/main.c,
5464         * src/ds390/main.c,
5465         * src/hc08/main.c,
5466         * src/pic/main.c,
5467         * src/pic16/main.c,
5468         * src/xa51/main.c,
5469         * src/z80/main.c: genInitStartup initialize as NULL (default to
5470         historical behaviour)
5471         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5472         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5473         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5474         library instead of hard coding it into the compiler.
5475         * support/regression/ports/mcs51-stack-auto/spec.mk,
5476         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5477         * device/lib/mcs51/Makefile,
5478         * device/lib/small/Makefile,
5479         * device/lib/large/Makefile,
5480         * device/lib/mcs51/crtpagesfr.asm,
5481         * device/lib/mcs51/crtstart.asm,
5482         * device/lib/mcs51/crtxclear.asm,
5483         * device/lib/mcs51/crtxinit.asm,
5484         * device/lib/mcs51/crtclear.asm,
5485         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5486         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5487         and into user configurable files.
5488         * device/lib/clean.mk: clean mcs51 directory too
5489         * support/regression/tests/longlit.c: added static to T1 declaration
5490         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5491         accesses in the initialization code
5492
5493 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5494
5495         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5496         OSCTRIMVAL as noted in bug #916008
5497
5498 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5499
5500         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5501         in loops with multiple exits (reported as incorrect registers
5502         used by Martin Helmling in Sdcc-user list)
5503
5504 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5505
5506         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5507         made ds390 register extensions look less like error messages
5508
5509 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5510
5511         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5512         reported by Adam Wozniak in Sdcc-user list
5513
5514 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5515
5516         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5517         arithmetic optimizations, added debug output
5518
5519 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5520
5521         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5522         * sdcc.spec: updated and split sdcc into 3 rpms
5523         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5524         needed for literals of LEFT_OP and '+'
5525         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5526         introduced RESULT_TYPE_NOPROM
5527         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5528         left shift
5529         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5530         limited promotion to int only for '*'
5531         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5532
5533 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5534
5535         * src/pic16/gen.c (genSkip),
5536         (genc16bit2lit), (gencjneshort): commented out
5537         (is_LitOp): new helper function, checks operand type
5538         (genCmpEq): rewritten
5539
5540 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5541
5542         * support/regression/tests/bug-908454.c: added
5543
5544 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5545
5546         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5547         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5548         (geniCodeCast): cosmetic, don't preserve bit storage class
5549         (geniCodeLeftShift): added promotion
5550         (geniCodeLogic): fixed regression
5551         * src/SDCCsymt.c (computeTypeOr): accept bits too
5552         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5553
5554 2004-03-07  Borut Razem <borut.razem AT siol.net>
5555
5556         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5557
5558 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5559
5560         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5561         version of pic16_genPackRegisters which does not check if ic is a
5562         CAST operator,
5563         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5564         function cause string1.c regression test fails
5565
5566 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5567
5568         * sim/ucsim/configure.in,
5569         * sim/ucsim/configure,
5570         * sim/ucsim/doc/Makefile.in: use docdir
5571         * src/SDCC.y: fixed sbit atrributes
5572         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5573         * src/SDCCast.c (decorateType): |^& need special promotion handling
5574         * src/SDCCast.h,
5575         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5576         * src/SDCCsymt.h (computeType),
5577         * src/SDCCicode.c: computeType() needs op
5578         * src/SDCCsymt.c (checkTypeSanity),
5579         * doc/sddman.lyx: "plain" bitfields are unsigned
5580         * src/SDCCsymt.c (computeTypeOr): added
5581         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5582         |^& ops
5583         * src/SDCCval.c (val*): computeType() needs op
5584         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5585         * support/regression/tests/onebyte.c: added tests for |^&
5586
5587 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5588
5589         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5590         for writing icode into asm output.
5591
5592 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5593
5594         * src/pic16/device.c: added some debug lines enabled
5595         with macro DEBUG_CHECK,
5596         * src/pic16/genarith.c: more debug in genPlus,
5597         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5598         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5599         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5600         * (aopForSym): onStack symbols are re-placed in data memspace,
5601         and onStack flag is cleared,
5602         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5603         copy temporary pcodeop,
5604         * (genPcall): added warning for not updating PCLATU,
5605         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5606         always true for pic16 port,
5607         * (genMultOneWord): NEW, supports integer multiplication,
5608         * (genMult): modified to call genMultOneWord,
5609         * (ifxForOp): added warning when return NULL,
5610         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5611         flag is set before call to operandFromSymbol for implicit
5612         added structures,
5613         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5614         options.intlong_rent are set by default,
5615         * (_hasNativeMulFor): modified to allow port generation of integer
5616         multiplication,
5617         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5618         set regtype to REG_SFR for all registers, restricting seting the
5619         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5620
5621 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5622
5623         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5624         more than 500 times in the regression tests
5625
5626 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5627
5628         * support/Util/SDCCerr.h,
5629         * support/Util/SDCCerr.c,
5630         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5631         enumerator_list),
5632         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5633         for symbol conflicts.
5634         * support/valdiags/tests/enum.c,
5635         * support/valdiags/tests/tentdecl.c,
5636         * support/valdiags/tests/struct.c: expect possible error messages
5637         referring to original symbol definitions.
5638         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5639         * src/SDCCsymt.h,
5640         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5641
5642 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5643
5644         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5645
5646 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5647
5648         * src/pic16/ralloc.c (newReg): fixed bug #908929
5649
5650 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5651
5652         * src/ds390/gen.c: added missing #include "main.h"
5653
5654 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5655
5656         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5657         checking if symbol is already in set,
5658         * src/pic16/device.h: prototype for checkAddSym,
5659         * src/pic16/gen.c: (_G): added entry interruptvector,
5660         * (assignResultValue): removed some commented out lines,
5661         * (genFunction): check for ISR via sym->type, absolute section for
5662         interrupt code is created via a new pBlock, the goto instruction is
5663         placed now correctly at the interrupt vector position, changed all
5664         references from ivec to _G.interruptvector,
5665         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5666         is the interrupt is a high priority one, same for return from ISR,
5667         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5668         externs to calls of checkAddSym,
5669         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5670         pic16_pcode_verbose flag is set,
5671         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5672         * src/pic16/pcoderegs.c: message about how many registers are saved
5673         will only be emitted if pic16_pcode_verbose flag is set,
5674
5675 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5676
5677         * src/ds390/ralloc.h,
5678         * src/ds390/ralloc.c (ds390_regWithIdx),
5679         * src/ds390/gen.c (emitcode),
5680         * src/ds390/main.h,
5681         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5682         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5683         ds390operandCompare, getRegsRead, getRegsWritten,
5684         initializeAsmLineNode): customized instruction size calculation for
5685         ds390, started basis for some register optimizations
5686         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5687         corresponding assembly output
5688         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5689         missing push/pop of r0/r1. Optimized push/pops
5690
5691 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5692
5693         * src/mcs51/main.c (instructionSize): fixed ACALL size
5694         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5695
5696 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5697
5698         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5699         the sorting of rlist with NULL elements
5700         * (print_idataType, print_idata): NEW to create idata sections
5701         * src/pic16/device.h: idataSymSet new variable
5702         * src/pic16/gen.c (genFunction): fixed some bugs in string
5703         comparing, improved the absolute section creation for ISRs,
5704         added FSR0L/FSR0H in registers that are saved in an ISR,
5705         * (genInline): fixed the processing of inline snippets,
5706         now they undergo no process by the peephole optimizer
5707         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5708         are placed in idataSymSet,
5709         * (pic16emitStaticSeg): extern symbols are added in externs,
5710         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5711         switching when aboslute variables are placed in access bank memory
5712         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5713         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5714         commented out with #if,
5715         * (pic16_packRegisters): reintroduce the check for CAST because some
5716         symbols are not correctly handled,
5717         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5718         pCodeInstruction instead of pCode,
5719         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5720         pCodeAsmDir definition,
5721         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5722         directive, then the argument directive is emitted without the leading
5723         tab, hack for inline labels which must be in the first column,
5724         * (compareLabel,pic16_findNextInstruction),
5725         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5726         * (insertBankSwitch): modified for the new pCodeAsmDir,
5727
5728 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5729         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5730
5731         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5732         instance,
5733         * (pushSide): commented out with #if,
5734         * (assignResultValue): fixed some typos in saving
5735         registers,
5736         * (genPcall): FIXED and sync'ed with genCall,
5737         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5738         * (genNearPointerGet): fixed to handle some more cases,
5739         implementation scheme via table reads,
5740         * (genConstPointerGet): modified to access code memory correct,
5741         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5742         and improved to handle some cases
5743         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5744         instead of "RETLW" for init data
5745         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5746         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5747         variables are placed in access bank memory (<0x80 and >=0xf80),
5748         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5749         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5750         TBLWT_POSTDEC,TBLWT_PREINC
5751         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5752         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5753         directives
5754         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5755         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5756         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5757         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5758
5759 2004-02-29  Borut Razem <borut.razem AT siol.net>
5760
5761         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5762         support/Util/findme.h, support/Util/system.h: enhance binary relative
5763         search for lib and include by using findProgramPath()
5764
5765 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5766
5767         * src/SDCCpeeph.h,
5768         * src/SDCCpeeph.c (pcDistance),
5769         * src/port.h,
5770         * src/mcs51/ralloc.h,
5771         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5772         * src/mcs51/main.h,
5773         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5774         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5775         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5776         size calculation port specific, started basis for some register
5777         optimizations
5778         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5779         missing push/pop of r0/r1. Optimized push/pops
5780         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5781         * device/lib/_modsint.c (_modsint),
5782         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5783         and stack version so regression tests pass
5784
5785 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5786
5787         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5788         * src/SDCCast.c (decorateType): catch another small optimization
5789         with '?' operator
5790         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5791         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5792         modified to finally use computeType() all over SDCC,
5793         see Feature Request #877103
5794         * src/SDCCval.h: cosmetic
5795         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5796         valCompare(); regression tested in muldiv.c
5797         * support/regression/tests/muldiv.c (testMod): mod sign follows
5798         dividend only
5799
5800 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5801
5802         * src/SDCCast.c (decorateType): fixed bug #902362
5803         * doc/INSTALL.txt: fixed install instructions for win32
5804
5805 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5806
5807         * device/include/Makefile.in (install): fixed by replacing spaces
5808         by tabs
5809         * doc/README.txt,
5810         * doc/INSTALL.txt: updated for release
5811         * doc/sdccman.lyx: added warning for --xstack being buggy
5812
5813 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5814
5815         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5816         to eliminate build warnings.
5817         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5818
5819 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5820            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5821
5822         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5823         removed -penable-stack, added comment for stack pragma, added
5824         warning for not initializing the stack/frame registers, removed
5825         comment at interrupts section
5826
5827         Stack is made permanent, there is no ability to disable stack usage.
5828         * src/pic16/device.h,
5829         * src/pic16/device.c: removed all references to USE_STACK macro,
5830         * src/pic16/device.c (pic16_dump_section): when no elements in
5831         rlist, free rlist before return,
5832         * (pic16_dump_int_registers): NEW, internal registers are a new set
5833         of general purpose registers reused by each function,
5834         * (checkAddReg): returns 1 if registers is added to set,
5835         * (pic16_groupRegistersInSection): when a registers is of type
5836         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5837         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5838         SRCASECMP macro is moved here from device.c
5839         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5840         PO_PCLATU, PO_PRODL, PO_PRODH,
5841         * (pic16_pCodeOpType, genMinus,
5842         changed compares to "a" register, with AOP_ACC,
5843         * (pic16_genPlus): fixed some bugs and indented properly,
5844         * (pic16_addSign): changed size to size+offset in the MOVWF
5845         instruction,
5846         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5847         multiply 8-bit operand by literal, result is 8-bit,
5848         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5849         multiply 2 8-bit operand, result is 8-bit,
5850         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5851         genUMult8X*_16,
5852         * src/pic16/gen.c: changed accUse to contain WREG only,
5853         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5854         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5855         true, do not use immediate addressing any more unless sym is a
5856         pointer in codespace,
5857         * (aopForRemat): do not use immediate addressing when symbol not in
5858         codespace and when symbol's address is requested,
5859         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5860         accUse size (= 1),
5861         * (aopGet): added case for AOP_ACC and don't return "accumulator
5862         bug" but WREG instead,
5863         * (popGetTempReg): pushes contents of temporary register in stack,
5864         * (popReleaseTempReg): pops contents of temporary register from
5865         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5866         * (pic16_popGet): separated case AOP_ACC to return register WREG
5867         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5868         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5869         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5870         the use of immediate pointers to certain cases only.
5871
5872         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5873         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5874         * (assignResultValue, genCall, genRet): modified to use the new
5875         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5876         genPcall is still broken,
5877         * (genFunction): added code to create 'A' type pBlocks when
5878         interrupt functions are generated, code not extensively tested yet,
5879         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5880         * (genEndFunction): modified so ISRs pop stored registers from stack,
5881         * (genMultOneByte): cleanup,
5882         * (AccRsh): added flag andmask, to and result with appropriate mask,
5883         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5884         * (genDataPointerGet): fixed and reenabled its use,
5885         * (genNearDataPointerGet): bugs fixed,
5886         * (genDataPointerSet): bugs fixed,
5887         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5888         pic16_DumpSymbol, pic16_DumpOp,
5889         * src/pic16/genutils.h: function prototypes for the above functions,
5890         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5891         pointers,
5892         * (pic16emitRegularMap): many many many improvements, but needs a
5893         major cleanup,
5894         * src/pic16/main.c: enable_stack in pic16_options is removed,
5895         * (_pic16_parseOptions): removed command line options -penable-stack,
5896         * (_process_pragma): emit stack symbol only when stack pragma is
5897         processed,
5898         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5899         redirected to FSR0L/FSR0H pair,
5900         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5901         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5902         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5903         for immediates,
5904         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5905         * (dumpPicOptype): NEW,
5906         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5907         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5908         with movff instruction,
5909         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5910         added pic16_int_regs, some packRegsFor* functions are commented out,
5911         because produce errors,
5912         * src/pic16/NOTES: minor modifications
5913
5914 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5915
5916         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5917         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5918         --pack-iram.
5919         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5920         * as/mcs51/lkaomf51.c: fixed bug #895763
5921
5922 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5923
5924         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5925
5926 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5927
5928         * doc/sdccman.lyx: added details about the HC08 storage classes and
5929         interrupts, fixed the register usage info for z80 & gbz80
5930
5931 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5932
5933         * doc/sdccman.lyx: added more pic16 port documentation
5934         * device/include/pic16/: added header pic18fregs.h
5935
5936 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5937
5938         * doc/sdccman.lyx: added Vangelis' contribution
5939
5940 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5941
5942         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5943         extend to the next CALL or PCALL, not just to the next CALL.
5944
5945 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5946
5947         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5948
5949 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5950
5951         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5952         bug #895752 and a better fix for bug #716790
5953
5954 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5955
5956         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5957
5958 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5959
5960         * doc/sdccman.lyx: minor changes, minor changed
5961
5962 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5963
5964         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5965         which can't handle SDCC_NEWONEBYTEOPS,
5966         (geniCodeMultiply): removed conversion from mult to shift for pic14
5967         and pic16
5968
5969 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5970
5971         * src/hc08/gen.h,
5972         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5973         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5974         thus fixing bug #895406
5975
5976 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5977
5978         * device/lib/_modsint.c,
5979         * device/lib/_modslong.c: sign follows divisor only
5980         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5981         signs or signedness can be ignored
5982         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5983         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5984         added optimization for IFX,
5985         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5986         arguments;
5987         reenabled optimization for IFX, which was removed on 2004-01-11
5988         * src/SDCCast.h: added return type IFX
5989         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5990         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5991         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5992         SDCC_OLDONEBYTEOPS selects the old behaviour
5993         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5994         changed again and commented promotion rule
5995         * src/SDCCval.c (valDiv): promotion no longer necessary
5996         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5997         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5998         rewritten
5999         * support/regression/tests/onebyte.c: added
6000
6001 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6002
6003         * gen.c (genInline): reverted to old code for assemnling inline
6004         code because of bug reported James Chadd
6005
6006 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6007
6008         * ralloc.h: missing declarations from previous patch,
6009         seems that patch for ralloc.h was never applied, fixed
6010
6011 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6012            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6013
6014         * pcode.c,
6015         * pcode.h,
6016         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6017         indirect addressing. Marked FSR0 as deprecated
6018         * gen.c (pointerCode): commented out, not needed now
6019         (pic16_popGet2p): new MOVFF helper function
6020         (genGenPointerGet),
6021         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6022         (shiftRLong): removed duplicate debugging info
6023
6024 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6025
6026         * src/ds390/gen.c (genNearPointerGet),
6027         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6028         optimization with bits, but not bitfields.
6029         * src/ds390/ralloc.c (packRegisters),
6030         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6031
6032 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6033
6034         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6035
6036 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6037
6038         * src/SDCCsymt.h,
6039         * src/SDCCicode.c (operandFromSymbol),
6040         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6041         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6042         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6043         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6044         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6045         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6046         bug #892038
6047         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6048         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6049         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6050         * src/SDCCsymt.c (newSymbol),
6051         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6052         enumerator_list),
6053         * src/SDCCval.h,
6054         * src/SDCCval.c (newiList): fixed bug #885705
6055
6056 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6057
6058         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6059         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6060
6061 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6062
6063         * device/include/c8051f120.h,
6064         * device/include/c8051f300.h,
6065         * device/include/c8051f310.h: added/updated header files for Silicon
6066         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6067         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6068         in new section Submitting patches
6069
6070 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6071
6072         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6073         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6074         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6075         genGenPointerSet),
6076         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6077         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6078         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6079         genGenPointerSet),
6080         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6081         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6082         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6083         genGenPointerSet),
6084         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6085         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6086         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6087         genGenPointerSet): fixed bug #892400
6088         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6089         to eliminate build warnings.
6090         * src/SDCCast.c (processParms),
6091         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6092         fixed bug 751859
6093         * support/valdiag/valdiag.py: added GCC to the list of defines active
6094         when compiling with gcc
6095
6096 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6097
6098         * support/Util/SDCCerr.h,
6099         * support/Util/SDCCerr.c,
6100         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6101         with an incomplete type (fixed bug #883734)
6102         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6103
6104 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6105
6106         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6107
6108 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6109
6110         * src/SDCCast.c (decorateType),
6111         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6112         function pointer implementation
6113         * support/regression/tests/funptrs.c: added tests to verify both forms
6114         of function pointers work correctly. Added tests to verify parameters
6115         are passed in the correct order.
6116
6117 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6118
6119         * device.c (regCompare): registers are sorted by ascending
6120         address and increasing size,
6121         * main.c (_pic16_finaliseOptions): removed the declaration
6122         of compiler macro MCU. Now a macro of the format pic18fxxxx
6123         will be defined from the command line
6124
6125 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6126             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6127
6128         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6129         PCOP_RLCF was overwritten!
6130         * gen.c (genSkip): commented out calls to pic16_emitcode,
6131         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6132         * (genlshTwo),
6133         * (genRRC): added debugging info,
6134         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6135         overwritten while shifting,
6136         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6137         overwritten while shifting,
6138         * (AccLsh),
6139         * (AccRsh),
6140         * (shiftLLeftOrResult),
6141         * (shiftRLeftOrResult),
6142         * (shiftRLong),
6143         * (shiftLLong): Implemented with pic16_emitpcode
6144         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6145         * (genLeftShift): Fixed bug, operand for shift by variable always
6146         was "and"ed with 0x0f,
6147         * (genLeftShiftLiteral),
6148         * (genrshTwo),
6149         * (genRightShiftLiteral): added debugging info,
6150         * (genrshFour): added comment,
6151         * (genRightShift): determined signedness from operand "left"
6152         instead of "result"
6153
6154 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6155
6156         * src/SDCCicode.c (geniCodeParms),
6157         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6158         function pointers, fixed function pointer bugs #861242 and #861896
6159
6160 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6161
6162         * device/include/c8051f000.h,
6163         * device/include/c8051f120.h,
6164         * device/include/c8051f300.h: added header files for Silicon
6165         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6166
6167 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6168
6169         * src/SDCCast.c (processParams): added new type flow and restructured
6170         (gatherAutoInit): added new type flow
6171         (addCast): cosmetic changes
6172         (getLeftResultType): added new type flow for array indices, patch
6173         provided by Stas, see FR #877103
6174         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6175         array index patch by Stas
6176         * src/SDCCast.h: added prototype getResultTypeFromType()
6177         * src/SDCCval.h,
6178         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6179         * src/pic/glue.c (pic14emitStaticSeg),
6180         * src/pic16/glue.c (pic16emitStaticSeg),
6181         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6182         for initialization of symbols
6183         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6184         * support/Util/SDCCerr.h:
6185         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6186         * .version: bumped version number to 2.3.8
6187         * device/include/Makefile.in (install),
6188         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6189         avoid warnings
6190
6191 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6192
6193         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6194         Slade Rich fixed an optimization bug
6195         * src/pic/pcodepeep.c,
6196         * src/pic/pcoderegs.c
6197         * doc/Makefile (install): added test for directory
6198
6199 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6202         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6203         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6204         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6205         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6206         * as/mcs51/asexpr.c (term),
6207         * as/hc08/asexpr.c (term): fixed bug #887146
6208
6209 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6210
6211         * src/z80/gen.c (genMult): handle single byte result product
6212         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6213         DUMMY_READ_VOLATILE (fixed bug #886367)
6214
6215 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6216
6217         * support/regression/tests/libmullong.c: fixed logic, on little endian
6218         hosts we ended without a mullong_wrapper()
6219
6220 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6221
6222         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6223         virus/worm forged address usage.
6224
6225 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6226
6227         Fixed promotion, it should be done on AST level:
6228         * src/SDCCast.c (addCast): added promotion to int
6229         (decorateType): updated call to upCast()
6230         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6231         usualUnaryConversions()
6232
6233 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6234
6235         * support/regression/tests/literalop.c (mulWrapper): Added a
6236         wrapper to remove integer overflow warnings.
6237
6238         * support/regression/tests/float_trans.c: Made work on host.
6239
6240         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6241         location of sz80.
6242
6243         * support/regression/generate-cases.py (main): Changed from inline
6244         to a main method.
6245
6246         * doc/Makefile (install): Changed to depth first to get rid of
6247         missing directory install warning.
6248
6249         * as/Makefile (install-doc): Made work on Mac.
6250
6251 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6252
6253         * src/SDCCast.c: added an additional type flow in decorateType() of
6254         opposite direction, see feature request #860006; it's enabled at runtime
6255         by setting the environment variable SDCC_NEWTYPEFLOW
6256         * src/SDCCast.h: changed prototype of decorateType()
6257         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6258         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6259         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6260         see feature request #877103
6261         * src/SDCCval.c: updated call of decorateType()
6262         (valBitwise): fixed bug #882876
6263         (valMinus): added promotion
6264         (valLogicAndOr): result is unsigned
6265         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6266         * src/SDCCsymt.c (computeType),
6267         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6268         must not cause an unsigned operation
6269         * src/pic/glue (pic14emitRegularMap),
6270         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6271
6272 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6273
6274         * src/pic/pcode.c (PCodeID): commented out left over debug code
6275
6276 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6277
6278         * support/valdiag/tests/overflow.c: added shift tests
6279         * src/pic/device.c,
6280         * src/pic/gen.c,
6281         * src/pic/gen.h,
6282         * src/pic/glue.c,
6283         * src/pic/main.c,
6284         * src/pic/pcode.c,
6285         * src/pic/pcode.h,
6286         * src/pic/pcodepeep.c,
6287         * src/pic/pcoderegs.c,
6288         * src/pic/ralloc.c,
6289         * src/pic/ralloc.h: applied patch from Slade Rich;
6290         added support for multiple code pages and multiple RAM banks on the
6291         PIC 14 port. The ASM files now no longer simply assume all the
6292         code / RAM are in the same page / bank. This means the linker can
6293         safely allocate code/RAM of separate ASM files to different pages/banks.
6294         * doc/sdccman.lyx: added Slade's tips
6295         * src/mcs51/peeph.def: fixed bug #880768
6296
6297 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6298
6299         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6300         * src/SDCCast.c (decorateType): fixed bug #880197
6301
6302 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6303
6304         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6305         getopt.h.
6306
6307         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6308         strtof is not part of C89 and isn't included with Mac OS X.
6309
6310 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6311
6312         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6313         shiftL2Left2Result): fixed bug #879326
6314         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6315         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6316         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6317         address fetch for clr instruction
6318         * device/lib/hc08/_mulint.c: created optimized assembly version
6319         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6320
6321 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6322
6323         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6324         proposed in FR #877103
6325
6326 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6327
6328         * src/SDCCval.c (cheapestVal): added missing checks
6329         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6330         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6331
6332 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6333
6334         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6335         equal operands
6336
6337 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6338
6339         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6340         loaded with the linker search paths (-L arguments) and the libraries
6341         to be linked with the current source (-l arguments). Changes
6342         currently will affect only the pic16 port.
6343         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6344         include path the port specific paths and port specific libraries,
6345         * gplink command now contains the $3 argument,
6346         * src/pic16/device.h,
6347         * src/pic16/device.c,: structure PIC_device is made public and
6348         renamed to PIC16_device, the same for variable Pics which is renamed
6349         to Pics16. Updated all references to them.
6350         * src/pic16/glue.c (pic16glue): corrected bug with code
6351         initialization which bypassed the variable initializations block.
6352
6353         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6354         COMPILE_FLAGS and added the --nostdinc option
6355
6356 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6357
6358         * device/include/mc68hc908jb8.h: Register defs for another member
6359         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6360
6361 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6362
6363         Documenting changes from previous commits.
6364         * configure.in (version 1.56),
6365         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6366         when generating output files to configure the pic16 library,
6367         but now I've commented it out, since gputils aren't installed in the
6368         SF compile farm, so library won't compile
6369
6370         * device/lib/Makefile.in (version 1.56): initially I've added in
6371         target 'all' the prerequestive 'model-pic16' so it compiled the
6372         pic16 library, but now I've commented it out for the same reasons
6373         above,
6374         * added targets 'model-pic16' and 'objects-pic16' to compile the
6375         library
6376         * added target 'port-specific-objects-pic16' to handle the
6377         generated libraries and copy them into the build/ directory
6378         * added target 'clean-intermediate-pic16' to clean intermediate
6379         files into pic16 directory
6380         * in target 'installdirs' added line to create directory pic16 in
6381         the installation path
6382
6383         * device/include/Makefile.in (version 1.11): in target 'install'
6384         added lines to copy all header files to installation path,
6385         * in target 'installdirs' added line create directory for pic16
6386         headers in the installation path
6387
6388 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6389
6390         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6391          a function call
6392
6393 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6394
6395         * configure,
6396         * device/lib/configure.in,
6397         * device/lib/configure: fixed for autoconf 2.57
6398
6399 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6400
6401         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6402         option so that it actually works. Made it specific to the z80, since
6403         the gbz80 doesn't have these kinds of I/O ports.
6404
6405 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6406
6407         * device/include/z180.h,
6408         * device/lib/_memcpy.c,
6409         * device/lib/_memmove.c,
6410         * device/lib/_mulint.c,
6411         * device/lib/ser_ir.c,
6412         * device/lib/ser_ir_cts_rts.c,
6413         * device/lib/_strcmp.c,
6414         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6415         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6416         portmode; added deprecation warning for bank= and protmode= forms.
6417         Also, guard against buffer overflow.
6418         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6419
6420 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6421
6422         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6423         changed interrupt vector table generation to only emit declared vectors.
6424         * device/include/Makefile.in: added missing backslash
6425         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6426
6427 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6428
6429         Mainly changes to support compilation of the device libraries
6430         * src/pic16/device.c: stack is allocated via symbol and not
6431         via literal number. The symbol is placed in the corresponding
6432         position of the data ram
6433         * (pic16_dump_section): relocatable and absolute uninitialized
6434         data are now emitted in sorted order to reduce section naming,
6435         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6436         weren't marked as being in the access bank,
6437
6438 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6439
6440         Added portion of GNU PIC Library under the directory
6441         device/include/pic16 and device/lib/pic16. These files
6442         contain the declarations of SFRs for the PIC18Fxx2 devices.
6443         The directory is initialized via configure from toplevel.
6444
6445 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6446
6447         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6448         the spilllocations to be compared correctly
6449
6450 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6451
6452         * src/SDCCast.c (decorateType): fixed bug introduced today
6453
6454 2004-01-12  Borut Razem <borut.razem AT siol.net>
6455
6456         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6457         doc/sdccman.lyx: upper case pragmas are deprecated
6458
6459 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6460
6461         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6462         in simpler and even better code
6463
6464 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6465
6466         * src/SDCCicode.c (operandOperation): fixed bug #874819
6467         * src/SDCCast.c (decorateType): fixed
6468         char foo (unsigned long ul) { return ul > 0; }
6469
6470 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6471
6472         * doc/sdccman.lyx: Moved and added some sections, small changes
6473         all over. Telling LaTeX to be less strict with word spacing
6474         to better keep the right margin. Changed some notes about
6475         maintainance of the ports in section 3.2.1 - is it OK like this?
6476
6477 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6478
6479         SDCC source changes:
6480         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6481         convilong): modified to inform the pic16 port that builtin functions
6482         are external
6483
6484         PIC16 PORT specific changes:
6485         * src/pic16/device.c pic16_dump_equates() added,
6486         processor registers declared internally by the port are emitted in
6487         the translation as equates,
6488         * src/pic16/gen.c: inline code is passed unprocessed to the
6489         translation,
6490         * (pic16_popGetLit2): fnuction modified to take second operand as
6491         pCodeOp pointer and not as literal,
6492         * (popRegFromIdx): prefixed with pic16_,
6493         * (pic16_popCombine2): modified to receive already allocated pCode
6494         operands,
6495         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6496         * (genFunction): initializes local stack frame and pushes on stack
6497         all the registers used by this function,
6498         * (genEndFunction): restores all registers from stack and restores
6499         stack frame,
6500         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6501         improvements,
6502         * (pic16glue): changed the program startup sequence,
6503         * added new dbName code 'A' for functions placed in absolute section
6504         * src/pic16/main.c: added function attribute _naked,
6505         * added pragma 'code' to place a fnuction at an absolute address,
6506         * added command line arguments --debug-ralloc and --pcode-verbose,
6507         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6508         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6509         * (pic16_newpCodeOpLit2): modified to take the second operand as
6510         pCodeOp pointer,
6511         * (pic16_printpBlock): modified to emit each function in a separate
6512         section,
6513         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6514         UPPER for immediate operands,
6515         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6516         instruction,
6517         * src/pic16/peeph.def: all peepholes with movff are commented out,
6518         because there is a problem in the pcode peep optimizer,
6519         * src/pic16/ralloc.c: the register allocator can now reuse local
6520         function symbols for another function. This saves register usage.
6521         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6522
6523         Added file src/pic16/NOTES with information about program writing on
6524         the current port version.
6525
6526 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6527
6528         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6529         and peephole 252 (array access)
6530
6531 2004-01-09  Borut Razem <borut.razem AT siol.net>
6532
6533         * src/SDCCmain.c : fixed #872250: -l command line defined library
6534           files are scanned before standard library files
6535
6536 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6537
6538         * src/SDCCast.c (decorateType): fixed bug #874046
6539
6540 2004-01-09  Borut Razem <borut.razem AT siol.net>
6541
6542         * support/scripts/sdcc.nsi: remove previous installation
6543
6544 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6545
6546         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6547         bytes for last interrupt vector (mcs51)
6548         * sdcc.spec: fixed typo
6549
6550 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6551
6552         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6553         gen51Code): more efficient parameter receive for --model-large
6554         ("bug" #845294)
6555
6556 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6557
6558         * src/ds390/main.c,
6559         * src/z80/main.c: added missed needLinkerScript flags (more than
6560         one port structure defined in these file)
6561         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6562         bug #795325
6563
6564 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6565
6566         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6567         * src/port.h: added flag needLinkerScript in port->linker
6568         structure to inform whether to create a .lnk file or not,
6569         * src/avr/main.c,
6570         * src/ds390/main.c,
6571         * src/hc08/main.c,
6572         * src/mcs51/main.c,
6573         * src/pic/main.c,
6574         * src/pic16/main.c,
6575         * src/xa51/main.c,
6576         * src/z80/main.c: changed appropriately to configure
6577         needLinkerScript flag
6578         * src/pic/gen.c,
6579         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6580         * src/pic/glue.c: added variable udata_section_name to
6581         override default uninitialized data segment definition for
6582         devices only with SHAREBANK memory (reported from Erik Epetrich)
6583         * (pic14emitOverlay): modified to emit a commented overlay segment
6584         directive when no overlay data exist
6585         * (picglue): modified to emit uninitialized data segment
6586         according to udata_section_name
6587         * src/pic/main.c (_pic14_parseOptions): added command line
6588         options --udata-section-name=[name] to override default
6589         udata definition name
6590         * modified _linkCmd and _asmCmd to include compiler passed
6591         arguments via -W option
6592         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6593         object file from '.rel' to '.o' in port->linker structure,
6594         changed size of fptr from 2 to 3 in port structure
6595
6596 2004-01-07  Borut Razem <borut.razem AT siol.net>
6597
6598         * support/scripts/sdcc.nsi: update PATH
6599         * support/scripts/sdcc.ico: craeted
6600
6601 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6602
6603         * device/include/Makefile.in: fix install
6604         * doc/Makefile: fix install
6605
6606 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6607
6608         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6609         in bug #860505
6610         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6611         how the function variable allocation summary is displayed; also
6612         include information about variables allocated to the overlay
6613         segment
6614
6615 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6616
6617         * as/mcs51/lkmain.c: Help about -Y option
6618         * as/mcs51/lkarea.c: Fixed gcc warnings
6619
6620 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6621
6622         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6623         fixed warning
6624         * support/valdiag/tests/overflow.c: added
6625         * src/SDCCast.c (decorateType),
6626         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6627         LEFT_OP (left shift)
6628
6629 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6630
6631         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6632         (default behaviour).
6633
6634 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6635
6636         A python script to validate compiler diagnostic messages. It can be
6637         used to verify that sdcc complains about bad c source code and
6638         gives a good location of the error.
6639         * support/valdiag/Makefile,
6640         * support/valdiag/valdiag.py,
6641         * support/valdiag/tests/*
6642
6643 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6644
6645         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6646         * src/SDCCsymt.c (newEnumType),
6647         * src/SDCCsymt.h
6648         * support/Util/SDCCerr.c,
6649         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6650         enum related bugs.
6651         * support/regression/tests/enum.c: added test for enum values that
6652         require at least 2 bytes of storage.
6653
6654 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6655
6656         * src/common.h: added ifndef/define/endif macros
6657         around the header file.
6658         Bug reported from Jesus Calvino-Fraga
6659
6660 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6661
6662         * sdcc.spec: updated
6663         * device/include/Makefile.in: don't install CVS directories
6664         * device/lib/Makefile.in: added removal of CVS directories after install
6665         * doc/Makefile: fixed install, added local_icons
6666         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6667         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6668         * src/ds390/gen.c (genRightShift): fixed bug #870788
6669         * src/SDCCast.c (decorateType): fixed bug #870781
6670
6671 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6672
6673         PIC16 port related changes:
6674         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6675         added variable stackPos,
6676
6677         * gen.c: genCall, assignResultValue: added support for
6678         pushing/retrieving function parameters to/from stack,
6679         genFunction,genEndFunction: setup stack frame for the
6680         generated function,
6681         genAddrOf: will be changed according to bug 863624
6682
6683         * added files genutils.c and genutils.h which contain gen*
6684         debugged and optimised functions extracted from gen.c
6685
6686         * glue.c: added variable 'externs' which holds extern symbols,
6687         pic16emitRegularMap: is modified to properly handle relocatable
6688          symbols under the new scheme,
6689         pic16createInterruptVect: is modified
6690         pic16printPublics: is modified to emit 'global' assembler directives,
6691         added pic16_printExterns to print extern symbols,
6692         pic16glue: initializes stack/frame pointer in the beginning of
6693         the assembly output. Temporary hack, will be corrected later,
6694         because gplink yet does not support stack and SDCC does not
6695         yet support a type of crt0.o object to create the final binary.
6696
6697         * Removed many lines that contain 8051 legacy code.
6698         * The code is finally placed under a 'code' directive.
6699         * Added port specific options.
6700
6701         * _process_pragma: simplified since now we do not need *special*
6702         include file to define SFR registers. But a separate header
6703         will be needed. This will be developed later.
6704         * _pic16_parseOptions: added, parses port specific options:
6705         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6706         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6707         --preplace-udata-with=
6708
6709         * _pic16_setDefaultOptions: modified to initialize section names,
6710         but hack is temporarly out of order since it needs improvement.
6711         * _pic16_genAssemblerPreamble: configuration words are emitted by
6712         their address instead of their name. This part is incomplete and
6713         supports only the 18Fxx2 devices. Other devices will emit an error
6714         during assembly since they do not contain the same set of config
6715         registers
6716         * _pic16_genIVT: is modified,
6717
6718         * pcode.c: added definitions for some hardware registers that are needed
6719         for stack support
6720         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6721         All PCI entries are updated. Now LFSR is supported.
6722         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6723         * added pic16_newpCodeOpLit2 to support instructions with
6724         two literal arguments
6725         * pic16_pCode2str: corrected code that emits assembler instructions
6726         with two literal operands and those that have an access bit modifier
6727         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6728         this fixes a bug which caused some labels to be lost, when an
6729         assembler directive was added, i.e. banksel,
6730         * pic16_FixRegisterBanking: improved logic that causes the insertion
6731         of bank switching,
6732         * InlineFunction: functions that are called once, are not any more
6733         inlined. This can be a port option in the future,
6734
6735         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6736
6737         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6738         hold the corresponding uninitialized symbols,
6739         * pic16_allocProcessorRegister: registers have explicit marked the
6740         accessBank field,
6741         * pic16_allocInternalRegister: registers are explicit marked as
6742         not used,
6743         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6744         processing list, so bit registers were lost,
6745         *
6746
6747         * ralloc.h: added field 'accessBank' and original symbol operand
6748         in register definition,
6749         * removed the field isMapped from register definition,
6750
6751         ** Several functions have been removed from various sources:
6752         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6753         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6754         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6755         pic16_assignRelocatableRegisters
6756
6757         ** others have been introduced:
6758         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6759         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6760
6761 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6762
6763         * support/scripts/inc2h.pl: changed definition of BIT_AT
6764         to emit 'sbit at' instead of 'bit at'. This was a request.
6765
6766         PIC16 port related preliminary changes:
6767         * gen.c: prefixed function popRegFromString with
6768         pic16_ and all references to it corrected
6769         * pcode.c: all pic16_pc_* hardware registers prefixed
6770         with underscore (_),
6771         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6772         * ralloc.c: newReg(): when register is REG_SFR then
6773         set address to rIdx,
6774         pic16_allocProcessorRegister(): marks register wasUsed=0
6775         pic16_writeUsedRegs(): added a call to assign processor
6776         registers via pic16_assignFixedRegisters
6777
6778 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6779
6780         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6781         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6782         variables in unused register banks.  Also the SSEG is placed
6783         wherever there is enough space for it, and IDATA can be anywhere
6784         in internal RAM.  For now compile using -Wl-Y[stack_size].
6785         The mem file is different for this option as well, since it
6786         makes no sense of talking about DSEG lenght.
6787
6788 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6789
6790         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6791         in certain cases, e.g. when ROM assignment, patch provided
6792         from Albert den Haan.
6793
6794 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6795
6796         Many signedness and type propagation fixes:
6797         * src/SDCCicode.c: made geniCodeCast() static
6798         replaced SPEC_ by IS_ (cosmetic)
6799         (operandOperation): fixed div and mod operation
6800         (usualBinaryConversions): added support for promotion of char
6801         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6802         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6803         (geniCodeAdd): an array index will stay unsigned, even if promoted
6804         from char to int
6805         (geniCodeArray): ditto
6806         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6807         * src/SDCCsymt.c (computeType): added more support for char;
6808         promotion of char is selectable by promoteCharToInt, fixed signedness
6809         for all cases
6810         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6811         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6812         * src/SDCCval (val*): replaced signedness calculation by
6813         computeType()
6814         rearranged if-branches (cosmetic)
6815         (valShift): added warning W_SHIFT_CHANGED
6816         (valCompare): fixed problem with different types
6817         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6818         * support/regression/tests/literalop.c: added many cases
6819         * support/regression/tests/ast_constant_folding.c: changed finally to
6820         'unsigned int'
6821         * .version: new year, new version: 2.3.7
6822         * src/SDCCmain.c (main): applied patch #866468
6823         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6824         provided by Scott Bronson
6825         * doc/sdccman.lyx: updated documentation for sdcdb
6826         updated and added chapter tips
6827
6828 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6829
6830         * src/SDCCsymt.h: missing from yesterday's commits
6831
6832 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6833
6834         * src/SDCC.y (struct_or_union_specifier),
6835         * support/Util/SDCCerr.c,
6836         * support/Util/SDCCerr.h: verify that struct & union tags are used
6837         as declared.
6838
6839 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6840
6841         * src/SDCCglobl.h: missing from yesterday's commits
6842
6843 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6844
6845         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6846         sft_attributes, struct_declaration, parameter_declaration,
6847         type_name, start_block, declaration_list),
6848         * src/SDCC.lex (check_type): support redefinition of typedef names
6849
6850 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6851
6852         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6853         aligned xdata arrays. Erik helped me with the if clause.
6854
6855 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6856
6857         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6858         warning
6859
6860 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6861
6862         * src/SDCCast.h,
6863         * src/SDCCast.c (newAst_),
6864         * src/SDCCicode.h,
6865         * src/SDCCicode.c (ast2iCode, newiCode),
6866         * src/SDCCglobl.h,
6867         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6868         expr, statement, expression_statement, selection_statement,
6869         iteration_statement, expr_opt, jump_statement): foundation for tracking
6870         sequence points
6871         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6872         point code too)
6873
6874 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6875
6876         * support/Util/SDCCerr.c,
6877         * src/SDCCast.h,
6878         * src/SDCCast.c (createCase, createDefault, decorateType),
6879         * src/SDCClabel.c (labelUnreach),
6880         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6881         to error messages.
6882         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6883         (with thanks to Stas Sergeev)
6884         * device/include/time.h,
6885         * device/lib/time.c (CheckTime): suppress unreachable code warning
6886
6887 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6888
6889         * src/SDCCast.c (createIvalCharPtr),
6890         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6891         bug #753752)
6892         * support/regression/tests/nullstring.c: tests for these two bugs
6893
6894 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6895
6896         * support/Util/SDCCerr.h,
6897         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6898         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6899         about storage class and 'at' used inside struct or union
6900         * src/SDCCBBlock.c (iCodeFromeBBlock),
6901         * src/SDCCcse.c (ifxOptimize),
6902         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6903         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6904         printIval, emitStaticSeg, emitOverlay),
6905         * src/SDCClabel.c (deleteIfx),
6906         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6907         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6908         gatherAutoInit, processParms),
6909         * support/Util/SDCCerr.h,
6910         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6911         reporting for post-parse errors.
6912
6913 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6914
6915         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6916         implicit casts via union; they don't work on big endian systems
6917         (possible fix for bug #861138)
6918
6919 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6920
6921         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6922         * src/mcs51/main.c: fixed the fix for bug #737001
6923
6924 2003-12-15  Borut Razem <borut.razem AT siol.net>
6925
6926         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6927
6928 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6929
6930         * support/makebin/makebin.c: put output in binary mode
6931
6932 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6933
6934         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6935         xdata and data memory on startup. Set the environment variable
6936         SDCC_NOGENRAMCLEAR to disable this.
6937         * src/mcs51/peephole.def,
6938         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6939         (allows non-interrupt and interrupt code to safely compete for a resource
6940         without the non-interrupt code having to disable interrupts)
6941
6942 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6943
6944         * src/SDCCicode.c (geniCodeAdd),
6945         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6946         with valFromType if type might be a pointer and host is big endian).
6947         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6948         types, not just integer types.
6949         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6950         multiply defined with mismatching "at" address.
6951
6952 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6953
6954         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6955         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6956         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6957         with embedded nulls (fixed bug #753752)
6958
6959 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6960
6961         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6962         Apparently this did not see much testing (endless loop)
6963
6964 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6965
6966         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6967
6968 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6969
6970         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6971         gracefully handle NULL memmap pointers
6972
6973 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6974
6975         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6976         instead of deleting the iCode when an operand is volatile
6977         * src/z80/gen.c (genDummyRead),
6978         * src/mcs51/gen.c (genDummyRead),
6979         * src/ds390/gen.c (genDummyRead),
6980         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6981         not just IC_RIGHT
6982         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6983         * src/SDCC.y: fixed bug #850420
6984
6985 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6986
6987         Applied z80 i/o port patch from Peter Townson and fixed some operators
6988         to better handle operands in A register.
6989         * device/include/z180.h
6990         * src/SDCC.y
6991         * src/SDCCglue.c
6992         * src/z80/gen.c
6993         * src/z80/gen.h
6994         * src/z80/main.c
6995         * src/z80/peeph-z80.def
6996         * src/z80/peeph.def
6997         * src/z80/z80.h
6998
6999 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7000
7001         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7002
7003 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7004
7005         * device/lib/hc08/_mullong.c: Removed extra #endif
7006
7007 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7008
7009         * sim/ucsim/hc08.src/inst.cc,
7010         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7011         carries from x to h
7012         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7013         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7014         * device/include/stdarg.h: fixed varargs for hc08
7015         * device/lib/Makefile.in,
7016         * device/lib/hc08/Makefile,
7017         * device/lib/hc08/_mulint.c,
7018         * device/lib/hc08/_mullong.c: fixed some endian problems
7019
7020 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7021
7022         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7023         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7024         * device/lib/_gptrget.c,
7025         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7026
7027 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7028
7029         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7030         * src/SDCCast.c (astErrors): fixed bug #846007
7031         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7032
7033 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7034
7035         * src/SDCCast.c (decorateType): disabled a transformation I added in
7036         revision 1.188 (access to fields of a structure at an absolute address);
7037         it breaks with bitfields, extern declarations, and gcse analysis.
7038         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7039         could be assigned through a pointer, so don't complain.
7040         * src/SDCCast.c (astErrors),
7041         * src/SDCCast.h,
7042         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7043
7044 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7045
7046         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7047         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7048         output of __config directives, since gpasm now supports them
7049         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7050         pre-processor macro, i.e. -DMCU=p18f452
7051         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7052         and modified to handle 'cast' icode similarly to '=' icode
7053         * src/pic16/device.h (typedef struct PIC_device): added field
7054         'extMIface' to indicate that chip has external memory interface
7055         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7056         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7057         18F8720
7058
7059 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7060
7061         * src/SDCC.y (pointer): fixed bug #846006
7062         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7063         * src/SDCCast.c (decorateType): fixed bug #846009
7064         * src/ds390/peeph.def,
7065         * src/ds390/gen.c (genAnd, genOr),
7066         * src/mcs51/peeph.def,
7067         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7068
7069 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7070
7071         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7072         * src/SDCCdflow.c
7073         * src/SDCCcse.c
7074         * src/SDCCcse.h
7075         * src/SDCCBBlock.h
7076         * src/SDCCBBlock.c
7077
7078 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7079
7080         fixed bug #845089
7081         * src/SDCCbitv.h,
7082         * src/SDCCbitv.c: added function to free a bitvector
7083         * src/SDCClrange.h,
7084         * src/SDCClrange.c: added function to recompute the liveranges
7085         * src/avr/ralloc.c,
7086         * src/ds390/ralloc.c,
7087         * src/hc08/ralloc.c,
7088         * src/mcs51/ralloc.c,
7089         * src/pic/ralloc.c,
7090         * src/pic16/ralloc.c,
7091         * src/xa51/ralloc.c,
7092         * src/z80/ralloc.c: recompute the liveranges after register packing
7093
7094 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7095
7096         * src/SDCCloop.c (newInduction): fixed bug #845630
7097
7098 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7099
7100         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7101         inadvertantly left behind from my 2003-11-12 change
7102
7103 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7104
7105         Updated headers I neglected to commit yesterday.
7106         * src/SDCClrange.h,
7107         * src/SDCCicode.h
7108
7109 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7110
7111         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7112         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7113         * src/SDCCopt.c (eBBlockFromiCode),
7114         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7115         the creation of the key hash table from the sequencing so it can be used
7116         earlier (for some GCSE bug fixes still pending)
7117
7118 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7119
7120         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7121         * support/regression/tests/addsub.c: testing genPlus shortcut
7122
7123 2003-11-15  Borut Razem <borut.razem AT siol.net>
7124
7125         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7126
7127 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7128
7129         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7130         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7131         ordering is immaterial.
7132         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7133
7134 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7135
7136         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7137         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7138         (SIGSEV) of bug #840381
7139         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7140         unlink new file before rename if new and old filenames are the same)
7141
7142 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7143
7144         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7145         uninitialized variables) for the mcs51. Set environment variable
7146         SDCC_GENRAMCLEAR to test.
7147         xdata initialization slightly shorter
7148
7149 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7150
7151         * src/SDCCsymt.h,
7152         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7153         #838241 & 780691 (basicly the same bug)
7154         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7155         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7156
7157 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7158
7159         * src/SDCCmain.c (linkEdit): "fix" #834252
7160
7161 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7162
7163         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7164         * src/SDCCast.h,
7165         * src/SDCC.y: fixed bug #819403
7166
7167 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7168
7169         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7170         the reentrant attribute.
7171         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7172         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7173         simulation
7174         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7175         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7176         erroneously reduced to a literal.
7177         * src/hc08/ralloc.c (packRegisters, rematStr),
7178         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7179         some cases
7180
7181 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7182
7183         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7184         * doc/sdccman.lyx: changed from 'article' to 'book'
7185         * doc/Makefile: readded test_suite_spec and cdbfileformat
7186
7187 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7188
7189         * device/include/stdlib.h: include malloc.h to comply with ANSI
7190         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7191
7192 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7193
7194         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7195         * doc/clean.mk: also remove *.out files
7196         * doc/sdccman.lyx: some additions, larger top/bottom margins
7197
7198 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7199
7200         * src/SDCC.y: fixed bug #837365
7201         * support/regression/tests/bitopcse.c
7202         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7203         a symbol (might be valop instead)
7204         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7205         * device/lib/clean.mk: added hc08 to the cleaning list
7206
7207 2003-11-04  Borut Razem <borut.razem AT siol.net>
7208
7209         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7210           made 2003-11-04
7211         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7212           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7213           malloc is declared in standard stdlib.h
7214
7215 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7216
7217         * device/lib/hc08/Makefile: need to clean .rel not .o files
7218         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7219
7220 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7221
7222         * src/port.h,
7223         * src/hc08/main.c,
7224         * src/mcs51/main.c,
7225         * src/ds390/main.c,
7226         * src/z80/main.c,
7227         * src/avr/main.c,
7228         * src/pic/main.c,
7229         * src/pic16/main.c,
7230         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7231         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7232         tests (which uses the port's oclsExpense function)
7233         * src/SDCC.y,
7234         * src/SDCCast.c,
7235         * src/SDCCicode.c,
7236         * src/hc08/gen.c,
7237         * src/ds390/gen.c,
7238         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7239
7240 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7241
7242         * src/SDCCcse.c (ifxOptimize),
7243         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7244         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7245         deleting the IFX iCode.
7246         * src/hc08/ralloc.c: reduced unneeded slocs
7247         * src/hc08/gen.c: fixed bug in asmopToBoolean
7248
7249 2003-11-04  Borut Razem <borut.razem AT siol.net>
7250
7251         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7252           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7253           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7254           transferred to configure
7255
7256 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7257
7258         Use headers defined in the C[++] standards:
7259         * sim/ucsim/gui.src/serio.src/fileio.cc
7260         * sim/ucsim/gui.src/serio.src/frontend.cc
7261         * sim/ucsim/gui.src/serio.src/main.cc
7262         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7263         * support/Util/NewAlloc.c
7264         * as/hc08/lklibr.c
7265         * as/mcs51/lklibr.c
7266         * as/z80/aslist.c
7267         * as/z80/assym.c
7268
7269 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7270
7271         * Added MSVC projects for hc08 assembler and linker:
7272         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7273         /as/hc08/link_hc08.dsp
7274
7275 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7276
7277         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7278
7279 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7280
7281         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7282
7283 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7284
7285         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7286
7287 2003-10-31  Borut Razem <borut.razem AT siol.net>
7288
7289         * support/cpp2/cpplib.h,
7290           support/cpp2/cpplib.c,
7291           support/cpp2/cpplex.c,
7292           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7293           to switch _asm block preprocessing on / off. Default is
7294           #pragma preproc_asm +
7295
7296 2003-10-31  Borut Razem <borut.razem AT siol.net>
7297
7298         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7299           when outputting comment blocks (when executed with -C option) and
7300           _asm (SDCPP specific) blocks
7301
7302 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7303
7304         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7305
7306 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7307
7308         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7309
7310 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7311
7312         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7313         * src/SDCCast.c (decorateType): fixed bug #832664
7314
7315 2003-10-31  Borut Razem <borut.razem AT siol.net>
7316
7317         * support\cpp2\cpplex.c: fixed for SDCPP:
7318           comments(when executed with -C option) and _asm blocks
7319           were included even if they where in skipped #if block.
7320           Applied solution from GCC cpp 3.3.2
7321
7322 2003-10-31  Borut Razem <borut.razem AT siol.net>
7323
7324         * src/SDCC.lex: sdcc now understands both formats:
7325           '# <line_number> <file_name>' and
7326           '#line <line_number> <file_name>'
7327         * support/cpp2/cppmain.c: sdcpp now generates the standard
7328           '# <line_number> <file_name>' instead of former
7329           '#line <line_number> <file_name>'
7330
7331 2003-10-30  Borut Razem <borut.razem AT siol.net>
7332
7333         * support/cpp2/cpphash.h,
7334         * support/cpp2/cpplib.h
7335         * support/cpp2/cpplex.c,
7336         * support/cpp2/cppmain.c,
7337         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7338
7339 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7340
7341         Fixed a number of problems revealed by bug #827883.
7342         * src/SDCCloop.c (loopInvariants): Spill location of the
7343         result operand should be recomputed if extracted from
7344         a loop. Also, don't extract assignments of an iTemp
7345         from a literal.
7346         * src/SDCCast.c (isConformingBody): loop reversal should
7347         not occur if the control variable is involved with a
7348         relational operator.
7349
7350 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7351
7352         * .version: bumped to 2.3.6 to reflect the big improvements
7353         made by Erik and Klaus. Thanks!
7354
7355 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7356
7357         Replaced the livrange code.
7358         * src/SDCClrange.c: added new LR code
7359         * src/SDCCloop.c,
7360         * src/SDCCBBlock.h: removed remainig parts from old LR code
7361         * src/ds390/ralloc.c,
7362         * src/ds390/gen.c: minor fixes to make it work with new code
7363
7364 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7365
7366         * as/hc08/asm.h,
7367         * as/hc08/lkrloc.c,
7368         * src/hc08/gen.c,
7369         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7370         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7371         (tweaked fix for bug #818696)
7372
7373 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7374
7375         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7376
7377 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7378
7379         * src/SDCCmain.c,
7380         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7381         * src/mcs51/gen.c (gencjneshort),
7382         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7383         more efficient (per Scott Bronson's suggestion)
7384
7385 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7386
7387         Extended the semantics of the critical keyword to include
7388         individual statements. See RFE #827755 and #799831
7389         * src/SDCC.y
7390         * src/SDCCicode.c
7391         * src/SDCCopt.c
7392         * src/SDCCast.c
7393         * support/Util/SDCCerr.c
7394         * support/Util/SDCCerr.h
7395         * src/mcs51/gen.c
7396         * src/ds390/gen.c
7397         * src/hc08/gen.c
7398
7399 2003-10-19  Borut Razem <borut.razem AT siol.net>
7400
7401         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7402
7403 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7404
7405         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7406         Fixed bug #818696
7407         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7408         and predecrement operand is displayed
7409
7410 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7411
7412         * src/SDCCval.c (valMinus): fixed bug #826041
7413
7414 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7415
7416         Some hc08 related updates that I missed earlier
7417         * sim/ucsim/stypes.h
7418         * support/regression/ports/hc08/spec.mk
7419
7420 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7421
7422         New target "hc08" for the Motorola 68hc08 family of micros
7423
7424         * configure
7425         * configure.in
7426         * Makefile
7427         * src/hc08/*
7428         * src/SDCCmain.c
7429         * src/port.h
7430         * sim/ucsim/hc08.src/*
7431         * sim/ucsim/configure.in
7432         * src/ucsim/configure
7433         * sim/ucsim/packages_in.mk
7434         * as/hc08/*
7435         * as/Makefile
7436         * device/include/mc68hc908qy.h
7437         * device/lib/hc08/*
7438         * device/lib/Makefile.in
7439         * support/regression/ports/hc08/*
7440         * support/regression/Makefile
7441
7442 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7443
7444         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7445         regression test
7446         * src/ds390/gen.c (genCast): fixed bug #821957
7447
7448 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7449
7450         * device/lib/logf.c: "fixed" overlay bug
7451         * support/regression/ports/host/spec.mk: added m library
7452         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7453         * support/regression/tests/float_trans: added (for Eric)
7454
7455 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7456
7457         * src/mcs51/gen.c (genCpl): fixed bug
7458         http://sf.net/mailarchive/message.php?msg_id=6263915
7459
7460 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7461
7462         * src/SDCCast.c (decorateType): added extended constant folding
7463         * src/SDCCsymt.c (computeType): cleanup
7464         * src/SDCCval.c (valShift): minor optimization
7465         * support/regression/tests/ast_constant_folding.c: added
7466
7467 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7468
7469         * src/SDCCmain.c: removed some unintended changes
7470
7471 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7472
7473         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7474         * src/z80/gen.c: fixed part of bug #817589
7475         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7476
7477 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7478
7479         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7480         * src/SDCCcflow.c
7481         * src/SDCCcse.c
7482         * src/SDCCdflow.c
7483         * src/SDCClabel.c
7484         * src/SDCClrange.c
7485         * src/SDCCmem.c
7486         * src/SDCCopt.c
7487         * src/SDCCpeeph.c
7488         * src/SDCCset.c
7489         * src/avr/ralloc.c
7490         * src/ds390/ralloc.c
7491         * src/izt/ralloc.c
7492         * src/mcs51/ralloc.c
7493         * src/pic/ralloc.c
7494         * src/pic16/ralloc.c
7495         * src/xa51/ralloc.c
7496         * src/z80/ralloc.c
7497         * src/z80/gen.c: removed unused label "release:"
7498
7499 2003-10-06  Borut Razem <borut.razem AT siol.net>
7500
7501         * src/SDCC.lex: removed definition of unused variables
7502           save_optimize and save_options
7503
7504 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7505
7506         * clean.mk: removed '=' in "-maxdepth=1"
7507         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7508         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7509
7510 2003-10-06  Borut Razem <borut.razem AT siol.net>
7511
7512         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7513           my_unput() replaced by unput()
7514
7515 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7516
7517         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7518         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7519         type-punned pointer will break strict-aliasing rules"
7520         Old LR behaviour is again default; Klaus' LR can be choosen by
7521         defining the environment variable LRKLAUS
7522         * src/SDCCBBlock.h
7523         * src/SDCCloop.c
7524         * src/SDCClrange.c
7525         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7526         * clean.mk: fixed removal of files in bin/CVS/
7527         * device/lib/clean.mk: fixed removal of directories small and large
7528         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7529         * src/SDCCicode.c,
7530         * src/SDCCval.c: removed superflous test for pedantic
7531
7532 2003-10-05  Borut Razem <borut.razem AT siol.net>
7533
7534         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7535           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7536           message "unmatched #pragma SAVE and #pragma RESTORE"
7537
7538 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7539
7540         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7541           assembly, critical functions, atomic, nojtbound)
7542
7543 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7544
7545         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7546         * src/SDCCBBlock.h
7547         * src/SDCCloop.c
7548         * src/SDCCloop.h
7549         * src/SDCClrange.c
7550
7551 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7552
7553         * src/z80/gen.h,
7554         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7555         * src/mcs51/gen.h
7556         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7557         * src/ds390/gen.h
7558         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7559         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7560         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7561
7562 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7563
7564         * src/z80/gen.c (genRet): fixed bug #524753
7565         * src/z80/gen.c (genCast): fixed internal error on cast from
7566         pointer to long
7567         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7568         fix for bug #477835 to the z80
7569         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7570         for tracking iCodes in the peephole optimizer for z80
7571
7572 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7573
7574         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7575         the other part of bug #814548
7576         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7577
7578 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7579
7580         * src/SDCCcse.c: fixed part of bug #814548
7581
7582 2003-09-28  Borut Razem <borut.razem AT siol.net>
7583
7584         * src/asm.c: rewrite of printILine() to use temporary file instead
7585           a pipe
7586         * src/xa51/main.c: commented out declaration of int rewinds
7587
7588 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7589
7590         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7591
7592 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7593
7594         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7595         * src/asm.c (printILine): Fixed bug #811015
7596
7597 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7598
7599         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7600         freeing.
7601
7602 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7603
7604         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7605         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7606         to correctly handle general case of AOP_PAIRPTR
7607         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7608
7609 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7610
7611         * src/mcs51/ralloc.c (fillGaps),
7612         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7613         register positioning bug)
7614
7615 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7616
7617         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7618
7619 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7620
7621         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7622         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7623         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7624         (ralloc doesn't intentionally do this now, but perhaps later)
7625         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7626         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7627         register positioning bugs (Fixed bug #762602 and #795325)
7628         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7629         (Fixed bug #808779)
7630         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7631         lines that --i-code-in-asm generates
7632
7633 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7634
7635         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7636         trying to fclose a FILE* that was already closed.
7637
7638 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7639
7640         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7641         of const struct should be treated as if const themselves)
7642
7643 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7644
7645         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7646
7647 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7648
7649         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7650         Unix (/n) and DOS (/r/n) line terminations.
7651
7652 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7653
7654         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7655         bug #613775
7656
7657 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7658
7659         * src/mcs51/gen.c (genFunction, genEndFunction),
7660         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7661         and restore of EA so that stack offsets to parameters are
7662         correct when using both critical and reentrant/stack-auto.
7663         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7664         size (can be triggered in error if sloc is shared between
7665         different sized objects)
7666         * device/include/float.h: fixed macros to explicitly use
7667         unsigned long where needed
7668
7669 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7670
7671         Feature req. 799831: added code to allow nesting of critical functions
7672         * src/mcs51/gen.c (genFunction, genEndFunction)
7673         * src/ds390/gen.c (genFunction, genEndFunction)
7674
7675 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7676
7677         * src/SDCCsymt.c (sclsFromPtr),
7678         * src/SDCCsymt.h,
7679         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7680         support for standard C idiom of memory mapped variables; for
7681         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7682         to xdata int at 0x1234 tempvar = 1.
7683         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7684         provided by Akiya ISHIDA
7685
7686 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7687
7688         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7689         * src/SDCCval.c (constVal): added reduction from int to char
7690         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7691         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7692         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7693         to ignore the sign
7694         * support/regression/tests/shifts.c: fixed
7695
7696 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7697
7698         * src/z80/gen.c (genXor): Fixed bug #805445
7699
7700 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7701
7702         Fixed bug #621531 (const & volatile confusion in the type chain).
7703         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7704         refer to the const or volatile state of the pointer itself.
7705
7706         * src/SDCCast.c
7707         * src/SDCCglue.c
7708         * src/SDCCicode.c
7709         * src/SDCCsymt.c
7710         * src/SDCCval.c
7711         * src/SDCC.y
7712         * src/SDCCsymt.h
7713         * src/pic/gen.c
7714         * src/pic/ralloc.c
7715         * src/pic16/gen.c
7716         * src/pic16/ralloc.c
7717         * support/regression/tests/const.c
7718
7719 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7720
7721         When checking for duplicated modules, use absolute paths
7722         instead of relative paths.  Files changed:
7723
7724         * as/mcs51/lklib.c
7725         * link/z80/lklib.c
7726
7727 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7728
7729         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7730
7731 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7732
7733         * device/include/string.h: added size_t typedef, changed
7734         prototypes to use size_t, eliminated separate reentrant and
7735         non-reentrant declarations, added _memmove declaration
7736         * device/lib/_memcpy.c: changed to use size_t instead of int,
7737         changed /4 to >>2 to avoid division library call
7738         * device/lib/_memcmp.c,
7739         * device/lib/_memset.c,
7740         * device/lib/_strncat.c,
7741         * device/lib/_strncpy.c,
7742         * device/lib/_strncmp.c: changed to use size_t instead of int
7743         * device/lib/_memmove.c: new file (fixed bug #772294)
7744         * device/lib/Makefile.in: added _memmove.c
7745         * device/lib/z80/asm_strings.s: fixed bug #772290
7746         * support/regression/tests/bitfields.c: attempt to fix host assertion
7747         failure on amd64-unknown-linux2.2
7748
7749 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7750
7751         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7752         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7753         * as/z80/asmain.c (main): fixed bug #801766
7754
7755 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7756
7757         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7758         compilers
7759
7760 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7761
7762         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7763         reported in bug #800609
7764
7765 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7766
7767         * Top header beautifications in src/pic16 directory:
7768           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7769           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7770           pcoderegs.h, ralloc.c, ralloc.h
7771         * main.c: added top header and GPL license notice
7772         * pcode.c: fixed the if-conditional warning
7773
7774 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7775
7776         * device/lib/_mullong.c: replaced int by short for gcc
7777
7778 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7779
7780         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7781         and JUMPTABLE iCodes properly now (worked by accident before)
7782         * src/mcs51/gen.c (leftRightUseAcc),
7783         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7784         iCode properly now. Use getSize instead of nRegs since a & b
7785         aren't part of the nRegs tally.
7786
7787 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7788
7789         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7790         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7791           before instructions that use the _STATUS register
7792
7793 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7794
7795         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7796         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7797         fetching of the pointer
7798         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7799         copied from genNearPointerSet()
7800         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7801         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7802         If they pop r0/r1 they must be called in the opposite order than aopOp().
7803         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7804         (resp. --stack-auto), prepared for --xstack
7805
7806 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7807
7808         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7809
7810 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7811
7812         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7813         these ports have their own __sdcc_external_start()
7814
7815 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7816
7817         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7818         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7819         type for bits was changed. It resulted in bit variables becoming
7820         global, which is not permitted in PIC 14 assembly output.
7821
7822 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7823
7824         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7825
7826 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7827
7828         Z80 and MCS51 linkers complaint if a public symbol is defined
7829         in more than one library module:
7830
7831         * as/mcs51/lklib.c
7832         * link/z80/lklib.c
7833         * as/mcs51/Makefile.in
7834
7835 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7836
7837         A few small changes that speed up the peephole optimizer.
7838
7839         * src/SDCCpeeph.c
7840
7841 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7842
7843         Try to make the peephole optimizer smarter by maintaining
7844         an association between the assembly source code and the
7845         iCodes that originated them. Put this information to use
7846         with a new peephole rule condition "notVolatile" so that
7847         the rules can be aggressive yet still safe.
7848
7849         * src/SDCCpeeph.c
7850         * src/SDCCpeeph.h
7851         * src/mcs51/gen.c
7852         * src/mcs51/peeph.def
7853
7854 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7855
7856         Fixed bug #741761
7857
7858         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7859         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7860         if the left or right operand symbols have the accuse flag set.
7861
7862 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7863
7864         Changed the type of the result of the ! (NOT) operator to char;
7865         previously it returned the same type as the source. This allows
7866         us to eliminate all the genFloatNot functions (all of its target
7867         implementations were very buggy) since !float can use the same
7868         code as !long now.
7869
7870         * src/SDCCicode.c (ast2iCode): ! returns char
7871         * src/mcs51/gen.c (genNot, genNotFloat),
7872         * src/ds390/gen.c (genNot, genNotFloat),
7873         * src/z80/gen.c (genNot, genNotFloat),
7874         * src/pic/gen.c (genNot, genNotFloat),
7875         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7876
7877 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7878
7879         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7880         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7881            during interrupts. Ensure WSAVE is located at a shared bank address.
7882         2. Fixed page selection in some places
7883         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7884            the registers name strings.
7885         4. Fixed "signed / unsigned compare" compiler warnings.
7886         5. The PIC port manages its own allocation of the general purpose
7887            registers, but makes no attempt to reuse them. As a result when
7888            compiling it soon runs out of general purpose registers. Some
7889            additional code was added to the files pcode.c and device.c to walk
7890            through the function call tree and rename the registers so that they
7891            get reused.
7892
7893         * src/pic/device.c
7894         * src/pic/gen.c
7895         * src/pic/glue.c
7896         * src/pic/pcode.c
7897         * src/pic/pcode.h
7898         * src/pic/ralloc.c
7899         * src/pic/ralloc.h
7900         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7901         genPlus() & genMinus() when the result is the same as left or right
7902
7903 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7904
7905         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7906
7907 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7908
7909         Made bitfield a distinct type from bit so that bitfields
7910         convert as per ANSI C and bits retain their traditional
7911         boolean style behaviour. Implemented bitfield support in
7912         the z80 port.
7913
7914         * src/SDCCsymt.h,
7915         * src/SDCCsymt.c,
7916         * src/SDCCast.c,
7917         * src/cdbFile.c,
7918         * src/mcs51/gen.c,
7919         * src/ds390/gen.c: bit v bitfield split
7920         * src/z80/gen.c: New support for bitfields
7921         * support/regression/tests/bitfields.c: reenabled z80,
7922         added more tests
7923
7924 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7925
7926         Rules 246.x, 247.x relate to bitfields, the others speed up
7927         access to xdata mapped I/O devices.
7928
7929         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7930
7931 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7932
7933         Cleaned up genPackBits and genUnpackBits and added two helper
7934         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7935         for literal assignments in genPackBits (thanks to Frieder for
7936         reminding me).
7937
7938         * src/mcs51/gen.c
7939         * src/ds390/gen.c
7940
7941 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7942
7943         Fixed bug #748310 (pointer to function type mishandled when the
7944         function name is omitted). Also fixed a SIGSEGV when a function
7945         attribute (reentrant, etc) is used on a non-function or on a
7946         function but misplaced before the parameter list.
7947
7948         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7949         bug #748310
7950         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7951         * support/Util/SDCCerr.h,
7952         * support/Util/SDCCerr.c: Added func attr misuse error msg
7953
7954 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7955
7956         Fixed bug #787649 by anonymous
7957         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7958         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7959
7960 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7961
7962         Fixed numerous bitfield problems.
7963
7964         * src/SDCC.y: More bitfield related error checking
7965         * src/SDCCsymt.h,
7966         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7967         * support/Util/SDCCerr.h,
7968         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7969         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7970         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7971         * support/regression/tests/bitfields.c: tests added
7972
7973 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7974
7975         Made the constant following the "interrupt" keyword optional. If
7976         omitted, the function will not automatically be given an entry
7977         in the interrupt vector table (similar to #pragma NOIV, but
7978         less syntacticly kludgy). The interrupt number is also now
7979         range checked. Also fixed a bug in the high order bit example
7980         in the manual.
7981
7982         * src/SDCC.y
7983         * src/SDCCmem.c
7984         * src/SDCCglue.c
7985         * src/SDCCsymt.h
7986         * support/Util/SDCCerr.c
7987         * support/Util/SDCCerr.h
7988         * doc/sdccman.lyx
7989
7990 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7991
7992         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7993         * src/SDCCicode.c (operandOperation): rewritten some ops
7994         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7995         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7996         other type
7997         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7998         be re-activated by defining REDUCE_LITERALS)
7999         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8000         unsigned, but are signed by default
8001         * src/SDCCval.c (constVal): rearranged
8002         * src/SDCCval.c (valMod): preliminary fix
8003         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8004         * support/regression/literalop.c: added, work in progress
8005
8006 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8007
8008         Generate warnings for useless declarations like "char data;"
8009         that don't do what new users expect.
8010
8011         * src/SDCC.y
8012         * support/Util/SDCCerr.h
8013         * support/Util/SDCCerr.c
8014
8015 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8016
8017         * src/SDCCval.c (valMult): fix overflow detection of negative int
8018
8019 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8020
8021         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8022
8023         Changes to support big endian targets:
8024
8025         * src/ports.h
8026         * src/SDCCglue.c
8027         * src/avr/main.c
8028         * src/ds390/main.c
8029         * src/izt/i186.c
8030         * src/mcs51/main.c
8031         * src/pic/main.c
8032         * src/pic16/main.c
8033         * src/xa51/main.c
8034         * src/z80/main.c
8035
8036 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8037
8038         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8039         * device/lib/time.c: fixed warning "integer overflow in expression"
8040
8041 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8042
8043         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8044         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8045         constants are unsigned; added recognition of "u" flag for unsigned
8046         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8047         * src/SDCCval.c (valDiv, valMod): fixed signdness
8048         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8049         signedness of modulo, left and right shift
8050         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8051         * support/Util/SDCCerr.h: added warning W_INT_OVL
8052         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8053         * src/SDCCast.c (ast_print): improved output of constants
8054
8055 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8056
8057         Fixed some warnings when building with MSVC:
8058
8059         * as\mcs51\asdata.c
8060         * as\z80\asdata.c
8061         * as\mcs51\asm.h
8062         * as\z80\asm.h
8063         * link\z80\aslink.h
8064         * link\z80\lkdata.c
8065         * link\z80\lkeval.c
8066         * link\z80\lkgb.c
8067         * link\z80\lkihx.c
8068         * link\z80\lks19.c
8069         * link\z80\lksym.c
8070         * support\cpp2\cpplib.c
8071         * src\ds390\gen.c
8072         * src\mcs51\gen.c
8073
8074 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8075
8076         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8077
8078 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8079
8080         * support\librarian\clean.mk: Do not remove Makefile.
8081         * support\librarian\Makefile: added.
8082
8083 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8084
8085         Added librarian to MSVC build:
8086         * all.dsp
8087         * sdcc.dsw
8088         * support\librarian\librarian.dsp
8089
8090         'configure' not needed for librarian, removed:
8091         * support\librarian\configure
8092         * support\librarian\configure.in
8093         * support\librarian\config_in.h
8094         * support\librarian\Makefile.in
8095
8096         Hopefully these ones built the librarian and the rest of sdcc properly:
8097         * Makefile
8098         * Makefile.common.in
8099
8100         Messed up 'configure', so revert to previous version:
8101         * configure
8102         * configure.in
8103
8104 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8105
8106         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8107         there, while the mantissa of a double is "only" 53 bits wide.
8108
8109 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8110
8111         Adding sdcclib to the build.  MSVC project coming soon.
8112         Files added/changed:
8113
8114         * support\librarian\clean.mk
8115         * support\librarian\configure
8116         * support\librarian\configure.in
8117         * support\librarian\config_in.h
8118         * support\librarian\Makefile.bcc
8119         * support\librarian\Makefile.in
8120         * support\librarian\sdcclib.c
8121         * Makefile.bcc
8122         * Makefile
8123         * Makefile.common.in
8124         * configure
8125         * configure.in
8126
8127 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8128
8129         Linker now complaints if linked modules have conflicting options, for
8130         example, one compiled using --model-large and another one compiled with
8131         --model-small.  The following files were modified:
8132
8133         * as\mcs51\asdata.c
8134         * as\mcs51\aslink.h
8135         * as\mcs51\asm.h
8136         * as\mcs51\asmain.c
8137         * as\mcs51\asout.c
8138         * as\mcs51\i51pst.c
8139         * as\mcs51\lkdata.c
8140         * as\mcs51\lklibr.c
8141         * as\mcs51\lkmain.c
8142         * as\z80\asdata.c
8143         * as\z80\asm.h
8144         * as\z80\asmain.c
8145         * as\z80\asout.c
8146         * as\z80\z80pst.c
8147         * link\z80\aslink.h
8148         * link\z80\lkdata.c
8149         * link\z80\lklibr.c
8150         * link\z80\lkmain.c
8151         * src\SDCCglue.c
8152
8153 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8154
8155         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8156         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8157
8158 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8159
8160         * src/z80/mappings.i: fix _mul[us][int,long] entries
8161
8162 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8163
8164         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8165
8166 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8167
8168         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8169         * support/regression/tests/bitopcse.c: added
8170         fixed warning:
8171         * src/avr/gen.c:
8172         * src/pic/gen.c:
8173         * src/pic16/gen.c:
8174         * src/z80/gen.c:
8175         * src/xa51/gen.c:
8176
8177 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8178
8179         added support for new library format to z80, gbz80 linkers:
8180         *link/z80/aslink.h
8181         *link/z80/lklex.c
8182         *link/z80/lklib.c
8183         *link/z80/lklist.c
8184
8185 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8186
8187         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8188         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8189
8190 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8191
8192         added DUMMY_READ_VOLATILE:
8193         * src/SDCC.y:
8194         * src/avr/gen.c:
8195         * src/xa51/gen.c:
8196         * src/z80/gen.c:
8197         * src/pic/gen.c:
8198         * src/pic16/gen.c:
8199         * src/mcs51/gen.c:
8200         * src/ds390/gen.c:
8201         * src/SDCCcse.c (algebraicOpts): many improvements
8202         * src/SDCCcse.h: removed algebraicOpts()
8203         * src/SDCCicode.c (picDummyRead): added
8204
8205 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8206
8207         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8208         "Insufficient space in data memory".
8209
8210 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8211
8212         * src/mcs51/gen.c: fixed bug #771358
8213         * src/z80/gen.c: fixed bug #759087
8214
8215 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8216
8217         * src/pic16/glue.c: minor cleanup by Vangelis
8218
8219 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8220
8221         * device/include/regc515c.h: fixed #758477
8222         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8223         * device/lib/_gptrput.c: saved a few bytes
8224         * my tab spacing is 8, yours too?)
8225         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8226         * device/lib/serial.c: process RX bytes earlier than TX bytes
8227         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8228
8229 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8230
8231         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8232
8233 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8234
8235     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8236
8237 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8238
8239         * device/lib/Makefile.in: bad fix, reverted to 1.43
8240
8241 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8242
8243         * device/lib/Makefile.in: added missing z80 object files
8244
8245 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8246
8247         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8248         pic16 progress by Vangelis:
8249         * src/SDCCglobl.h:
8250         * src/SDCCmain.c:
8251         * src/pic/Makefile:
8252         * src/pic:
8253         * pic/Makefile:
8254         * pic16/device.c:
8255         * pic16/device.h:
8256         * pic16/gen.c:
8257         * pic16/gen.h:
8258         * pic16/genarith.c:
8259         * pic16/glue.c:
8260         * pic16/main.c:
8261         * pic16/pcode.c:
8262         * pic16/pcode.h:
8263         * pic16/pcodepeep.c:
8264         * pic16/peeph.def:
8265
8266 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8267
8268     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8269
8270 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8271
8272     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8273     added gbz80 build to MSVC project.
8274     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8275     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8276     from 8051 stuff and setup so it links using a .lnk file.
8277
8278 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8279
8280     * support/librarian/sdcclib.c: sdcc librarian.
8281     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8282     with sdcclib.
8283
8284 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8285
8286     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8287
8288 2003-07-02  Borut Razem <borut.razem AT siol.net>
8289
8290         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8291         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8292         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8293         src/xa51/main.c, src/z80/main.c:
8294         virtualization of glue() function: each port has it's own glue function,
8295         which is accessed by do_glue function pointer in PORT.general structure
8296
8297 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8298
8299         * DS800C400 fun, improved ROM interface and tinibios.
8300
8301 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8302
8303         * More support for DS80C400. Now includes beginning of interface to ROM.
8304
8305 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8306
8307         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8308
8309 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8310
8311         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8312
8313 2003-06-19  Borut Razem <borut.razem AT siol.net>
8314
8315         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8316
8317 2003-06-19  Borut Razem <borut.razem AT siol.net>
8318
8319         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8320         fixed Z80 port - crt0.o: cannot open.
8321
8322 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8323
8324         * support/Util/MySystem.c (merge_command): revert bad fix
8325
8326 2003-06-18  Borut Razem <borut.razem AT siol.net>
8327
8328         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8329
8330 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8331
8332         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8333         option --use-stdout sends errors to stdout instead of stderr.
8334
8335 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8336
8337         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8338
8339 2003-06-15  Borut Razem <borut.razem AT siol.net>
8340
8341         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8342         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8343         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8344         fixed width array of pointers replaced with sets;
8345         multiple include and lib paths ared transferred to preprocessor and linker
8346         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8347         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8348         fixed width array of pointers
8349         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8350         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8351         fixupPath(), getPathDifference()
8352         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8353         fixed width array of pointers
8354
8355 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8356
8357         * src/pic16/ralloc.c: fix warnings
8358         * src/pic16/pcode.c: fix warning
8359
8360 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8361
8362          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8363         know all the details, but essentially this set of changes enable
8364         the pic16 port to generate movff instructions and generate assembler
8365         directives,
8366         * src/SDCCmain.c:
8367         * src/pic16/gen.c:
8368         * src/pic16/glue.c:
8369         * src/pic16/pcode.c:
8370         * src/pic16/device.c:
8371         * src/pic16/main.c:
8372         * src/pic16/pcode.h:
8373         * src/pic16/pcoderegs.c:
8374         * src/pic16/ralloc.c:
8375         * src/pic16/ralloc.h:
8376
8377 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8378
8379         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8380         added option --vc, so sdcc errors and warnings are compatible with
8381         Microsoft Visual Studio.
8382
8383 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8384
8385         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8386           device/lib/libfloat.lib: added atof function.
8387
8388 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8389
8390         * doc/sdccman.lyx: updated to Lyx 1.3
8391         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8392         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8393         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8394
8395 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8396
8397         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8398
8399 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8400
8401         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8402           additions to the "related tools/documentation" section
8403
8404 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8405
8406         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8407
8408 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8409
8410         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8411         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8412
8413 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8414
8415         * doc/sdccman.lyx: fix double dash and other minor things
8416         * doc/Makefile: fix double dash
8417
8418 2003-05-28  Karl Bongers(patches from Martin Helmling)
8419         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8420           condition and ignore commands.
8421
8422 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8423
8424         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8425           is in parts still quite out of date, I did changes as far as I felt makes sense
8426           for a non-native english speaker.
8427           Please feel free to add to the manual or to correct my changes.
8428         * doc/Makefile: undid touching the date of intermediate tex files.
8429
8430 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8431
8432         * doc/sdccman.lyx: Manual has an index now
8433
8434 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8435
8436         Finalize muluint/mulsint and mululong/mulslong merging:
8437         * device/lib/_mulint.c
8438         * device/lib/_mullong.c
8439         * device/lib/gbz80/mul.s
8440         * device/lib/gbz80/stubs.s
8441         * device/lib/z80/mul.s
8442         * device/lib/z80/stubs.s
8443         * src/SDCCsymt.c (initCSupport)
8444
8445 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8446
8447         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8448         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8449           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8450           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8451           instead of /Zm500.
8452
8453 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8454
8455         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8456           the regression tests I'm not brave enough to enable 245.b, 245.c
8457         * doc/sdccman.lyx: added latex preamble for hyperref package.
8458           Using pdflatex this will give you a hyperlinked pdf file with
8459           bookmarks. (prepend '%' before /usepackage if this breaks something)
8460
8461 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8462
8463          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8464
8465 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8466
8467         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8468
8469 2003-05-21    <johan AT balder>
8470
8471         * src/SDCCglue.c (printIval): fixed bug #739934
8472
8473 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8474
8475         Applied patch from bug 737905 (renamed yylineo to mylineno):
8476         * src/altlex.c
8477         * src/SDCCast.c
8478         * src/SDCglobl.h
8479         * src/SDCC.lex
8480         * src/SDCCsymt.c
8481         * src/SDCCval.c
8482         * src/pic16/pcode.c: Cleaned warnings
8483         * src/pic16/pcodeflow.c: Cleaned warnings
8484         * src/pic16/pcoderegs.c: Cleaned warnings
8485
8486 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8487
8488         * src/pic16/pcode.c: Cleaned warnings
8489         * src/pic16/pcodepeep.c: Cleaned warnings
8490         * src/pic16/ralloc.c: Cleaned warnings
8491
8492 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8493
8494         * doc/sdccman.lyx: fixed bug 739745
8495         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8496
8497 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8498
8499         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8500         it can be defined with CFLAGS when running configure
8501         * src/SDCCmain.c: fixed compiling + linking with object files
8502
8503 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8504
8505         * configure.in: configure for pic16 port,
8506             added --disable-pic16-port
8507         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8508         * src/SDCCmain.c: linkOptions is changed to set *,
8509             added if/endif conditional macros to remove options help
8510             messages from optionsTable when a port is not configured, added
8511             support for the PIc16 port in the ports table, when executing
8512             the compiler with no port specified on command line, a default
8513             port is selected with the new macro DEFAULT_PORT which is
8514             defined in port.h, in setDefaultOptions() linkOptions is removed
8515             from initialization assignment, since now it is a set,
8516             parseCmdLine uses setParseWithComma for linkOptions, in
8517             linkEdit() linkOptions are accessed with new function indexSet()
8518             which returns the i'th item of a set variable. See SDCCset.c, in
8519             linkEdit() when calling buildCmdLine(), added linkOptions as
8520             last argument. Now users can pass arguments to gplink via the
8521             -Wl option, main() uses pic16glue() to glue up pic16 programs
8522         * src/SDCCpeeph.c: various changes to support pic16
8523         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8524             return the i'th item of the set
8525         * src/SDCCset.h: added function prototype for indexSet()
8526         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8527         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8528         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8529             added macro DEFAULT_PORT
8530         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8531         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8532             generated
8533         * src/pic16/glue.c: commented out some error producing lines
8534         * src/pic16/main.c: __config directives are commented out to stop
8535             gpasm complaining and test the linkage with gplink, _linkCmd and
8536             _asmCmd changed to be more gplink and gpasm friendly
8537         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8538             produced an error when parsed, peep rule 12 is added to utilize
8539             movff, but it is commented out since the pCode does not support
8540             yet a command with 2 address arguments
8541
8542 2003-05-18    <johan AT balder>
8543
8544         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8545         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8546 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8547
8548         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8549   Added feature to script commands from file.
8550
8551 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8552
8553         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8554         * src/SDCCutil.c: include ctype.h for win32
8555
8556 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8557
8558         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8559
8560 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8561
8562         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8563   Fixed so you can set breakpoints prior to run, run does not stop
8564   on entry now.  Add tbreak.  Other enhancements and fixes for use
8565   with ddd.
8566
8567 2003-05-12  Borut Razem <borut.razem AT siol.net>
8568
8569         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8570
8571 2003-05-11  Borut Razem <borut.razem AT siol.net>
8572
8573         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8574         the path of bin directory, so that PATH is the only env. variable, which has to be set
8575         in case of standard installation.
8576         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8577         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8578         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8579
8580 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8581
8582         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8583         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8584         temp files are in the port dir; clean the gen/test directory when
8585         generating new test.c
8586         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8587         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8588         * support/regression/tests/zeropad.c: added
8589
8590 2003-05-09    <johan AT balder>
8591
8592         * src/SDCCglue.c: fixed bug #597940
8593
8594 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8595
8596         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8597   cache sfr, optimize next,step, fix off by one sourceline,
8598   support ddd list function.
8599         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8600
8601 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8602
8603         * support/regression/HTMLgen.py: added compare_s2f()
8604         * support/regression/Makefile: redo 1.27
8605         * support/regression/generate-cases.py: redo 1.5
8606
8607 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8608
8609         * support/regression/tests/float.c: workaround 33 bit hex constant
8610         * support/regression/tests/simplefloat.c: fix division for host
8611
8612 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8613
8614         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8615         that tame's the PIC's over-aggressive optimizer.
8616
8617 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8618
8619          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8620          support for MSVC.
8621
8622 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8623
8624         Initial support for DS80C400. "Hello world" runs on TINIm400
8625         (with polled I/O).
8626
8627 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8628
8629          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8630          * Some notes on ddd usage added in debugger/README
8631          Martin Helmling adding more features and fixes for ddd GUI debugger.
8632          Code added for nexti, stepi, up, down, and other adjustments.
8633
8634 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8635
8636         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8637         * src/pic/peeph.def Added two rules to optimize carry manipulation
8638         * src/pic/* removed debug printfs
8639
8640 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8641
8642         * debugger/mcs51/cmd.c: added header newalloc.h
8643
8644 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8645
8646         * as/Makefile: new EXEEXT
8647         * as/z80/Makefile: remove trailing slash of BUILDIR
8648         * as/z80/clean.mk: new EXEEXT
8649         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8650         * support/cpp2/Makefile.in: new EXEEXT
8651         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8652
8653 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8654
8655         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8656         EXEEXT was introduced to fix all related problems with targets
8657         "clean", "install" and "uninstall"; a couple of further flaws
8658         especially with "clean" have been fixed too
8659         * as/mcs51/Makefile.in
8660         * as/mcs51/clean.mk
8661         * as/z80/Makefile
8662         * Makefile
8663         * clean.mk
8664         * debugger/mcs51/Makefile.in
8665         * debugger/mcs51/clean.mk
8666         * link/z80/Makefile
8667         * link/z80/Makefile.in
8668         * link/z80/clean.mk
8669         * link/Makefile
8670         * packihx/Makefile.in
8671         * packihx/clean.mk
8672         * sim/ucsim/Makefile
8673         * sim/ucsim/clean.mk
8674         * sim/ucsim/avr.src/Makefile.in
8675         * sim/ucsim/avr.src/clean.mk
8676         * sim/ucsim/s51.src/Makefile.in
8677         * sim/ucsim/s51.src/clean.mk
8678         * sim/ucsim/xa.src/Makefile.in
8679         * sim/ucsim/xa.src/clean.mk
8680         * sim/ucsim/z80.src/Makefile.in
8681         * sim/ucsim/z80.src/clean.mk
8682         * sim/ucsim/main_in.mk
8683         * sim/ucsim/packages_in.mk
8684         * sim/ucsim/gui.src/Makefile.in
8685         * sim/ucsim/gui.src/serio.src/Makefile.in
8686         * sim/ucsim/gui.src/serio.src/clean.mk
8687         * src/Makefile.in
8688         * src/clean.mk
8689         * support/cpp2/Makefile.in
8690         * support/cpp2/clean.mk
8691         * support/makebin/Makefile
8692         * support/makebin/clean.mk
8693         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8694         * doc/sdccman.lyx: --program-suffix no longer needed
8695
8696 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8697
8698          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8699          Martin Helmling added support for ddd GUI debugger.
8700          Code added to display assembly, set variables, and other commands
8701          to interface to ddd.
8702
8703 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8704
8705         * as/Makefile: fix target clean
8706         * as/clean.mk: fix target clean
8707         * as/z80/clean.mk: fix target clean
8708
8709 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8710
8711         * Makefile.common.in: added  AT EXEEXT AT
8712         * configure.in: removed all mingw32 stuff
8713         * configure: rebuilt from configure.in
8714         * doc/sdccman.lyx: updated section "installation"
8715         * support/scripts/sdcc_mingw32: adapted to configure
8716         * support/scripts/sdcc_cygwin_mingw32: added
8717
8718 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8719
8720         * src/pic Added object file support for the PIC port
8721         * src/pic Applied patch from Craig Franklin (this started the object file support)
8722         * src/regression Updated the PIC regression tests for object files
8723
8724 2003-04-20  Borut Razem <borut.razem AT siol.net>
8725
8726         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8727           lklex.c: In function `getfid':
8728           lklex.c:203: warning: array subscript has type `char'
8729         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8730           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8731         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8732           stack handling macros
8733
8734 2003-04-19  Borut Razem <borut.razem AT siol.net>
8735
8736         * "handling space characters in file path" task:
8737         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8738         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8739         * support/Util/MySystem.h: make it self-sufficient
8740         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8741           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8742           handling space characters in file path
8743         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8744           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8745         * support/Util/MySystem.c: handling space characters in executable's path
8746
8747 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8748
8749         * as/z80/Makefile: fix permanent rebuild of z80
8750         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8751         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8752
8753 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8754
8755         * src/SDCCopt.c: add special case optimization to replace modulo by
8756           a power of two with a bitwise AND.
8757
8758 2003-04-18    <johan AT balder>
8759
8760         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8761
8762 2003-04-17    <johan AT balder>
8763
8764         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8765         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8766
8767 2003-04-13  Borut Razem <borut.razem AT siol.net>
8768
8769         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8770         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8771           fixed mingw problem in adl_NORMALIZE_PATH
8772
8773 2003-04-12  Borut Razem <borut.razem AT siol.net>
8774
8775         * fixed "#pragma SAVE/RESTORE can not be nested":
8776         * src/SDCC.lex: reworked pragma handling functions
8777         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8778         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8779
8780 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8781
8782         * src/SDCCutil.c (pathEquivalent): defined but not used
8783         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8784         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8785         * configure: rebuilt from configure.in
8786         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8787         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8788         * device/include/Makefile.in: replace sdcc_datadir
8789         * device/lib/Makefile.in: replace sdcc_datadir
8790         * Makefile.common.in: add LDFLAGS from configure
8791         * packihx/Makefile.in: use LDFLAGS
8792         * src/Makefile.in: use LDFLAGS
8793         * support/cpp2/Makefile.in: add LDFLAGS from configure
8794         * support/makebin/Makefile: use LDFLAGS
8795         * .version: bumped version number to 2.3.5
8796
8797 2003-04-12  Borut Razem <borut.razem AT siol.net>
8798
8799         * completed "different paths" task:
8800         * src/SDCCmacro.c: fixed bug in handling quotes
8801         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8802         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8803
8804 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8805
8806         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8807
8808 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8809
8810         * ds390/gen.c ds390/peeph.def: fix bug 706781
8811
8812 2003-04-11  Borut Razem <borut.razem AT siol.net>
8813
8814         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8815
8816 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8817
8818         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8819         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8820          set - this bit used to not be set...).
8821         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8822           bad code in PIC Port
8823         * src/regression/and2.c added to test bug 609268
8824         * src/regression/Makefile added and2.c to regression test
8825
8826
8827 2003-04-08    <johan AT CP255758-A>
8828
8829         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8830         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8831         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8832
8833 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8834
8835         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8836         fix bug #487815
8837         * support/cpp2/Makefile.in: fix bug #487815
8838         * configure: rebuilt from configure.in
8839         * Makefile.common.in: docdir changed, new path suffixes
8840         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8841         * sdcc_vc_in.h: reflect changes from sdccconf.h
8842         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8843         * src/SDCCutil.h: remove BINDIR hack
8844         * doc/sdccman.lyx: update new path hierarchy
8845
8846 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8847
8848         * src/SDCCpeeph.c: added okToRemoveSLOC test
8849
8850 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8851
8852         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8853
8854 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8855
8856         * src/SDCCpeeph.c: added labelIsReturnOnly test
8857         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8858
8859 2003-04-05    <johan AT balder>
8860
8861         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8862         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8863         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8864         * src/SDCCast.c: fixed a warning
8865         * src/SDCCast.h: fixed a warning
8866         * src/SDCCicode.c (operandFromAst): fixed a warning
8867
8868 2003-04-04    <johan AT balder>
8869
8870         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8871         * src/SDCCast.c (decorateType): fixed bug #715076
8872         * src/SDCC.y: fixed bug #702907
8873
8874 2003-04-03    <johan AT balder>
8875
8876         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8877         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8878         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8879         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8880         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8881
8882 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8883
8884         * _decdptr.c: fix return values
8885         * _gptrget.c: fix return values
8886         * _gptrgetc.c: fix return values
8887         * _gptrput.c: fix return values
8888         * _mulint.c: fix return values
8889         * as/z80/Makefile: fix 'make -j' problem
8890
8891 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8892
8893         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8894         * configure.in: big cleanup, updated to autoconf 2.5x
8895         * configure: rebuilt from configure.in
8896         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8897         * sdcc_vc_in.h: reflect changes from sdccconf.h
8898         * doc/Makefile: fixed a flaw in "make install"
8899
8900 2003-04-02    <johan AT balder>
8901
8902         * src/ds390/gen.c (genCmp): no comments
8903         * src/mcs51/gen.c (genCmp): no comments
8904         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8905         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8906
8907 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8908
8909         * support/regression/generate-cases.py: place generated file in given sub directory
8910         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8911         * support/regression/Makefile: improvements for 'make -j';
8912         side effect: it's simpler and faster now
8913
8914 2003-03-31  Borut Razem <borut.razem AT siol.net>
8915
8916         * src/z80/main.c: link-{port} and as-{port} defined without path
8917         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8918
8919 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8920
8921         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8922
8923 2003-03-30  Borut Razem <borut.razem AT siol.net>
8924
8925         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8926           changed type of list parameter to set
8927         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8928         * src/port.h: changed type of do_assemble() parameter to set
8929         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8930           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8931           definition of "cppoutfilename" macro with NULL value in preProcess()
8932         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8933         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8934         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8935           replaced with set *binPathSet
8936         * shash_add() deallocates the item, if allready exsists, before adding the new one
8937         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8938
8939 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8940
8941         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8942           a nested for loop bug in the PIC port
8943         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8944           for loops
8945
8946 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8947
8948         * support/Util/dbuf.h: remove C++ stuff to make it portable
8949
8950 2003-03-28  Borut Razem <borut.razem AT siol.net>
8951
8952         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8953           literal strings in stringLiteral()
8954         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8955         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8956           to the project
8957
8958 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8959
8960         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8961
8962 2003-03-26    <johan AT balder>
8963
8964         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8965         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8966         * src/SDCCast.c (decorateType): fixed " -v < 3"
8967
8968 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8969
8970         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8971         Added Lenny Story's debug infrastructure changes:
8972         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8973         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8974         * src/cdbFile.c: added
8975         * src/SDCCdebug.c: added
8976         * src/SDCCdebug.h: added
8977         * src/SDCCast.c (createFunction)
8978         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8979         * src/SDCCmain.c (parseCmdLine, main)
8980         * src/SDCCmem.c (redoStackOffsets)
8981         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8982         * src/SDCCsymt.h
8983         * src/common.h
8984         * src/avr/gen.c (genAVRCode)
8985         * src/ds390/gen.c (gen390Code)
8986         * src/mcs51/gen.c (gen51Code)
8987         * src/pic/gen.c (genpic14Code)
8988         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8989         * src/xa51/gen.c (genXA51Code)
8990         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8991
8992 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8993
8994         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8995         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8996
8997 2003-03-22    <johan AT balder>
8998
8999         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9000
9001 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9002
9003         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9004         * doc/cdbfileformat.lyx: added, written by Lenny Story
9005         * doc/Makefile: added cdbfileformat.lyx
9006         * doc/clean.mk: added cdbfileformat.lyx
9007
9008 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9009
9010         * src/mcs51/peeph.def: fix bug #705773
9011
9012 2003-03-20    <johan AT balder>
9013
9014         An sfr/sbit can have an "at #" AND an initializer
9015         * src/SDCCsymt.c (checkSClass):
9016         * src/SDCCmem.c (allocGlobal):
9017         * src/SDCCmem.c (allocLocal):
9018         * src/SDCCast.c (createBlock):
9019
9020 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9021
9022         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9023
9024 2003-03-16    <johan AT balder>
9025
9026         Undid the hackup of const and volatile, the problem is much bigger
9027         * src/SDCC.y:1.65
9028         * src/SDCCast.c:1.171
9029         * src/SDCCglue.c:1.138
9030         * src/SDCCicode.c:1.146
9031         * src/SDCCsymt.c:1.150
9032         * src/SDCCval.c:1.65
9033
9034 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9035
9036         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9037         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9038
9039 2003-03-13    <johan AT balder>
9040
9041         Hackup const and volatile modifiers in type chains a bit:
9042         * src/SDCC.y:1.63
9043         * src/SDCCast.c:1.169
9044         * src/SDCCglue.c:1.136
9045         * src/SDCCicode.c:1.143
9046         * src/SDCCsymt.c1.146
9047         * src/SDCCsymt.h1.59
9048         * src/SDCCval.c:1.63
9049
9050 2003-03-12    <johan AT balder>
9051
9052         * src/SDCCBBlock.h: more LRH debugging junk
9053         * src/SDCCcflow.h: more LRH debugging junk
9054         * src/SDCCloop.c: more LRH debugging junk
9055         * src/SDCC.y (struct_declaration): fixed bug #697590
9056         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9057         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9058         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9059
9060 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9061         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9062         test function names must now match exactly).
9063         * src/SDCCcse.c: added special case in findCheaperOp to allow
9064         extending a short integer. Makes less awful code for bug 700121 test case.
9065
9066 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9067
9068         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9069         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9070
9071 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9072
9073         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9074         actually called (operandsNotEqual() was called for all
9075         operandsNotEqualX tests).
9076
9077 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9078
9079         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9080         with shorter literals. Fixes bug 700121.
9081
9082 2003-03-11    <johan AT balder>
9083
9084         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9085
9086 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9087
9088         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9089         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9090
9091 2003-03-10  Borut Razem <borut.razem AT siol.net>
9092
9093         * src/SDCCmain.c: pipe preprocessor's output
9094         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9095         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9096         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9097         which closes all pipes in pipeSet set
9098         * src/SDCCset.c: free deleted item in function deleteSetItem()
9099         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9100         moved from z80 to src subproject
9101         * .version: increased version number to 2.3.4
9102
9103 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9104
9105         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9106         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9107         * support/regression/ports/xa51/spec.mk: fix typo
9108
9109 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9110
9111         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9112
9113 2003-03-09  Borut Razem <borut.razem AT siol.net>
9114
9115         * src/SDCCmain.c: pipe preprocessor's output
9116         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9117         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9118         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9119         which closes all pipes in pipeSet set
9120         * src/SDCCset.c: free deleted item in function deleteSetItem()
9121         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9122         moved from z80 to src subproject
9123
9124 2003-03-09  Borut Razem <borut.razem AT siol.net>
9125
9126         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9127         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9128         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9129         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9130         * src/SDCCglobl.h: unification of WIN32 native definitions
9131
9132 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9133
9134         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9135
9136 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9137
9138         * src/configure.in:   check for endianess (even while cross-compiling)
9139         * src/configure:      check for endianess (even while cross-compiling)
9140         * src/configure_in.h: check for endianess (even while cross-compiling)
9141         * src/avr/gen.c:        remove old endianess stuff
9142         * src/mcs51/gen.c:      remove old endianess stuff
9143         * src/ds390/gen.c:      remove old endianess stuff
9144         * src/pic/gen.c:        remove old endianess stuff
9145         * src/pic/genarith.c:   remove old endianess stuff
9146         * src/pic/glue.c:       fix endianess check
9147         * src/pic16/gen.c:      remove old endianess stuff
9148         * src/pic16/genarith.c: remove old endianess stuff
9149         * src/pic16/glue.c:     fix endianess check
9150         * src/xa51/gen.c:       remove old endianess stuff
9151         * src/z80/gen.c:        fix endianess check
9152         * src/SDCCglue.c:       fix endianess check
9153         * src/ds390/peeph.def: fix bug 700036
9154
9155 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9156
9157         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9158         * src/configure: find appropriate data-types on host for SDCC's int and long
9159         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9160         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9161         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9162
9163 2003-03-07    <johan AT balder>
9164
9165         Just a big NOOP:
9166                 some minor cleanups before the big shot
9167                 OP_DEFS and OP_USES now use Kevin's protection
9168                 new option --nolabelopt
9169
9170         * src/SDCCBBlock.c:
9171         * src/SDCCast.c,:
9172         * src/SDCCcflow.c:
9173         * src/SDCCcse.c:
9174         * src/SDCCicode.c:
9175         * src/SDCCicode.h:
9176         * src/SDCClabel.c:
9177         * src/SDCCloop.c:
9178         * src/SDCCmain.c:
9179         * src/ds390/ralloc.c:
9180         * src/mcs51/ralloc.c:
9181         * src/pic/ralloc.c:
9182         * src/xa51/ralloc.c:
9183         * src/z80/ralloc.c:
9184
9185 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9186
9187         * src/pic/pcode.c (get_op): fix 64 bit warnings
9188         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9189         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9190         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9191         * support/regression/tests/malloc.c: fix 64 bit warnings
9192
9193 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9194
9195         * src/mcs51/gen.c (genMinus): fixed bug 696436
9196
9197 2003-03-02  Borut Razem <borut.razem AT siol.net>
9198
9199         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9200
9201 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9202
9203         * configure.in: test for mkstemp
9204         * sdccconf_in.h: add HAVE_MKSTEMP
9205
9206 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9207
9208         * device/include/ctype.h: removed warning while using --stack-auto
9209         * device/include/malloc.h: removed warning while using --stack-auto
9210         * device/include/string.h: removed warning while using --stack-auto
9211
9212 2003-02-23  Borut Razem <borut.razem AT siol.net>
9213
9214         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9215         because NDEBUG is defined (see man assert)
9216         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9217
9218 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9219
9220         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9221         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9222
9223 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9224
9225         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9226         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9227
9228 2003-02-18    <johan AT balder>
9229
9230         * as/mcs51/asmain.c (asmbl): module can start with a digit
9231         * as/z80/asmain.c (asmbl): module can start with a digit
9232
9233 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9234
9235         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9236         * src/asm.c: fix pipe() for Mingw32
9237
9238 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9239
9240         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9241         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9242         make -V work again; --c1mode reads now from stdin
9243         * doc/sdccman.lyx: added --c1mode
9244         * support/Util/SDCCerr.c: new messages for c1 mode
9245         * support/Util/SDCCerr.h: new messages for c1 mode
9246         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9247
9248 2003-02-15    <johan AT balder>
9249
9250         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9251
9252 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9253
9254         * doc/sdccman.lyx: Environment variables, -o and other minor things
9255
9256 2003-02-14    <johan AT balder>
9257
9258         * src/xa51/main.c: before anyone really tries to use it :)
9259
9260         * Install doc's in share/sdcc/doc
9261         * removed some obsolete files
9262         * Do a proper make distclean and uninstall
9263         M Makefile.common.in
9264         R sdccbuild.sh
9265         M as/Makefile
9266         M device/include/Makefile.in
9267         M device/lib/Makefile.in
9268         M doc/sdccman.lyx
9269         M link/Makefile
9270         M sim/ucsim/doc/Makefile.in
9271         M src/clean.mk
9272         R src/avr/peeph.rul
9273         R src/xa51/peeph.rul
9274         M support/cpp2/Makefile.in
9275         M support/makebin/Makefile
9276
9277
9278 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9279
9280         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9281
9282 2003-02-10  Borut Razem <borut.razem AT siol.net>
9283
9284         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9285         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9286         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9287         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9288         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9289         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9290         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9291         src/z80/Makefile.bcc: Borland Makefile cleanup
9292         * as/z80/Makefile.bcc: Added Borland Makefile
9293         * support/cpp2/borland.h: Removed
9294
9295 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9296
9297         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9298         * src/SDCC.lex: new pragma NOIV
9299         * src/SDCCglobl.h: new pragma NOIV
9300         * src/SDCCmem.c: new pragma NOIV
9301
9302 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9303
9304         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9305
9306 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9307
9308         * src/SDCCmain.c: signal handling is switched off by --debug
9309         * doc/Makefile: small fix for install; use clean.mk again
9310         * doc/clean.mk: clean *.pdf and *.html too
9311
9312 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9313
9314         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9315         * device/lib/printfl.c: fix a ds390 bug by making it portable
9316         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9317         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9318         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9319         * debugger/mcs51/cmd.c: converted multi-line string literals
9320         * sim/ucsim/globals.cc: converted multi-line string literals
9321         * src/SDCCmain.c: introduced signal handler to remove temp files
9322         * doc/Makefile: small tweaks, implement clean
9323         * doc: removed generated files
9324
9325 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9326
9327         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9328         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9329         Address Record is not correctly generated for DS390."
9330
9331 2003-02-02  Borut Razem <borut.razem AT siol.net>
9332
9333         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9334         * as/mcs51/asm.h: fixed compilation with Borland C
9335         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9336         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9337         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9338         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9339         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9340         src/z80/Makefile.bcc: delete $(LIB) only if exist
9341         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9342
9343 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9344
9345         * device/include/malloc.h: introduced NULL
9346         * device/include/string.h: introduced NULL
9347         * device/include/stdlib.h: introduced NULL
9348         * device/lib/_memcpy.c: removed NULL
9349         * device/lib/_strcat.c: removed NULL
9350         * device/lib/_strchr.c: removed NULL
9351         * device/lib/_strcmp.c: removed NULL
9352         * device/lib/_strcpy.c: removed NULL
9353         * device/lib/_strcspn.c: removed NULL
9354         * device/lib/_strlen.c: removed NULL
9355         * device/lib/_strncat.c: removed NULL
9356         * device/lib/_strncmp.c: removed NULL
9357         * device/lib/_strncpy.c: removed NULL
9358         * device/lib/_strpbrk.c: removed NULL
9359         * device/lib/_strrchr.c: removed NULL
9360         * device/lib/_strspn.c: removed NULL
9361         * device/lib/_strstr.c: removed NULL
9362         * device/lib/_strtok.c: removed NULL
9363         * device/lib/malloc.c: removed NULL, include own header
9364
9365 2003-02-02    <johan AT balder>
9366
9367         * 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
9368         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9369         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9370         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9371         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9372         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9373
9374 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9375
9376         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9377         area 'DATA'"
9378
9379 2003-02-01    <johan AT balder>
9380
9381         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9382
9383 2003-01-31    <johan AT CP255758-A>
9384
9385         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9386
9387 2003-01-30    <johan AT balder>
9388
9389         * src/SDCCBBlock.c: automatic bug detection
9390         * src/SDCCicode.c: automatic bug detection
9391
9392 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9393
9394         * src/SDCCglobl.h:   now --xram-size 0 works
9395         * src/SDCCmain.c:    now --xram-size 0 works
9396
9397 2003-01-29    <johan AT balder>
9398
9399         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9400
9401 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9402
9403         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9404         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9405         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9406         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9407         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9408         * src/SDCCmain.c:    Added options --xram-size and --code-size
9409
9410 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9411
9412         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9413         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9414
9415 2003-01-27    <johan AT balder>
9416
9417         * src/SDCC.y: fixed bug #613764
9418
9419 2003-01-26    <johan AT balder>
9420
9421         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9422         * src/SDCCsymt.h: fixed bug #673374
9423         * src/SDCCglue.c: fixed bug #661910
9424         * src/SDCCast.c: fixed bug #458099 and 673374
9425
9426 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9427
9428         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9429         * as/mcs51/strcmpi.h: added
9430         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9431         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9432         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9433         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9434         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9435         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9436         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9437         * as/mcs51/Makefile.aslink: new module strcmpi
9438         * as/mcs51/Makefile.asx8051: new module strcmpi
9439         * as/mcs51/Makefil.bcc: new module strcmpi
9440         * as/mcs51/Makefile.in: new module strcmpi
9441         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9442
9443 2003-01-26    <johan AT balder>
9444
9445         * src/SDCCglue.c: reverted back to 1.124
9446         * src/SDCCast.c: reverted back to 1.156
9447         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9448
9449 2003-01-25    <johan AT balder>
9450
9451         * src/SDCCglue.c: A better fix for bug #661910
9452         * src/SDCCast.c: A better fix for bug #661910
9453         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9454
9455 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9456
9457         * src/Makefile.in: remove spawn.o
9458         * src/SDCCmain.c: remove spawn.h
9459         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9460         * src/spawn.c: removed
9461         * src/spawn.h: removed
9462         * support/regression/ports/ds390/spec.mk: link with -r
9463
9464 2003-01-24    <johan AT CP255758-A>
9465
9466         * src/ds390/gen.c (aopOp): fixed bug #667458
9467         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9468         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9469         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9470
9471 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9472
9473         * src/mcs51/peeph.def: better assembler identation by Frieder
9474         * src/mcs51/gen.c: better assembler identation by Frieder
9475
9476 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9477
9478         * as/z80/string.h: removed for gcc 3.2
9479         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9480         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9481
9482 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9483
9484         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9485         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9486         * support/regression/Makefile: separate temp files for ports
9487         * support/regression/generate-cases.py: separate temp files for ports
9488         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9489         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9490
9491 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9492
9493         * moved tinitalk to device/examples/ds390
9494
9495 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9496
9497         * as/mcs51/lkmem.c: rflag is for DS390
9498         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9499         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9500                          (linkEdit): move mem- and map-files the same way as ihx-files
9501         * src/z80/main.c (_setDefaultOptions): removed --generic
9502         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9503         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9504         * src/pic/glue.c (picglue): --c1mode works again
9505         * src/pic16/glue.c (pic16glue): --c1mode works again
9506         * src/asm.c (printCLine): fix #660034
9507
9508 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9509
9510         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9511         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9512         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9513         * as/mcs51/lkmem (summary): better fix for sp problem
9514         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9515         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9516         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9517                                               remove --stack-after-data
9518
9519 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9520
9521         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9522         * src/SDCCutil.c (join): ugly bug: missing '\0'
9523         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9524
9525 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9526
9527         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9528         * src/port.h: typo
9529         * src/pic/main.c (_asmCmd): gpasm supports -o
9530         * src/z80/main.c: more general macros
9531         * device/lib/Makefile.in: remove intermediate files
9532
9533 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9534
9535         * .version: Bumped version number to 2.3.3
9536         * src/SDCCBBlock.c: new option -o
9537         * src/SDCCglobl.h: new option -o
9538         * src/SDCCglue.c: new option -o
9539         * src/SDCCmain.c: new option -o
9540         * src/asm.c: new option -o
9541         * src/ds390/main.c: new option -o
9542         * src/pic/glue.c: new option -o
9543         * src/pic/pcode.c: new option -o
9544         * src/pic/ralloc.c: new option -o
9545         * src/pic16/glue.c: new option -o
9546         * src/pic16/pcode.c: new option -o
9547         * src/pic16/ralloc.c: new option -o
9548         * src/z80/main.c: new option -o
9549         * device/lib/Makefile.in: use -o
9550         * support/regression/ports/ds390/spec.mk: use -o
9551         * support/regression/ports/gbz80/spec.mk: use -o
9552         * support/regression/ports/mcs51/spec.mk: use -o
9553         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9554         * support/regression/ports/z80/spec.mk: use -o
9555         * support/regression/ports/ucz80/spec.mk: use -o
9556         * support/regression/ports/xa51/spec.mk: use -o
9557         * support/regression/fwk/lib/timeout.c: fix usage string
9558
9559 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9560         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9561
9562 2003-01-07    <johan AT balder>
9563
9564         * src/SDCCast.c (decorateType): fixed bug #600035
9565
9566 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9567         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9568         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9569         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9570         * src/pic/pcode.c: outcommented unused variable to remove warnings
9571         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9572
9573 2003-01-06    <karl AT turbobit.com>
9574         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9575    regression tests.
9576
9577 2003-01-06    <johan AT balder>
9578
9579         * src/SDCCicode.c: fixed array add
9580
9581 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9582         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9583         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9584
9585 2003-01-04    <johan AT balder>
9586
9587         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9588
9589 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9590         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9591
9592 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9593         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9594         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9595
9596 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9597         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9598
9599 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9600         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9601
9602 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9603         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9604
9605 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9606
9607     * in \sdcc\as\mcs51\ changed these files in order to create an
9608     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9609     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9610     following files to include the previous two files: aslink.dsp,
9611     Makefile.aslink, Makefile.bcc, and Makefile.in.
9612
9613     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9614     .adb instead of .cdb
9615
9616 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9617
9618         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9619         value from option --iram-size.
9620
9621 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9622
9623         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9624         dram[] array.
9625
9626 2002-09-18    <wiml AT hhhh.org>
9627
9628         * SDCClrange.h: exposed setFromRange() and setToRange()
9629         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9630           packRegsForAccUse() (bug 542397)
9631         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9632           multiple times and emitting the fetch operations more than once
9633           added aopGetUsesAcc() function to allow binary operators to
9634           fetch their operands in the correct order; made genMinus() emit
9635           compact code for X = LITERAL - Y
9636
9637 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9638         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9639         sprintf() in line 1267.
9640
9641 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9642         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9643         like ports.
9644
9645 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9646         Changes to aslink (All the changes are marked with 'JCF'):
9647
9648         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9649         summary().
9650
9651         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9652         area BSEG.  Also moves, if possible, the DATA area down into the internal
9653         ram so more space is available.
9654
9655         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9656         sflag.
9657
9658         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9659         not bytes.  Function summary() which creates a memory usage summary
9660         file with extension .mem.  Reports of overlaping stack and small stack
9661         size.  If the space for the stack is less than 16 bytes aslink trows a
9662         warning.
9663
9664         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9665         the 8051.  Option 'y' for memory summary output file.
9666
9667         Changes to sdcc (All the changes are marked with 'JCF'):
9668
9669         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9670
9671         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9672         overlaying area for it (uses RegBankUsed[4]).
9673
9674         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9675         bank zero as used by default.  By default aslink locates the stack
9676         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9677         the creation of the .mem file.  Delegates the allocation of data area
9678         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9679         the begining of the stack area to aslink.
9680
9681         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9682         glue() in SDCCglue.c creates an area for it.
9683
9684 2002-09-03  Borut Razem <borut.razem AT siol.net>
9685         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9686         sdcc/src/pic/glue.c:
9687         introduced atexit() handler for teporay files removal in case of
9688         errors, assertions, ...
9689
9690 2002-08-29  Borut Razem <borut.razem AT siol.net>
9691         * sdcc/support/cpp2/auto-host_vc_in.h:
9692         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9693         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9694         Maybe there is a similar problem with BORLANDC? It should be checked!
9695
9696         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9697         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9698         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9699         was not executed, and the compiler (cl) launched a warning:
9700         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9701
9702 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9703         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9704
9705 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9706         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9707
9708         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9709           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9710           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9711           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9712           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9713           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9714           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9715         - added Release configuration in VS projects
9716         - review of compiler an linker options
9717         - VC .exe files are generated in bin_vc directory, not to interfere
9718           with binaries generated from other projects (cygwin, mingw, bcc ...)
9719
9720         * sdcc/src/yacc.dsp: added
9721
9722         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9723         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9724         and insert the version number definitions from .version
9725
9726         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9727
9728         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9729         added - genarate auto-host.h using auto-host_vc_in.h as template
9730
9731         * sdcc/sdcc_vc.h,
9732         removed from CVS, generated automatically
9733
9734 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9735         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9736
9737 2002-08-11  Borut Razem <borut.razem AT siol.net>
9738         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9739
9740 2002-08-10  Borut Razem <borut.razem AT siol.net>
9741         * src/SDCCmain.c (main):
9742         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9743         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9744         The consequence was that some temporary files were not removed.
9745
9746         * src/SDCCglue.c:
9747         unification of code in functions tempfilename() and tempfile():
9748         function tempnam() is defined in Visual Studio 6.0 and .NET
9749
9750         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9751
9752         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9753           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9754         - removed compiler command line option /WX: Treats all warnings as errors
9755         - update a list of source files, included into the project
9756
9757         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9758           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9759         changed project type to Generic Project so that can be correcly converted to VS.NET project
9760
9761         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9762
9763         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9764
9765         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9766
9767         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9768         added return 0 statements after assert() to make compiler happy
9769
9770         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9771         added newline in the def file to keep MSC compiler satisfied
9772
9773         * sdcc/src/z80/gen.c:
9774         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9775           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9776         - solved MSC error in function aopDump()
9777
9778         * sdcc_vc.h: define PREFIX as "\\sdcc"
9779
9780 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9781         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9782
9783 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9784         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9785         - Rewrote the register banking algorithm.
9786         - Added pCode live-range analysis to registers (for now, only non-used and
9787         singly-used registers optimized away)
9788
9789         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9790
9791         * 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.
9792
9793 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9794         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9795
9796 2002-04-22  Michael Hope  <michaelh AT vroom>
9797
9798         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9799
9800         * configure.in (DD_COPT): Added include support required for gbdk.
9801
9802         * .version: Bumped version number just to increase it.
9803
9804         * src/SDCCmain.c: Added -nostdinc to the default options.
9805
9806 2002-04-15  Michael Hope  <michaelh AT vroom>
9807
9808         * device/lib/z80/printf.c (sprintf): Added.
9809
9810         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9811
9812         * src/z80/peeph.def: Added transpose redundent load rule.
9813
9814         * src/z80/main.c: Added force callee saves for jaune.
9815
9816         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9817
9818         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9819
9820 2002-03-28  Johan Knol  <johan AT balder>
9821
9822         * src/SDCCval.c: fixed bug #532436
9823
9824 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9825         * /src/port.h:
9826         Added "char *Processor" field to the port structure.
9827
9828         * /src/SDCCmain.c:
9829         Added -p option. Allows port dependent processor to be specified.
9830
9831         * all ports:
9832         Initialized the new field char *Processor field to NULL in all ports
9833
9834         * /src/pic/*:
9835         Compiler generated registers for interrupt context saving
9836         were not getting allocated.
9837
9838 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9839
9840         * /src/SDCCast.c:
9841         Fixed left shift. Will promote the left side of a left shift
9842         if a) left shifting more than size of operand or b) when assigned
9843         to something size > size of left side
9844
9845 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9846         * src/pic/*
9847         tons of changes. Register allocation has been
9848         rewritten. Added customization for the various PICs. Flow
9849         analysis is restructured. ...
9850
9851         * src/pic/device.h:
9852         Added
9853
9854         * src/pic/device.c:
9855         Added. device.c is a PIC port hack to accomodate variations
9856         in PIC devices.
9857
9858 2002-03-13  Michael Hope  <michaelh AT vroom>
9859
9860         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9861
9862 2002-03-04  johanknol  <johanknol AT manik>
9863
9864         * /src/SDCCval.c: fixed
9865
9866         const unsigned char arr[][2] = { { 0, 1 } };
9867         t18.c:1: error: Initializer element is not constant
9868
9869 2002-03-04  bela  <bela AT manik>
9870
9871         * /device/include/mcs51reg.h:
9872         ds89c420 register definition update
9873
9874 2002-03-03    <johan AT FRIJA>
9875
9876         * support/Util/SDCCerr.c: did something, but don't no why anymore
9877
9878         * support/regression/tests/bug-524691.c: made it a little less shy
9879
9880         * src/SDCCast.c (decorateType): fixed bug #524697
9881
9882         * src/SDCCast.c: made some lineno improvements
9883
9884         * src/SDCCval.c (getNelements): changed warning to error
9885
9886         * src/SDCCglue.c (printIvalArray): changed warning to error
9887
9888         * src/SDCCicode.c: fixed a warning for mingw
9889
9890         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9891
9892         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9893
9894 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9895
9896         * src/ds390/peeph.def:
9897         Added some more peephole rules
9898
9899         * src/ds390/gen.c: Various fixes & enhancements
9900
9901         * src/SDCClrange.c, src/SDCClrange.h:
9902         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9903
9904         * src/ds390/ralloc.c:
9905         various fixes & enhancements (ds390) specific
9906
9907         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9908         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9909         from rallocs.
9910
9911         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9912
9913 2002-03-02    <johan AT FRIJA>
9914
9915         * src/SDCCast.c (decorateType): fixed bug #524708
9916
9917         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9918
9919         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9920
9921 2002-03-01  Michael Hope  <michaelh AT vroom>
9922
9923         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9924
9925         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9926
9927 2002-03-01    <johan AT FRIJA>
9928
9929         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9930
9931         * src/SDCCast.c (decorateType): fixed bug #524209
9932
9933         * src/SDCCval.c (valNot): fixed bug #524195
9934
9935 2002-02-26    <johan AT balder>
9936
9937         * src/xa51/gen.c: fixed a warning
9938
9939         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9940
9941         * src/SDCCast.c (decorateType): fixed bug #522534
9942
9943 2002-02-23    <johan AT balder>
9944
9945         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9946
9947 2002-02-22    <johan AT balder>
9948
9949         * src/SDCCast.c: fixed bug #514865
9950
9951         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9952
9953 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9954
9955         * sdcc/src/SDCCloop.c:
9956         Previous fix was not good. basic blocks that have "break" or "return" are
9957         not really partof a loop , but live ranges used in these blocks should
9958         be live thru the entire loop, so set partOfLoop but don't add them to
9959         loop region
9960
9961 2002-02-21    <johan AT FRIJA>
9962
9963         * src/SDCCcse.c: fixed bug #514308
9964
9965 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9966
9967         * src/SDCCloop.c:
9968         Fixed BUG #519583. If a conditional block ended in a return/break
9969         statement inside a loop, it was not being considered part of the loop.
9970
9971         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9972
9973 2002-02-10  Karl Bongers <karl AT turbobit.com>
9974
9975         * debugger/*:
9976         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9977         with lots of comments and notes.
9978
9979         * device/examples/test2.c:
9980         Fix bug, "red" variable not being initialized(compiler complained).
9981
9982         * device/examples/Makefile, examples/test3.c:
9983         Add Makefile in device/examples folder, compiles test3.c
9984         for use as a multiple module SDCDB test case.
9985
9986         * sim/ucsim/cmd.src/cmdset.cc:
9987         Took out debug printfs in ucsim "next" command.
9988
9989         * sim/ucsim/xa.src:
9990         Karl and Johan start ucsim XA support.  Most dissassembly working,
9991         about 75% emulation done(plenty of work remaining).
9992
9993         * sim/ucsim/z80.src:
9994         Add Z80 support to ucsim, add test-ucz80 regression test,
9995         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9996         Notice z80 compiler fails on examples/test3.c/crc code.
9997
9998 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9999
10000         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10001         Added support for --parms-in-bank1
10002
10003         * src/ds390/peeph.def:
10004         added a few more peephole optimzations
10005
10006         * src/ds390/main.c:
10007         1) added __builtin_inp & __builtin_outp used to read in data of given length
10008            from a memory mapped port
10009         2) added __builtin_memcmp
10010         3) added __builtin_swapw swap bytes of a short
10011
10012         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10013         1) handle multiple send & receives from register bank1
10014         2) ralloc can now allocate DPTR1 to some liveRanges
10015
10016         * src/SDCCsymt.c, src/SDCCsymt.h:
10017         changes to handle multiple sends & receives
10018
10019         * src/SDCCptropt.h:
10020         added some pointer arithmetic optimization
10021
10022         * src/SDCCptropt.c:
10023         added some pointer arithmetic optimizations but not stable yet so not
10024         called from anywhere (will get this working shortly)
10025
10026         * src/SDCCopt.c: fixed for multiple sends & receives
10027
10028         * src/SDCCmain.c:
10029         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10030         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10031            set preprocessor defines (depending on options)
10032
10033         * src/SDCCicode.c, src/SDCCicode.h:
10034         changes made to handle multiple sends & receives
10035
10036         * src/SDCCglobl.h:
10037         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10038
10039         * src/SDCCcse.c, src/SDCCcse.h:
10040         added function findbackward def (to be used in upcoming optimization)
10041
10042         * src/SDCCcflow.c, src/SDCCcflow.h:
10043         added function returnAtEnd - to determine if a basic block terminates with
10044         a RETURN iCode
10045
10046         * src/SDCCast.c, src/SDCCast.h:
10047         added option parms-in-bank1
10048
10049         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10050         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10051         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10052         adjusted for --parms-in-bank1 option
10053
10054         * device/include/string.h:
10055         donot redefine "reentrant" keyword
10056
10057         * device/include/ds80c390.h: Added some more SFRs
10058
10059 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10060
10061         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10062
10063 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10064
10065         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10066
10067 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10068
10069         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10070
10071 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10072
10073         * Added --xram-movc option
10074
10075 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10076
10077         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10078
10079 2002-01-11  Johan Knol
10080
10081         * Added math lib of Jesus Calvino-Fraga
10082
10083 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10084
10085         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10086         * support/regression/Makefile: new target test-mcs51-stack-auto
10087         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10088
10089 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10090
10091         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10092
10093 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10094
10095         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10096
10097 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10098
10099         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10100
10101         * src/SDCCglue.h: add definition for printIvalChar()
10102
10103 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10104
10105         * src/SDCCast.c: fix #498138 by Johan
10106
10107         * src/SDCCglue.c: fix #498138 by Johan
10108
10109 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10110
10111         * support/regression/Makefile: fix clean
10112
10113         * support/regression/ports/ds390/support.c: fix transmission of last character
10114
10115 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10116
10117         * /sdcc/src/ds390/gen.c:
10118         a) improved computing address of stack variable
10119         b) took out some #if 0 code
10120         c) improved parmBytes adjustment
10121         d) improved genPlusIncr & genMinusIncr
10122         e) genCmp could generate bad code (when left assigned to DPTR)
10123         f) Fixed bug in hasInc
10124
10125         * /sdcc/src/ds390/ralloc.c:
10126         a) packRegsForSupport could mess up live information (Fixed)
10127         b) packRegsDPTRuse could be incorrect for left & right shift
10128
10129         * /sdcc/src/mcs51/ralloc.c:
10130         packRegsForSupport could mess up the live information (Fixed)
10131
10132         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10133
10134         * /sdcc/src/SDCCast.c:
10135         can reverse a loop even if function call is present as long
10136         as the loop control variable is local & is not passed as parameter
10137
10138 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10139
10140         * /sdcc/ChangeLog: *** empty log message ***
10141
10142         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10143         More builtin function additions for TININative
10144
10145         * /sdcc/src/ds390/ralloc.c:
10146         Had broken the regression testsuite
10147
10148         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10149
10150         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10151         Added funcattr hasStackParms will be set for reentrant functions when there
10152         are paramteres on the stack, this helps in minimizing frame pointer generation
10153         typeFromStr can handle function pointers now
10154
10155         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10156         *** empty log message ***
10157
10158 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10159
10160         * /src/ds390/gen.c, /src/ds390/main.c:
10161         More builtin function additions for TININative
10162
10163         * /src/ds390/ralloc.c:
10164         Had broken the regression testsuite
10165
10166         * /src/SDCCast.c: Fixed a bug in dumptree
10167
10168         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10169         Added funcattr hasStackParms will be set for reentrant functions when there
10170         are paramteres on the stack, this helps in minimizing frame pointer generation
10171         typeFromStr can handle function pointers now
10172
10173         * /doc/builtins.txt, /doc/TININative.txt:
10174         *** empty log message ***
10175
10176
10177 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10178
10179         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10180         ALPHA version for -mTININative
10181
10182         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10183         updated to reflect changes in the port structure
10184
10185         * /src/port.h:
10186         added function do_assemble (similar to do_link) if non-null this function
10187         will be called to do assembly (-mTININative) requires a multi command
10188         assembly
10189         added function genAssemblerEnd will be called to generate assembler Epilogue
10190
10191         * /src/SDCCsymt.c:
10192         added _JavaNative to debug info printing
10193
10194         * /src/SDCCmain.c: added option --tini-libid
10195         added port->do_assemble function (-mTININative) has a multi command assemble
10196
10197         * /src/SDCCglue.c: Disabled "constExpr" check
10198         added port->genAssemblerEnd function
10199
10200         * /src/SDCCglobl.h: Added option --tini-libid value
10201
10202         * /src/SDCCast.h:
10203         tookout optimizeCompare from the header (has no external references)
10204
10205         * /src/SDCCast.c: made one more function "static"
10206
10207 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10208
10209         * src/z80/mappings.i: Added z80asm support.
10210
10211         * src/z80/main.c: Added z80asm support on --asm=z80asm
10212
10213         * src/z80/gen.c: Fixed asm portability issues.
10214
10215         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10216
10217         * src/SDCCglue.c (printExterns): Added global/extern split.
10218
10219 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10220
10221         * support/regression/Makefile: added test for mcs51 model large
10222
10223         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10224
10225         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10226
10227 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10228
10229         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10230
10231 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10232
10233         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10234
10235         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10236
10237 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10238
10239         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10240
10241         * support/regression/tests/simplefloat.c: Port to mcs51.
10242
10243 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10244         * support/regression/tests/bug-485362.c: Added.
10245
10246         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10247
10248         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10249
10250         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10251
10252         * src/z80/gen.c (aopDump): Added a dump function.
10253
10254 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10255         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10256
10257         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10258
10259         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10260
10261         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10262
10263         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10264
10265         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10266
10267         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10268
10269         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10270
10271         * support/regression/ports/ds390/support.c: Use tinibios.
10272
10273         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10274
10275 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10276
10277         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10278         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10279
10280         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10281
10282         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10283
10284 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10285
10286         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10287
10288         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10289         (packRegsForIYUse): Created and optimised.
10290
10291 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10292
10293         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10294 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10295
10296         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10297
10298         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10299
10300         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10301
10302 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10303
10304         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10305
10306         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10307
10308 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10309
10310         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10311
10312         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10313
10314         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10315
10316 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10317
10318         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10319         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10320         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10321
10322         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10323
10324         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10325         (genNotFloat): Added.
10326         (genUminusFloat): Added.
10327
10328         * device/lib/z80/Makefile: Added floating pt stubs.
10329
10330         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10331
10332         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10333
10334         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10335
10336 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10337
10338         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10339
10340         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10341
10342         * sdcc/support/regression/Makefile: Add port ds390.
10343
10344         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10345
10346         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10347
10348         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10349
10350         * sdcc/support/regression/ports/ds390/support.c: Added.
10351
10352         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10353
10354         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10355
10356         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10357
10358 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10359
10360         * device/include/malloc.h: Added z80 and gbz80 support.
10361
10362         * device/lib/gbz80/heap.s: Added.
10363
10364         * device/lib/z80/heap.s: Added.
10365
10366         * device/lib/malloc.c: Added z80 and gbz80 support.
10367
10368         * support/regression/tests/malloc.c (testMalloc): Added.
10369
10370         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10371
10372         * support/regression/tests/bug-478094.c: Added.
10373
10374         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10375
10376 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10377
10378         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10379
10380         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10381
10382         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10383
10384         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10385
10386         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10387
10388 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10389
10390         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10391
10392 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10393
10394         * support/regression/tests/bug-477927.c: Added.
10395
10396         * src/z80/peeph.def: Added minor rules.
10397
10398         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10399
10400         * src/z80/peeph.def: Added jump optimisation modification.
10401
10402 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10403
10404         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10405
10406 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10407
10408         * support/regression/tests/funptrs.c: Added.
10409
10410 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10411
10412         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10413
10414 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10415
10416         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10417
10418         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10419
10420         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10421         (movLeft2ResultLong): Created.
10422
10423         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10424         (joinPushes): Added.  Joins two char pushes into a word push.
10425
10426 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10427
10428         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10429
10430         * support/makebin/Makefile (install): Added creation of dest dir.
10431
10432 2001-10-24 Karl Bongers <karl AT turbobit.com>
10433
10434         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10435
10436 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10437
10438         * src/z80/ralloc.c: Turned off faulty pack for one use.
10439
10440         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10441
10442         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10443
10444 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10445
10446         * support/regression/Makefile: Improved clean
10447
10448         * support/regression/ports/gbz80/spec.mk: Added clean
10449
10450         * support/regression/ports/host/spec.mk: Added clean
10451
10452         * support/regression/ports/z80/spec.mk: Added clean
10453
10454         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10455
10456         * support/regression/ports/mcs51/timeout.c: little improvements
10457
10458 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10459
10460         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10461
10462         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10463
10464         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10465
10466 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10467
10468         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10469
10470         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10471
10472 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10473         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10474
10475         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10476
10477         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10478
10479         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10480
10481         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10482
10483         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10484
10485         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10486
10487         * support/regression/tests/longor.c: Added.
10488
10489 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10490
10491         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10492
10493         * as/mcs51/aslink.h: define PATH_MAX
10494
10495         * as/mcs51/asm.h: define PATH_MAX
10496
10497         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10498
10499         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10500
10501         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10502
10503         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10504
10505         * src/SDCCglobl.h: define PATH_MAX
10506
10507         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10508
10509         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10510
10511 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10512
10513         * src/z80/gen.c (gencjneshort): Fixed
10514
10515         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10516
10517 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10518
10519         * support/regression/tests/bug-469671.c: Added.
10520
10521         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10522
10523 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10524
10525         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10526
10527         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10528
10529 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10530
10531         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10532
10533         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10534
10535         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10536
10537         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10538
10539         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10540
10541         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10542
10543         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10544
10545 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10546
10547         * 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.
10548
10549         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10550
10551         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10552
10553 2001-10-07    <johan AT FRIJA>
10554
10555         * device/lib/gets.c (gets): fixed the return value.
10556
10557 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10558         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10559
10560         * 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.
10561
10562         * 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.
10563
10564         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10565
10566         * src/pic/gen.c: Removed Safe_strdup.
10567
10568         * configure.in: Added option to enable libgc support.
10569
10570         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10571         (bitVectUnion): Optimised.
10572         (bitVectIntersect): Optimised.
10573         (bitVectBitsInCommon): Optimised.
10574         (bitVectCplAnd): Optimised.
10575
10576         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10577
10578 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10579
10580         * src/SDCCmain.c: distinguish between assembler debug and plain options
10581
10582         * src/avr/main.c:   remove standard assembler options
10583
10584         * src/ds390/main.c: remove standard assembler options
10585
10586         * src/mcs51/main.c: remove standard assembler options
10587
10588         * src/port.h: removed "PENDING" comment
10589
10590 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10591
10592         * src/device/lib/_mulint.c  : new, with assember functions
10593
10594         * src/device/lib/_mullong.c : new, with assember functions
10595
10596         * src/device/lib/_divuint.c : with assember functions
10597
10598         * src/device/lib/_divsint.c : with assember functions
10599
10600         * src/device/lib/_divulong.c: with assember functions
10601
10602         * src/device/lib/_divslong.c: with assember functions
10603
10604         * src/device/lib/_moduint.c : with assember functions
10605
10606         * src/device/lib/_modsint.c : with assember functions
10607
10608         * src/device/lib/_modulong.c: with assember functions
10609
10610         * src/device/lib/_modslong.c: with assember functions
10611
10612         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10613
10614         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10615
10616         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10617                                       replaced _mululong.c and _mulslong.c by _mullong.c
10618
10619 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10620
10621         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10622
10623 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10624
10625         * src/SDCCglue.c: test, if win32api is available for MINGW
10626
10627 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10628
10629         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10630         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10631         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10632         * support/regression/ports/host/spec.mk: removed GENERIC
10633         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10634         * support/regression/ports/z80/spec.mk: removed GENERIC
10635
10636 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10637
10638         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10639
10640         * support/regression/tests/bug-467035.c: Created.
10641
10642 2001-10-01    <johan AT FRIJA>
10643
10644         * src/SDCC.y: fixed bug #466586 part 1
10645
10646 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10647
10648         * SDCCicode.c: z80 has no generic pointers
10649         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10650
10651 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10652
10653         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10654
10655 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10656
10657         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10658
10659         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10660
10661 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10662
10663         * configure.in: Fixed up so that ucsim is only configured once.
10664
10665         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10666
10667         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10668         (getPathDifference): As above.
10669
10670         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10671
10672         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10673
10674 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10675         * .version: Updated to 2.3.1
10676
10677         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10678         Added copyright header.
10679
10680         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10681         (assemble): Added support for macro based assembler commands.
10682         (linkEdit): Added support for macro based linker commands.
10683         (preProcess): Changed the pre-processor to use macros.
10684         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10685         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10686
10687         * device/lib/z80/crt0.s: Added module name for debugging.
10688
10689 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10690
10691         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10692
10693         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10694
10695         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10696
10697         * src/Makefile.in: Added SDCCmacro and SDCCutil
10698
10699 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10700
10701         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10702
10703 2001-09-16    <johan AT FRIJA>
10704
10705         * 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.
10706
10707 2001-09-15    <johan AT FRIJA>
10708
10709         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10710         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10711
10712 2001-09-11    <johan AT FRIJA>
10713
10714         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10715
10716 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10717
10718         * support/regression/tests/bug-460444.c: Added test case.
10719
10720         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10721         (genCast): Added justification for all of the asserts.
10722
10723 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10724
10725         * support/regression/support.c: _xdata replaced by xdata
10726
10727         * support/regression/spec.mk: removed _generic
10728
10729 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10730
10731         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10732
10733         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10734         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10735
10736         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10737
10738         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10739
10740         * support/regression/tests/bug-460010.c: Added test case.
10741
10742         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10743
10744 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10745
10746         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10747
10748         * support/regression/testfwk.c: removed workaround for bug #436344
10749
10750         * support/regression/tests/bp.c: use less memory with mcs51
10751
10752         * support/regression/tests/bug-441448.c: use less memory
10753
10754         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10755
10756         * support/regression/collate-results.py: typo
10757
10758 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10759
10760         * support/regression/tests/fetchoverlap.c: Added new test case.
10761
10762         * support/regression/tests/bp.c: Added new test case.
10763
10764         * support/regression/tests/bug-448984.c: Added new test case.
10765
10766         * support/regression/tests/pow2shifts.c: Added new test case.
10767
10768         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10769         (genlshTwo): Fixed right shift for count > 8.
10770
10771         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10772
10773 2001-09-08    <johan AT FRIJA>
10774
10775         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10776
10777 2001-09-07    <johan AT FRIJA>
10778
10779         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10780
10781         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10782
10783 2001-09-06    <johan AT FRIJA>
10784
10785         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10786         * bernhard noted me at this: "() equals to (void)" (1.38)
10787
10788 2001-09-05    <johan AT FRIJA>
10789
10790         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10791
10792 2001-09-04    <johan AT FRIJA>
10793
10794         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10795
10796
10797 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10798
10799         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10800
10801 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10802
10803         * link/z80/aslink.h: Fixed path for PATH_MAX
10804
10805 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10806
10807         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10808
10809         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10810
10811         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10812
10813         * 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.
10814
10815 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10816
10817         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10818         (genCmp): Fixed up genCmp for the GB with longs.
10819
10820         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10821
10822         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10823
10824         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10825
10826         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10827
10828 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10829
10830         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10831
10832 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10833
10834         * 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.
10835
10836         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10837
10838 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10839
10840         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10841
10842         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10843
10844 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10845
10846   * sim/ucsim/configure:    little improvement of Cygwin-detection
10847   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10848   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10849   * support/regression/tests/bug-221100.c: small changes for mcs51
10850   * support/regression/tests/bug-221168.c: small changes for mcs51
10851   * support/regression/tests/bug-227710.c: small changes for mcs51
10852   * support/regression/tests/staticinit.c: small changes for mcs51
10853   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10854   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10855   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10856
10857 $Revision$