* src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
[fw/sdcc] / ChangeLog
1 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2
3         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
4         which dumps before the function entry point a data byte which represents
5         the number of the local variables used by the specified function, added
6         'xinst' for initial support for Extended Instruction Support,
7         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
8         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
9         port->fun_prefix anymore (may change later),
10         (genFunction, genEndFunction): do not store/restore local registers for
11         _main (this should take care the --main-return command line option in
12         the future),
13         (genOr): removed some legacy pic-port instructions,
14         * src/pic16/genarith.c (genAddLit): re-enabled old code because
15         performing operations with SFR's causes data to be written more than
16         once to each SFR. Perhaps SFRs should be handled in special cases...
17         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
18         pcode.h
19         * src/pic16/main.c (_process_pragma): stack bound checking did not take
20         into account for stack starting position,
21         (struct OPTIONS pic16_optionsTable): added command line argument
22         --extended or -y for Extended Instruction Support,
23         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
24         (deassignLRs): *** perhaps the most important change, old 'for' code
25         (comented out for reference), didn't account for some registers which
26         were left marked 'not free' after a pointer operation. The change
27         reduces register usage a lot in some cases
28
29 2006-03-04 Borut Razem <borut.razem AT siol.net>
30
31         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
32           _clean
33         * support/regression/tests/bug-524697.c: decreased array size for
34           mcs51 to fit into the internal RAM
35         * support/regression/Makefile.in: a little bit more verbose
36
37 2006-03-03 Borut Razem <borut.razem AT siol.net>
38
39         * support/regression/fwk/lib/testfwk.c,
40           support/regression/fwk/include/testfwk.h: introduced function
41           _prints(), nonrecursive _printn(), call _initEmu() from main()
42         * support/regression/ports/gbz80/support.asm,
43           support/regression/ports/ucz80/support.asm,
44           support/regression/ports/z80/support.asm,
45           support/regression/ports/ds390/support.c,
46           support/regression/ports/hc08/support.c,
47           support/regression/ports/host/support.c,
48           support/regression/ports/mcs51/support.c,
49           support/regression/ports/xa51/support.c: added empty _initEmu()
50           function
51         * support/regression/ports/pic16/gpsim.cmd,
52           support/regression/ports/pic16/spec.mk,
53           support/regression/ports/pic16/support.c,
54           support/regression/Makefile.in: added pic16 regression test
55
56 2006-03-01 Raphael Neider <rneider AT web.de>
57
58         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
59           genConstPointerGet): use safe way of generating MOVFF to cover
60             literals as well as registers, fixes bug #1440527
61         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
62             dereference
63           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
64             more correctly, fixes bug #1232186
65           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
66         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
67             gplink guess the correct processor in more cases, applied patch
68             from Till Riedel attached to and fixing bug #1436552
69
70 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
71
72         * support/regression/tests/array.c: added, contains check for #1434401
73         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
74
75 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
76
77         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
78         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
79         * device/include/mcs51/c8051f326.h,
80         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
81         * device/include/mcs51/c8051f000.h,
82         * device/include/mcs51/c8051f018.h,
83         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
84           PCON_IDLE,PCON_STOP and added sfr16 definitions
85
86 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
87
88         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
89           genGetWord): fixed bug 1409955
90
91 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
92
93         * device/include/hc08/mc68hc908gp32.h,
94         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
95
96 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
97
98         * src/SDCCast.c (constExprValue): return NULL if not a value
99         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
100         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
101         * support/regression/tests/bitfields.c: enabled signed bitfield for all
102
103 2006-02-13 Borut Razem <borut.razem AT siol.net>
104
105         * src/regression/ptrarg.c: added, fails due to bug #1430967
106         * src/regression/Makefile: ptrarg.c added, ...
107
108 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
109
110         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
111         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
112
113 2006-02-11 Borut Razem <borut.razem AT siol.net>
114
115         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
116           print "Processor: xxx" message to stdout only if --verbose
117
118 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
119
120         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
121         * support/regression/tests/bug1426356.c: added
122         * support/regression/tests/bitfields.c: removed 2 tests
123
124 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
125
126         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
127         * device/include/mcs51/c8051f330.h,
128         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
129           PCON_IDLE,PCON_STOP and added sfr16 definitions
130         * device/lib/_divsint.c,
131         * device/lib/_divuint.c,
132         * device/lib/_divulong.c,
133         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
134           register bank bug for small stackauto
135
136 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
137
138         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
139
140 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
141
142         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
143         * all.dsp: corrected several bin paths
144         * device/include/mcs51/c8051f120.h,
145         * device/include/mcs51/c8051f300.h,
146         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
147           to PCON_IDLE,PCON_STOP
148         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
149         * device/lib/printf_large.c (output_float): fixed bug 1388703
150         * support/regression/tests/bug1057979.c: added test for bug 1388703
151
152 2006-02-08 Raphael Neider <rneider AT web.de>
153
154         * src/pic/pcode.c (pciTRIS): fixed typo,
155           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
156           (LinkFlow): fixed handling of flows that end in a call,
157           (ReuseReg): perform safety check earlier
158         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
159             to work with flows at the beginning of a pBlock,
160             fixes #1426557 (Symbol not previously defined),
161           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
162             usage information
163           (RemoveUnusedRegisters): update register usage info
164         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
165             created, reuse existing ones instead
166         * src/pic/gen.c (genPcall): fixed #1424719
167
168 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
169
170         * link/z80/lkmain.c,
171         * link/z80/lklex.c,
172         * link/z80/lkdata.c,
173         * link/z80/aslink.h: fixed build on current cygwin:
174         replaced getline() by lk_getline()
175
176 2006-02-01 Borut Razem <borut.razem AT siol.net>
177
178         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
179           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
180           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
181           src/regression/bool1.c, src/regression/bool2.c,
182           src/regression/bool3.c, src/regression/call1.c,
183           src/regression/compare.c, src/regression/compare10.c,
184           src/regression/compare2.c, src/regression/compare3.c,
185           src/regression/compare4.c, src/regression/compare5.c,
186           src/regression/compare6.c, src/regression/compare7.c,
187           src/regression/compare8.c, src/regression/compare9.c,
188           src/regression/configword.c, src/regression/for.c,
189           src/regression/inline.c, src/regression/mult1.c,
190           src/regression/nestfor.c, src/regression/or1.c,
191           src/regression/pointer1.c, src/regression/ptrfunc.c,
192           src/regression/rotate1.c, src/regression/rotate2.c,
193           src/regression/rotate3.c, src/regression/rotate4.c,
194           src/regression/rotate5.c, src/regression/rotate6.c,
195           src/regression/rotate7.c, src/regression/string1.c,
196           src/regression/struct1.c, src/regression/sub.c,
197           src/regression/sub2.c, src/regression/switch1.c,
198           src/regression/while.c, src/regression/xor.c,
199           src/regression/create_stc, src/regression/simulate,
200           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
201           regression tests
202         * src/regression/gpsim_assert.h: added
203
204 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
205
206         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
207         ((void (code *) (void)) 0) ();
208         * as/hc08/aslex.c,
209         * as/hc08/aslink.h,
210         * as/hc08/asm.h,
211         * as/hc08/asmain.c,
212         * as/hc08/lkdata.c,
213         * as/hc08/lklex.c,
214         * as/hc08/lkmain.c,
215         * as/mcs51/aslex.c,
216         * as/mcs51/aslink.h,
217         * as/mcs51/asm.h,
218         * as/mcs51/asmain.c,
219         * as/mcs51/lkdata.c,
220         * as/mcs51/lklex.c,
221         * as/mcs51/lkmain.c,
222         * as/z80/aslex.c,
223         * as/z80/asm.h,
224         * as/z80/asmain.c: fixed build on current cygwin:
225         replaced getline() by as_getline()
226
227 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
228
229         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
230         declarator in the symbol chain
231         * src/SDCCsymt.h,
232         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
233         parameter list for function pointers
234         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
235         * support/regression/tests/bug-716242.c: added
236
237 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
238
239         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
240         offset if possible
241         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
242
243 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
244
245         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
246         inifinitely recurseable, added static
247         * support/regression/tests/bug-1408066.c: added
248
249 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
250
251         * src/SDCCicode.h,
252         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
253         renamed, added possibility to create "postLoopLbl"-labels
254         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
255         newiTempLoopHeaderLabel
256         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
257         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
258         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
259         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
260         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
261         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
262         (basicInduction): fixed bug #136564, made static,
263         (loopInduction): changed parameter of basicInduction, made static,
264         (addPostLoopBlock): added
265         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
266         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
267         findLoopEndSeq
268         * support/regression/tests/bug-136564.c: added
269         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
270         --std-sdcc99 to LIBSDCCFLAGS
271
272 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
273
274         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
275         while loop
276         * support/regression/tests/bug-1406131.c: added
277
278 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
279
280         * src/SDCCast.c (decorateType): fix promotion of unary minus
281         * src/SDCCsymt.c (computeType): beautified
282         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
283         (valUnaryPM, valComplement): fix sign and promotion,
284         (valNot): ANSI: result type is int (SDCC: unsigned char)
285         * support/regression/tests/uminus.c: speedup by removing superflous
286         test case 'int'
287         * support/regression/tests/onebyte.c: added promotion and signedness
288         tests for unary minus
289         * support/regressions/tests/bug-477927.c: disable warning about
290         uninitialized variables
291         * support/regression/tests/not.c: added
292
293 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
294
295         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
296         * src/mcs51/gen.c (gen51Code): show final register usage after
297         fillGaps in asm with --i-code-in-asm
298         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
299         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
300         incUsed, rliveClear, adjustIChain): made static,
301         (setFromRange): excluded because it's unused,
302         (findPrevUseSym, markWholeLoop): added,
303         (findPrevUse): rewritten; fixes bug 895992; now a complete search
304         through all branches of predecessors enables sdcc to emit the warning
305         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
306         (rlivePoint): made static, added parameter emitWarnings which is only
307         true during the first run out of two,
308         (findRecursiveSucc, findRecursivePred): removed,
309         (computeLiveRanges): made static, added parameter emitWarnings,
310         (dumpIcRlive): added for debugging only
311         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
312         removed prototype of setFromRange()
313         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
314         in call of computeLiveRanges()
315         * support/regression/tests/bug-895992.c: added
316         * support/regression/tests/bug-971834.c: added
317         * support/valdiag/tests/bug-895992.c: added
318         * support/valdiag/tests/bug-971834.c: added
319
320 2005-12-18 Raphael Neider <rneider AT web.de>
321
322         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
323           (genUnpackBits): improved code for direct operands,
324           (genPackBits): improved code for literal assignment to bitfields
325             and for direct destination operands (no FSR indirection),
326             prevented redundant AND, fixes #1362800,
327           (AccLsh): added parameter to disable masking of the result
328         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
329           skip instructions with side-effects (like incfsz),
330           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
331         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
332         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
333           fixes #1375263
334
335 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
336
337         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
338         volatile variables as spill location
339
340 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
341
342         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
343         replacing literals
344         * support/regression/tests/bug-1376320.c: added
345
346 2005-12-08 Raphael Neider <rneider AT web.de>
347
348         * src/pic/device.c: renamed is_shared to pic14_is_shared
349         * src/pic/gen.c (genIfx): re-enabled handling of sbits
350         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
351           (is_valid_identifier): added for above workaround
352
353 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
354
355         * device/lib/Makefile.in: fixed to enable port-specific-objects
356         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
357           char, thanks Hubert Sack
358         * doc/sdccman.lyx: documented --xstack-loc,
359           elaborated a bit more on interrupts and pitfalls,
360           removed "setjmp/longjmp unsupported",
361           documented some unsupported C99 features
362         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
363         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
364           if, thanks Hubert Sack
365         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
366         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
367           make make_library
368         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
369           regression tests can report resource usage (rfe 700441)
370         * support/regression/collate-results.py: report resource usage
371         * support/regression/ports/ds390/spec.mk,
372         * support/regression/ports/hc08/spec.mk,
373         * support/regression/ports/mcs51/spec.mk,
374         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
375         * support/regression/ports/ds390/uCsim.cmd,
376         * support/regression/ports/hc08/uCsim.cmd,
377         * support/regression/ports/mcs51/uCsim.cmd,
378         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
379         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
380           library, use the default one
381         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
382           building the library
383
384 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
385
386         * config.dsp: added dependency on .version and configure_vc.awk
387         * device/include/setjmp.h: updated for --stack-auto and --xstack
388         * device/include/mcs51/at89c51snd1c.h: corrected line endings
389         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
390         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
391         * device/lib/libsdcc.lib: added _setjmp
392         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
393           (decorateType): fixed bug 1372851,
394           (optimizeGetHbit): fixed warning
395         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
396           array initialisation
397         * support/regression/tests/bug1057979.c: added test for bug 1358192
398         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
399
400 2005-12-03 Borut Razem <borut.razem AT siol.net>
401
402         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
403           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
404
405 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
406
407         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
408         createIval): implement symbol independant "flexible array member",
409         (createIvalCharPtr): implemented flexible array initialisation with a
410         string
411         * src/SDCCsymt.c (copyStruct): removed,
412         (getSize): fixed misleading comment,
413         (getAllocSize): removed, the additional allocation size is now in
414         sym->flexArrayLength,
415         (checkStructFlexArray): new, syntax checks for flexible array members,
416         (compStructSize): added syntax checks for "flexible array members"
417         (copyStruct): removed,
418         (copyLinkChain): removed inefficient fix for bug 770487
419         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
420         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
421         symbol->flexArrayLength
422         * src/SDCCerr.c,
423         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
424         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
425         * support/regression/tests/structflexarray.c: added
426         * support/valdiag/tests/structflexiblearray.c: added
427
428 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
429
430         * src/SDCCast.c (decorateType): fixed bug 1368489
431         * support/Util/SDCCerr.c,
432         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
433
434 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
435
436         * device/include/mcs51/at89c51snd1c.h: added file submitted by
437           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
438
439 2005-11-27 Borut Razem <borut.razem AT siol.net>
440
441         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
442           support/cpp2/mkdeps.h: added command line option
443           -obj-ext=<extension> to SDCPP to define object file externion, used
444           for generation of make dependencies (-M)
445         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
446
447 2005-11-26 Borut Razem <borut.razem AT siol.net>
448
449         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
450           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
451           added pic and pic16 libraries
452
453 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
454
455         * device/include/float.h: Corrected typo in prototype of __fsgt
456
457 2005-11-25 Borut Razem <borut.razem AT siol.net>
458
459         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
460           added creation of model-mcs51-stack-auto libraries
461
462 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
463
464         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
465         and fields-list too
466         * src/SDCCast.c (createIvalArray): removed obsolete comment
467
468 2005-11-24 Borut Razem <borut.razem AT siol.net>
469
470         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
471           added missing device/lib/mcs51/crt*.asm sources
472
473 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
474
475         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
476
477 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
478
479         * device/lib/_fs2schar.c,
480         * device/lib/_fs2sint.c,
481         * device/lib/_fs2slong.c: optimized inline asm
482
483 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
484
485         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
486           Better handling of floats between -1.0 and 0.0.
487
488 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
489
490         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
491           (the missing "if"s prohibited removal of redundant labels)
492
493 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
494
495         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
496           Properly convert floats between -1.0 and 0.0 to long, int, and char
497           types (max integer value of negative floats tends to zero).
498         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
499           Removed changes made so to work properly with floats between
500           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
501           and _fs2char.c
502
503 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
504
505         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
506         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
507         (genCast) cosmetic change
508         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
509         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
510         from mcs51
511         * support/regression/tests/bitfields (testSignedBitfields): added
512
513 2005-11-18 Borut Razem <borut.razem AT siol.net>
514
515         * sdcc/device/lib/Makefile.in: remove all unnecessary files
516         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
517           introduced SILENT option to make building of pic16 libraries less
518
519 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
520
521         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
522           Now they work properly with floats between -1.0 and 0.0
523         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
524
525 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
526
527         * src/SDCCicode.c (printOperand): added missing else
528
529 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
530
531         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
532         reformatted for better readability
533         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
534         signed bitfields
535
536 2005-11-17 Borut Razem <borut.razem AT siol.net>
537
538         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
539           introduced SILENT option to make building of pic16 libraries less
540           verbose - used for nightly snapshot build
541         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
542           available on Win32 platforms.
543         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
544           medium, large, pic and pic16
545
546 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
547
548         * device/lib/printf_large.c: Temporary patch for bug 1358192:
549           printf("%f"...) sets fraction to zero.
550
551 2005-11-16 Raphael Neider <rneider AT web.de>
552
553         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
554           fixes #1357221
555         * src/pic/gen.c (genIfx): implemented for CARRY bit
556         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
557           to generic pointers, fixes #1357332,
558           (pic16_movLit2f): NEW,
559           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
560
561 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
562
563         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
564
565 2005-11-11 Raphael Neider <rneider AT web.de>
566
567         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
568         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
569           compute pointer's type from operand,
570           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
571           improved single bit reads, fixes bug #1353379
572
573 2005-11-09 Borut Razem <borut.razem AT siol.net>
574
575         * support/scripts/sdcc.nsi: added lib/pic to the package
576
577 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
578
579         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
580
581 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
582
583         * support/regression/tests/bug1348008.c: added
584         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
585         * support/regression/tests/bug1337835.c: updated comment
586
587 2005-11-06 Borut Razem <borut.razem AT siol.net>
588
589         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
590           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
591           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
592           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
593           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
594           dynamic construction of cl_error_class and derivates - 2.nd try
595
596 2005-11-05 Borut Razem <borut.razem AT siol.net>
597
598         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
599           bug, which caused Bus Errors on sparc solaris
600
601 2005-11-04 Borut Razem <borut.razem AT siol.net>
602
603         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
604           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
605           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
606           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
607           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
608           and derivates to resolve the initialization problem on OSX
609
610 2005-11-02 Borut Razem <borut.razem AT siol.net>
611
612         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
613           corrected typo - #include <winsock2.h>
614
615 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
616
617         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
618           (_asxxxx_mapping): added org directive for future enhancements
619
620 2005-11-01 Borut Razem <borut.razem AT siol.net>
621
622         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
623           enabled sockets on WIN32
624         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
625
626 2005-10-31 Borut Razem <borut.razem AT siol.net>
627
628         * support/regression/generate-cases.py: escape backslashes in {testcase}:
629           WIN32 backslash path delimiters should be escaped when used in C strings
630         * support/regression/tests/bitfields.c: exclude failing assertions for
631           __CYGWIN32__ and __MINGW32__ hosts
632
633 2005-10-30 Borut Razem <borut.razem AT siol.net>
634
635         * src/SDCCutil.c: corrected double comparison typo
636
637 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
638
639         * device/lib/medium/Makefile: added for new memory model medium
640         * device/include/asm/mcs51/features.h: updated for medium/pdata
641         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
642           added Multiply & Accumulate sbit's and MAC0_PAGE define
643         * device/include/mcs51/c8051f300.h: added sfr16 definitions
644         * device/include/mcs51/c8051f310.h: added sfr16 definitions
645         * device/lib/_mullong.c: update for medium model
646         * device/lib/incl.mk: added medium model
647         * doc/sdccman.lyx: documented medium model
648         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
649         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
650         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
651         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
652           (allocParms): set SCLS and OCLS to pdata for medium model
653         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
654           for pdata,
655           (powof2): return <0 if not power of 2
656         * src/avr/gen.c (genBitWise): use updated powof2
657         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
658           (shiftR2Left2Result): small optimization in setup, save acc when storing,
659           (shiftLLeftOrResult): use B if necessary
660         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
661         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
662         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
663         * support/regression/Makefile.in: added test-mcs51-medium
664         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
665
666 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
667
668         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
669         specifier unsigned
670         * device/lib/time.c (mktime): fixed bug 1334315
671
672 2005-10-28 Raphael Neider <rneider AT web.de>
673
674         * device/include/pic/p16f_common.inc: added common declarations
675         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
676
677 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
678
679         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
680           (aopPutUsesAcc): added to predict accumulator use,
681           (assignResultValue): save acc if necessary,
682           (genMinusDec): store result if indirectly addressed,
683           (genDivOneByte):  save acc if necessary,
684           (movLeft2Result): bugfix if left already in acc,
685           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
686             attention to accumulator use (esp. pdata),
687           (genReceive): receive pdata correctly
688         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
689         * src/SDCCicode.h: added isOperandInPagedSpace prototype
690
691 2005-10-27 Raphael Neider <rneider AT web.de>
692
693         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
694
695 2005-10-27 Raphael Neider <rneider AT web.de>
696
697         * .version: changed version to 2.5.4
698         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
699         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
700           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
701             arithmetics support routines
702         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
703         * device/lib/Makefile.in: also create installdir for pic
704
705         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
706           pic14 port as well
707         * src/pic/device.c (dump_sfr): rewritten to delegate register
708           placement to the linker (use `extern sym' rather than sym EQU addr),
709           (validAddress): fixed to check last specified address
710         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
711           (popGetLit): truncate literal value to 8 bit,
712           (popGet): moved assert to more appropriate place
713           (popGetExternal): create pCode operand from and mark the according
714             symbol as being `extern'
715           (popGetAddr): added sanity check on immediate's offset, provide
716             GPOINTER tag on demand
717           (aopPut): fixed for immediates,
718           (mov2w_op): move operand's address or contents to WREG (depending on
719             operand type), safer variant of mov2w,
720           (movwf,call_libraryfunc): NEW, handy abbreviations,
721           (get_argument_pcop,get_return_val_pcop,pass_argument,
722           get_returnvalue): interface for accessing function parameters and
723             return values,
724           (assignResultValuei,genRet): use new parameter/return value interface
725           (pic14_getDataSize): back to old version handling generic pointers,
726           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
727             provided implementation and/or fixed old one,
728           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
729             calls, removed legacy 8051 reference code
730           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
731           (loadSignToC): NEW, move the operands sign bit to CARRY,
732           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
733             genRightShiftSigned, accepts negative shift counts,
734           (setup_fsr): load FSR and adjust IRP (indirect memory access),
735           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
736             generic pointers, __data pointers and __code pointers,
737           (genUnpackBits,genPackBits): rewritten to work with generic pointers
738             and signed bitfields, limit bitfields to 8 bit,
739           (genDataPointerGet): fixed number of bytes read,
740           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
741           (genPointerGet,genPointerSet): fixed handling of __code pointers,
742             pointers to constant data are no longer assumed to point to __code
743             space, removed invalid pointer types,
744           (bitpatternFromVal): retrieve the PICs representation of an integer
745             or float literal,
746           (genDataPointerSet): fixed assigning to po_immediate operands,
747           (genGenPointerSet): implemented as library call,
748           (genIfx): fixed incorrect condition,
749           (genAddrOf): limit generic pointers' addresses to 2 bytes,
750             provide GPOINTER tag according to destination's storage class,
751           (genCast): added code to handle casting to generic pointers, added
752             sign-/zero extension of the result
753           (aop_isLitLike,op_isLitLike): fixed handling of immediates
754         * src/pic/gen.h: added macros to access IRP bit in STATUS register
755         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
756           extend the result
757         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
758           address/register resides in the shared banks
759           (emitSymbolToFile): improved to handle global and `pinned' symbols,
760             put all variables into separate sections (have the linker arrange
761             them)
762           (picglue): put init code and interrupt handlers in separate sections
763         * src/pic/main.c: added port specific options table, modified to PORT
764           structure to make GPOINTERs 3 byte, added pic14_options
765           (_pic14_do_link): private linking routine (update paths to libraries,
766             add libsdcc.lib by default)
767         * src/pic/main.h: declare pic14_options
768         * src/pic/pcode.c: fixed instructions i/o relations,
769           (RegCond): reverted to correct version,
770           (newpCodeOpLit): truncate literals to 8 bit,
771           (genericPrint): added debug output,
772           (getRegFromInstruction): fixed for various operand types, simplified
773           (BuildFlow): fixed broken handling of isntructions with labels
774           (LinkFlow): start at last instruction in flow (skip trailing comments),
775             pass the flow on to the next instruction after CALL
776           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
777           (insertPCodeInstruction): fixed inserting after a skip instruction,
778           (DoBankSelect): fixed for labeled instructions
779           (OptimizepBlock): honor --nopeep switch
780           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
781         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
782         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
783           (pCodeOptime2pCodes): allow disabling this optimization via
784             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
785             but is still buggy), started implementation of a dataflow based
786             pCode optimization (CSE + dead code elimination)
787           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
788         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
789           names are independant of the stack location and therefore portable across
790           devices
791
792 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
793
794         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
795           (selectSpil): fixed bug 1337835 by not spilling bit variables
796         * support/regression/tests/bug1337835.c: added test for this bug
797         * src/mcs51/peeph.def: restart after rule 3.c,
798           addded rules 263.x to optimize loading constants
799
800 2005-10-26 Raphael Neider <rneider AT web.de>
801
802         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
803         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
804           (genAssign): emit warning when casting literals to generic pointer
805             type, also applies when taking the address of a fixed variable,
806           (genCast): improved casting to generic pointers
807         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
808           extern variables, added verbose error message
809         * device/include/pic16/{string.h,errno.h}: added #pragma library c
810
811 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
812
813         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
814         carry must be complemented too
815         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
816         could be emitted by genMinus
817         * src/SDCCval.c (constVal): fixed bug 1305065
818
819 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
820
821         * src/SDCCast.c (addCast): added promotion for bit variables
822         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
823         promotion casts + optimisation
824         (optimizeGetWord): fix warning 'i' might be used uninitialized
825         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
826         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
827
828 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
829
830         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
831         all chars are promoted to int; promotion should be handled in SDCCast.c
832
833 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
834
835         * device/lib/_strcmp.c: Fixed bug 1326457
836
837 2005-10-11 Raphael Neider <rneider AT web.de>
838
839         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
840         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
841
842 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
843
844         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
845         * support/regression/tests/sfr16.c: added test for the sfr32 bug
846
847 2005-10-04 Raphael Neider <rneider AT web.de>
848
849         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
850           device/lib/pic16/pics.all: added pic18f1320
851         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
852
853 2005-09-30 Raphael Neider <rneider AT web.de>
854
855         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
856         * src/pic16/devices.inc: NEW, provides device descriptions
857         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
858
859 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
860
861         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
862           GETHBIT
863
864 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
865
866         * doc/sdccman.lyx: updated Highest Order Bit documentation,
867           documented Any Order Bit, Higher Order Byte and Higher Order Word
868         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
869         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
870           (optimizeGetAbit): new, to get any bit, not only the high bit,
871           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
872           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
873           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
874           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
875             RIGHT_OP: also try GETBYTE, GETWORD optimization,
876             GETABIT, GETBYTE, GETWORD: decorate them,
877           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
878           (ast_print): added GETABIT, GETBYTE, GETWORD
879         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
880         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
881           (geniCodeBinary): new generic binary icode,
882           (ast2iCode): added GETABIT, GETBYTE, GETWORD
883         * src/port.h: updated comment for PORT.hasExtBitOp
884         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
885           (genGetByte): new, to get a single byte,
886           (genGetWord): new, to get a word from a long,
887           (gen51Code): added GETABIT, GETBYTE, GETWORD
888         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
889
890 2005-09-23 Raphael Neider <rneider AT web.de>
891
892         * configure.in, configure: have device/lib/pic configured
893         * device/lib/Makefile.in: added model-pic14
894         * device/lib/clean.mk: added pic/ to clean rule
895         * device/lib/pic: added rudimentary pic14 library providing support
896           functions for multiplication/division/generic pointer access
897         * src/SDCCopt.c (convilong): mark support functions as extern
898           for pic14 port as well
899         * src/pic/gen.c (genMult): added assertions,
900           (genpic14Code): emit warning on unhandled iCodes
901         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
902         * src/pic/pcode.c (pCodeOpCopy),
903         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
904           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
905           SFR_REGISTER}), made safe for future extensions
906         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
907           instructions even if preceeded by SKIP instructions (also remove
908           them); removed unused code
909         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
910           prevents leaving parts of the structure uninitialized after copying
911
912 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
913
914         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
915           ago by me
916         * support/regression/tests/addsub.c: added test for the bug
917
918 2005-09-21 Raphael Neider <rneider AT web.de>
919
920         * device/include/pic16/pic18f1220.h,
921           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
922         * device/lib/pic16/Makefile.rules: added missing opening paren
923         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
924           are provided in genutils.c,
925           (genUminusFloat,genUminus,genCmpEq): added asserts on different
926           operand/result sizes,
927           (genCmp): assert on NULL pointers first, then check deref'ed values
928         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
929           result size
930
931 2005-09-18 Raphael Neider <rneider AT web.de>
932
933         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
934           as these are now unused,
935           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
936         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
937           local, avoids uninitialized pointer dereference on r->name
938         * src/pic16/ralloc.c (newReg): fixed indentation
939
940 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
941
942         * src/SDCCval.c (constVal): fixed bug 730366
943         * support/Util/SDCCerr.c,
944         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
945
946 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
947
948         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
949
950 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
951
952         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
953
954 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
955
956         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
957           (hex2dec): made hex_digit unsigned char, removed ascii dependance
958         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
959           (hex2dec): made hex_digit unsigned char, removed ascii dependance
960         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
961         * packihx/packihx.c (hexDigit): made c unsigned char
962         * as/mcs51/lklibr.c (fndsym),
963         * link/z80/lkgb.c (gb),
964         * link/z80/lklibr.c (fndsym),
965         * link/z80/lkrloc.c (relr),
966         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
967         * src/SDCC.lex (checkCurrFile, process_pragma),
968         * src/SDCCglue.c (spacesToUnderscores),
969         * src/SDCCmain.c (setParseWithComma, processFile),
970         * src/asm.c (tvsprintf, printCLine),
971         * src/avr/gen.c (emitcode, aopPut),
972         * src/ds390/gen.c (emitcode),
973         * src/hc08/gen.c (emitcode, emitinline),
974         * src/mcs51/gen.c (emitcode, genInline),
975         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
976           tokenizeLineNode),
977         * src/pic/ralloc.c (debugLog),
978         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
979           tokenizeLineNode),
980         * src/pic16/ralloc.c (debugLog),
981         * src/z80/main.c (_process_pragma):
982            made all ctype.h function calls safe
983         * src/SDCCopt.c: include math.h for fabs
984         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
985           and used them throughout the code to make ctype.h function calls safe
986         * src/ds390/main.c (asmLineNodeFromLineNode),
987         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
988         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
989            unsigned char*
990         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
991           (newpCodeAsmDir): made ctype.h function calls safe
992         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
993           pic16_emitcode):  made lbp unsigned char*
994         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
995           (pic16_newpCodeAsmDir): made ctype.h function calls safe
996         * src/xa51/gen.c (emitcode),
997         * src/z80/gen.c (_emit2): made lbp unsigned char*
998         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
999            char*
1000
1001 2005-09-05 Raphael Neider <rneider AT web.de>
1002
1003         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1004           access bank splitpoint
1005
1006 2005-09-05 Raphael Neider <rneider AT web.de>
1007
1008         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1009
1010 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1011
1012         * .version: changed to version 2.5.3
1013         * doc/sdccman.lyx: changed version to 2.5.3,
1014           documented --codeseg and --constseg and pragma codeseg and constseg,
1015           documented bit parameters (reentrant) and bit returning
1016         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1017            currFunc->recvSize, but is this ok for all ports?
1018           (ast2iCode): result of ~ on unsigned char must be cast to int for
1019            bool to work
1020         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1021           function pointers in bit space
1022         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1023           (processFuncArgs): call port.reg_parm() with reentrancy info
1024         * src/port.h,
1025         * src/avr/main.c,
1026         * src/ds390/main.c,
1027         * src/hc08/main.c,
1028         * src/pic/main.c,
1029         * src/pic16/main.c,
1030         * src/xa51/main.c,
1031         * src/z80/main.c: port.reg_parm prototype extended with
1032           "bool reentrant" parameter
1033         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1034           options.stackAuto for allocating bit register parameters
1035         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1036           (genSend): set BitBankUsed if it is,
1037           (selectRegBank): factored out of genCall for use in genPcall,
1038           (genCall): removed redundant dtype assignmen, use selectRegBank,
1039           (genPcall): handle returning in Carry properly, save in F0 if needed,
1040           (genReceive): handle bit register parameters
1041         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1042           (mcs51_assignRegisters): enable bit registers for all reentrant
1043            functions and don't set BitBankUsed unconditionally
1044         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1045         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1046         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1047
1048 2005-08-27 Borut Razem <borut.razem AT siol.net>
1049
1050         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1051         ppc-osx (Darwin) does not support -u option. It seems that it is
1052         supported only on Linux - GNU cp
1053
1054 2005-08-25 Borut Razem <borut.razem AT siol.net>
1055
1056         * sim/ucsim/gui.src/serio.src/Makefile.in,
1057           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1058           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1059           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1060           install and strip, since the strip at /usr/ccs/bin should be used
1061           on solaris
1062
1063 2005-08-24 Borut Razem <borut.razem AT siol.net>
1064
1065         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1066
1067 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1068
1069         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1070         ffffffffu
1071
1072 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1073
1074         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1075         * as/mcs51/lkmain.c (link_main): fixed warning
1076         * device/include/stdbool.h: ds390 has no advanced bit support yet
1077         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1078         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1079         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1080           and updated their macros
1081         * src/SDCCval.c (constVal): updated comment for renamed b_long
1082
1083 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1084
1085         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1086         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1087           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1088           (oprio): set priority for '['
1089         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1090            and adb_24_bit
1091         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1092         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1093         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1094         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1095           added overlayable BIT_BANK area
1096         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1097           (summary2): explain 'T' in legenda
1098         * as/mcs51/lkrloc.c: replaced old K&R style,
1099           (relr): added R_BIT processing,
1100           (errmsg): added "Bit-addressable relocation error",
1101           (adb_bit): added for converting from byte- to bit-addressable space,
1102           (adb_24_bit): added for converting from byte- to bit-addressable space
1103         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1104            used in reentrant functions now even as return value
1105         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1106         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1107           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1108         * src/SDCCglobl.h: added indicator BitBankUsed
1109         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1110            the bit registers b0-b7
1111         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1112           (geniCodeCast): fixed bug 1263853,
1113           (geniCodeLogicAndOr): put result in bool or char,
1114           (geniCodeReceive): added parameter func for accessing the return type,
1115           (geniCodeFunctionBody): pass func to geniCodeReceive
1116         * src/SDCCmain.c: added indicator BitBankUsed
1117         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1118         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1119           (checkSClass): don't put automatic bool/bit on stack,
1120           (checkFunction): removed check on function cannot return bit
1121         * src/SDCCsymt.h: added newBoolLink prototype
1122         * src/mcs51/gen.c (rb1regs): added bit registers,
1123           (movc): created for assigning to carry,
1124           (pushReg, popReg): created for pushing registers,
1125           (sameRegs): check both AOP_REG and AOP_CRY types,
1126           (aopOp): handle bit registers,
1127           (aopPut): optimization no self-assign,
1128           (saveRegisters): push reg->base (bits) only once for bit registers,
1129            and use pushReg,
1130           (unsaveRegisters): pop reg->base only once and use popReg,
1131           (assignResultValue): added parameter func and return in carry for bits,
1132           (genIpush): optimization no reload in A if not changed,
1133           (genSend): bit parameters in reentrant functions are passed in bit
1134            registers by first assigning to bits in B, then save registers and
1135            copy B to bits,
1136           (genCall): handle returning in Carry properly, save it in F0 if needed,
1137           (genPcall): updated assignResultValue call, this is not safe yet for bit
1138            returning function !!!
1139           (genFunction): don't generate equ's for bit registers and use pushReg,
1140           (genEndFunction): take care of bit returning functions and use popReg,
1141           (genRet): return bit in Carry,
1142           (genIfx): optimize bit registers and other directly addressable bits,
1143           (genReceive): updated assignResultValue call
1144         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1145           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1146            registers when using stack-auto
1147         * src/mcs51/ralloc.c (_G): added allBitregs,
1148           (regs8051): added the bit registers,
1149           (createStackSpil): use macro IS_BIT,
1150           (getRegBit): added to allocate a bit register, else spill,
1151           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1152           (updateRegUsage): factored out to ease stepping while debugging,
1153           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1154            also allocate bit registers,
1155           (fillGaps): handle bit registers,
1156           (findAllBitregs): added to create bit vector with all bit registers,
1157           (mcs51_allBitregs): returns this bit vector,
1158           (mcs51_assignRegisters): when using stack-auto use bit registers for
1159            passing parameters and creating local variables
1160         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1161
1162 2005-08-22 Borut Razem <borut.razem AT siol.net>
1163
1164         * device/lib/Makefile.in: replaced find option -or with -o
1165           to make it run on solaris
1166
1167 2005-08-22 Raphael Neider <rneider AT web.de>
1168
1169         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1170           fixes #1265442 (crash on Solaris)
1171
1172 2005-08-20 Borut Razem <borut.razem AT siol.net>
1173
1174         * configure, configure.in: added tests for libsocket and libnsl libraries,
1175           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1176           from support/regression/Makefile.in
1177         * support/regression/Makefile.in: added
1178         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1179         * sim/ucsim/libtool: regenerated on sparc-solaris
1180         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1181           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1182           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1183           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1184           sparc-solaris, which doesn't use GNU ld linker
1185         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1186         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1187
1188 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1189
1190         * src/mcs51/peeph.def: updated comments
1191
1192 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1193
1194         * device/lib/_gptrget.c,
1195         * device/lib/_gptrput.c: slightly shorter
1196         * doc/sdccman.lyx: incremented version
1197         * src/mcs51/peeph.def: moved peephole comments to the line of first
1198           change to better keep line correlation, reanimated 186.e
1199         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1200
1201 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1202
1203         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1204           David Saxton with quotes around file name.
1205
1206 2005-08-15 Borut Razem <borut.razem AT siol.net>
1207
1208         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1209           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1210           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1211           make tests run on x86_64 platform
1212
1213 2005-08-13 Raphael Neider <rneider AT web.de>
1214
1215         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1216           as it might be executed DURING a build (parallel make is wonderful)
1217
1218 2005-08-13 Raphael Neider <rneider AT web.de>
1219
1220         * device/lib/Makefile.in (port-specific-objects-pic16):
1221           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1222         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1223           dependency
1224         * device/lib/pic16/Makefile.rules: build subdirs before creating
1225           the library, removed builddir rule, create $(builddir) early in
1226           recurse rule, use empty recurse rule for leaf directories
1227         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1228           mkdir errors (race condition), removed duplicate suffix "hex"
1229           from clean rules
1230         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1231         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1232           prevents mkdir -p from aborting on Alpha
1233
1234 2005-08-12 Raphael Neider <rneider AT web.de>
1235
1236         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1237           db-statements in order to allow for arrays of pointers in code
1238           sections to be placed without interspersed 0-padding, fixes
1239           bug #1256215
1240         * (emitStatistics): fixed division by zero for pic18f1220
1241         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1242           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1243         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1244         * (pic16_pCodeConstString): keep track of already emitted string
1245           literals to prevent "duplicate definitions of symbol _str_NR"
1246         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1247           debug message
1248         * device/lib/Makefile.in: ignore failing PIC16 library builds
1249         * device/lib/pic16/Makefile: do not build if gputils are missing
1250         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1251
1252 2005-08-10 Raphael Neider <rneider AT web.de>
1253
1254         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1255           my last commit)
1256
1257 2005-08-10 Raphael Neider <rneider AT web.de>
1258
1259         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1260           Rokas' patch to add the new fixed point type "__fixed16x16"
1261         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1262           functions for __fixed16x16 arithmetics
1263         * device/lib/pic16: reimplemented the build system to support
1264           a separate build directory, better handling of libio (create
1265           the library in a separate subdir for each architecture) and
1266           easier configuration (centralized in Makefile.common)
1267
1268 2005-08-07 Raphael Neider <rneider AT web.de>
1269
1270         * src/pic16/gen.c (genrshTwo): fixed sign extension
1271         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1272         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1273           added T0CONbits
1274         * device/include/pic16/pic18f4220.h: NEW, header for
1275           pic18f4220 and pic18f4320
1276         * device/include/pic16/pic18fregs.h: added new devices,
1277           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1278         * device/include/pic16/signal.h: resolved name clashes
1279           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1280           to also allow testing for interrupt enable bits, added
1281           comments on how to use the macros
1282         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1283         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1284           register definitions for the devices
1285         * device/lib/pic16/pics.all: added new devices
1286         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1287           allocated memory
1288         * device/lib/pic16/libc/stdlib/memfree: do not count
1289           the block header as free memory
1290         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1291           simplified and added missing end-of-blocklist-marker
1292           (reported by Peter Onion, fixes #1252814)
1293         * (_mergeHeapBlock): fixed loop condition
1294         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1295           len==0, restructured code
1296         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1297           up a bit, reduced bitfield accesses, prevent endless loops
1298           in case of heap corruption
1299         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1300           "unreferenced arguments/must return a value" warnings
1301         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1302           replaced BAUDREG with SPBRG
1303         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1304           device/lib/pic16/debug/gstack/gstack.c: replaced
1305           _naked, _asm, _endasm with __naked, __asm, __endasm
1306
1307 2005-08-05 Raphael Neider <rneider AT web.de>
1308
1309         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1310           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1311
1312 2005-08-05 Borut Razem <borut.razem AT siol.net>
1313
1314         * device/lib/Makefile.in: added missing ';'
1315         * configure: removed ^M characters
1316
1317 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1318
1319         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1320           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1321           License
1322
1323 2005-08-04 Borut Razem <borut.razem AT siol.net>
1324
1325         * configure.in: pic16 libraries build 2nd try - enable running
1326           configure in device/lib/pic16
1327         * configure: regenerated from configure.in
1328         * device/lib/Makefile.in: create $(PORT)/bin directory
1329
1330 2005-08-03 Raphael Neider <rneider AT web.de>
1331
1332         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1333           to get/set values via pointers
1334         * (genUnpackBits,genPackBits): changed detection of
1335           ptr->bitfield vs. sym.bitfield, fixed access via generic
1336           pointers, removed dead (wrong) code for multibyte bitfields
1337         * (genNearPointerGet, genGenPointerGet): removed useless code,
1338           fixed bitfield detection, fixes #1250594
1339         * (genNearPointerSet): removed useless code
1340         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1341           and introduced macro pic16_emitpcode that conditionally emits
1342           the origin of the following pCode (useful for debugging SDCC)
1343         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1344         * (createDefmap): fixed handling of LFSR for --optimize-df
1345
1346 2005-08-02 Borut Razem <borut.razem AT siol.net>
1347
1348         * device/lib/Makefile.in: pic16 libraries build enabled since
1349           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1350
1351 2005-08-02 Raphael Neider <rneider AT web.de>
1352
1353         * src/pic16/gen.c (genPackBits): removed deprecated warning
1354         * (genGenPointerSet): fixed bitfield detection
1355
1356 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1357
1358         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1359
1360 2005-07-31 Raphael Neider <rneider AT web.de>
1361
1362         * device/lib/pic16/libdev/pic18f458.c,
1363           device/include/pic16/pic18f458.h: added missing T0CONbits
1364
1365 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1366
1367         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1368
1369 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1370
1371         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1372
1373 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1374
1375         * device/include/mcs51/at89c51ed2.h: added.
1376
1377 2005-07-23 Raphael Neider <rneider AT web.de>
1378
1379         * src/pic/gen.h: added emitpcode macro for debugging
1380         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1381           and replace by macro adding debug information on demand
1382         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1383         * (gencjne): tried to fix; replaced with correct (slower) code
1384         * (gen{Unp,P}ackBits): fixed single bit access
1385         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1386         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1387           previous instruction
1388         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1389           register has to be handled with care (forbidding movement
1390           of assignments/uses, removing assignments completely, ...)
1391         * (pCodeOptime2pCodes): make use of regIsSpecial
1392         * added lots of debugging output (commented out)
1393         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1394           from being reused as result UNLESS it is known to work
1395
1396 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1397
1398         * support/Util/dbuf.h: include <stddef.h> for size_t
1399         * .version: changed to version 2.5.2
1400
1401 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1402
1403         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1404
1405 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1406
1407         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1408           (genModOneByte): removed needless psha/pula
1409
1410 2005-07-22 Raphael Neider <rneider AT web.de>
1411
1412         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1413           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1414         * src/pic/gen.c (resolveIfx): do not "invent" labels
1415         * (genSkipc): changed to positive logic
1416         * (genSkipCond): removed as no longer needed
1417         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1418           backport from PIC16
1419         * (genLeftShift): check operands are in different registers
1420         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1421           INCF does not update CARRY...
1422         * src/pic/main.c: fixed _linkCmd
1423         * src/pic/pcode.c (unlinkpCode): added inactive code
1424         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1425           alive (do not assign result and operand overlapping registers)
1426
1427 2005-07-22 Raphael Neider <rneider AT web.de>
1428
1429         * src/pic/device.c (dump_sfr): replaced register declaration with
1430           call to emitSymbolToFile() to avoid duplicate symbols
1431         * (assignRelocatableRegisters): do not declare external symbols
1432         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1433           right (take size of type, not etype)
1434         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1435         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1436         * (packRegsForAccUse): disabled assignment of WREG as
1437           the result reg to prevent occurence of just fixed #1235003,
1438           fixes #1242954
1439         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1440           symbols (avoids duplicate symbols in .asm file)
1441         * (pic14emitRegularMap): use emitSymbolToFile()
1442         * src/pic/gen.c (aopOp): fixed spillLocation handling
1443         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1444         * (genDataPointerSet): removed unneccessary variables/output
1445
1446 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1447
1448         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1449         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1450
1451 2005-07-21 Raphael Neider <rneider AT web.de>
1452
1453         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1454           architecture cannot handle them efficiently, fixes bug #1235003
1455         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1456           check for empty sets before using them (fixes bug #1232190)
1457
1458 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1459
1460         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1461           (lnksect2): generate warnings for memory overlap
1462         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1463           constseg to set the name of these segments so you can instruct the linker
1464           to place them in banks
1465         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1466         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1467           added code_seg and const_seg to options
1468         * src/SDCCglue.c (emitMaps): use options.const_seg,
1469           (createInterruptVect): put interrupt vectors in segment HOME,
1470           (glue): put HOME before static segment and put the main glue in HOME,
1471           (glue): use options.code_seg
1472         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1473         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1474           these segments so you can instruct the linker to place them in banks
1475           (linkEdit): use code_loc for HOME segment which should be the first
1476           segment in code memory now
1477         * src/SDCCmem.c: fixed more stuff like bug 1238386
1478         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1479           (changePointer): don't change function pointers to code pointers for
1480           banked functions,
1481           (compareType): added exceptional check for banked function pointers
1482         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1483         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1484           after static in code memory
1485         * src/mcs51/gen.c: added aopLiteralLong prototype,
1486           (aopForSym): use getSize for functions,
1487           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1488           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1489           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1490           the segment,
1491           (genPcall): use call for literal function pointers and generate banked
1492           calls over the one trampoline so there's only one place for the user to
1493           modify according to his/hers hardware,
1494           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1495           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1496         * src/mcs51/main.c: added keyword banked,
1497           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1498         * support/Util/SDCCerr.c,
1499         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1500           needed for passing the bank and address to the trampoline
1501         * device/lib/mcs51/crtbank.asm: added for bankswitching
1502         * device/lib/mcs51/Makefile: added crtbank
1503
1504 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1505
1506         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1507           for fields at offset 0 of a struct or union as reported
1508           on 2005-07-07 in the developer mailing list.
1509
1510 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1511
1512         * src/SDCCmem.c: fixed bug 1238386
1513
1514 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1515
1516         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1517           (patch #1144962), added peephole 300, enabled 259.x
1518         * doc/sdccman.lyx: removed screenshot and provided link instead
1519
1520 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1521
1522         * doc/sdccman.lyx: added section about debugging with ddd
1523         * doc/figures/ddd_example.eps: screenshot of debugging session
1524
1525 2005-07-04 Raphael Neider <rneider AT web.de>
1526
1527         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1528           like CODE pointers, fixes #1115683
1529         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1530           call, fixes bugs #1232211, #1228110,
1531           fixed wrong casts to pCodeFlow from pCodeInstructions
1532
1533 2005-07-04 Raphael Neider <rneider AT web.de>
1534
1535         * src/pic/gen.c (popGet): changed assert to allow for
1536           bit operands
1537         * (popGetAddr): changed signature to provide
1538           an additional index, patched all call sites
1539         * (genCmpEq): handle literal-like operands correctly
1540         * (genAddrOf): added sanity checks on __code/__data pointers
1541         * (genAssign): added handling of symbols from __code section
1542         * (gencjne): do not generate code for comparisons whose result
1543           is neither stored nor used, fixes bug #1171114
1544         * (AccLsh, AccRsh): operate on operand instead of WREG
1545         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1546           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1547           by known count
1548         * rewrote complete shift-by-literal logic, commented unused
1549           functions out
1550         * (genConstPointerGet): get multiple bytes (if result size > 1),
1551           fixed handling of non-immediate addresses
1552         * (genPointerGet): handle CODE pointers like CONST pointers
1553         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1554         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1555           operand is to be treated as a literal or not
1556         * (mov2w,genPcall,genCmpEq),
1557           src/pic/genarith.c: use aop_isLitLike() to decide between
1558           literal/register contents
1559         * (addSign): added missing offset
1560         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1561           only emit comment in debug-mode,
1562           use {aop,op}_isLitLike throughout the file
1563         * src/pic/glue.c: fix initializers for pointers (work in progress)
1564         * src/pic/pcode.c (get_op): honor index on _const symbols
1565         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1566         * (dumppBlock): added pCode size estimation
1567         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1568           check for IS_SYMOP before OP_SYMBOL'ing
1569         * fixed indentation, compacted switch-statements
1570         * (allocReg): find free register and allocate it instead of
1571           allocating new registers all the time
1572         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1573           registers as its operands (necessary only for multibyte GETs)
1574
1575 2005-07-01 Raphael Neider <rneider AT web.de>
1576
1577         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1578           debugging .asm-output macros FENTRY + FEXIT
1579         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1580           way... I wonder...
1581         * (emitpComment): NEW, printf to pCode
1582         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1583           offset handling
1584         * (popGetAddr): NEW, variant of popGet to access an immediates
1585           high(er) bytes instead of the n'th byte of memory they reference,
1586           replaced popGet with popGetAddr where neccessary
1587         * (genDataPointerGet): reactivated and fixed implementation
1588         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1589           accesses
1590         * (genDataPointerSet): fixed multibyte assignments
1591         * (genpic14Code): fixed --i-code-in-asm handling
1592         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1593         * (genPlus): fixed index-out-of-bounds error
1594         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1595         * src/pic/ralloc.c: added debugging output macro FENTRY2
1596         * (spillThis): fixed indentation, enbraced for-body for clarity
1597         * (rematStr): commented out as now unused
1598         * (regTypeNum): commented out special spill case (overwrites
1599           arbitrary values)
1600         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1601
1602 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1603
1604         * doc/sdccman.lyx: documented sfr16/sfr32,
1605           added example for using storage class with function pointers
1606         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1607
1608 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1609
1610         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1611         * device/lib/_itoa.c,
1612         * device/lib/_ltoa.c: optimized codesize
1613         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1614           but don't know how to suppress the double warning.
1615         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1616         * support/Util/SDCCerr.c,
1617         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1618
1619 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1620
1621         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1622           fixed old K&R prototypes
1623         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1624         * device/lib/_gptrget.c,
1625         * device/lib/_gptrgetc.c,
1626         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1627           also new versions for small generic pointers and banked generic pointers
1628         * src/port.h: added const_name
1629         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1630         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1631         * src/SDCCcse.c (findPrevIc): check all associative operators
1632         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1633         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1634         * src/SDCCmem.c: updated comments,
1635           set far-space to 0 for pdata, results in optimized code
1636         * src/SDCCmem.h: added macro CONST_NAME
1637         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1638           moving the info into the highest bits, see also gptrget/gptrput
1639         * src/src.dsp: added sdcc.ico to project files
1640         * src/avr/gen.c (genCast): fixed bug 0x%d
1641         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1642         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1643           relation between ptr_type and DCL_TYPE,
1644           (genCast): fixed bug 0x%d
1645         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1646           (CODE)" for const_name
1647         * src/hc08/gen.c (genCast): fixed bug 0x%d
1648         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1649           (hc08_port): added "CONST (CODE)" for const_name
1650         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1651           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1652           between ptr_type and DCL_TYPE,
1653           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1654           operand* and took AOP() inside function so sfr-ness can be checked,
1655           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1656           new prototype,
1657           (genFunction, genEndFunction): optimized stack setup,
1658           (genMinus): optimized for literals with ending zeroes (in bytes),
1659           (genCast): fixed bug 0x%d
1660         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1661           (mcs51_port): added "CONST (CODE)" for const_name
1662         * src/mcs51/peeph.def: made rule 226 more generic
1663         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1664         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1665         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1666         * src/z80/main.c (z80_port): added NULL for const_name,
1667           (gbz80_port): added NULL for const_name
1668         * support/regression/tests/bug663539.c,
1669         * support/regression/tests/sfr16.c: new tests
1670
1671 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1672
1673         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1674
1675 2005-06-24 Raphael Neider <rneider AT web.de>
1676
1677         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1678           corrected typos...
1679         * device/include/pic16/signal.h: added USBIF
1680           and SIG_USB
1681
1682 2005-06-24 Raphael Neider <rneider AT web.de>
1683
1684         * device/lib/pic16/libdev/pic18f2455.c,
1685           device/include/pic16/pic18f2455.h: NEW
1686         * device/include/pic16/pic18fregs.h,
1687           device/lib/pic16/pics.all,
1688           src/pic16/device.c: added 18f2455
1689         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1690           device/include/pic16/{pic18f[68][567].h,usart.h}:
1691           replaced MULTIPLE_USARTS define with more relaible
1692           compatibility sfrs (for USART access)
1693
1694 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1695
1696         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1697           and the output asm file line is printed on two lines.
1698
1699 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1700
1701         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1702           BGT, BLE, BHI, and BLS instructions
1703         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1704           genCmpEq): removed
1705         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1706           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1707           fixes bug #1216342
1708         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1709
1710 2005-06-15 Raphael Neider <rneider AT web.de>
1711
1712         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1713         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1714         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1715           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1716           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1717
1718 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1719
1720         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1721           Marcel Telka in bug #1215704
1722
1723 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1724
1725         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1726           located in shared memory bank.
1727
1728 2005-05-31 Raphael Neider <rneider AT web.de>
1729
1730         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1731           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1732           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1733
1734 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1735
1736         * device/lib/_strncpy.c: fixed the fix
1737
1738 2005-05-26 Raphael Neider <rneider AT web.de>
1739
1740         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1741           initializers with \0, bug #1208187
1742         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1743           intializers with \0, bug #1208187
1744
1745 2005-05-26 Raphael Neider <rneider AT web.de>
1746
1747         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1748           initializers with \0, bug #1208187
1749         * src/pic16/main.c (_process_pragma): added sanity checks
1750           for stack position and size, emit warnings when appropriate
1751
1752 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1753
1754         * device/lib/_strncpy.c: fixed not filling with \0
1755
1756 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1757
1758         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1759           createFunction),
1760         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1761           compound_statement),
1762         * src/SDCCsymt.h,
1763         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1764
1765 2005-05-24 Raphael Neider <rneider AT web.de>
1766
1767         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1768
1769 2005-05-24 Raphael Neider <rneider AT web.de>
1770
1771         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1772           TRISE definitions, closes bug #1162453
1773
1774 2005-05-22 Raphael Neider <rneider AT web.de>
1775
1776         * src/pic16/main.c (_process_pragma): check for missing
1777           arguments to pragmas code and udata
1778         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1779           consistency fixes to match other headers (thanks to Jim Paris)
1780         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1781
1782 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1783
1784         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1785
1786 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1787
1788         * support/regression/tests/bug1198642.c: new test
1789         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1790         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1791         * support/scripts/resource.h,
1792         * support/scripts/resource.rc,
1793         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1794         * support/scripts/sdcc.ico: added 32x32 icon
1795
1796 2005-05-18 Raphael Neider <rneider AT web.de>
1797
1798         * device/lib/pic16/libdev/pic18f*.c,
1799         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1800           keywords to "__sfr" and "__at (X)"
1801         * device/include/pic16/pic18fregs.h: added pic18f4520
1802         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1803           #1203088 (MPLAB compatibility)
1804
1805 2005-05-17 Raphael Neider <rneider AT web.de>
1806
1807         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1808         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1809         * device/lib/pic16/pics.all: added new devices
1810         * src/pic16/device.c: added support for pic18f4520
1811
1812 2005-05-16 Raphael Neider <rneider AT web.de>
1813         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1814         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1815         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1816           convenience function for bit access
1817
1818 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1819
1820         * device/lib/printf_large.c: fixed bug 1193299
1821         * support/regression/tests/bug1057979.c: added test %3.3s
1822
1823 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1824
1825         * device/include/mcs51/8051.h,
1826         * device/include/mcs51/8052.h: made parseable with lint
1827         * device/include/mcs51/lint.h: added include file for (sp)lint
1828         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1829         * doc/cdbfileformat.lyx,
1830         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1831
1832 2005-05-14 Raphael Neider <rneider AT web.de>
1833
1834         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1835         * device/lib/pic16/libc/stdlib/itoa.c (new)
1836         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1837         * device/lib/pic16/libio/Makefile: exclude subdir according to
1838           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1839         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1840         * src/pic16/gen.c (genFunction): prevent annoying warning
1841         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1842           nameclashes on BeOS
1843         * support/cpp2/cppmain.c (cpp_output_string): new
1844         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1845           fixes bug 1116802
1846
1847 2005-05-13 Borut Razem <borut.razem AT siol.net>
1848
1849         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1850
1851 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1852
1853         * .version: changed to version 2.5.1; back to bleeding edge development
1854
1855 2005-05-11 Borut Razem <borut.razem AT siol.net>
1856
1857         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1858           generate PDF version 1.3 documents
1859
1860 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1861
1862         * .version: changed to version 2.5.0
1863
1864 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1865
1866         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1867
1868 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1869
1870         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1871         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1872         well as many smaller updates.
1873         * .version: changed to version 2.5.0-pre1
1874
1875 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1876
1877         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1878
1879 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1880
1881         * support/regression/tests/bug1185672.c: added
1882         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1883           bug 1185672
1884         * src/mcs51/gen.c (genCall): added comments, made it look safer
1885         * src/mcs51/gen.c (genEndFunction): simplified
1886
1887 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1888
1889         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1890
1891 2005-04-14 Borut Razem <borut.razem AT siol.net>
1892
1893         * fixed bug 1045046 - SIGSEGV with really simple code?:
1894           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1895           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1896
1897 2005-04-14 Borut Razem <borut.razem AT siol.net>
1898
1899         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1900           src/pic16/device.h: temporarily disabled experimental #inline pragma
1901           for 2.5.0 release
1902
1903 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1904
1905         * device/include/z80/stdio.h,
1906         * device/include/z80/string.h: removed these highly incomplete files so
1907           SDCC can use the default ones in device/include/
1908
1909 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1910
1911         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1912         gcc warning.
1913         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1914         fix sdcpp warnings.
1915
1916 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1917
1918         * device/include/malloc.h: removed redundant __reentrant prototypes
1919         * device/lib/_mullong.c: added working xstack variant in asm (C version
1920           doesn't pass regression tests)
1921         * device/lib/bpx.c: used __data and made bpx char for mcs51
1922         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1923           (createFunction): fixed bug with xstackPtr
1924         * src/SDCCcse.c: corrected comments
1925         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1926           (killDeadCode, eBBlockFromiCode): removed unused code
1927         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1928           corrected comments
1929         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1930           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1931           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1932           (genModOneByte): fixed warning in MSVC
1933         * src/mcs51/main.c (): added comments
1934         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1935
1936 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1937
1938         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1939
1940 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1941
1942         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1943
1944 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1945
1946         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1947         characters arrays of larger size than the declared one.
1948
1949 2005-04-10 Borut Razem <borut.razem AT siol.net>
1950
1951         * src/pic/gen.c (genInline),
1952           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1953           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1954           (findNextInstruction), (findPrevInstruction),
1955           (findInstructionUsingLabel),
1956           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1957         * src/pic/pcode.c (findLabel): added missing '\n'
1958         * src/src.dsp: added SDCCdwarf2.c to the project
1959
1960 2005-04-09 Borut Razem <borut.razem AT siol.net>
1961
1962         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1963
1964 2005-04-08 Raphael Neider <rneider AT web.de>
1965
1966         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1967           into the chain after a given one) and mergeDefmapSymbols (combine
1968           defmap entries for each symbol per pcode)
1969         * (createDefmap): have defmap entries merged in the end
1970         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1971           a symbol before replacing one access type's symbol, merge symbols in
1972           the end (replacement symbol might already have an entry)
1973         * (assignValnums): keep reference to written WREG intact
1974
1975 2005-04-08 Raphael Neider <rneider AT web.de>
1976
1977         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1978           Alpha)
1979
1980 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1981
1982         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1983         bytes
1984
1985 2005-04-07 Raphael Neider <rneider AT web.de>
1986
1987         * device/include/pic16/usart.h: added compatibility defines for
1988           devices with more than one USART
1989         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1990
1991 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1992
1993         * device/lib/Makefile.in: updated for port specific include
1994
1995 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1996
1997         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1998
1999 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2000
2001         * device/include/8051.h,
2002         * device/include/8052.h,
2003         * device/include/at89S8252.h,
2004         * device/include/at89c55.h,
2005         * device/include/at89x051.h,
2006         * device/include/at89x51.h,
2007         * device/include/at89x52.h,
2008         * device/include/mcs51reg.h,
2009         * device/include/reg51.h,
2010         * device/include/reg764.h,
2011         * device/include/regc515c.h,
2012         * device/include/sab80515.h: (re)moved these 12 files
2013         * device/include/mcs51/8051.h,
2014         * device/include/mcs51/8052.h,
2015         * device/include/mcs51/at89S8252.h,
2016         * device/include/mcs51/at89c55.h,
2017         * device/include/mcs51/at89x051.h,
2018         * device/include/mcs51/at89x51.h,
2019         * device/include/mcs51/at89x52.h,
2020         * device/include/mcs51/mcs51reg.h,
2021         * device/include/mcs51/reg51.h,
2022         * device/include/mcs51/reg764.h,
2023         * device/include/mcs51/regc515c.h,
2024         * device/include/mcs51/sab80515.h: and added them here
2025
2026 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2027
2028         * device/include/stdarg.h: changed SDCC specific keywords to double
2029           underlined form.
2030         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2031           mcs51 and ds390.
2032         * device/include/hc08/mc68hc908gp32.h,
2033         * device/include/hc08/mc68hc908jb8.h,
2034         * device/include/hc08/mc68hc908jkjl.h,
2035         * device/include/hc08/mc68hc908qy.h: fixed comments
2036         * device/include/mcs51/README: updated
2037         * device/include/mcs51/c8051f120.h: added PINRSF
2038         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2039         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2040           amidst code. Also inline is not supported.
2041
2042 2005-04-06 Raphael Neider <rneider AT web.de>
2043
2044         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2045         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2046           callers stack/frame pointers
2047
2048 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2049
2050         * device/include/pic16/usart.h: added, missing in previous commit,
2051         * device/include/pic16/adc.h: fixed typo,
2052         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2053         commit,
2054         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2055         <p18fxxx.inc>
2056         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2057         uninitialized because a bug appears with gplink
2058         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2059         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2060         complains for unrecognised option
2061
2062 2005-04-05 Raphael Neider <rneider AT web.de>
2063
2064         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2065           structs as well (using memcpy)
2066         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2067           on ISRs (GOTO has no label)
2068         * src/pic16/device.h: added OF_OPTIMIZE_DF
2069         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2070           new data flow analysis/optimization
2071         * src/pic16/pcode.c: added (prototypes for and implementation of)
2072           dataflow analysis functions, fixed pCodeInstructions' inCond and
2073           outCond values, made RCALL a branch instruction
2074         * (pic16_unlinkpCode): keep C line if possible
2075         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2076           C line moved if possible
2077         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2078         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2079           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2080         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2081           new flow)
2082         * (pic16_getJumptabpCode): NEW, needed in...
2083         * (LinkFlow): fixed handling of jumptables, calls and conditional
2084           branches
2085         * (pic16_InsertCommentAfter): NEW
2086         * (pic16_pCodeReplace): made verbose and flow preserving
2087         * (AnalyzeFlow): added call to data flow analysis
2088         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2089         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2090         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2091
2092 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2093
2094         * src/SDCCast.c (decorateType): fixed bug #1105626
2095
2096 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2097
2098         * device/include/asm/pic16/features.h,
2099         * pic18f*.h headers,
2100         * device/include/pic16/adc.h,
2101         * device/include/pic16/delay.h,
2102         * device/include/pic16/i2c.h,
2103         * device/include/pic16/malloc.h,
2104         * device/include/pic16/stdio.h,
2105         * device/include/pic16/stdlib.h,
2106         * device/include/pic16/string.h,
2107         * device/lib/pic16/libc/stdio/printf_tiny.c,
2108         * device/lib/pic16/libc/stdio/printf_small.c,
2109         * device/lib/pic16/libc/stdio/strmgpsim.c,
2110         * device/lib/pic16/libc/stdio/strmmssp.c,
2111         * device/lib/pic16/libc/stdio/strmusart.c,
2112         * device/lib/pic16/libc/stdio/vfprintf.c,
2113         * device/lib/pic16/libc/stdlib/ltoa.c,
2114         * device/lib/pic16/libc/stdlib/putchar.c,
2115         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2116         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2117         * device/lib/pic16/libc/stdlib/memchrram.c,
2118         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2119         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2120         * device/lib/pic16/libio/adc/adcbusy.c,
2121         * device/lib/pic16/libio/adc/adcread.c,
2122         * device/lib/pic16/libio/adc/adcsetch.c,
2123         * device/lib/pic16/libio/usart/ubaud.c,
2124         * device/lib/pic16/libio/usart/ubusy.c,
2125         * device/lib/pic16/libio/usart/udrdy.c,
2126         * device/lib/pic16/libio/usart/uopen.c,
2127         * device/lib/pic16/libio/usart/uputc.c,
2128         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2129         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2130         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2131         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2132         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2133         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2134         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2135         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2136         specific keywords to double underlined form,
2137         * device/lib/pic16/libc/Makefile.rules,
2138         * device/lib/pic16/libsdcc/Makefile.rules,
2139         * device/lib/pic16/libm/Makefile,
2140         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2141         to compile with C standard set in Makefile.common
2142         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2143         rand.c and crc.c in compilation process,
2144         * device/lib/pic16/libsdcc/int/divuint.c,
2145         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2146         `c' from signed to unsigned,
2147         * device/lib/pic16/startup/crt0.c,
2148         * device/lib/pic16/startup/crt0i.c,
2149         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2150         keywords to double underlined form, bug fixes in _do_cinit function
2151         which prevented the correct initialization of the .idata segment,
2152         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2153         core to enter a infinite loop
2154         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2155
2156 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2157
2158         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2159
2160 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2161
2162         * device/include/Makefile.in: add support for hc08 subdirectory
2163         * device/include/hc08/: new subdirectory
2164         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2165         Lucas Loizaga, thanks!
2166         * device/include/hc08/mc68hc908qy.h,
2167         * device/include/hc08/mc68hc908gp32.h,
2168         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2169         their own directory. Changed internal macro names to use the compiler
2170         reserved namespace. Changed SDCC specific keywords to double
2171         underlined form.
2172         * device/include/math.h,
2173         * device/include/malloc.h,
2174         * device/include/stdarg.h,
2175         * device/include/stdbool.h
2176         * device/include/string.h,
2177         * device/include/tinibios.h,
2178         * device/include/ds400rom.h,
2179         * device/include/8051.h,
2180         * device/include/8052.h,
2181         * device/include/80c51xa.h,
2182         * device/include/at89c55.h,
2183         * device/include/at89S8252.h,
2184         * device/include/at89x51.h,
2185         * device/include/at89x52.h,
2186         * device/include/ds80c390.h,
2187         * device/include/reg764.h,
2188         * device/include/regc515c.h,
2189         * device/include/sab80515.h,
2190         * device/include/mcs51/c8051f000.h,
2191         * device/include/mcs51/c8051f018.h,
2192         * device/include/mcs51/c8051f020.h,
2193         * device/include/mcs51/c8051f040.h,
2194         * device/include/mcs51/c8051f060.h,
2195         * device/include/mcs51/c8051f120.h,
2196         * device/include/mcs51/c8051f300.h,
2197         * device/include/mcs51/c8051f310.h,
2198         * device/include/mcs51/c8051f320.h,
2199         * device/include/mcs51/c8051f330.h,
2200         * device/include/mcs51/c8051f350.h,
2201         * device/include/z180.h: Changed SDCC specific keywords to double
2202         underlined form.
2203
2204 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2205
2206         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2207         18F4455,
2208         * (pic16_assignConfigWordValue): disable testing of configuration
2209         register value with config mask,
2210         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2211         function with port->fun_prefix,
2212         * (genFunction): when generating a naked interrupt function never
2213         create an absolute segment placed in interrupt vector address, place
2214         the actual interrupt function at IVA instead, when an interrupt
2215         function is generated with unspecified interrupt then do not create
2216         the absolute section,
2217         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2218         code for generating a call to generic pointer get/put function with
2219         a call to function pic16_callGenericPointer(),
2220         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2221         the call to the generic pointer get/put functions with prefixing the
2222         function name with port->fun_prefix,
2223         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2224         * src/pic16/main.c (_process_pragma): prefix function with
2225         port->fun_prefix,
2226         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2227         calling assembler, old 18Fxxxx macro is deprecated,
2228         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2229         PC_ASMDIR in while condition,
2230         * (findInstruction): add PC_ASMDIR in while condition,
2231         * (buildCallTree): prefix main with port->fun_prefix,
2232         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2233         identifier for variable with banked access in instructions BTFSS,
2234         BTFSC, BCF, BSF, BTG
2235         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2236         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2237         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2238         perform optimization when enviroment variable NO_REG_OPT is set,
2239         * (insideLRBlock): NEW, return 1 if register is inside an
2240         INF_LOCALREGS block,
2241         * (RemoveRegFromLRBlock): remove a register that is completely
2242         eliminated by register optimization, but it is still left in local
2243         register store/restore in/from stack block,
2244         * (Remove2pcodes): after removing register, check to see if it
2245         should be removed from local register store/restore in/from stack
2246         block,
2247         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2248         DUMMY_READ_VOLATILE,
2249
2250         * device/include/pic16/adc.h: minor prototype modifications and
2251         update,
2252         * device/include/pic16/malloc.h: added GPL notice various
2253         modifications,
2254         * device/include/pic16/stdint.h: NEW, standard header for ints
2255         * device/include/pic16/delay.h: NEW, header for delay functions,
2256         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2257         delay1mtcy,
2258         * device/include/pic16/signal.h: NEW, header providing helper macros
2259         for implementing signal handlers,
2260         * device/include/pic16/stdio.h: added prototypes for functions,
2261         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2262         prototypes for stdin and stdout, added macro PUTCHAR to
2263         automatically implement putchar function prototype,
2264         * device/include/pic16/usart.h: modified and updated USART library,
2265         * device/lib/pic16/libio/adc/,
2266         * device/lib/pic16/libio/i2c: some modifications to improve library
2267         performance,
2268         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2269         family of functions,
2270         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2271         family of functions and other sources,
2272         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2273         of the PIC18Fxx[28] devices,
2274         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2275         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2276         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2277         _do_cinit function, because the previous failed when local variables
2278         where not placed in the same memory bank,
2279         * device/lib/pic16/libsdcc/char/: various modifications to improve
2280         library performance,
2281         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2282         information on the new functions of the c library and more...
2283
2284 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2285
2286         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2287
2288 2005-03-26 Raphael Neider <rneider AT web.de>
2289
2290         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2291           if condition == CARRY)
2292         * (genCmp): adapted to new genSkipc semantics
2293         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2294           on rIfx (genCmp was broken)
2295
2296 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2297
2298         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2299         * src/z80/main.c (_keywords[]),
2300         * src/SDCCglobal.h (struct options),
2301         * src/SDCC.y,
2302         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2303         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2304         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2305         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2306         always available in leading double underscore form. The C99 support is
2307         mostly missing, but it's a start.
2308         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2309         reserved identifier "__data".
2310
2311 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2312
2313         * src/mcs51/peeph.def: fixed bug 1170013
2314
2315 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2316
2317         * device/include/mcs51reg.h: fixed bug 842007
2318
2319 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2320
2321         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2322         last time.
2323
2324 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2325
2326         * src/port.h (struct PORT),
2327         * src/avr/ralloc.c (avr_assignRegisters),
2328         * src/avr/main.c,
2329         * src/ds390/ralloc.c (ds390_assignRegisters),
2330         * src/ds390/main.c,
2331         * src/hc08/ralloc.c (hc08_assignRegisters),
2332         * src/hc08/main.c,
2333         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2334         * src/mcs51/main.c,
2335         * src/pic/ralloc.c (pic14_assignRegisters),
2336         * src/pic/main.c,
2337         * src/pic16/ralloc.c (pic16_assignRegisters),
2338         * src/pic16/main.c,
2339         * src/xa51/ralloc.c (xa51_assignRegisters),
2340         * src/xa51/main.c,
2341         * src/z80/ralloc.c (z80_assignRegisters),
2342         * src/z80/ralloc.h,
2343         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2344         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2345         * src/SDCCcse.h,
2346         * src/SDCCdflow.c (computeDataFlow),
2347         * src/SDCCdflow.h,
2348         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2349         * src/SDCCloop.h,
2350         * src/SDCCcflow.c (*),
2351         * src/SDCCcflow.h,
2352         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2353         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2354         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2355         immedDom() returning wrong block; probably fixes bug #1160833)
2356
2357 2005-03-20 Borut Razem <borut.razem AT siol.net>
2358
2359         * support/scripts/inc2h.pl: WIN32 port
2360
2361 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2362
2363         * device/lib/makefile.in: added abs.c and labs.c
2364
2365 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2366
2367         * device/include/stdint.h: added
2368         * device/lib/abs.c: added
2369         * device/lib/labs.c: added
2370         * device/include/stdlib.h: added abs() and labs() prototypes
2371         * device/lib/libsdcc.lib: added abs and labs
2372         * device/include/float.h,
2373         * device/lib/_fsmul.c,
2374         * device/lib/printf_fast.c,
2375         * device/lib/printf_tiny.c: updated comments
2376
2377 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2378
2379         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2380         bug #1164313
2381
2382 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2383
2384         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2385         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2386
2387 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2388
2389         * device/lib/printf_large.c: removed inline assembly for portability and
2390           readability. Use printf_fast if speed or size are more important.
2391         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2392         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2393
2394 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2395
2396         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2397         prevent compiler warning
2398
2399 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2400
2401         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2402         moved to level 0 and declared as static. Also they are explicit
2403         placed in access bank. This was necessery because some times they
2404         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2405         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2406         optimizations. Currently only compare to unsigned char is implemented,
2407         * src/pic16/gen.c: added fReturnIdx array,
2408         * (struct resolvedIfx) is moved to gen.h and made public,
2409         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2410         * (aopForSym): added an optimization to directly store in stack of
2411         the operand of a SEND iCode,
2412         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2413         but as registers instead (AOP_REG) using the fReturnIdx array,
2414         * (pic16_freeAsmop): remove the freed register from the
2415         _G.sregsAlloc field,
2416         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2417         a compare of 'WREG',
2418         * (pic16_popGetTempRegCond): changed function prototype, now
2419         function takes also a bitVector argument v which holds the current
2420         set of registers that are allocated for stack access by aopForSym,
2421         registers allocated in aopForSym for accessing stack symbols are not
2422         any more part of the functions usedRegs field,
2423         * (genCall): some times aopOp is called for a stack variable to be
2424         send, aopForSym might perform the push, if this is true make sure
2425         that genCall doesn't push the variable twice by testing _G.resDirect,
2426         * (genFunction): changed testing for unspecified interrupt number
2427         from 256 to INTNO_UNSPEC,
2428         * modified selection scheme of frame pointer generation. Previously
2429         if function did use local registers a frame pointer was generated,
2430         now a frame pointer is generated only if function has arguments
2431         (that need PLUSW2 register access), or has stack arguments, or the
2432         compiler is not instructed to omit the frame pointer,
2433         * (genEndFunction): before restoring local registers that were saved
2434         in the function preamble, also restore the registers that *might*
2435         have been allocated for stack access,
2436         * (genRet): removed some old comments,
2437         * (genCmp, the active (RN's) version): added a call to the
2438         pic16_genCmp_special function to perform the compare with a more
2439         robust and optimized way,
2440         * (genInline): a feature has been added in inline code generation,
2441         which allows a wildcard variable substitution when writing inline
2442         assembly. Code is incomplete and experimental therefore undocumented,
2443         * (genCast): changed order of aopOp for result and right to allow
2444         aopForSym to directly load the result if possible,
2445         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2446         perform an optimized compare on some selected special occasions,
2447         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2448         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2449         generate an IVT any more,
2450         * src/pic16/main.c (pic16_optionsTable): added command line option
2451         --optimize-cmp,
2452         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2453         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2454         macros,
2455         * src/pic16/NOTES: Raphael Neider added in list of active developers
2456         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2457         jumptable_end to prevent bug #,
2458         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2459         inCond and outCond fields,
2460         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2461         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2462         turn off register spilling,
2463         * (packRegsForOneUse): synced with other ports' versions although it
2464         is not used currently,
2465         * (pic16_packRegisters): added an optimization while reading
2466         structure bitfields, some registers may be saved (malloc code is
2467         decreased by 80 bytes)
2468
2469 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2470
2471         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2472         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2473         this can be optimized more?
2474
2475 2005-03-10 Raphael Neider <rneider AT web.de>
2476
2477         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2478           genNearPointerGet): (hopefully) fixed access to bitfields via
2479           pointers (p->bitN = x; and x = p->bitN; failed)
2480
2481 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2482
2483         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2484
2485 2005-03-09 Raphael Neider <rneider AT web.de>
2486
2487         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2488
2489 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2490
2491         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2492         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2493           (regTypeNum): set REG_BIT type if necessary
2494         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2495         * support/regression/tests/critical.c: check bug 1144613
2496
2497 2005-03-02 Raphael Neider <rneider AT web.de>
2498
2499         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2500
2501 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2502
2503         * src/avr/ralloc.c (serialRegAssign),
2504         * src/ds390/ralloc.c (serialRegAssign),
2505         * src/hc08/ralloc.c (serialRegAssign),
2506         * src/mcs51/ralloc.c (serialRegAssign),
2507         * src/pic/ralloc.c (serialRegAssign),
2508         * src/pic16/ralloc.c (serialRegAssign),
2509         * src/xa51/ralloc.c (serialRegAssign),
2510         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2511
2512 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2513
2514         * src/SDCCast.c (decorateType): fixed bug 1124787
2515
2516 2005-02-20 Hubert Sack <sack AT digiplan.de>
2517         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2518
2519         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2520         patch #1121755
2521
2522 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2523
2524         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2525         to keep the correct label reference count when adding/removing references
2526         to labels. A peephole file using this is appended to patch #1144962.
2527
2528 2005-02-14 Raphael Neider <rneider AT web.de>
2529
2530         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2531         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2532         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2533           retrievals of result operand's value on assignment
2534
2535 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2536
2537         * device/include/pic16/string.h: modified prototype for memccpy()
2538         to memccpy(void *, void *, char, size_t)
2539         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2540         check whether to omit frame pointer or not,
2541         * (genInline): convert all occurences of "\n" to LF in inline
2542         assembler blocks, this helps formatting the inline text,
2543         * (pic16_loadFSR0): modified prototype,
2544         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2545         removed some 8051 legacy code,
2546         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2547         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2548         before allocating temporary registers in functions,
2549
2550 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2551
2552         * support/regression/tests/bitvars.c: corrected the "fix"
2553
2554 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2555
2556         * support/regression/tests/bitvars.c,
2557         * support/regression/tests/bitwise.c,
2558         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2559
2560 2005-02-10 Raphael Neider <rneider AT web.de>
2561
2562         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2563           different size for Alpha
2564         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2565
2566 2005-02-09 Raphael Neider <rneider AT web.de>
2567
2568         * src/SDCC.lex(doPragma) : save and restore warning options as well
2569           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2570         * have #pragma less_pedantic set the errorlevel to WARNING
2571           (fixes #1117001)
2572         * (cloneOptimize) : fixed wrong malloc's size
2573         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2574           facilitate correct handling of #pragma (save|restore)
2575
2576 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2577
2578         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2579
2580 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2581
2582         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2583
2584 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2585
2586         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2587
2588 2005-02-02 Raphael Neider <rneider AT web.de>
2589
2590         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2591         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2592         * (pic16_storeForReturn): fixed to allow returning function pointers
2593         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2594         * device/include/pic16/{stddef.h,stdbool.h}: added
2595
2596 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2597
2598         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2599
2600 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2601
2602         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2603         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2604          appeared to be required
2605
2606 2005-01-31 Borut Razem <borut.razem AT siol.net>
2607
2608         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2609           include/mcs51 and include/z80 directories to the package
2610
2611 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2612
2613         * src/hc08/gen.c (genFunction): fixed bug #1112752
2614
2615 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2616
2617         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2618
2619 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2620
2621         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2622
2623 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2624
2625         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2626
2627 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2628
2629         * device/include/c8051fxxx.h: removed these 6 files
2630         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2631
2632 2005-01-26 Raphael Neider <rneider AT web.de>
2633
2634         * src/pic16/gen.c (genAssign): fixed assignment from longs
2635           in codespace (were cut to three bytes)
2636         * (genDummyRead): implemented (except for CODESPACE...),
2637           fixed bug #1108575
2638         * src/pic16/glue.c (emitStatistics): beautified
2639         * device/lib/pic16/libm/Makefile: added include path
2640
2641 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2642
2643         * src/z80/gen.c (aopPut): fixed bug #1103902
2644
2645 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2646
2647         * device/lib/expf.c: fixed bug #1095792
2648
2649 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2650
2651         * device/lib/pic16/libm: added Math library sources
2652
2653 2005-01-24 Raphael Neider <rneider AT web.de>
2654
2655         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2656           to enable upcast to pCodeOpReg2 (there is no type tag to
2657           differenciate the two and pic16_popGet2p cast into PCOR2)
2658         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2659           (sizeof(sectNames) changed to sizeof(sectName))
2660           Both patches fix segfaults under MinGW.
2661
2662 2005-01-23 Raphael Neider <rneider AT web.de>
2663
2664         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2665           Safe_[mc]?alloc()'ed variables
2666         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2667           of (byte sized) temporaries (assign them to WREG for now)
2668         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2669           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2670           this might fix SIGSEGVs on MinGW...
2671         * src/SDCCopt.c (killDeadCode): restored original behaviour
2672           (volatile operands might get thrown away though)
2673
2674 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2675
2676         * src/pic16/gen.c: fixed bug #1106975,
2677         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2678         pointer update, INTCON is saved, global interrupts are disabled and
2679         restored after updateing TOS.
2680         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2681         * added function attribute 'shadowregs' to take advantage of shadow
2682         registers,
2683         * added function attribute 'wparam' as an alternative to the wparam
2684         pragma,
2685         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2686         user declares a non-ISR function as 'shadowregs',
2687         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2688
2689 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2690
2691         * .version: bumped version number to 2.4.8
2692         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2693         pic16 port,
2694         * device/lib/pic16/libio/i2c/: I2C module support library,
2695         * device/include/pic16/i2c.h: I2C support library header,
2696         * device/lib/pic16/libc/stdio/: standard IO support sources,
2697         * (printf_small.c): printf_small() source, supports float print,
2698         * (printf_tiny.c): printf_tiny() source, does not support floats,
2699         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2700         enable global optimizations for entire library source, other
2701         Makefiles in the source tree are also modified to reflect this,
2702         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2703         function,
2704         * doc/sdccman.lyx: updated to reflect new changes,
2705         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2706         sym->onStack if-case,
2707         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2708         sbit, idata, _idata, xdata, _xdata,
2709         * added pragma library, to link an external library, (see doc),
2710         * removed command line options, --pomit-config-words, --pomit-ivt,
2711         --pleave-reset-vector,
2712         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2713         when calling assembler to reflect memory model used, also define
2714         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2715         reflect stack model used,
2716         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2717         on stack return NULL,
2718
2719 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2720
2721         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2722           of the operands is volatile. Fixes #1020220
2723
2724 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2725
2726         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2727         * (OptimizeRegUsage): make sure that there is really no other flow where
2728           the first pCode is used
2729
2730 2005-01-22 Raphael Neider <rneider AT web.de>
2731
2732         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2733           to fix #1106967 (pCode->seq are not set up correctly)
2734
2735 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2736
2737         * src/SDCCglue.c (glue): make sure code area is declared before the
2738         static initialization area.
2739
2740 2005-01-21 Raphael Neider <rneider AT web.de>
2741
2742         * device/lib/Makefile.in: fixed test for pic16 install dir
2743         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2744           optimizations
2745         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2746           added --optimize-goto compiler switch and pragma wparam documentation
2747         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2748         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2749           and PRODH closing bug #1071770 (peephole optimizer)
2750
2751 2005-01-19 Raphael Neider <rneider AT web.de>
2752
2753         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2754           cmdLine buffers (used when calling sdcpp...) are large enough
2755           (MAX_PATH=256 truncates arguments leading to system halts when
2756           used in MinGW...)
2757         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2758         * (genUminus): rewritten to for efficiency
2759         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2760           used uninitialized in some cases)
2761         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2762           copy the third byte from the int -- now assumes 0x80 (data memory)
2763         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2764           operands (genAddLit expects the iCode's operands to swapped as
2765           well), fixed leftover bytes (crashed for short left operands)
2766         * (pic16_genMinusDec): performance improvements, removed false
2767           PIC14 emitSKPNCs
2768         * (pic16_genMinus): fixed to cope with differently sized operands
2769         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2770           for --obanksel > 1
2771         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2772         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2773           new banksel optimization
2774         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2775           analysis for temporary registers (segfaults...)
2776         * src/pic16/peeph.def: added rule
2777
2778 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2779
2780         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2781         which converts a float number to its ASCII representation
2782         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2783         functions to convert the fractional and integer part of a float to ASCII,
2784         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2785         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2786         ram
2787         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2788         _STATMEM macros,
2789         * device/include/pic16/adc.h: added GPL info,
2790         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2791         a pCodeOp as tested operand,
2792         * (genNearPointerGet): optimized bit testing, does not use
2793         intermediate register for bit value, test directly instead with
2794         BTFSS, BTFSC, works only for single bits,
2795         * (genpic16Code): dump the name of the iCode in the asm,
2796         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2797         renamed to pic16_decodeOp,
2798         * (serialRegAssign): do not allocate a temporary register for iCode
2799         sequences that test a single bit for 1/0
2800
2801 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2802
2803         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2804         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2805         access stack and frame pointers. They are initially assigned to
2806         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2807         accessing SFRs. Updated all occurences of modification of stack or
2808         frame pointer in gen.c and pcode.c,
2809         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2810         assigning of a literal value to pointers,
2811         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2812         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2813         selected
2814
2815 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2816
2817         * doc/sdccman.lyx: update documentation about stack pragma, added
2818         some info for stack memory models
2819
2820 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2821
2822         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2823
2824 2005-01-08 Raphael Neider <rneider AT web.de>
2825
2826         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2827           udata sections to fix bug #1097823
2828
2829 2005-01-05 Raphael Neider <rneider AT web.de>
2830
2831         * src/pic16/gen.c (genGenericShift): added handling of differently
2832           sized left operand and result
2833
2834 2005-01-04 Raphael Neider <rneider AT web.de>
2835
2836         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2837         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2838           to hold the condition bit)
2839         * added new version of genCmp (old code available via #define)
2840         * added new version of genShiftLeft/genShiftRight in a generic
2841           way, now supports shifting by negative values
2842         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2843           shiftCount (expected by genGenericShift)
2844         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2845         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2846           dump
2847         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2848           is an invalid literal too...)
2849
2850 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2851
2852         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2853         from Raphael Neider,
2854         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2855         for 8-bit literals. This fixes some literal operands which are sign
2856         extended to 16-bits ints when instruction needs only 8-bits.
2857
2858 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2859
2860         * device/lib/logf.c: added mcs51 assembly version
2861         * device/lib/expf.c: added mcs51 assembly version
2862         * device/lib/_logexpf.c: new shared asm code for expf and logf
2863         * device/include/math.h: add defines for assembly math library
2864         * device/lib/Makefile.in: build new _logexpf.c
2865         * device/lib/libfloat.lib: use new _logexpf.c
2866
2867 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2868
2869         * src/pic/device.c
2870         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2871           device types which have less than 0x7f registers.
2872
2873 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2874
2875         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2876
2877 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2878
2879         * device/lib/printf_fast.c: only build on supported arch.
2880         * device/lib/printf_tiny.c: only build on supported arch.
2881         * device/lib/printf_fast_f.c: only build if asm float lib
2882         * device/lib/_fsget1arg.c: only build if asm float lib
2883         * device/lib/_fsget2args.c: only build if asm float lib
2884         * device/lib/_fsnormalize.c: only build if asm float lib
2885         * device/lib/_fsreturnval.c: only build if asm float lib
2886         * device/lib/_fsrshift.c: only build if asm float lib
2887         * device/lib/_fsswapargs.c: only build if asm float lib
2888         * device/include/stdio.h: don't provide print_fast,
2889           print_fast_f, print_tiny prototypes if --xstack used
2890
2891 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2892
2893         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2894         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2895           to the SOURCES
2896
2897 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2898
2899         * device/lib/printf_fast_f.c: same as printf_fast, but
2900           with floating point enabled
2901         * device/lib/printf_fast.c: minor tweaks
2902         * device/include/stdio.h: add printf_fast_f
2903
2904 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2905
2906         * src/SDCCmain.c: make --float-reent default for mcs51
2907         * device/lib/_fsadd.c: added mcs51 assembly version
2908         * device/lib/_fssub.c: added mcs51 assembly version
2909         * device/lib/_fsmul.c: added mcs51 assembly version
2910         * device/lib/_fsdiv.c: added mcs51 assembly version
2911         * device/lib/_fseq.c: added mcs51 assembly version
2912         * device/lib/_fsneq.c: added mcs51 assembly version
2913         * device/lib/_fsgt.c: added mcs51 assembly version
2914         * device/lib/_fslt.c: added mcs51 assembly version
2915         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2916         * device/lib/Makefile.in: add _fscmp to build
2917         * device/lib/libfloat.lib: add _fscmp to build
2918
2919 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2920
2921         * device/lib/_fs2slong.c: added mcs51 assembly version
2922         * device/lib/_fs2sint.c: added mcs51 assembly version
2923         * device/lib/_fs2schar.c: added mcs51 assembly version
2924         * device/lib/_fs2ulong.c: added mcs51 assembly version
2925         * device/lib/_fs2uint.c: added mcs51 assembly version
2926         * device/lib/_fs2uchar.c: added mcs51 assembly version
2927         * device/lib/_slong2fs.c: added mcs51 assembly version
2928         * device/lib/_sint2fs.c: added mcs51 assembly version
2929         * device/lib/_schar2fs.c: added mcs51 assembly version
2930         * device/lib/_ulong2fs.c: added mcs51 assembly version
2931         * device/lib/_uint2fs.c: added mcs51 assembly version
2932         * device/lib/_uchar2fs.c: added mcs51 assembly version
2933         * device/include/float.h: added #define to select asm vs c
2934
2935 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2936
2937         * device/lib/printf_fast.c: improvements to float output
2938         * device/include/float.h: add defines for assembly float library
2939         * device/lib/_fsget1arg.c: receive 1 float arg
2940         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2941         * device/lib/_fsnormalize.c: normalize a float
2942         * device/lib/_fsreturnval.c: return float, various helper routines
2943         * device/lib/_fsrshift.c: right shift a float's mantissa
2944         * device/lib/_fsswapargs.c: swap 2 floats
2945         * device/lib/Makefile.in: build these 6 new files for mcs51
2946         * device/lib/libfloat.lib: add these 6 files to the library
2947
2948 2004-12-26 Borut Razem <borut.razem AT siol.net>
2949
2950         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2951           built by gcc 3.4.2
2952
2953 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2954
2955         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2956           and fully reentrant and register bank neutral.
2957         * device/lib/printf_fast.c: added float (not enabled by default),
2958           added compact/slower integer (also not enabled by default),
2959           improved size/speed of fast integer code, other minor changes
2960         * device/include/stdio.h, device/lib/Makefile.in,
2961           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2962
2963 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2964
2965         * src/pic16/pcode.c: declaring variables other than at the start of a
2966           block is not supported in C by VC6.
2967
2968 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2969
2970         * applied a previous patch from Raphael Neider that wasn't included
2971         in the previous commits, which fixes infinite loops within jumptable
2972         improvements,
2973         * made some fixes that previous patches introduced
2974
2975 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2976
2977         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2978         that fixes an issue with AOP_PCODE asmop's offset,
2979         * (pic16_popCopyReg): update instance field too,
2980         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2981         function of pic port,
2982         * (genCmp, genAnd, genAssign),
2983         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2984
2985 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2986
2987         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2988         variables initial values to idata section,
2989         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2990         variables in some functions. This utilizes parmBytes field of iCode
2991         structure to hold the offset of the variable in stack. (might be
2992         able to use the stack field too?)
2993         * applied patch from Raphael Neider # ### , # ###
2994         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2995         variable initial values in idata section,
2996         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2997         for static variables with initial value
2998         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2999         applied fix in while loop from Raphael Neider.
3000
3001 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3002
3003         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3004         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3005         * src/ds390/ralloc.c (serialRegAssign): spill bits
3006         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3007         * support/Util/SDCCerr.c,
3008         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3009         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3010         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3011
3012 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3013
3014         * device/include/sdcc-lib.h: inserted LGPL, added includes
3015           asm/ds390/features.h and asm/mcs51/features.h
3016         * device/include/asm/default/features.h,
3017         * device/include/asm/gbz80/features.h,
3018         * device/include/asm/z80/features.h: added empty _AUTOMEM
3019           and _STATMEM
3020         * device/include/asm/ds390/features.h,
3021         * device/include/asm/mcs51/features.h: added files with defines for
3022           _AUTOMEM and _STATMEM indicating automatic and static storage class
3023         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3024         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3025         * src/SDCCicode.c (geniCodeCast),
3026         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3027         * src/SDCCloop.c (loopInduction): removed unused variable lr
3028         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3029           to convertToFcall to include char modulo (RFE 1065037), added check
3030           if left operand is unsigned and use abs of literal value
3031         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3032           as it doesn't work after conversion from peephole.def to peephole.rul
3033         * src/mcs51/gen.c (toBoolean): added check for size,
3034           (genModOneByte): optimized code for signed char modulo a literal
3035           power of 2 (thanks to Hubert Sack),
3036           (genRRC): removed unnecessary "clr c",
3037           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3038         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3039           jump optimization,
3040           swapped rules 256.c and 256.d,
3041           extended 256.d by using new multiple checks (thanks Erik),
3042           added rules 256.e and 256.f,
3043           updated rule 261.a and 261.b to new generated code
3044         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3045
3046 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3047
3048         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3049           induction related bugs, including first part of bug #1074377
3050
3051 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3052
3053         * applied patch from bug-report #1076292,
3054         * applied patches for genAnd and Goto-optimizations for Raphael
3055         Neider,
3056         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3057         dump a less iCode information,
3058         * src/pic16/device.h (pic16_options_t): added field debgen,
3059         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3060         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3061         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3062         puclic,
3063         * (various functions): added macros FENTRY and FENTRY2 to functions,
3064         to emit function prologue,
3065         * (various functions): fixed indentation,
3066         * (genNearPointerGet): fixed loading of FSR0,
3067         * (genPackBits): applied patch from Raphael Neider to fix updating
3068         of FSR0 and touching only the modified bits,
3069         * src/pic16/genarith.c (various functions): added macros FENTRY to
3070         emit function prologue in comments,
3071         * src/pic16/pcode.h: added functions debugf2, debugf3,
3072         * src/pic16/ralloc.c: partial fix for packForPush caused
3073         segmentation fault,
3074
3075 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3076
3077         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3078           <stsp AT users.sourceforge.net> with reversed byte order
3079         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3080
3081 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3082
3083         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3084           bug #1074377
3085         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3086         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3087
3088 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3089
3090         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3091
3092 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3093
3094         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3095           conditions,
3096           (setFromConditionArgs): friendly operand parser for peephole rules,
3097           (operandBaseName, operandsNotRelated): new peephole condition
3098           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3099           architecture specific register naming into account, handles n-way
3100           comparisons, and supports quoted literals
3101         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3102
3103 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3104
3105         * src/mcs51/peeph.def: fixed bug #1076940
3106
3107 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3108
3109         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3110
3111 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3112
3113         Adding support for replacing ljmps with sjmps in jumptables
3114         generated for switch statements. For now you need to set the
3115         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3116         Now 4 algorithms for mcs51 jumptable generation are used:
3117         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3118         addresses loaded pc-relative for up to 112 cases and stack-pushing
3119         target addresses loaded with offset from dptr for up to 256 cases.
3120
3121         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3122         * src/mcs51/main.c: adapted constants for switch table generation
3123         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3124
3125 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3126
3127         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3128         * support/regression/tests/bug1057979.c: added test for bug 1073386
3129
3130 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3131
3132         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3133         compilers
3134
3135 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3136
3137         * src/pic16/device.h,
3138         * src/pic16/genarith.c,
3139         * src/pic16/glue.c,
3140         * src/pic16/main.c,
3141         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3142
3143 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3144
3145         Large cummulative patch for pic16 port.
3146         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3147         to call when a stack overflow occurs,
3148         * (malloc.h): added CVS Id tag,
3149         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3150         variable,
3151         * added libc directory. The current version of LibC contains string
3152         functions, ctype functions and macros and some functions of the
3153         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3154         be extensively tested in the future. Standard disclaimer here.
3155         Library is not automatically build yet. But one can build it by
3156         invoking 'make' inside the libc directory.
3157         * added ADC library under libio. Preliminary version yet.
3158
3159         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3160         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3161         aopForRemat() now and not by pic16_aopOp(),
3162         * (pic16_popGetTempReg): removed warning messgae when allocating
3163         temporary registers, its a buggy feature and will be removed,
3164         * (pic16_popGet): set register instance field in AOP_CRY,
3165         * (pic16_outBitC): fixed for results in size greater than 1,
3166         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3167         * (pic16_storeForReturn): optimized return of 0,
3168         * (genCmp): experimental code for new genCmp which uses PIC18's
3169         special compare&skip instructions. Initial tests fail some times
3170         with variables grater than 1 byte in size, so new code is disabled,
3171         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3172         a single bit,
3173         * (genCast): began a fix to optimize the casting of a bit to another
3174         bit, now assigning a bitfield to another bitfield will fail, sorry,
3175         * src/pic16/main.c: disabled the use of lr-support feature,
3176         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3177         * added some function prototypes, added function _debugf prototype,
3178         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3179         bits with offset (case PO_GPR_BIT),
3180         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3181         command line,
3182         * (isBankInstruction): modified to return 0 for no banking instruction,
3183         and 1 for banking instruction,
3184         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3185         caused stop processing pCodes after a inline assembly block,
3186         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3187         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3188         registers when it shouldn't,
3189         * src/pic16/ralloc.c (allocReg): add preliminary support for
3190         supporting a limited set of temporary registers,
3191
3192 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3193
3194         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3195           genDataPointerSet): ensure assignments always copy in MSB to LSB
3196           order,
3197           (loadRegFromAop): recognize CLRH optimization,
3198           (genFunction): optimize RECEIVE iCodes in reentrant functions
3199
3200 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3201
3202         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3203           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3204           selected.
3205         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3206         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3207           contiguous with data
3208
3209 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3210
3211         * device/lib/_gptrget.c (_gptrget),
3212         * device/lib/_gptrgetc.c (_gptrgetc),
3213         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3214           instead of sjmp to ret
3215         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3216           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3217
3218 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3219
3220         * .version: bumped version to 2.4.7
3221         * device/lib/_gptrget.c (_gptrget): is now _naked
3222         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3223         * device/lib/_gptrput.c (_gptrput): is now _naked
3224         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3225           (createFunction): fixed xstack
3226         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3227         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3228           or bit either,
3229           (geniCodeCritical): store original interrupt state in an iTemp bit
3230           var unless stack-auto
3231         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3232         * src/SDCCmain.c (setIncludePath): added include/target to search path
3233         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3234         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3235           prototype,
3236           (processFuncArgs): put bit vars in bit area
3237         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3238           unsaveRBank): fixed xstack,
3239           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3240           (genFunction, genEndFunction): fixed xstack,
3241           (genAssign): optimization don't walk backwards through mem
3242         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3243         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3244         * support/regression/Makefile: also make library (for stack-auto) when
3245           making "all" and added "test-mcs51-xstack-auto"
3246         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3247         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3248         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3249         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3250         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3251           make-library by MAKE_LIBRARY
3252         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3253           regression tests for xstack
3254         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3255         * support/regression/tests/critical.c: test for critical on mcs51
3256
3257 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3258
3259         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3260           built version of sdcc instead of installed version
3261
3262 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3263
3264         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3265         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3266           vprintf.c now
3267         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3268         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3269           WARNING: remove device/lib/build/z80/printf.o by hand when
3270           updating from previous build!
3271         * device/lib/z80/printf.c: updated comment
3272         * support/regression/tests/bug1057979.c: test all ports now
3273         * support/regression/tests/bug1065458.c: file added
3274
3275 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3276
3277         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3278           *_start and *_end symbols for static functions
3279
3280 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3281
3282         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3283           and search crt0.o in all library paths,
3284           (setIncludePath): proper handling of --nostdinc,
3285           (setLibPath): proper handling of --nostdlib
3286         * support/regression/Makefile,
3287         * support/regression/ports/ds390/spec.mk,
3288         * support/regression/ports/gbz80/spec.mk,
3289         * support/regression/ports/hc08/spec.mk,
3290         * support/regression/ports/mcs51/spec.mk,
3291         * support/regression/ports/mcs51-large/spec.mk,
3292         * support/regression/ports/mcs51-stack-auto/spec.mk,
3293         * support/regression/ports/z80/spec.mk: use include and lib files from
3294           built version of sdcc instead of installed version
3295         * doc/sdccman.lyx: fixed typo in --nostdinc
3296
3297 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3298
3299         * src/pic/pcode.c,
3300         * src/pic/device.c,
3301         * src/pic/ralloc.c,
3302         * src/pic/gen.c : added support to generate code for struct bit fields.
3303
3304 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3305
3306         * as/xa51/xa_version.h,
3307         * device/include/errno.h,
3308         * device/include/regc515c.h,
3309         * device/lib/_itoa.c,
3310         * device/lib/_ltoa.c,
3311         * device/lib/ser_ir_cts_rts.c,
3312         * sim/ucsim/xa.src/glob.cc,
3313         * sim/ucsim/xa.src/inst_gen.cc,
3314         * sim/ucsim/xa.src/xa_bit.cc,
3315         * sim/ucsim/xa.src/xa_sfr.cc,
3316         * sim/ucsim/z80.src/inst_dd.cc,
3317         * sim/ucsim/z80.src/inst_fdcb.cc,
3318         * support/scripts/keil2sdcc.pl,
3319         * src/pic16/pic16.dsp,
3320         * src/pic16/pic16a.dsp: corrected cvs line endings
3321         * device/lib/printf_large.c: fixed bug 1057979
3322         * src/pic16/gen.c: fixed non-C standard code
3323         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3324         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3325         * support/regression/ports/mcs51/support.c: reload T1 asap
3326         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3327           pdata use and clear idata startup behaviour
3328         * support/regression/tests/bug1057979.c: added
3329
3330 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3331
3332         * device/examples/ds390/ow390/ad26.h,
3333         * device/examples/ds390/ow390/cnt1d.h,
3334         * device/examples/ds390/ow390/crcutil.c,
3335         * device/examples/ds390/ow390/ownet.h,
3336         * device/examples/ds390/ow390/owsesu.c,
3337         * device/examples/ds390/ow390/swt12.h,
3338         * device/examples/ds390/ow390/swtoper.c,
3339         * device/examples/ds390/ow390/temp10.h,
3340         * device/examples/ds390/ow390/thermodl.c,
3341         * device/examples/ds390/tinitalk/tinitalk.dsp,
3342         * device/examples/ds390/tinitalk/tinitalk.dsw,
3343         * device/examples/mcs51/clock/hw.h,
3344         * device/examples/mcs51/simple2/go.bat,
3345         * device/examples/serialcomm/windows/serial.h,
3346         * device/examples/xa51/dummy.c,
3347         * device/examples/xa51/hello.c,
3348         * device/include/80c51xa.h,
3349         * device/include/at89x051.h: corrected cvs line endings
3350
3351 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3352
3353         * src/pic16/main.c (options): added command line --gstack, to trace
3354         stack over/under flows,
3355         * added pragma 'wparam' to allow passing first byte of function
3356         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3357         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3358         call to __gstack_test function and sets up the symbol as extern,
3359         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3360         * popaop): added call to pic16_testStackOverflow,
3361         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3362         wparamList list,
3363         * (genCall, genPcall): now all parameters are passed via stack
3364         except in functions that are pass to wparam pragma in which WREG is
3365         used too,
3366         * (genPcall): REENTRANT flag is checked to see if variable prototype
3367         contains reentrant keyword, don't call a non-reentrant function, via
3368         a reentrant function pointer or vice versa, functions are never
3369         passed via WREG,
3370         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3371         D.Winkler,
3372         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3373         SIGSEGV when accessing a NULL register stucture,
3374         * (pic16_printGPointerType): modified to handle UPPER modifier for
3375         function initializers, changed prototype of function to simpler one,
3376         * (pic16_printIvalFuncPtr): check to see if function is already
3377         added in externs list,
3378         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3379         optimized a move from W to SFR with a move to the same register
3380         later after a CALL,
3381         * device/lib/pic16/debug: NEW directory, contains debug features
3382         which are enabled when linking with libdebug.lib, currently command
3383         line option --gstack enables stack pointer tracing for over/under
3384         flow, corresponding sources are in debug/gstack
3385
3386 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3387
3388         * doc/sdccman.lyx: updated SDCC version,
3389         * (PIC16 port): update list of command line options,
3390         * src/pic16/device.h (structure pic16_options_t): added field gstack
3391         to enable stack overflow tracing on push/pops,
3392         * src/pic16/device.c (statistics structure): added statistics
3393         structure,
3394         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3395         pic16_dump_int_registers): increase statistics counters for each
3396         * variable which is encountered
3397         * (pic16_dump_usection): emit each .udata variable to its own udata
3398         section,
3399         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3400         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3401         parameters via stack, otherwise use old scheme,
3402         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3403         assembler output file,
3404         * src/pic16/main.c: added command line options --gstack to enable
3405         push/pop tracing for stack overflow,
3406         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3407         instructions): added size of each instruction,
3408         * (pic16_countInstruction): estimate size of instructions in
3409         the_pFile list, inline assembly blocks are not counted,
3410         * (pic16_FixRegisterBanking): trace previous register usage, when
3411         banksel optimizations is greater than 0, don't emit a redudant
3412         banksel directive,
3413
3414 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3415
3416         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3417         * src/pic16/ralloc.c : applied same fix for pic16.
3418         * src/pic/gen.c : tidied it up a little.
3419
3420 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3421
3422         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3423         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3424
3425 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3426
3427         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3428
3429 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3430
3431         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3432         non-reentrant function __modsint in the interrupt function (thus
3433         corrupting math operations during serial I/O)
3434         * device/lib/ser_ir.c: as above, changed buffersize
3435         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3436         256.c,d for zeroing
3437         * doc/Makefile: added option -t for rsync
3438
3439 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3440
3441         * src/SDCCast.h (struct ast),
3442         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3443
3444 2004-10-20 Borut Razem <borut.razem AT siol.net>
3445
3446         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3447         package
3448
3449 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3450
3451         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3452         makefile targets,
3453         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3454         support functions to replace long sequences of MOVFF's from access
3455         bank registers to stack and vice versa,
3456         * src/pic16/device.h: added new field opt_flags, where optimization
3457         flags can be set to enable certain features,
3458         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3459         * pBlock, (genFunction, genEndFunction): surroung loop for
3460         saving/loading used registers in stack with PC_INFO pCodes,
3461         INF_LREGS. Code in between can then be optimized by pCode optimizer
3462         to support function calls,
3463         * (genDataPointerSet): fixed bug which loaded float fields in
3464         structures with corrupt data,
3465         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3466         in a standard way debug info on stderr. Feature used for developing
3467         and debugging only,
3468         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3469         obsolete chunks of code,
3470         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3471         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3472         * pic16/src/pcode.c (pic16_newpCodeInfo,
3473         * (pic16_newpCodeOpLocalRegs),
3474         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3475         feature,
3476         * (pic16_pCodeConstString): printing of the initial value of a
3477         symbol as a comment is inhibited since parsing was already done by
3478         copyStr and output is corrupt,
3479         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3480
3481 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3482
3483         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3484
3485 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3486
3487         * as/mcs51/lkarea.c: removed old K&R style,
3488           (lnksect): changed check on boundary error,
3489           (lnksect2): changed check on boundary error,
3490           (lnksect2): extend XSTK to end of page if size = 1
3491         * as/mcs51/lkmain.c: removed old K&R style,
3492           (Areas51): create l_IRAM symbol
3493         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3494         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3495           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3496         * device/lib/_mullong.c: added version to be compiled with xstack
3497         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3498         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3499         * device/lib/mcs51/crtxstack.asm: fixed comment
3500         * src/SDCCglue.c: maxInterrupts defaults to 0,
3501           (emitMaps): added pdata,
3502           (createInterruptVect): (re)moved default,
3503           (glue): added pdata,
3504           (glue): moved __start__xstack to XSTK with default size 1
3505         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3506           and options.float_rent when options.stackAuto is set,
3507           (linkEdit): only write XDATA_NAME if provided on command line
3508         * src/SDCCmem.h,
3509         * src/SDCCmem.c: added pdata
3510         * src/port.h: added pdata_name to PORT
3511         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3512           (saveRegisters, unsaveRegisters): removed usage of B,
3513           (genMinus): fixed accumulator clash,
3514           (genJumpTab): added comment, this needs another look
3515         * src/mcs51/gen.c: added check for "B in use" paranoia,
3516           added pushB() and popB()
3517         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3518           chance
3519         * src/avr/main.c,
3520         * src/ds390/main.c,
3521         * src/hc08/main.c,
3522         * src/mcs51/main.c,
3523         * src/pic/main.c,
3524         * src/pic16/main.c,
3525         * src/xa51/main.c,
3526         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3527           added PSEG (PAG,XDATA) or NULL to port specifier
3528         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3529         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3530           (_mcs51_genInitStartup): removed __start__xstack equ,
3531           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3532         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3533         * src/z80/gen.c (_rleAppend): fixed warnings
3534         * support/regression/tests/zeropad.c: added pdata test
3535         * .version: bumped to 2.4.6
3536
3537 2004-10-17 Borut Razem <borut.razem AT siol.net>
3538
3539         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3540         as a part of nightly build
3541
3542 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3543
3544         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3545         WREG holds the first byte function parameters,
3546         * (aopForSym): take special case for symbols which are in FARSPACE
3547         but in CODESPACE too,
3548         * (assignResultValue): modified to take into account _G.useWreg,
3549         * (genCall): don't use wreg for parameter passing when function is
3550         declared as reentrant, too, added optimization INCF to stack
3551         pointer when stack parameter count is 1,
3552         * (genFunction, genEndFunction): refurnished and fixed to not using
3553         wreg for passing parameters when function has varargs or is
3554         reentrant, fixed bug with symbol name compare for generating
3555         functions in absolute address,
3556         * (pic16_storeForReturn): refurnished,
3557         * (genCmp): began writing a new version of the function, not ready
3558         yet, therefore it is disabled,
3559         * (genAssign): do not read code memory when assigning a function to
3560         a pointer function,
3561         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3562         array of characters, not pointer,
3563         * (pic16initialComments): in debug mode emit an .ident directive for
3564         the assembler,
3565         * (_process_pragma): emit a new warning type (internal to pic16)
3566         when setting stack to default length, emit a similar warning when
3567         placing a function at absolute address and address is not word aligned
3568         * (_pic16_parseOptions): added 'return TRUE' statement,
3569         * (_pic16_linkEdit): if compiling a source, then add the source's
3570         file object, first in the list of objects to link,
3571
3572 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3573
3574         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3575         * src/pic/main.c : removed VC warning.
3576         * src/pic/gen.c : changed comment.
3577
3578 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3579
3580         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3581         reference to a deprecated symbol _GPTRREG was causing failure to
3582         link. Thanks G. M. Gallant for the info.
3583
3584 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3585
3586         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3587         comments for Bugs item #954788.
3588
3589 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3590
3591         * src/pic16/device.c (pic16_dump_gsection,
3592         * pic16_groupRegistersInSection): handle symbols declared to be in
3593         access bank differently,
3594         * src/pic16/gen.c (struct _G): added field resDirect,
3595         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3596         send values read from stack directly to result and don't allocate
3597         temporary values,
3598         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3599         same registers,
3600         * (pic16_sameRegsOfs): NEW,
3601         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3602         free because they were not allocated from temporary pool,
3603         * pic16_popRegFromString): workaround to fix a problem with
3604         allocating variables twice or never,
3605         * (genGenPointerGet): using PRODL instead of FSR0H,
3606         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3607         instead of FSR0H,
3608         * (genAssign): take advantage of the _G.resDirect flag,
3609         * (genCast): around line 11844, use mov2f instead of directly
3610         MOVFF'ing between operands to account for literal values,
3611         * src/pic16/genutils.c: some new debug functions for gpsim have been
3612         added,
3613         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3614         float with integer part only,
3615         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3616         place variables in access bank
3617         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3618         updated sources to reflect recent changes in gen.c
3619
3620 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3621
3622         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3623         sources that searched for headers in installation path, now the
3624         device/include/pic16 is used,
3625         * src/pic16/glue.c (pic16glue),
3626         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3627         .line directives if not in debug mode, this suppresses assembler's
3628         warnings for ignored directives
3629
3630 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3631
3632         * src/port.h: made reset_regparms prototype void parameter explicit.
3633         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3634         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3635         * doc/sdccman.lyx: documented warning disabling and how to use
3636           printf_large to make it print floats.
3637         * device/include/stdbool.h: NEW
3638         * device/lib/_atof.c,
3639         * device/lib/_divuint.c,
3640         * device/lib/_divulong.c,
3641         * device/lib/expf.c,
3642         * device/lib/printf_large.c,
3643         * device/lib/sincosf.c,
3644         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3645         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3646           a completely reentrant lib.
3647
3648 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3649
3650         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3651         * device/include/pic16/stdio.h: fixed bug with colon
3652
3653 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3654
3655         * device/include/pic16/stdio.h,
3656         * device/include/pic16/stdlib.h,
3657         * device/include/pic16/math.h: NEW
3658         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3659         declared as _naked to reduce overhead
3660         * device/lib/Makefile.in (target port-specific-objects-pic16):
3661         changed * to *.* so to ignore the CVS directory,
3662         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3663         stacked variables back in stack,
3664         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3665         corruption
3666
3667 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3668
3669         * .version: bumped version number to 2.4.5
3670         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3671         * support/Util/SDCCerr.c (messages structure): added entry for
3672         W_POSSBUG2
3673
3674         Large cumulative patch for pic16 port and libraries.
3675         * device/include/pic16/sdcc-lib.h,
3676         * device/include/pic16/stdarg.h,
3677         * device/include/asm/pic16/features.h,
3678         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3679         * device/include/pic16/float.h: changes reentrant keyword with
3680         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3681         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3682         updated target build-libraries to include objects from gptr,
3683         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3684         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3685         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3686         all function headings,
3687         * src/SDCCmain.c: added global parameter userIncDirsSet,
3688         * (parseCmdLine): when option -I is encountered add directory to
3689         userIncDirsSet too,
3690         * src/version.awk: added space between control and long,
3691         * src/pic16/NOTES: added some notes for the port,
3692         * src/pic16/gen.c: added prototype for mov2fp function,
3693         * (fReturnpic16[]): properly named return value registers,
3694         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3695         * (aopForSym): added code to handle symbols with onStack flag set,
3696         symbols onStack are allocated PTRSIZE bytes,
3697         * (aopFreeAsmop): handles special case where asmops are stack objects,
3698         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3699         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3700         added argument lock to trace flaws in allocating temporary registers
3701         when developing port,
3702         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3703         * (pic16_popRegFromString): reenabled allocating a direct register
3704         from string,
3705         * (assignResultValue): various beautifications,
3706         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3707         referenced function argument,
3708         * (genIpush): reenabled to allow stacked arguments, handles only
3709         ic->parmPush iCodes,
3710         * (genCall, genPcall): major changes to allow for variable argument
3711         functions, fixed a bug with falsely restoring stack pointer after
3712         returning from call,
3713         * (genFunction): pending code for critical function,
3714         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3715         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3716         * (genNearPointerGet): fixed bug with indirect reading, was always
3717         reading from INDF0
3718         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3719         pointers,
3720         * (genAddrOf): rewrote code to take address of a stacked function parameter
3721         * (genCast): fixed casting to generic pointer type,
3722         * src/pic16/gen.h: added AOP_STA,
3723         * (struct asmop): added field stk,
3724         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3725         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3726         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3727         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3728         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3729         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3730         generic pointers,
3731         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3732         and library paths,
3733         * (pic16_port structure): generic pointer size is set to 3,
3734         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3735         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3736         compiler warning,
3737         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3738         operand is an iTemp,
3739
3740 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3741
3742         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3743         * debugger/mcs51/simi.c: addapt new syntax of s51
3744
3745 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3746
3747         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3748         * src/pic16/pcode.c: commented out some calls to free() in order to
3749         fix bug #989576,
3750
3751 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3752
3753         * src/SDCCicode.h,
3754         * src/SDCCicode.c (isiCodeInFunctionCall),
3755         * src/avr/ralloc.c (selectSpil),
3756         * src/pic/ralloc.c (selectSpil),
3757         * src/pic16/ralloc.c (selectSpil),
3758         * src/ds390/ralloc.c (selectSpil),
3759         * src/hc08/ralloc.c (selectSpil),
3760         * src/xa51/ralloc.c (selectSpil),
3761         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3762         stack in the middle of a function call sequence (fixes bug #1020268)
3763         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3764         costs associated with the minimum switch case.
3765
3766 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3767
3768         * src/SDCC.lex: fixed bug #1030549
3769
3770 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3771
3772         * src/SDCCcse.h (struct cseDef),
3773         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3774         over a function call if the CSE is derived from a symbol whose
3775         address has been taken (fixes bug #1029883)
3776         * support/regression/tests/bug-1029883: a new regression test for
3777         this bug
3778
3779 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3780
3781         * src/hc08/gen.c (emitinline): fixed bug #1029778
3782         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3783         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3784         and starts toward RFE #905167)
3785
3786 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3787
3788         * src/pic16/gen.c (mov2f): New function to move an operand to
3789         another without considering if it is a literal or a register,
3790         * (pic16_sameRegs): don't check if they are both AOP_REG,
3791         * (AccRsh): removed andmask=0 lines,
3792         * (genLeftShift): duplicated to be improved in future versions,
3793         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3794         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3795         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3796         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3797         * (insertBankSwitch): fixed inserting banksel directives algorithm
3798         for instructions that follow a skip instruction, this fixes a report
3799         for broken subtraction code generation,
3800         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3801         iCode is a left op, just in case result and right share the same
3802         registers
3803
3804 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3805
3806         * src/hc08/main.c,
3807         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3808         preservation of HX
3809         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3810         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3811         on 2004-09-12; it was buggy
3812
3813 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3814
3815         * src/SDCCsymt.h: removed RESULT_CHECK
3816         * src/SDCCast.c,
3817         * src/SDCCglue.c,
3818         * src/SDCCval.c,
3819         * src/pic/glue.c,
3820         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3821
3822 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3823
3824         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3825         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3826         configuration values no more rejected by compiler, they are assigned
3827         to configuration registers with a warning message instead,
3828         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3829         the for-loop so last conf register is emitted too,
3830         * (_pic16_initPaths): link library libsdcc.lib by default,
3831         * (_hasNativeMulFor): modified test for multiplication according to
3832         Raphael Neider's remarks. Integer multiplication is also done with
3833         support functions,
3834         * device/include/pic16/pic18fregs.h: corrected type error in while
3835         testing and including 18f6720 header file
3836
3837 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3838
3839         * src/pic16/device.h (pic16_options): removed field use_crt,
3840         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3841         until an optimization to handle single bits is added,
3842         * (pic16_loadFSR0): moved before genUnpackBits,
3843         * (genAnd): some white lines removed,
3844         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3845         leave_reset flags in pic16_options when using crt modules,
3846
3847 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3848
3849         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3850           for bugs 898889 & 979599. Also used some safer print instructions.
3851
3852 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3853
3854         * src/pic16/device.h (pic16_options_t): added field use_crt,
3855         crt_name, no_crt,
3856         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3857         catch a probable future bug,
3858         * src/pic16/gen.c: aopIdx function commented out,
3859         * (genAssign): commented out old code which used aopIdx,
3860         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3861         code, added if conditionals to take into account the --use-crt
3862         command line options,
3863         * src/pic16/main.c (pic16_optionsTable): added new command line
3864         options, --use-crt= and --no-crt,
3865         * (_pic16_linkEdit): now the proper crt object is added in the
3866         linker command line except than when --no-crt is specified,
3867         * src/pic16/pcode.c,
3868         * src/pic16/pcode.h: added some structures and functions for a new
3869         optimization scheme to compansate for instruction overhead between
3870         same iCodes, this scheme is currently under development and is not
3871         working in any way,
3872         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3873         to && operator,
3874         * device/lib/pic16/startup/crt0i.c,
3875         * device/lib/pic16/startup/crt0iz.c: added global char variable
3876         __uflags to force the generation of an idata section
3877
3878 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3879
3880         * doc/Makefile,
3881         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3882         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3883
3884 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3885
3886         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3887         Frieder) and clarified the default code optimization mode
3888
3889 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3890
3891         * src/SDCC.lex (doPragma, process_pragma),
3892         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3893         "opt_code_size", and "opt_code_balanced"
3894         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3895         regrouped options by category, added support for category headers
3896         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3897         and "--opt-code-size"
3898         * doc/sdccman.lyx: documented these new options and pragmas
3899         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3900         preference into account
3901
3902 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3903
3904         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3905           geniCodePreDec): Fixed bug 904237 by generating a warning
3906         * src/SDCCerr.h,
3907         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3908
3909 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3910
3911         * src/pic/device.c : When no max ram set validate full memory range.
3912         * src/pic/pcode.c,
3913         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3914
3915 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3916
3917         * device/lib/_gptrget.c,
3918         * device/lib/_gptrput.c: updated comment
3919         * device/lib/calloc.c,
3920         * device/lib/free.c,
3921         * device/lib/malloc.c,
3922         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3923         * src/SDCCcse.c (cseBBlock),
3924         * src/SDCCicode.c (printOperand, geniCodeArray),
3925         * src/SDCCicode.h (struct operand): fixed bug 868103
3926         * support/regression/tests/bug-868103.c: added
3927         * src/SDCCast.c (searchLitOp),
3928         * src/SDCCcse.h (struct cseDef),
3929         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3930         * src/SDCCicode.h (struct operand),
3931         * src/SDCCsymt.h (struct sym_link),
3932         * src/avr/gen.c (hasInc),
3933         * src/ds390/gen.c (hasInc),
3934         * src/hc08/gen.c (genPlusIncr, hasInc),
3935         * src/mcs51/gen.c (hasInc),
3936         * src/pic16/glue.c (pic16_printIvalChar),
3937         * src/pic16/ralloc.c (regWithIdx),
3938         * src/xa51/gen.c (hasInc) : removed warnings
3939         * src/SDCCast.c (createBlock): added comment ???
3940         * src/hc08/ralloc.c: updated comments
3941
3942 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3943
3944         * doc/sdccman.lyx: updated section on switch statements, added
3945         section about semaphore locking
3946         * doc/Makefile: added option -info for latex2html
3947         * device/lib/_gptrget.c,
3948         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3949
3950 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3951
3952         * src/pic/device.h,
3953         * src/pic/device.c,
3954         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3955          maxram is less than 0x100.
3956
3957 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3958
3959         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3960
3961 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3962
3963         * src/port.h,
3964         * src/mcs51/main.c,
3965         * src/ds390/main.c,
3966         * src/z80/main.c,
3967         * src/hc08/main.c,
3968         * src/pic/main.c,
3969         * src/pic16/main.c,
3970         * src/avr/main.c,
3971         * src/xa51/main.c
3972         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3973         a jump table is the best form for a switch statement, including
3974         automatic insertion of missing cases to make the case range
3975         continuous. Developed in collaboration with Frieder Ferlemann.
3976
3977 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3978
3979         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3980         accumulator result if it needs sign extension
3981
3982 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3983
3984         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3985
3986 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3987
3988         * device/lib/gbz80/printf.c,
3989         * device/lib/z80/printf.c: removed define for NULL
3990
3991 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3992
3993         * as/xa51/xa_link.c,
3994         * device/examples/ds390/ow390/ad26.c,
3995         * device/examples/ds390/ow390/cnt1d.c,
3996         * device/examples/ds390/ow390/counter.c,
3997         * device/examples/ds390/ow390/ds2480.h,
3998         * device/examples/ds390/ow390/ds2480ut.c,
3999         * device/examples/ds390/ow390/findtype.c,
4000         * device/examples/ds390/ow390/gethumd.c,
4001         * device/examples/ds390/ow390/owllu.c,
4002         * device/examples/ds390/ow390/ownetu.c,
4003         * device/examples/ds390/ow390/swt12.c,
4004         * device/examples/ds390/ow390/swtloop.c,
4005         * device/examples/ds390/ow390/temp.c,
4006         * device/examples/ds390/ow390/temp10.c,
4007         * device/examples/ds390/ow390/thermo21.c,
4008         * device/examples/ds390/ow390/tinilnk.c,
4009         * device/examples/ds390/ow390/tstfind.c,
4010         * device/examples/serialcomm/windows/serial.cpp,
4011         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4012         * device/include/reg51.h: fixed line endings for cvs
4013
4014 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4015
4016         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4017         packRegsForAccUse, packRegisters): new accumulator register
4018         packing algorithm
4019         * support/regression/ports/hc08/support.c (_putchar): suppress
4020         warning of unused variable
4021         * src/SDCCicode.c: added SWAP entry to codeTable
4022
4023 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4024
4025         * device/lib/sprintf.c: forgot to add this file before previous commit
4026
4027 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4028
4029         * src/pic16/gen.c (genPackBits): added operand right in function
4030         parameters, load result directly if p_type is POINTER (that is
4031         called by genNearPointerSet)
4032         * (genUnPackBits): added operand left in function parameters,
4033         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4034         FSR0 if accessing bitfields,
4035
4036 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4037
4038         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4039           _print_format; updated printf, sprintf, vsprintf
4040         * device/include/asm/default/features.h: corrected comment/define
4041         * device/lib/Makefile.in: added sprintf.c
4042         * device/lib/libsdcc.lib: added sprintf module
4043         * device/lib/printf_large.c,
4044         * device/lib/vprintf.c,
4045         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4046           into these 3 files
4047         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4048         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4049         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4050           hc08 test
4051         * support/regression/tests/zeropad.c: define idata as data for hc08
4052
4053 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4054
4055         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4056         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4057         labels are referenced at least once (even if a reference is not found)
4058         * src/hc08/gen.c (emitcode): set isComment flag for comments
4059         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4060         loads), rules 6a..6b (optimize jumps to return)
4061
4062 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4063
4064         * device/lib/acosf.c (acosf),
4065         * device/lib/asinf.c (asinf),
4066         * device/lib/atanf.c (atanf),
4067         * device/lib/ceilf.c (ceilf),
4068         * device/lib/cosf.c (cosf),
4069         * device/lib/coshf.c (coshf),
4070         * device/lib/cotf.c (cotf),
4071         * device/lib/fabsf.c (fabsf),
4072         * device/lib/floorf.c (floorf),
4073         * device/lib/log10f.c (log10f),
4074         * device/lib/logf.c (logf),
4075         * device/lib/sinf.c (sinf),
4076         * device/lib/sinhf.c (sinhf),
4077         * device/lib/sqrtf.c (sqrtf),
4078         * device/lib/tanf.c (tanf),
4079         * device/lib/tanhf.c (tanhf),
4080         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4081         replaced all instances of "reentrant" in the library functions
4082         defined in math.h with this macro.
4083         * support/regression/tests/float_trans.c: reenabled test for hc08
4084
4085 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4086
4087         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4088         erroneously deleted
4089
4090 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4091
4092         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4093         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4094         multi-byte volatile operands are used
4095         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4096         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4097         initialization to area GSINIT0 so that it would always precede
4098         any static initializers in GSINIT
4099         * support/regression/tests/zeropad.c: fixed idata define for hc08
4100         * support/regression/tests/bug-927659.c,
4101         * support/regression/tests/float_trans.c: disabled tests for hc08
4102         pending missing library routines
4103         * .version: increased version number to 2.4.4 - hc08 port now passes
4104         regression tests
4105
4106
4107 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4108
4109         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4110         * Makefile.common.in,
4111         * as/Makefile,
4112         * as/hc08/Makefile.in,
4113         * as/mcs51/Makefile.in,
4114         * as/z80/Makefile.in,
4115         * debugger/mcs51/Makefile.in,
4116         * device/include/Makefile.in,
4117         * device/lib/Makefile.in,
4118         * doc/Makefile,
4119         * link/Makefile,
4120         * link/z80/Makefile.in,
4121         * packihx/Makefile.in,
4122         * sim/ucsim/main_in.mk,
4123         * sim/ucsim/avr.src/Makefile.in,
4124         * sim/ucsim/doc/Makefile.in,
4125         * sim/ucsim/gui.src/serio.src/Makefile.in,
4126         * sim/ucsim/hc08.src/Makefile.in,
4127         * sim/ucsim/s51.src/Makefile.in,
4128         * sim/ucsim/xa.src/Makefile.in,
4129         * sim/ucsim/z80.src/Makefile.in,
4130         * src/Makefile.in,
4131         * support/cpp2/Makefile.in,
4132         * support/librarian/Makefile,
4133         * support/makebin/Makefile: added DESTDIR to the install path proposed
4134         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4135         * doc/sdccman.lyx: added DESTDIR documentation
4136
4137 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4138
4139         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4140         instruction for interrupt handlers, use fast returns when returning
4141         from high priority interrupts
4142
4143 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4144
4145         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4146         code generation
4147         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4148         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4149         bugs, ported much of Bernhard's code from mcs51
4150         * src/mcs51/gen.c (genSend),
4151         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4152         than one when calling a reentrant function
4153         * device/lib/_mullong.c: defined an alternate struct layout for big
4154         endian ports (hc08)
4155
4156 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4157
4158         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4159         test
4160
4161 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4162
4163         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4164         are sane and complete before asking the port its prefered parameter
4165         passing method (fixes bug #1017633)
4166         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4167         and _ret3
4168
4169 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4170
4171         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4172         problem in bitfields >= 8 bits.
4173
4174 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4175
4176         * src/SDCCsymt.c: undid changes that were not meant to be committed
4177
4178 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4179
4180         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4181
4182 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4183
4184         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4185           copied and wrong bit got inverted
4186
4187 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4188
4189         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4190         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4191         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4192         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4193         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4194         assignments to bitfields at known addresses
4195         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4196         reads from bitfields at known addresses
4197         * src/hc08/ralloc.c (packRegisters),
4198         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4199         genhc08Code): optimize pointer get values used as conditionals
4200         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4201         and branch
4202
4203 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4204
4205         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4206         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4207         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4208         as conditionals
4209
4210 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4211
4212         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4213
4214 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4215
4216         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4217         related problems
4218
4219 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4220
4221         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4222
4223 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4224
4225         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4226         mcs51 port
4227
4228 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4229
4230         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4231
4232 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4233
4234         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4235         cases use more compact code.
4236
4237 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4238
4239         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4240
4241 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4242
4243         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4244
4245 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4246
4247         * src/SDCCsymt.h,
4248         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4249         parameter of changePointer() from symbol* to sym_link*
4250         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4251         * src/SDCCsymt.c (compareType): void* type is castable to other
4252         pointers, but not necesarily an exact match.
4253         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4254         is no longer blindly treated as an exact match.
4255         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4256
4257 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4258
4259         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4260
4261 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4262
4263         * src/pic/gen.c,
4264         * src/pic/pcode.c,
4265         * src/pic/ralloc.h,
4266         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4267
4268 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4269
4270         * src/pic/device.c,
4271         * src/pic/device.h,
4272         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4273
4274 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4275
4276         * src/mcs51/gen.c (emitcode): fixed bug #992819
4277
4278 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4279
4280         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4281           there's no need to make it worse
4282
4283 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4284
4285         * src/mcs51/ralloc.c (deassignLR),
4286         * src/ds390/ralloc.c (deassignLR),
4287         * src/hc08/ralloc.c (deassignLR),
4288         * src/z80/ralloc.c (deassignLR),
4289         * src/pic/ralloc.c (deassignLR),
4290         * src/pic16/ralloc.c (deassignLR),
4291         * src/avr/ralloc.c (deassignLR),
4292         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4293         rlivePoint): fixed another part of bug #971834
4294
4295 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4296
4297         * src/z80/main.c: enabled "critical" keyword
4298         * src/z80/mappings.i,
4299         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4300         functions (fixes bug #979646)
4301         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4302
4303 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4304
4305         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4306           such as c:\mydir.
4307
4308 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4309
4310         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4311           doesn't disable too much optimizations
4312
4313 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4314
4315         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4316
4317 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4318
4319         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4320
4321 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4322
4323         * src/pic/gen.c tidied up tabs
4324         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4325         * src/pic/main.c tidied up tabs
4326         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4327         * src/pic/pcoderegs.c tidied up tabs
4328         * src/pic/ralloc.c tidied up tabs
4329
4330 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4331
4332         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4333         to S_FIXED for pic16 port and when symbol is not in level 0,
4334         allocate for S_REGISTER storage class and pic16 port, too,
4335         * src/pic16/device.h: prototype for checkSym,
4336         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4337         * (pic16_assignConfigWordValue): test the value and the mask to
4338         validate that the value is suitable for the configuration word,
4339         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4340         collect extern declared symbols, don't emit symbol twice, check
4341         first if symbol is in publics set first,
4342         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4343         * added command line '--fstack' which enables an experimental
4344         feature for stack access, too buggy to be used yet...
4345         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4346         * (pic16_allocDirReg): when register has storage class S_REGISTER
4347         allocate in pic16_dynAccessRegs,
4348         * device/include/pic16/pic18f????.h: modified configuration word
4349         naming convention, words started as CONFIG0H but should be CONFIG1H
4350
4351 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4352
4353         * device/include/mcs51reg.h: fixed bug 970993
4354
4355 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4356
4357         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4358         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4359         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4360         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4361         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4362         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4363           error/warning numbers,
4364           added function setWarningDisabled()
4365         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4366         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4367           _memcmp.c _memmove.c calloc.c realloc.c free.c
4368         * support/regression/tests/malloc.c: added tests for new functionality
4369         * support/regression/tests/zeropad.c: added tests for truncated initializers
4370           and initialized char arrays starting with '\x0'
4371         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4372
4373 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4374
4375         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4376
4377 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4378
4379         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4380         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4381         peephole 177.e. Thanks to anonymous
4382
4383 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4384
4385         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4386         function isn't used in the source but referenced as a
4387         variable initializer then declare it as extern in .asm file
4388
4389 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4390
4391         * .version: increased version number to 2.4.3
4392
4393         Adding version extension according to ChangeLog CVS revision
4394         * src/Makefile.in (target all): added dependency 'version.h'
4395         * (rule version.h): added rule to create version.h from ChangeLog,
4396         * (rule dep): added dependency version.h,
4397         * src/version.awk: AWK script to create version.h
4398         * src/SDCCdwarf2.c (dwWriteModule),
4399         * src/SDCCglue.c (initialComments),
4400         * src/SDCCmain.c (printVersionInfo): modified to write after
4401         version string the version extension number,
4402         * src/SDCCutil.c: included "version.h"
4403         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4404         number,
4405         * src/SDCCutil.h: added prototype for getBuildNumber
4406
4407         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4408         includeDirsSet, too,
4409         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4410         const char [] is found in function prototype...
4411
4412         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4413         moving to WREG with source is already in WREG,
4414         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4415         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4416         * (aopForSym): stack'ed symbols are partially supported, added
4417         if-clause to support symbols in FARSPACE,
4418         * (sameRegs): added test for AOP_ACC to see if registers are same,
4419         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4420         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4421         * (pic16_popRegFromString): will not allocate a new register if it
4422         doesn't find one by name, bug may have introduced...
4423         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4424         * (genIpush): revived to use pic16 port's stack,
4425         * (genAddrOf): added incomplete case for stack'ed operand,
4426         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4427         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4428         can handle multibyte operands,
4429         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4430         * (pic16initialComments): added message for MPLAB compatibility
4431         mode enabled,
4432         * src/pic16/main.h: prototype for pic16_mplab_comp,
4433         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4434         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4435         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4436         because of increased complexity of procedure,
4437         * (_process_pragma): stack pragma changed to format 'stack pos len',
4438         emit symbol '_stack_end' to conform with gplink,
4439         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4440         to search for register,
4441         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4442         PO_GPR_REGISTER,
4443         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4444         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4445         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4446         case for PO_GPR_REGISTER,
4447         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4448         dies, the new era is ahead !...
4449         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4450         pic16_dynInternalRegs,
4451         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4452         * (pic16_allocDirReg): minor optimizations and bug fixes,
4453         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4454
4455         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4456         load stack and frame pointer with address of 'stack_end' symbol
4457
4458 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4459
4460         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4461         without source code but only variable initializers
4462
4463 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4464
4465         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4466         external are not declared as extern to reduce overhead while linking
4467
4468 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4469
4470         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4471
4472 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4473
4474         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4475           Yee Keat for the patch
4476         * src/SDCCast.c (decorateType): fixed bug #979599
4477         * src/ds390/gen.h: removed local fReturnSizeDS390
4478         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4479         * src/ds390/gen.c (genAnd, genOr, genXor),
4480         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4481
4482 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4483
4484         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4485         add relFilesSet to $3, manipulate $2 to handle linking of object
4486         files without source files in command line,
4487         * device/include/pic16 (all headers): added ID location macros,
4488         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4489         entries for ID location bytes,
4490         * (pic16_assignIdByteValue): NEW,
4491         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4492         added field dumpcalltree to pic16_options_t,
4493         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4494         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4495         emitting rFalseIfx label after check_carry label,
4496         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4497         pic16_emitDIRegs), NEW
4498         * (pic16glue): dump .calltree file when option --calltree found,
4499         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4500         * (_pic16_genAssemblerPreamble): emit ID locations after
4501         configuration registers,
4502         * (pic16_linkCmd): modifications of the link command,
4503         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4504         * (pic16_pCodeInitRegisters): don't init stack registers,
4505         * (pic16_findPrevInstruction): fixed bug,
4506         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4507         bug with immediate registers,
4508         * (buildCallTree): traces stack push and pop,
4509         * (pct2): dump also stack usage for each function,
4510         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4511         * (pic16_allocDirReg): various modifications,
4512         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4513         fixed to 1,
4514
4515 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4516
4517         * src/pic16/pcode.c: removed buggy double colon
4518
4519 2004-07-01 Borut Razem <borut.razem AT siol.net>
4520
4521         * support/scripts/sdcc.nsi: added include/pic16 to setup
4522
4523 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4524
4525         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4526         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4527         target 'clean',
4528         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4529         specific command line arguments. Also added sample lkr script
4530         for placing a variable at a specific memory bank.
4531         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4532         at a specific memory bank,
4533         * (pic16_dump_isection): fixed bug which caused string literals to
4534         be omitted when dumping idata section,
4535         * (pic16_groupRegistersInSection): added code to handle registers
4536         in specific memory banks,
4537         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4538         public, all references are renamed too,
4539         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4540         AOP_DPTR2,
4541         * (pic16_storeForReturn): added case to handle when dest is WREG,
4542         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4543         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4544         pic16_rel_udata, check to see if that register is marked as being
4545         a member of a specific memory bank,
4546         * (pic16_printIvalCharPtr): added code to add string literals either
4547         to code or the idata sections,
4548         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4549         also accept the 'udata' pragma,
4550         * src/pic16/main.h: new structure types sectName and sectSym
4551         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4552         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4553         * (pic16_findPrevInstruction): fixed, it returned nothing,
4554         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4555         instruction combinations,
4556         * (pic16_FixRegisterBanking): heavily reorganised,
4557         * (pic16_AnalyzeBanking): if generating banksel directives is
4558         disabled, then don't call FixRegisterBanking at all,
4559         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4560         completely removed,
4561         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4562
4563 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4564
4565         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4566         Phuah Yee Keat <yk.phuah AT nestac.com>
4567
4568 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4569
4570         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4571         correctly the IVT even if it is relocated to some other location
4572
4573 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4574
4575         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4576         * device/include/pic16/pic18f2220.h: NEW,
4577         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4578         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4579         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4580         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4581         nodefaultlibs, ivt_loc is the location of the interrupt vector
4582         table, and nodefaultlibs signs that default libraries should not be
4583         linked in link stage,
4584         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4585         according to --ivt-loc argument,
4586         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4587         when pragma stack is found,
4588
4589 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4590
4591         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4592         256 (range check), 257 (do while), 258.a-f (bit banging
4593         f.e. on 3-wire SPI bus)
4594
4595 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4596
4597         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4598         variables used exclusively within a loop
4599
4600 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4601
4602         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4603
4604 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4605
4606         * src/SDCClrange.c (computeClash): fixed bug #971834
4607
4608 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4609
4610         * src/mcs51/gen.c (genCmp): fixed bug #975903
4611         * src/hc08/gen.c (operandsEqu),
4612         * src/ds390/gen.c (operandsEqu),
4613         * src/z80/gen.c (operandsEqu),
4614         * src/pic/gen.c (operandsEqu),
4615         * src/pic16/gen.c (operandsEqu),
4616         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4617         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4618
4619 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4620
4621         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4622
4623 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4624
4625         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4626         default case in switch statement,
4627         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4628         to eliminate problem with initialisation of pointers, but problem
4629         still exists,
4630         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4631         * (emitStaticSegment): removed various lines emitting debug info,
4632         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4633         added processor registers for utilizing EEPROM,
4634         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4635         configurable and set 8
4636
4637 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4638
4639         * .version: increased version number to 2.4.2,
4640
4641         Cumulative patch for pic16 port
4642         * src/pic16/device.c: changed scheme to dump initial values for
4643         variables in idata segment, all print_idata* functions were removed,
4644         now the pic16_printIval* will be called,
4645         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4646         * _pic16_printPointerType, pic16_printPointerType,
4647         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4648         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4649         NEW, similar to the respective functions in SDCCglue.c,
4650         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4651         way, emitting hex bytes,
4652         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4653
4654 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4655
4656         * src/avr/ralloc.c (serialRegAssign),
4657         * src/xa51/ralloc.c (serialRegAssign),
4658         * src/pic/ralloc.c (serialRegAssign),
4659         * src/pic16/ralloc.c (serialRegAssign),
4660         * src/hc08/ralloc.c (serialRegAssign),
4661         * src/z80/ralloc.c (serialRegAssign),
4662         * src/ds390/ralloc.c (serialRegAssign),
4663         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4664
4665 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4666
4667         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4668         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4669
4670 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4671
4672         Cumulative patch for pic16 port:
4673         * src/pic16/device.h (typedef PIC16_device) modified fields for
4674         defining microcontrollers,
4675         * src/pic16/device.c: added new info for all devices in Pics16 array,
4676         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4677         to be optimised out by the pCode optimiser,
4678         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4679         specially, bug reported by G.M. Gallant,
4680         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4681         as force'd so that cannot be optimised out by pCode optimiser,
4682         * src/pic16/pcode.c,
4683         * src/pic16/pcodepeeph.c,
4684         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4685         they are disabled by default, but can be enabled explicit with
4686         command argument --denable-peeps, for testing,
4687         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4688         --pomit-ivt in COMPILE_FLAGS
4689
4690 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4691
4692         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4693           compilation on MSVC
4694
4695 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4696
4697         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4698
4699 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4700
4701         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4702         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4703
4704 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4705
4706         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4707         would only assign 0x300001 register.
4708
4709 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4710
4711         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4712         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4713
4714 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4715
4716         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4717         for ds80c400
4718         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4719         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4720         added peephole 254 (left shift), 255 (jump table)
4721
4722 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4723
4724         * device/lib/Makefile.in: removed comment line with model-pic16,
4725         * (target port-specific-objects-pic16): the libraries and objects
4726         are copied to the build directory form the device/lib/pic16/bin
4727         directory
4728
4729         Cumulative patch concerning pic16 port:
4730         * library directory has been re-organized,
4731         * added support for PIC18F1220,
4732         * added headers and library sources for chips 18f1220,18f6520,
4733         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4734
4735         * configuration registers setting has changed, now each supported
4736         device has a complete description of the registers it uses,
4737         * all initialisations are moved to idata sections, these section
4738         can be absolute or relocatable,
4739         * fixed initialisation of codespace variables,
4740         * fixed warning about PCLATU and gpsim,
4741         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4742         * (genAssign): use table reads when assigning from variables in codespace,
4743         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4744         char/int variables placed in codespace,
4745         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4746         registers set in .asm file, no need for --pomit-config-words anymore,
4747         * (pic16glue): some 8051 legacy segments are commented out
4748         (to be removed completely),
4749         * added support for alternative assembler and linker with --asm=
4750         and --link= command line arguments,
4751         * peepholes are disabled automatically in the port, no need to
4752         specify on command line,
4753         * port supports natively char/int/long multiplication, but converts
4754         all divisions to support functions,
4755         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4756         to the file set in variable $2,
4757         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4758         strings in ASCII format and not in hex,
4759         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4760         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4761         allocate proper register if iCodes aren't temporary,
4762
4763 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4764
4765         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4766
4767 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4768
4769         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4770         is commented out
4771
4772 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4773
4774         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4775         computed address is reused
4776         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4777         multi-byte bitfields
4778
4779 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4780
4781         * src/z80/gen.c: (genArrayInit): must check for pointers too
4782
4783 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4784
4785         * support/regression/tests/zeropad.c: never meant to commit the
4786           nestedstruct test: removed, added check for GCC version
4787
4788 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4789
4790         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4791         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4792         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4793           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4794           bugs 928906 and 954082 half-empty initializers
4795         * src/SDCCsymt.h,
4796         * src/SDCCsymt.c (getAllocSize): added for above fix
4797         * src/z80/gen.c (genArrayInit): fixed bug 741044
4798         * support/regression/tests/zeropad.c: added tests
4799
4800 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4801
4802         * src/pic16/device.c (pic16_dump_section): corrected bug which
4803         caused some symbols of the libraries to be misplaced
4804
4805 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4806
4807         * src/pic16/glue.c,
4808         * src/pic16/ralloc.h,
4809         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4810         to fix conflict with pic port
4811
4812 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4813
4814         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4815         externs configuration variables,
4816         * src/pic16/ralloc.h,
4817         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4818         prototype in header, commented out some debug messages
4819
4820 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4821
4822         * src/pic16/glue.c,
4823         * src/pic16/main.c,
4824         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4825         for gpasm COFF object generation. Thanks to D. Hawkins for
4826         his patch info
4827
4828 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4829
4830         * src/ds390/main.c,
4831         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4832         Brock for spotting this)
4833         * src/ds390/gen.c (genEndFunction),
4834         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4835         interrupt handler and critical. Disable push/pop optimizations when
4836         peephole optimizations disabled.
4837
4838 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4839
4840         Updated pic16 library sources and headers.
4841         * device/lib/pic16/pic18f*/ ,
4842         * device/include/pic16/*.h: modified to handle structured SFR
4843         definitions
4844
4845 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4846
4847         * src/port.h (PORT structure): added hook initPaths, now each
4848         port can declare its own default search paths,
4849         which can been seen with the --print-search-dirs option,
4850         see pic16 port for example,
4851         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4852         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4853         * (doPrintSearchDirs): NEW, replaces in a central manner the
4854         printing of search dirs which was split in set*Paths functions,
4855         * (main): added call to port->initPaths and doPrintSearchDirs,
4856         * src/avr/main.c,
4857         * src/ds390/main.c,
4858         * src/hc08/main.c,
4859         * src/izt/i186.c,
4860         * src/izt/tlcs900h.c,
4861         * src/mcs51/main.c,
4862         * src/pic/main.c,
4863         * src/pic16/main.c: modified port structures to reflect addition of
4864         initPaths hook,
4865
4866         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4867         * (pic16_dump_section): for registers in same address reserve memory once,
4868         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4869         to no_banksel,
4870         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4871         result is greater in size than right or left,
4872         * (pic16_genUMult8X8_8): there are some cases where the result can
4873         be 16 bits size, so handle these,
4874         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4875         * (pic16_outBitC): modified to emit pcodes,
4876         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4877         or not,
4878         * (genDivOneByte): implemented algorithm to divide 8-bits,
4879         * (genCmp): uncommented goto, but issues still exist,
4880         * (genAnd): fixed a bug with variables >8bits,
4881         * (genPackBits): optimization added that uses BCF/BSF to change a
4882         single bit,
4883         * (genAssign): fixed bug when assigning floating point literals,
4884         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4885         __sdcc_gsinit_startup label,
4886         * src/pic16/main.c (_pic16_init): removed search directory
4887         initialisations,
4888         * (_pic16_initPaths): NEW, used to initialise search directories,
4889         * (_hasNativeMulFor): support functions for all except char/int
4890         multiplication, and char division,
4891         * (PIC16_port struct): modified entry for native mul support,
4892         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4893         no_banksel option,
4894         * (buildCallTree): call to register_usage is ifdef'ed out,
4895
4896 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4897
4898         * device/include/string.h: applied Stas Sergeev's patch to make this
4899         header file compatible with the preprocessor -Wundef option
4900         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4901         failure (fixes bug #941458)
4902
4903 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4904
4905         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4906         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4907         that the variable, not the function, should be static
4908         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4909         to be consistent with non-literal case
4910
4911 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4912
4913         * src/SDCCast.c (isConformingBody): fixed bug #949967
4914         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4915         convilong): fixed bug #952086
4916
4917 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4918
4919         * src/SDCCmem.c (allocVariables): fixed bug #955321
4920
4921 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4922
4923         * src/hc08/main.c (_hc08_genAssemblerEnd),
4924         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4925         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4926         completely eliminated the use of a temporary file
4927         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4928         when more than one file linked
4929         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4930
4931 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4932
4933         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4934         which fixes bug #543481
4935         * support/regression/tests/bug-751703.c: fixed comments left from a
4936         cut and paste error
4937         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4938         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4939         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4940         scopes
4941         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4942         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4943         are now changed to underscores in moduleName
4944
4945 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4946
4947         * as/mcs51/lkmem.c: better fix for bug #954173
4948
4949 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4950         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4951
4952         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4953         * device/include/c8051f000.h,
4954         * device/include/c8051f120.h,
4955         * device/include/c8051f300.h,
4956         * device/include/c8051f310.h,
4957         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4958         PWM16) and detab'ed
4959
4960 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4961
4962         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4963         and mailing lists, doc'ed --no-peep-comments, removed reference
4964         to knoppix (newest version has no LyX/LaTeX), other minor changes
4965         * src/SDCCglue.c (glue): save 2 bytes stack space with
4966         option --main-return. The ljmp could probably be avoided too
4967
4968 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4969
4970         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4971
4972 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4973
4974         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4975         * src/SDCCopt.c (isLocalWithoutDef),
4976         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4977         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4978         (credit to Maarten Brock for patch #949363, on which this is based)
4979         * support/regression/tests/bug-751703.c: some test cases of extern used
4980         within inner scopes.
4981
4982 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4983
4984         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4985         SPEC_STRUCT
4986         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4987         struct definitions
4988         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4989         dwWriteLabel): fix to create valid debugger symbols even when
4990         the module name has non-alphanumeric symbols in it
4991         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4992         when a variable's allocation has been optimized away
4993
4994
4995 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4996
4997         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4998         * src/hc08/main.c,
4999         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5000         * src/mcs51/main.c,
5001         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5002         * src/ds390/main.c,
5003         * src/z80/gen.c (z80_emitDebuggerSymbol),
5004         * src/z80/main.c,
5005         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5006         * src/pic/main.c,
5007         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5008         * src/pic16/main.c,
5009         * src/avr/gen.c (avr_emitDebuggerSymbol),
5010         * src/avr/main.c,
5011         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5012         * src/xa51/main.c,
5013         * src/SDCCdebug.c (emitDebuggerSymbol),
5014         * src/SDCCdebug.h,
5015         * src/port.h: added a debugger struct to the port struct. Added a
5016         callback for defining debugger symbols
5017
5018         * src/SDCCast.c (createLabel),
5019         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5020         with isitmp = 1
5021         * src/SDCCicode.h,
5022         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5023         iCode back to the ast for the function
5024
5025         * src/hc08/ralloc.c (hc08_assignRegisters),
5026         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5027         unneeded fields from the regs struct.
5028         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5029         pushReg() & pullReg() functions instead of emitcode()
5030
5031         * src/hc08/gen.c (genLabel, genhc08Code),
5032         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5033
5034         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5035         debugger hooks
5036
5037         * src/hc08/gen.c (genEndFunction, genhc08Code),
5038         * src/hc08/gen.h,
5039         * src/mcs51/gen.c (genEndFunction, gen51Code),
5040         * src/mcs51/gen.h,
5041         * src/ds390/gen.c (genEndFunction, gen390Code),
5042         * src/ds390/gen.h,
5043         * src/z80/gen.c (genEndFunction, genZ80Code),
5044         * src/z80/gen.h,
5045         * src/z80/z80.h,
5046         * src/pic/gen.c (genEndFunction, genpic14Code),
5047         * src/pic/gen.h,
5048         * src/pic16/gen.c (genEndFunction, genpic16Code),
5049         * src/pic16/gen.h,
5050         * src/avr/gen.c (genEndFunction, genAVRCode),
5051         * src/avr/gen.h,
5052         * src/xa51/gen.c (genEndFunction, genXA51Code),
5053         * src/xa51/gen.h,
5054         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5055         specific code to cdbFile.c and out of the backend code generators
5056
5057         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5058         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5059         starting address is now 0
5060
5061         * as/hc08/asm.h,
5062         * as/hc08/m08pst.c,
5063         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5064         assembler directive for DWARF support
5065         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5066
5067         * src/src.dsp,
5068         * src/Makefile.in,
5069         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5070
5071 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5072
5073         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5074         and inappropriate peephole optimization in jump tables
5075
5076 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5077
5078         * as/hc08/m08pst.c,
5079         * src/SDCCglue.c: sdccopt works for the hc08 port now
5080
5081 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5082
5083         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5084
5085 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5086
5087         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5088
5089 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5090
5091         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5092         rules
5093         * src/SDCCmain.c,
5094         * src/SDCCglobl.h,
5095         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5096         comments from the peephole optimizer replacement rules
5097         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5098         symbols
5099         * src/SDCCcse.c (updateSpillLocation),
5100         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5101         equivalents
5102         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5103         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5104         objects far pointers
5105
5106 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5107
5108         * src/SDCCsymt.h: a missing part of my last change
5109         * src/pic/ralloc.c (regTypeNum),
5110         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5111
5112 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5113
5114         * src/SDCCicode.h,
5115         * src/SDCCicode.c (aggrToPtrDclType),
5116         * src/SDCCptropt.h,
5117         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5118         ptrPseudoSymConvert),
5119         * src/pic/ralloc.c (regTypeNum),
5120         * src/pic16/ralloc.c (regTypeNum),
5121         * src/hc08/ralloc.c (regTypeNum),
5122         * src/ds390/ralloc.c (regTypeNum),
5123         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5124         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5125
5126 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5127
5128         * link/z80/lkmain.c (afile),
5129         * as/hc08/lkmain.c (afile),
5130         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5131         prevent a pointer problem when a filename has no directory and
5132         no extension specified.
5133
5134 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5135
5136         * link/z80/lkmain.c (afile): allow periods in directory names
5137         * link/z80/lkmain.c (afile),
5138         * as/mcs51/lkmain.c (afile),
5139         * as/hc08/lkmain.c (afile): allow linker script file to have an
5140         extension other than ".lnk"
5141         * link/z80/lklex.c (getfid),
5142         * link/z80/lkmain.c (parse),
5143         * as/mcs51/lklex.c (getfid),
5144         * as/mcs51/lkmain.c (parse),
5145         * as/hc08/lklex.c (getfid),
5146         * as/hc08/lkmain.c (parse): Support comments in the linker script
5147         file on lines by themselves and after filenames
5148
5149 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5150
5151         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5152
5153 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5154
5155         * src/z80/peeph-z80.def: removed some peephole rules that don't
5156         work with multibyte arithmetic (fixed bug #937126)
5157         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5158         to registers and not global variables
5159         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5160         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5161         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5162         checking for assignments not internally generated (fixed bug #931895)
5163         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5164         structure member (fixed bug #930072)
5165
5166 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5167
5168         * src/SDCCmain.c (linkEdit),
5169         * src/hc08/main.c (_hc08_parseOptions),
5170         * as/hc08/Makefile.in,
5171         * as/hc08/aslink.h,
5172         * as/hc08/asm.h,
5173         * as/hc08/m08pst.c,
5174         * as/hc08/lkrloc.c (relr, rele),
5175         * as/hc08/lkarea.c (lnkarea)
5176         * as/hc08/lkmain.c (afile, parse),
5177         * as/hc08/lkelf.c: support for ELF output
5178         * as/hc08/lks19.c (s19),
5179         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5180
5181 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5182
5183         * as/mcs51/lkihx.c: Fixed bug #899105.
5184
5185 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5186
5187         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5188         .dsp files from Unix to DOS.
5189
5190 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5191
5192         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5193         function pointers; we have been compliant for several months now.
5194         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5195         change that was accidently commented out
5196         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5197         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5198         bug #922319
5199
5200 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5201
5202         * src/hc08/gen.c: output of all of the internal debugging information
5203         is now controlled by the D() macro; it is disabled by default
5204
5205 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5206
5207         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5208         harder to keep the same registers during a CAST iCode
5209         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5210         long via int can be done in a single cast, if the signedness is
5211         correct.
5212         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5213         putchar() in tinibios.c in ds390's library
5214
5215 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5216
5217         * src/SDCCast.c (decorateType): fixed bug #898889,
5218         cast result of a literal complement too
5219         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5220         fixed check for bitfields
5221
5222 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5223
5224         * src/SDCCicode.c (geniCodeLogic): made it static,
5225         (geniCodeLogicAndOr): added in order to fix bug #905492,
5226         (ast2iCode): fixed bug #905492
5227         * support/regression/tests/bug-905492.c: added
5228         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5229         (processParms): fixed bug #927659: don't copy parms, this will clear
5230         decorated flag
5231         * support/regression/tests/bug-927659.c: added
5232
5233 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5234
5235         * src/SDCCast.c (addCast): don't cast float to char
5236         * device/lib/libsdcc.lib: added _memmove
5237
5238 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5239
5240         * device/lib/large/Makefile: fixed parallel execution by
5241         replacing `make` by `$(MAKE)`
5242
5243 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5244
5245         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5246         offsets (fixes bug #923936)
5247
5248 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5249
5250         * device/lib/small/Makefile: fixed parallel execution by
5251         replacing `make` by `$(MAKE)`
5252
5253 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5254
5255         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5256
5257 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5258
5259         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5260         * src/regression/Makefile: Regression test was not running.
5261
5262 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5263
5264         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5265         complement if possible
5266         * src/SDCCval.c (valComplement),
5267         * src/SDCCicode.c (operandOperation): fixed complement of literal
5268         * support/regression/tests/onebyte.c (testComplement): added
5269
5270 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5271
5272         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5273         return an optimized tree; actually replace actParm with the new tree
5274         * src/SDCCast.h: added some parantheses to remove side effects
5275         * support/regression/tests/bug-920866.c
5276
5277 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5278         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5279         Bit operands were not being handled properly in the pic14 port.
5280         (now src/regression/add.c passes again).
5281
5282 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5283
5284         * src/SDCC.y (labeled_statement): case and default no longer require
5285         a following statement (RFE #893037)
5286
5287 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5288
5289         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5290         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5291         disabled (fixes bug #916294)
5292         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5293         "mov a,acc"; patch provided by Lenny Story
5294         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5295
5296 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5297
5298         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5299         functions
5300         * src/ds390/gen.c (genFunction, genEndFunction),
5301         * src/ds390/ralloc.c (ds390_assignRegisters),
5302         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5303         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5304         pushed if there are parameters passed on the stack. Also, a cleaner
5305         way to decide if r0/r1 should be pushed/popped. (Together they fix
5306         bug #918693)
5307
5308 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5309
5310         * doc/sdccman.lyx,
5311         * device/lib/mcs51/crtpagesfr.asm,
5312         * device/lib/mcs51/crtxinit.asm,
5313         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5314         to avoid confusion with Si Lab's SFRPAGE register.
5315
5316 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5317
5318         * src/SDCCglue.c (emitMaps): allow public sfr variables
5319         * src/SDCCglue.c (initialComments): include compiler build date
5320         with compiler version and put the timestamp of the generated
5321         assembly file on a serperate line to be less confusing.
5322         * src/port.h: added genInitStartup hook
5323         * src/avr/main.c,
5324         * src/ds390/main.c,
5325         * src/hc08/main.c,
5326         * src/pic/main.c,
5327         * src/pic16/main.c,
5328         * src/xa51/main.c,
5329         * src/z80/main.c: genInitStartup initialize as NULL (default to
5330         historical behaviour)
5331         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5332         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5333         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5334         library instead of hard coding it into the compiler.
5335         * support/regression/ports/mcs51-stack-auto/spec.mk,
5336         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5337         * device/lib/mcs51/Makefile,
5338         * device/lib/small/Makefile,
5339         * device/lib/large/Makefile,
5340         * device/lib/mcs51/crtpagesfr.asm,
5341         * device/lib/mcs51/crtstart.asm,
5342         * device/lib/mcs51/crtxclear.asm,
5343         * device/lib/mcs51/crtxinit.asm,
5344         * device/lib/mcs51/crtclear.asm,
5345         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5346         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5347         and into user configurable files.
5348         * device/lib/clean.mk: clean mcs51 directory too
5349         * support/regression/tests/longlit.c: added static to T1 declaration
5350         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5351         accesses in the initialization code
5352
5353 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5354
5355         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5356         OSCTRIMVAL as noted in bug #916008
5357
5358 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5359
5360         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5361         in loops with multiple exits (reported as incorrect registers
5362         used by Martin Helmling in Sdcc-user list)
5363
5364 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5365
5366         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5367         made ds390 register extensions look less like error messages
5368
5369 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5370
5371         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5372         reported by Adam Wozniak in Sdcc-user list
5373
5374 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5375
5376         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5377         arithmetic optimizations, added debug output
5378
5379 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5380
5381         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5382         * sdcc.spec: updated and split sdcc into 3 rpms
5383         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5384         needed for literals of LEFT_OP and '+'
5385         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5386         introduced RESULT_TYPE_NOPROM
5387         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5388         left shift
5389         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5390         limited promotion to int only for '*'
5391         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5392
5393 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5394
5395         * src/pic16/gen.c (genSkip),
5396         (genc16bit2lit), (gencjneshort): commented out
5397         (is_LitOp): new helper function, checks operand type
5398         (genCmpEq): rewritten
5399
5400 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5401
5402         * support/regression/tests/bug-908454.c: added
5403
5404 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5405
5406         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5407         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5408         (geniCodeCast): cosmetic, don't preserve bit storage class
5409         (geniCodeLeftShift): added promotion
5410         (geniCodeLogic): fixed regression
5411         * src/SDCCsymt.c (computeTypeOr): accept bits too
5412         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5413
5414 2004-03-07  Borut Razem <borut.razem AT siol.net>
5415
5416         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5417
5418 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5419
5420         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5421         version of pic16_genPackRegisters which does not check if ic is a
5422         CAST operator,
5423         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5424         function cause string1.c regression test fails
5425
5426 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5427
5428         * sim/ucsim/configure.in,
5429         * sim/ucsim/configure,
5430         * sim/ucsim/doc/Makefile.in: use docdir
5431         * src/SDCC.y: fixed sbit atrributes
5432         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5433         * src/SDCCast.c (decorateType): |^& need special promotion handling
5434         * src/SDCCast.h,
5435         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5436         * src/SDCCsymt.h (computeType),
5437         * src/SDCCicode.c: computeType() needs op
5438         * src/SDCCsymt.c (checkTypeSanity),
5439         * doc/sddman.lyx: "plain" bitfields are unsigned
5440         * src/SDCCsymt.c (computeTypeOr): added
5441         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5442         |^& ops
5443         * src/SDCCval.c (val*): computeType() needs op
5444         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5445         * support/regression/tests/onebyte.c: added tests for |^&
5446
5447 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5448
5449         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5450         for writing icode into asm output.
5451
5452 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5453
5454         * src/pic16/device.c: added some debug lines enabled
5455         with macro DEBUG_CHECK,
5456         * src/pic16/genarith.c: more debug in genPlus,
5457         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5458         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5459         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5460         * (aopForSym): onStack symbols are re-placed in data memspace,
5461         and onStack flag is cleared,
5462         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5463         copy temporary pcodeop,
5464         * (genPcall): added warning for not updating PCLATU,
5465         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5466         always true for pic16 port,
5467         * (genMultOneWord): NEW, supports integer multiplication,
5468         * (genMult): modified to call genMultOneWord,
5469         * (ifxForOp): added warning when return NULL,
5470         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5471         flag is set before call to operandFromSymbol for implicit
5472         added structures,
5473         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5474         options.intlong_rent are set by default,
5475         * (_hasNativeMulFor): modified to allow port generation of integer
5476         multiplication,
5477         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5478         set regtype to REG_SFR for all registers, restricting seting the
5479         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5480
5481 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5482
5483         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5484         more than 500 times in the regression tests
5485
5486 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5487
5488         * support/Util/SDCCerr.h,
5489         * support/Util/SDCCerr.c,
5490         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5491         enumerator_list),
5492         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5493         for symbol conflicts.
5494         * support/valdiags/tests/enum.c,
5495         * support/valdiags/tests/tentdecl.c,
5496         * support/valdiags/tests/struct.c: expect possible error messages
5497         referring to original symbol definitions.
5498         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5499         * src/SDCCsymt.h,
5500         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5501
5502 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5503
5504         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5505
5506 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5507
5508         * src/pic16/ralloc.c (newReg): fixed bug #908929
5509
5510 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5511
5512         * src/ds390/gen.c: added missing #include "main.h"
5513
5514 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5515
5516         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5517         checking if symbol is already in set,
5518         * src/pic16/device.h: prototype for checkAddSym,
5519         * src/pic16/gen.c: (_G): added entry interruptvector,
5520         * (assignResultValue): removed some commented out lines,
5521         * (genFunction): check for ISR via sym->type, absolute section for
5522         interrupt code is created via a new pBlock, the goto instruction is
5523         placed now correctly at the interrupt vector position, changed all
5524         references from ivec to _G.interruptvector,
5525         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5526         is the interrupt is a high priority one, same for return from ISR,
5527         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5528         externs to calls of checkAddSym,
5529         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5530         pic16_pcode_verbose flag is set,
5531         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5532         * src/pic16/pcoderegs.c: message about how many registers are saved
5533         will only be emitted if pic16_pcode_verbose flag is set,
5534
5535 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5536
5537         * src/ds390/ralloc.h,
5538         * src/ds390/ralloc.c (ds390_regWithIdx),
5539         * src/ds390/gen.c (emitcode),
5540         * src/ds390/main.h,
5541         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5542         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5543         ds390operandCompare, getRegsRead, getRegsWritten,
5544         initializeAsmLineNode): customized instruction size calculation for
5545         ds390, started basis for some register optimizations
5546         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5547         corresponding assembly output
5548         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5549         missing push/pop of r0/r1. Optimized push/pops
5550
5551 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5552
5553         * src/mcs51/main.c (instructionSize): fixed ACALL size
5554         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5555
5556 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5557
5558         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5559         the sorting of rlist with NULL elements
5560         * (print_idataType, print_idata): NEW to create idata sections
5561         * src/pic16/device.h: idataSymSet new variable
5562         * src/pic16/gen.c (genFunction): fixed some bugs in string
5563         comparing, improved the absolute section creation for ISRs,
5564         added FSR0L/FSR0H in registers that are saved in an ISR,
5565         * (genInline): fixed the processing of inline snippets,
5566         now they undergo no process by the peephole optimizer
5567         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5568         are placed in idataSymSet,
5569         * (pic16emitStaticSeg): extern symbols are added in externs,
5570         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5571         switching when aboslute variables are placed in access bank memory
5572         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5573         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5574         commented out with #if,
5575         * (pic16_packRegisters): reintroduce the check for CAST because some
5576         symbols are not correctly handled,
5577         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5578         pCodeInstruction instead of pCode,
5579         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5580         pCodeAsmDir definition,
5581         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5582         directive, then the argument directive is emitted without the leading
5583         tab, hack for inline labels which must be in the first column,
5584         * (compareLabel,pic16_findNextInstruction),
5585         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5586         * (insertBankSwitch): modified for the new pCodeAsmDir,
5587
5588 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5589         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5590
5591         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5592         instance,
5593         * (pushSide): commented out with #if,
5594         * (assignResultValue): fixed some typos in saving
5595         registers,
5596         * (genPcall): FIXED and sync'ed with genCall,
5597         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5598         * (genNearPointerGet): fixed to handle some more cases,
5599         implementation scheme via table reads,
5600         * (genConstPointerGet): modified to access code memory correct,
5601         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5602         and improved to handle some cases
5603         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5604         instead of "RETLW" for init data
5605         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5606         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5607         variables are placed in access bank memory (<0x80 and >=0xf80),
5608         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5609         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5610         TBLWT_POSTDEC,TBLWT_PREINC
5611         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5612         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5613         directives
5614         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5615         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5616         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5617         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5618
5619 2004-02-29  Borut Razem <borut.razem AT siol.net>
5620
5621         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5622         support/Util/findme.h, support/Util/system.h: enhance binary relative
5623         search for lib and include by using findProgramPath()
5624
5625 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5626
5627         * src/SDCCpeeph.h,
5628         * src/SDCCpeeph.c (pcDistance),
5629         * src/port.h,
5630         * src/mcs51/ralloc.h,
5631         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5632         * src/mcs51/main.h,
5633         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5634         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5635         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5636         size calculation port specific, started basis for some register
5637         optimizations
5638         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5639         missing push/pop of r0/r1. Optimized push/pops
5640         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5641         * device/lib/_modsint.c (_modsint),
5642         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5643         and stack version so regression tests pass
5644
5645 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5646
5647         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5648         * src/SDCCast.c (decorateType): catch another small optimization
5649         with '?' operator
5650         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5651         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5652         modified to finally use computeType() all over SDCC,
5653         see Feature Request #877103
5654         * src/SDCCval.h: cosmetic
5655         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5656         valCompare(); regression tested in muldiv.c
5657         * support/regression/tests/muldiv.c (testMod): mod sign follows
5658         dividend only
5659
5660 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5661
5662         * src/SDCCast.c (decorateType): fixed bug #902362
5663         * doc/INSTALL.txt: fixed install instructions for win32
5664
5665 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5666
5667         * device/include/Makefile.in (install): fixed by replacing spaces
5668         by tabs
5669         * doc/README.txt,
5670         * doc/INSTALL.txt: updated for release
5671         * doc/sdccman.lyx: added warning for --xstack being buggy
5672
5673 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5674
5675         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5676         to eliminate build warnings.
5677         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5678
5679 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5680            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5681
5682         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5683         removed -penable-stack, added comment for stack pragma, added
5684         warning for not initializing the stack/frame registers, removed
5685         comment at interrupts section
5686
5687         Stack is made permanent, there is no ability to disable stack usage.
5688         * src/pic16/device.h,
5689         * src/pic16/device.c: removed all references to USE_STACK macro,
5690         * src/pic16/device.c (pic16_dump_section): when no elements in
5691         rlist, free rlist before return,
5692         * (pic16_dump_int_registers): NEW, internal registers are a new set
5693         of general purpose registers reused by each function,
5694         * (checkAddReg): returns 1 if registers is added to set,
5695         * (pic16_groupRegistersInSection): when a registers is of type
5696         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5697         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5698         SRCASECMP macro is moved here from device.c
5699         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5700         PO_PCLATU, PO_PRODL, PO_PRODH,
5701         * (pic16_pCodeOpType, genMinus,
5702         changed compares to "a" register, with AOP_ACC,
5703         * (pic16_genPlus): fixed some bugs and indented properly,
5704         * (pic16_addSign): changed size to size+offset in the MOVWF
5705         instruction,
5706         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5707         multiply 8-bit operand by literal, result is 8-bit,
5708         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5709         multiply 2 8-bit operand, result is 8-bit,
5710         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5711         genUMult8X*_16,
5712         * src/pic16/gen.c: changed accUse to contain WREG only,
5713         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5714         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5715         true, do not use immediate addressing any more unless sym is a
5716         pointer in codespace,
5717         * (aopForRemat): do not use immediate addressing when symbol not in
5718         codespace and when symbol's address is requested,
5719         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5720         accUse size (= 1),
5721         * (aopGet): added case for AOP_ACC and don't return "accumulator
5722         bug" but WREG instead,
5723         * (popGetTempReg): pushes contents of temporary register in stack,
5724         * (popReleaseTempReg): pops contents of temporary register from
5725         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5726         * (pic16_popGet): separated case AOP_ACC to return register WREG
5727         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5728         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5729         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5730         the use of immediate pointers to certain cases only.
5731
5732         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5733         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5734         * (assignResultValue, genCall, genRet): modified to use the new
5735         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5736         genPcall is still broken,
5737         * (genFunction): added code to create 'A' type pBlocks when
5738         interrupt functions are generated, code not extensively tested yet,
5739         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5740         * (genEndFunction): modified so ISRs pop stored registers from stack,
5741         * (genMultOneByte): cleanup,
5742         * (AccRsh): added flag andmask, to and result with appropriate mask,
5743         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5744         * (genDataPointerGet): fixed and reenabled its use,
5745         * (genNearDataPointerGet): bugs fixed,
5746         * (genDataPointerSet): bugs fixed,
5747         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5748         pic16_DumpSymbol, pic16_DumpOp,
5749         * src/pic16/genutils.h: function prototypes for the above functions,
5750         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5751         pointers,
5752         * (pic16emitRegularMap): many many many improvements, but needs a
5753         major cleanup,
5754         * src/pic16/main.c: enable_stack in pic16_options is removed,
5755         * (_pic16_parseOptions): removed command line options -penable-stack,
5756         * (_process_pragma): emit stack symbol only when stack pragma is
5757         processed,
5758         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5759         redirected to FSR0L/FSR0H pair,
5760         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5761         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5762         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5763         for immediates,
5764         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5765         * (dumpPicOptype): NEW,
5766         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5767         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5768         with movff instruction,
5769         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5770         added pic16_int_regs, some packRegsFor* functions are commented out,
5771         because produce errors,
5772         * src/pic16/NOTES: minor modifications
5773
5774 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5775
5776         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5777         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5778         --pack-iram.
5779         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5780         * as/mcs51/lkaomf51.c: fixed bug #895763
5781
5782 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5783
5784         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5785
5786 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5787
5788         * doc/sdccman.lyx: added details about the HC08 storage classes and
5789         interrupts, fixed the register usage info for z80 & gbz80
5790
5791 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5792
5793         * doc/sdccman.lyx: added more pic16 port documentation
5794         * device/include/pic16/: added header pic18fregs.h
5795
5796 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5797
5798         * doc/sdccman.lyx: added Vangelis' contribution
5799
5800 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5801
5802         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5803         extend to the next CALL or PCALL, not just to the next CALL.
5804
5805 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5806
5807         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5808
5809 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5810
5811         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5812         bug #895752 and a better fix for bug #716790
5813
5814 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5815
5816         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5817
5818 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5819
5820         * doc/sdccman.lyx: minor changes, minor changed
5821
5822 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5823
5824         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5825         which can't handle SDCC_NEWONEBYTEOPS,
5826         (geniCodeMultiply): removed conversion from mult to shift for pic14
5827         and pic16
5828
5829 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5830
5831         * src/hc08/gen.h,
5832         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5833         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5834         thus fixing bug #895406
5835
5836 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5837
5838         * device/lib/_modsint.c,
5839         * device/lib/_modslong.c: sign follows divisor only
5840         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5841         signs or signedness can be ignored
5842         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5843         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5844         added optimization for IFX,
5845         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5846         arguments;
5847         reenabled optimization for IFX, which was removed on 2004-01-11
5848         * src/SDCCast.h: added return type IFX
5849         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5850         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5851         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5852         SDCC_OLDONEBYTEOPS selects the old behaviour
5853         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5854         changed again and commented promotion rule
5855         * src/SDCCval.c (valDiv): promotion no longer necessary
5856         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5857         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5858         rewritten
5859         * support/regression/tests/onebyte.c: added
5860
5861 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5862
5863         * gen.c (genInline): reverted to old code for assemnling inline
5864         code because of bug reported James Chadd
5865
5866 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5867
5868         * ralloc.h: missing declarations from previous patch,
5869         seems that patch for ralloc.h was never applied, fixed
5870
5871 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5872            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5873
5874         * pcode.c,
5875         * pcode.h,
5876         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5877         indirect addressing. Marked FSR0 as deprecated
5878         * gen.c (pointerCode): commented out, not needed now
5879         (pic16_popGet2p): new MOVFF helper function
5880         (genGenPointerGet),
5881         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5882         (shiftRLong): removed duplicate debugging info
5883
5884 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5885
5886         * src/ds390/gen.c (genNearPointerGet),
5887         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5888         optimization with bits, but not bitfields.
5889         * src/ds390/ralloc.c (packRegisters),
5890         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5891
5892 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5893
5894         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5895
5896 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5897
5898         * src/SDCCsymt.h,
5899         * src/SDCCicode.c (operandFromSymbol),
5900         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5901         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5902         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5903         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5904         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5905         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5906         bug #892038
5907         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5908         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5909         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5910         * src/SDCCsymt.c (newSymbol),
5911         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5912         enumerator_list),
5913         * src/SDCCval.h,
5914         * src/SDCCval.c (newiList): fixed bug #885705
5915
5916 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5917
5918         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5919         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5920
5921 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5922
5923         * device/include/c8051f120.h,
5924         * device/include/c8051f300.h,
5925         * device/include/c8051f310.h: added/updated header files for Silicon
5926         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5927         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5928         in new section Submitting patches
5929
5930 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5931
5932         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5933         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5934         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5935         genGenPointerSet),
5936         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5937         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5938         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5939         genGenPointerSet),
5940         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5941         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5942         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5943         genGenPointerSet),
5944         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5945         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5946         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5947         genGenPointerSet): fixed bug #892400
5948         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5949         to eliminate build warnings.
5950         * src/SDCCast.c (processParms),
5951         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5952         fixed bug 751859
5953         * support/valdiag/valdiag.py: added GCC to the list of defines active
5954         when compiling with gcc
5955
5956 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5957
5958         * support/Util/SDCCerr.h,
5959         * support/Util/SDCCerr.c,
5960         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5961         with an incomplete type (fixed bug #883734)
5962         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5963
5964 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5965
5966         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5967
5968 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5969
5970         * src/SDCCast.c (decorateType),
5971         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5972         function pointer implementation
5973         * support/regression/tests/funptrs.c: added tests to verify both forms
5974         of function pointers work correctly. Added tests to verify parameters
5975         are passed in the correct order.
5976
5977 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5978
5979         * device.c (regCompare): registers are sorted by ascending
5980         address and increasing size,
5981         * main.c (_pic16_finaliseOptions): removed the declaration
5982         of compiler macro MCU. Now a macro of the format pic18fxxxx
5983         will be defined from the command line
5984
5985 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5986             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5987
5988         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5989         PCOP_RLCF was overwritten!
5990         * gen.c (genSkip): commented out calls to pic16_emitcode,
5991         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5992         * (genlshTwo),
5993         * (genRRC): added debugging info,
5994         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5995         overwritten while shifting,
5996         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5997         overwritten while shifting,
5998         * (AccLsh),
5999         * (AccRsh),
6000         * (shiftLLeftOrResult),
6001         * (shiftRLeftOrResult),
6002         * (shiftRLong),
6003         * (shiftLLong): Implemented with pic16_emitpcode
6004         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6005         * (genLeftShift): Fixed bug, operand for shift by variable always
6006         was "and"ed with 0x0f,
6007         * (genLeftShiftLiteral),
6008         * (genrshTwo),
6009         * (genRightShiftLiteral): added debugging info,
6010         * (genrshFour): added comment,
6011         * (genRightShift): determined signedness from operand "left"
6012         instead of "result"
6013
6014 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6015
6016         * src/SDCCicode.c (geniCodeParms),
6017         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6018         function pointers, fixed function pointer bugs #861242 and #861896
6019
6020 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6021
6022         * device/include/c8051f000.h,
6023         * device/include/c8051f120.h,
6024         * device/include/c8051f300.h: added header files for Silicon
6025         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6026
6027 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6028
6029         * src/SDCCast.c (processParams): added new type flow and restructured
6030         (gatherAutoInit): added new type flow
6031         (addCast): cosmetic changes
6032         (getLeftResultType): added new type flow for array indices, patch
6033         provided by Stas, see FR #877103
6034         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6035         array index patch by Stas
6036         * src/SDCCast.h: added prototype getResultTypeFromType()
6037         * src/SDCCval.h,
6038         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6039         * src/pic/glue.c (pic14emitStaticSeg),
6040         * src/pic16/glue.c (pic16emitStaticSeg),
6041         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6042         for initialization of symbols
6043         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6044         * support/Util/SDCCerr.h:
6045         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6046         * .version: bumped version number to 2.3.8
6047         * device/include/Makefile.in (install),
6048         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6049         avoid warnings
6050
6051 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6052
6053         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6054         Slade Rich fixed an optimization bug
6055         * src/pic/pcodepeep.c,
6056         * src/pic/pcoderegs.c
6057         * doc/Makefile (install): added test for directory
6058
6059 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6060
6061         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6062         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6063         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6064         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6065         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6066         * as/mcs51/asexpr.c (term),
6067         * as/hc08/asexpr.c (term): fixed bug #887146
6068
6069 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6070
6071         * src/z80/gen.c (genMult): handle single byte result product
6072         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6073         DUMMY_READ_VOLATILE (fixed bug #886367)
6074
6075 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6076
6077         * support/regression/tests/libmullong.c: fixed logic, on little endian
6078         hosts we ended without a mullong_wrapper()
6079
6080 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6081
6082         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6083         virus/worm forged address usage.
6084
6085 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6086
6087         Fixed promotion, it should be done on AST level:
6088         * src/SDCCast.c (addCast): added promotion to int
6089         (decorateType): updated call to upCast()
6090         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6091         usualUnaryConversions()
6092
6093 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6094
6095         * support/regression/tests/literalop.c (mulWrapper): Added a
6096         wrapper to remove integer overflow warnings.
6097
6098         * support/regression/tests/float_trans.c: Made work on host.
6099
6100         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6101         location of sz80.
6102
6103         * support/regression/generate-cases.py (main): Changed from inline
6104         to a main method.
6105
6106         * doc/Makefile (install): Changed to depth first to get rid of
6107         missing directory install warning.
6108
6109         * as/Makefile (install-doc): Made work on Mac.
6110
6111 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6112
6113         * src/SDCCast.c: added an additional type flow in decorateType() of
6114         opposite direction, see feature request #860006; it's enabled at runtime
6115         by setting the environment variable SDCC_NEWTYPEFLOW
6116         * src/SDCCast.h: changed prototype of decorateType()
6117         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6118         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6119         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6120         see feature request #877103
6121         * src/SDCCval.c: updated call of decorateType()
6122         (valBitwise): fixed bug #882876
6123         (valMinus): added promotion
6124         (valLogicAndOr): result is unsigned
6125         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6126         * src/SDCCsymt.c (computeType),
6127         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6128         must not cause an unsigned operation
6129         * src/pic/glue (pic14emitRegularMap),
6130         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6131
6132 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6133
6134         * src/pic/pcode.c (PCodeID): commented out left over debug code
6135
6136 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6137
6138         * support/valdiag/tests/overflow.c: added shift tests
6139         * src/pic/device.c,
6140         * src/pic/gen.c,
6141         * src/pic/gen.h,
6142         * src/pic/glue.c,
6143         * src/pic/main.c,
6144         * src/pic/pcode.c,
6145         * src/pic/pcode.h,
6146         * src/pic/pcodepeep.c,
6147         * src/pic/pcoderegs.c,
6148         * src/pic/ralloc.c,
6149         * src/pic/ralloc.h: applied patch from Slade Rich;
6150         added support for multiple code pages and multiple RAM banks on the
6151         PIC 14 port. The ASM files now no longer simply assume all the
6152         code / RAM are in the same page / bank. This means the linker can
6153         safely allocate code/RAM of separate ASM files to different pages/banks.
6154         * doc/sdccman.lyx: added Slade's tips
6155         * src/mcs51/peeph.def: fixed bug #880768
6156
6157 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6158
6159         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6160         * src/SDCCast.c (decorateType): fixed bug #880197
6161
6162 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6163
6164         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6165         getopt.h.
6166
6167         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6168         strtof is not part of C89 and isn't included with Mac OS X.
6169
6170 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6171
6172         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6173         shiftL2Left2Result): fixed bug #879326
6174         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6175         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6176         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6177         address fetch for clr instruction
6178         * device/lib/hc08/_mulint.c: created optimized assembly version
6179         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6180
6181 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6182
6183         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6184         proposed in FR #877103
6185
6186 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6187
6188         * src/SDCCval.c (cheapestVal): added missing checks
6189         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6190         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6191
6192 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6193
6194         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6195         equal operands
6196
6197 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6198
6199         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6200         loaded with the linker search paths (-L arguments) and the libraries
6201         to be linked with the current source (-l arguments). Changes
6202         currently will affect only the pic16 port.
6203         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6204         include path the port specific paths and port specific libraries,
6205         * gplink command now contains the $3 argument,
6206         * src/pic16/device.h,
6207         * src/pic16/device.c,: structure PIC_device is made public and
6208         renamed to PIC16_device, the same for variable Pics which is renamed
6209         to Pics16. Updated all references to them.
6210         * src/pic16/glue.c (pic16glue): corrected bug with code
6211         initialization which bypassed the variable initializations block.
6212
6213         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6214         COMPILE_FLAGS and added the --nostdinc option
6215
6216 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6217
6218         * device/include/mc68hc908jb8.h: Register defs for another member
6219         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6220
6221 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6222
6223         Documenting changes from previous commits.
6224         * configure.in (version 1.56),
6225         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6226         when generating output files to configure the pic16 library,
6227         but now I've commented it out, since gputils aren't installed in the
6228         SF compile farm, so library won't compile
6229
6230         * device/lib/Makefile.in (version 1.56): initially I've added in
6231         target 'all' the prerequestive 'model-pic16' so it compiled the
6232         pic16 library, but now I've commented it out for the same reasons
6233         above,
6234         * added targets 'model-pic16' and 'objects-pic16' to compile the
6235         library
6236         * added target 'port-specific-objects-pic16' to handle the
6237         generated libraries and copy them into the build/ directory
6238         * added target 'clean-intermediate-pic16' to clean intermediate
6239         files into pic16 directory
6240         * in target 'installdirs' added line to create directory pic16 in
6241         the installation path
6242
6243         * device/include/Makefile.in (version 1.11): in target 'install'
6244         added lines to copy all header files to installation path,
6245         * in target 'installdirs' added line create directory for pic16
6246         headers in the installation path
6247
6248 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6249
6250         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6251          a function call
6252
6253 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6254
6255         * configure,
6256         * device/lib/configure.in,
6257         * device/lib/configure: fixed for autoconf 2.57
6258
6259 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6260
6261         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6262         option so that it actually works. Made it specific to the z80, since
6263         the gbz80 doesn't have these kinds of I/O ports.
6264
6265 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6266
6267         * device/include/z180.h,
6268         * device/lib/_memcpy.c,
6269         * device/lib/_memmove.c,
6270         * device/lib/_mulint.c,
6271         * device/lib/ser_ir.c,
6272         * device/lib/ser_ir_cts_rts.c,
6273         * device/lib/_strcmp.c,
6274         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6275         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6276         portmode; added deprecation warning for bank= and protmode= forms.
6277         Also, guard against buffer overflow.
6278         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6279
6280 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6281
6282         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6283         changed interrupt vector table generation to only emit declared vectors.
6284         * device/include/Makefile.in: added missing backslash
6285         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6286
6287 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6288
6289         Mainly changes to support compilation of the device libraries
6290         * src/pic16/device.c: stack is allocated via symbol and not
6291         via literal number. The symbol is placed in the corresponding
6292         position of the data ram
6293         * (pic16_dump_section): relocatable and absolute uninitialized
6294         data are now emitted in sorted order to reduce section naming,
6295         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6296         weren't marked as being in the access bank,
6297
6298 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6299
6300         Added portion of GNU PIC Library under the directory
6301         device/include/pic16 and device/lib/pic16. These files
6302         contain the declarations of SFRs for the PIC18Fxx2 devices.
6303         The directory is initialized via configure from toplevel.
6304
6305 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6306
6307         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6308         the spilllocations to be compared correctly
6309
6310 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6311
6312         * src/SDCCast.c (decorateType): fixed bug introduced today
6313
6314 2004-01-12  Borut Razem <borut.razem AT siol.net>
6315
6316         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6317         doc/sdccman.lyx: upper case pragmas are deprecated
6318
6319 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6320
6321         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6322         in simpler and even better code
6323
6324 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6325
6326         * src/SDCCicode.c (operandOperation): fixed bug #874819
6327         * src/SDCCast.c (decorateType): fixed
6328         char foo (unsigned long ul) { return ul > 0; }
6329
6330 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6331
6332         * doc/sdccman.lyx: Moved and added some sections, small changes
6333         all over. Telling LaTeX to be less strict with word spacing
6334         to better keep the right margin. Changed some notes about
6335         maintainance of the ports in section 3.2.1 - is it OK like this?
6336
6337 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6338
6339         SDCC source changes:
6340         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6341         convilong): modified to inform the pic16 port that builtin functions
6342         are external
6343
6344         PIC16 PORT specific changes:
6345         * src/pic16/device.c pic16_dump_equates() added,
6346         processor registers declared internally by the port are emitted in
6347         the translation as equates,
6348         * src/pic16/gen.c: inline code is passed unprocessed to the
6349         translation,
6350         * (pic16_popGetLit2): fnuction modified to take second operand as
6351         pCodeOp pointer and not as literal,
6352         * (popRegFromIdx): prefixed with pic16_,
6353         * (pic16_popCombine2): modified to receive already allocated pCode
6354         operands,
6355         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6356         * (genFunction): initializes local stack frame and pushes on stack
6357         all the registers used by this function,
6358         * (genEndFunction): restores all registers from stack and restores
6359         stack frame,
6360         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6361         improvements,
6362         * (pic16glue): changed the program startup sequence,
6363         * added new dbName code 'A' for functions placed in absolute section
6364         * src/pic16/main.c: added function attribute _naked,
6365         * added pragma 'code' to place a fnuction at an absolute address,
6366         * added command line arguments --debug-ralloc and --pcode-verbose,
6367         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6368         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6369         * (pic16_newpCodeOpLit2): modified to take the second operand as
6370         pCodeOp pointer,
6371         * (pic16_printpBlock): modified to emit each function in a separate
6372         section,
6373         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6374         UPPER for immediate operands,
6375         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6376         instruction,
6377         * src/pic16/peeph.def: all peepholes with movff are commented out,
6378         because there is a problem in the pcode peep optimizer,
6379         * src/pic16/ralloc.c: the register allocator can now reuse local
6380         function symbols for another function. This saves register usage.
6381         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6382
6383         Added file src/pic16/NOTES with information about program writing on
6384         the current port version.
6385
6386 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6387
6388         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6389         and peephole 252 (array access)
6390
6391 2004-01-09  Borut Razem <borut.razem AT siol.net>
6392
6393         * src/SDCCmain.c : fixed #872250: -l command line defined library
6394           files are scanned before standard library files
6395
6396 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6397
6398         * src/SDCCast.c (decorateType): fixed bug #874046
6399
6400 2004-01-09  Borut Razem <borut.razem AT siol.net>
6401
6402         * support/scripts/sdcc.nsi: remove previous installation
6403
6404 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6405
6406         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6407         bytes for last interrupt vector (mcs51)
6408         * sdcc.spec: fixed typo
6409
6410 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6411
6412         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6413         gen51Code): more efficient parameter receive for --model-large
6414         ("bug" #845294)
6415
6416 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6417
6418         * src/ds390/main.c,
6419         * src/z80/main.c: added missed needLinkerScript flags (more than
6420         one port structure defined in these file)
6421         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6422         bug #795325
6423
6424 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6425
6426         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6427         * src/port.h: added flag needLinkerScript in port->linker
6428         structure to inform whether to create a .lnk file or not,
6429         * src/avr/main.c,
6430         * src/ds390/main.c,
6431         * src/hc08/main.c,
6432         * src/mcs51/main.c,
6433         * src/pic/main.c,
6434         * src/pic16/main.c,
6435         * src/xa51/main.c,
6436         * src/z80/main.c: changed appropriately to configure
6437         needLinkerScript flag
6438         * src/pic/gen.c,
6439         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6440         * src/pic/glue.c: added variable udata_section_name to
6441         override default uninitialized data segment definition for
6442         devices only with SHAREBANK memory (reported from Erik Epetrich)
6443         * (pic14emitOverlay): modified to emit a commented overlay segment
6444         directive when no overlay data exist
6445         * (picglue): modified to emit uninitialized data segment
6446         according to udata_section_name
6447         * src/pic/main.c (_pic14_parseOptions): added command line
6448         options --udata-section-name=[name] to override default
6449         udata definition name
6450         * modified _linkCmd and _asmCmd to include compiler passed
6451         arguments via -W option
6452         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6453         object file from '.rel' to '.o' in port->linker structure,
6454         changed size of fptr from 2 to 3 in port structure
6455
6456 2004-01-07  Borut Razem <borut.razem AT siol.net>
6457
6458         * support/scripts/sdcc.nsi: update PATH
6459         * support/scripts/sdcc.ico: craeted
6460
6461 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6462
6463         * device/include/Makefile.in: fix install
6464         * doc/Makefile: fix install
6465
6466 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6467
6468         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6469         in bug #860505
6470         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6471         how the function variable allocation summary is displayed; also
6472         include information about variables allocated to the overlay
6473         segment
6474
6475 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6476
6477         * as/mcs51/lkmain.c: Help about -Y option
6478         * as/mcs51/lkarea.c: Fixed gcc warnings
6479
6480 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6481
6482         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6483         fixed warning
6484         * support/valdiag/tests/overflow.c: added
6485         * src/SDCCast.c (decorateType),
6486         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6487         LEFT_OP (left shift)
6488
6489 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6490
6491         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6492         (default behaviour).
6493
6494 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6495
6496         A python script to validate compiler diagnostic messages. It can be
6497         used to verify that sdcc complains about bad c source code and
6498         gives a good location of the error.
6499         * support/valdiag/Makefile,
6500         * support/valdiag/valdiag.py,
6501         * support/valdiag/tests/*
6502
6503 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6504
6505         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6506         * src/SDCCsymt.c (newEnumType),
6507         * src/SDCCsymt.h
6508         * support/Util/SDCCerr.c,
6509         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6510         enum related bugs.
6511         * support/regression/tests/enum.c: added test for enum values that
6512         require at least 2 bytes of storage.
6513
6514 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6515
6516         * src/common.h: added ifndef/define/endif macros
6517         around the header file.
6518         Bug reported from Jesus Calvino-Fraga
6519
6520 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6521
6522         * sdcc.spec: updated
6523         * device/include/Makefile.in: don't install CVS directories
6524         * device/lib/Makefile.in: added removal of CVS directories after install
6525         * doc/Makefile: fixed install, added local_icons
6526         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6527         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6528         * src/ds390/gen.c (genRightShift): fixed bug #870788
6529         * src/SDCCast.c (decorateType): fixed bug #870781
6530
6531 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6532
6533         PIC16 port related changes:
6534         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6535         added variable stackPos,
6536
6537         * gen.c: genCall, assignResultValue: added support for
6538         pushing/retrieving function parameters to/from stack,
6539         genFunction,genEndFunction: setup stack frame for the
6540         generated function,
6541         genAddrOf: will be changed according to bug 863624
6542
6543         * added files genutils.c and genutils.h which contain gen*
6544         debugged and optimised functions extracted from gen.c
6545
6546         * glue.c: added variable 'externs' which holds extern symbols,
6547         pic16emitRegularMap: is modified to properly handle relocatable
6548          symbols under the new scheme,
6549         pic16createInterruptVect: is modified
6550         pic16printPublics: is modified to emit 'global' assembler directives,
6551         added pic16_printExterns to print extern symbols,
6552         pic16glue: initializes stack/frame pointer in the beginning of
6553         the assembly output. Temporary hack, will be corrected later,
6554         because gplink yet does not support stack and SDCC does not
6555         yet support a type of crt0.o object to create the final binary.
6556
6557         * Removed many lines that contain 8051 legacy code.
6558         * The code is finally placed under a 'code' directive.
6559         * Added port specific options.
6560
6561         * _process_pragma: simplified since now we do not need *special*
6562         include file to define SFR registers. But a separate header
6563         will be needed. This will be developed later.
6564         * _pic16_parseOptions: added, parses port specific options:
6565         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6566         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6567         --preplace-udata-with=
6568
6569         * _pic16_setDefaultOptions: modified to initialize section names,
6570         but hack is temporarly out of order since it needs improvement.
6571         * _pic16_genAssemblerPreamble: configuration words are emitted by
6572         their address instead of their name. This part is incomplete and
6573         supports only the 18Fxx2 devices. Other devices will emit an error
6574         during assembly since they do not contain the same set of config
6575         registers
6576         * _pic16_genIVT: is modified,
6577
6578         * pcode.c: added definitions for some hardware registers that are needed
6579         for stack support
6580         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6581         All PCI entries are updated. Now LFSR is supported.
6582         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6583         * added pic16_newpCodeOpLit2 to support instructions with
6584         two literal arguments
6585         * pic16_pCode2str: corrected code that emits assembler instructions
6586         with two literal operands and those that have an access bit modifier
6587         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6588         this fixes a bug which caused some labels to be lost, when an
6589         assembler directive was added, i.e. banksel,
6590         * pic16_FixRegisterBanking: improved logic that causes the insertion
6591         of bank switching,
6592         * InlineFunction: functions that are called once, are not any more
6593         inlined. This can be a port option in the future,
6594
6595         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6596
6597         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6598         hold the corresponding uninitialized symbols,
6599         * pic16_allocProcessorRegister: registers have explicit marked the
6600         accessBank field,
6601         * pic16_allocInternalRegister: registers are explicit marked as
6602         not used,
6603         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6604         processing list, so bit registers were lost,
6605         *
6606
6607         * ralloc.h: added field 'accessBank' and original symbol operand
6608         in register definition,
6609         * removed the field isMapped from register definition,
6610
6611         ** Several functions have been removed from various sources:
6612         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6613         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6614         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6615         pic16_assignRelocatableRegisters
6616
6617         ** others have been introduced:
6618         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6619         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6620
6621 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6622
6623         * support/scripts/inc2h.pl: changed definition of BIT_AT
6624         to emit 'sbit at' instead of 'bit at'. This was a request.
6625
6626         PIC16 port related preliminary changes:
6627         * gen.c: prefixed function popRegFromString with
6628         pic16_ and all references to it corrected
6629         * pcode.c: all pic16_pc_* hardware registers prefixed
6630         with underscore (_),
6631         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6632         * ralloc.c: newReg(): when register is REG_SFR then
6633         set address to rIdx,
6634         pic16_allocProcessorRegister(): marks register wasUsed=0
6635         pic16_writeUsedRegs(): added a call to assign processor
6636         registers via pic16_assignFixedRegisters
6637
6638 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6639
6640         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6641         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6642         variables in unused register banks.  Also the SSEG is placed
6643         wherever there is enough space for it, and IDATA can be anywhere
6644         in internal RAM.  For now compile using -Wl-Y[stack_size].
6645         The mem file is different for this option as well, since it
6646         makes no sense of talking about DSEG lenght.
6647
6648 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6649
6650         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6651         in certain cases, e.g. when ROM assignment, patch provided
6652         from Albert den Haan.
6653
6654 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6655
6656         Many signedness and type propagation fixes:
6657         * src/SDCCicode.c: made geniCodeCast() static
6658         replaced SPEC_ by IS_ (cosmetic)
6659         (operandOperation): fixed div and mod operation
6660         (usualBinaryConversions): added support for promotion of char
6661         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6662         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6663         (geniCodeAdd): an array index will stay unsigned, even if promoted
6664         from char to int
6665         (geniCodeArray): ditto
6666         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6667         * src/SDCCsymt.c (computeType): added more support for char;
6668         promotion of char is selectable by promoteCharToInt, fixed signedness
6669         for all cases
6670         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6671         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6672         * src/SDCCval (val*): replaced signedness calculation by
6673         computeType()
6674         rearranged if-branches (cosmetic)
6675         (valShift): added warning W_SHIFT_CHANGED
6676         (valCompare): fixed problem with different types
6677         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6678         * support/regression/tests/literalop.c: added many cases
6679         * support/regression/tests/ast_constant_folding.c: changed finally to
6680         'unsigned int'
6681         * .version: new year, new version: 2.3.7
6682         * src/SDCCmain.c (main): applied patch #866468
6683         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6684         provided by Scott Bronson
6685         * doc/sdccman.lyx: updated documentation for sdcdb
6686         updated and added chapter tips
6687
6688 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6689
6690         * src/SDCCsymt.h: missing from yesterday's commits
6691
6692 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * src/SDCC.y (struct_or_union_specifier),
6695         * support/Util/SDCCerr.c,
6696         * support/Util/SDCCerr.h: verify that struct & union tags are used
6697         as declared.
6698
6699 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6700
6701         * src/SDCCglobl.h: missing from yesterday's commits
6702
6703 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6704
6705         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6706         sft_attributes, struct_declaration, parameter_declaration,
6707         type_name, start_block, declaration_list),
6708         * src/SDCC.lex (check_type): support redefinition of typedef names
6709
6710 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6711
6712         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6713         aligned xdata arrays. Erik helped me with the if clause.
6714
6715 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6716
6717         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6718         warning
6719
6720 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6721
6722         * src/SDCCast.h,
6723         * src/SDCCast.c (newAst_),
6724         * src/SDCCicode.h,
6725         * src/SDCCicode.c (ast2iCode, newiCode),
6726         * src/SDCCglobl.h,
6727         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6728         expr, statement, expression_statement, selection_statement,
6729         iteration_statement, expr_opt, jump_statement): foundation for tracking
6730         sequence points
6731         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6732         point code too)
6733
6734 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6735
6736         * support/Util/SDCCerr.c,
6737         * src/SDCCast.h,
6738         * src/SDCCast.c (createCase, createDefault, decorateType),
6739         * src/SDCClabel.c (labelUnreach),
6740         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6741         to error messages.
6742         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6743         (with thanks to Stas Sergeev)
6744         * device/include/time.h,
6745         * device/lib/time.c (CheckTime): suppress unreachable code warning
6746
6747 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6748
6749         * src/SDCCast.c (createIvalCharPtr),
6750         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6751         bug #753752)
6752         * support/regression/tests/nullstring.c: tests for these two bugs
6753
6754 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6755
6756         * support/Util/SDCCerr.h,
6757         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6758         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6759         about storage class and 'at' used inside struct or union
6760         * src/SDCCBBlock.c (iCodeFromeBBlock),
6761         * src/SDCCcse.c (ifxOptimize),
6762         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6763         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6764         printIval, emitStaticSeg, emitOverlay),
6765         * src/SDCClabel.c (deleteIfx),
6766         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6767         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6768         gatherAutoInit, processParms),
6769         * support/Util/SDCCerr.h,
6770         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6771         reporting for post-parse errors.
6772
6773 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6774
6775         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6776         implicit casts via union; they don't work on big endian systems
6777         (possible fix for bug #861138)
6778
6779 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6780
6781         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6782         * src/mcs51/main.c: fixed the fix for bug #737001
6783
6784 2003-12-15  Borut Razem <borut.razem AT siol.net>
6785
6786         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6787
6788 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6789
6790         * support/makebin/makebin.c: put output in binary mode
6791
6792 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6793
6794         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6795         xdata and data memory on startup. Set the environment variable
6796         SDCC_NOGENRAMCLEAR to disable this.
6797         * src/mcs51/peephole.def,
6798         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6799         (allows non-interrupt and interrupt code to safely compete for a resource
6800         without the non-interrupt code having to disable interrupts)
6801
6802 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6803
6804         * src/SDCCicode.c (geniCodeAdd),
6805         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6806         with valFromType if type might be a pointer and host is big endian).
6807         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6808         types, not just integer types.
6809         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6810         multiply defined with mismatching "at" address.
6811
6812 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6813
6814         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6815         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6816         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6817         with embedded nulls (fixed bug #753752)
6818
6819 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6820
6821         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6822         Apparently this did not see much testing (endless loop)
6823
6824 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6825
6826         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6827
6828 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6829
6830         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6831         gracefully handle NULL memmap pointers
6832
6833 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6834
6835         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6836         instead of deleting the iCode when an operand is volatile
6837         * src/z80/gen.c (genDummyRead),
6838         * src/mcs51/gen.c (genDummyRead),
6839         * src/ds390/gen.c (genDummyRead),
6840         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6841         not just IC_RIGHT
6842         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6843         * src/SDCC.y: fixed bug #850420
6844
6845 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6846
6847         Applied z80 i/o port patch from Peter Townson and fixed some operators
6848         to better handle operands in A register.
6849         * device/include/z180.h
6850         * src/SDCC.y
6851         * src/SDCCglue.c
6852         * src/z80/gen.c
6853         * src/z80/gen.h
6854         * src/z80/main.c
6855         * src/z80/peeph-z80.def
6856         * src/z80/peeph.def
6857         * src/z80/z80.h
6858
6859 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6860
6861         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6862
6863 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6864
6865         * device/lib/hc08/_mullong.c: Removed extra #endif
6866
6867 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6868
6869         * sim/ucsim/hc08.src/inst.cc,
6870         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6871         carries from x to h
6872         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6873         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6874         * device/include/stdarg.h: fixed varargs for hc08
6875         * device/lib/Makefile.in,
6876         * device/lib/hc08/Makefile,
6877         * device/lib/hc08/_mulint.c,
6878         * device/lib/hc08/_mullong.c: fixed some endian problems
6879
6880 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6881
6882         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6883         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6884         * device/lib/_gptrget.c,
6885         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6886
6887 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6888
6889         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6890         * src/SDCCast.c (astErrors): fixed bug #846007
6891         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6892
6893 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6894
6895         * src/SDCCast.c (decorateType): disabled a transformation I added in
6896         revision 1.188 (access to fields of a structure at an absolute address);
6897         it breaks with bitfields, extern declarations, and gcse analysis.
6898         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6899         could be assigned through a pointer, so don't complain.
6900         * src/SDCCast.c (astErrors),
6901         * src/SDCCast.h,
6902         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6903
6904 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6905
6906         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6907         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6908         output of __config directives, since gpasm now supports them
6909         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6910         pre-processor macro, i.e. -DMCU=p18f452
6911         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6912         and modified to handle 'cast' icode similarly to '=' icode
6913         * src/pic16/device.h (typedef struct PIC_device): added field
6914         'extMIface' to indicate that chip has external memory interface
6915         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6916         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6917         18F8720
6918
6919 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6920
6921         * src/SDCC.y (pointer): fixed bug #846006
6922         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6923         * src/SDCCast.c (decorateType): fixed bug #846009
6924         * src/ds390/peeph.def,
6925         * src/ds390/gen.c (genAnd, genOr),
6926         * src/mcs51/peeph.def,
6927         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6928
6929 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6930
6931         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6932         * src/SDCCdflow.c
6933         * src/SDCCcse.c
6934         * src/SDCCcse.h
6935         * src/SDCCBBlock.h
6936         * src/SDCCBBlock.c
6937
6938 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6939
6940         fixed bug #845089
6941         * src/SDCCbitv.h,
6942         * src/SDCCbitv.c: added function to free a bitvector
6943         * src/SDCClrange.h,
6944         * src/SDCClrange.c: added function to recompute the liveranges
6945         * src/avr/ralloc.c,
6946         * src/ds390/ralloc.c,
6947         * src/hc08/ralloc.c,
6948         * src/mcs51/ralloc.c,
6949         * src/pic/ralloc.c,
6950         * src/pic16/ralloc.c,
6951         * src/xa51/ralloc.c,
6952         * src/z80/ralloc.c: recompute the liveranges after register packing
6953
6954 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6955
6956         * src/SDCCloop.c (newInduction): fixed bug #845630
6957
6958 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6959
6960         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6961         inadvertantly left behind from my 2003-11-12 change
6962
6963 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6964
6965         Updated headers I neglected to commit yesterday.
6966         * src/SDCClrange.h,
6967         * src/SDCCicode.h
6968
6969 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6970
6971         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6972         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6973         * src/SDCCopt.c (eBBlockFromiCode),
6974         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6975         the creation of the key hash table from the sequencing so it can be used
6976         earlier (for some GCSE bug fixes still pending)
6977
6978 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6979
6980         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6981         * support/regression/tests/addsub.c: testing genPlus shortcut
6982
6983 2003-11-15  Borut Razem <borut.razem AT siol.net>
6984
6985         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6986
6987 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6988
6989         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6990         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6991         ordering is immaterial.
6992         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6993
6994 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6995
6996         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6997         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6998         (SIGSEV) of bug #840381
6999         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7000         unlink new file before rename if new and old filenames are the same)
7001
7002 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7003
7004         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7005         uninitialized variables) for the mcs51. Set environment variable
7006         SDCC_GENRAMCLEAR to test.
7007         xdata initialization slightly shorter
7008
7009 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7010
7011         * src/SDCCsymt.h,
7012         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7013         #838241 & 780691 (basicly the same bug)
7014         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7015         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7016
7017 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7018
7019         * src/SDCCmain.c (linkEdit): "fix" #834252
7020
7021 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7022
7023         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7024         * src/SDCCast.h,
7025         * src/SDCC.y: fixed bug #819403
7026
7027 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7028
7029         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7030         the reentrant attribute.
7031         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7032         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7033         simulation
7034         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7035         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7036         erroneously reduced to a literal.
7037         * src/hc08/ralloc.c (packRegisters, rematStr),
7038         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7039         some cases
7040
7041 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7042
7043         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7044         * doc/sdccman.lyx: changed from 'article' to 'book'
7045         * doc/Makefile: readded test_suite_spec and cdbfileformat
7046
7047 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7048
7049         * device/include/stdlib.h: include malloc.h to comply with ANSI
7050         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7051
7052 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7053
7054         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7055         * doc/clean.mk: also remove *.out files
7056         * doc/sdccman.lyx: some additions, larger top/bottom margins
7057
7058 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7059
7060         * src/SDCC.y: fixed bug #837365
7061         * support/regression/tests/bitopcse.c
7062         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7063         a symbol (might be valop instead)
7064         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7065         * device/lib/clean.mk: added hc08 to the cleaning list
7066
7067 2003-11-04  Borut Razem <borut.razem AT siol.net>
7068
7069         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7070           made 2003-11-04
7071         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7072           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7073           malloc is declared in standard stdlib.h
7074
7075 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7076
7077         * device/lib/hc08/Makefile: need to clean .rel not .o files
7078         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7079
7080 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7081
7082         * src/port.h,
7083         * src/hc08/main.c,
7084         * src/mcs51/main.c,
7085         * src/ds390/main.c,
7086         * src/z80/main.c,
7087         * src/avr/main.c,
7088         * src/pic/main.c,
7089         * src/pic16/main.c,
7090         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7091         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7092         tests (which uses the port's oclsExpense function)
7093         * src/SDCC.y,
7094         * src/SDCCast.c,
7095         * src/SDCCicode.c,
7096         * src/hc08/gen.c,
7097         * src/ds390/gen.c,
7098         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7099
7100 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7101
7102         * src/SDCCcse.c (ifxOptimize),
7103         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7104         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7105         deleting the IFX iCode.
7106         * src/hc08/ralloc.c: reduced unneeded slocs
7107         * src/hc08/gen.c: fixed bug in asmopToBoolean
7108
7109 2003-11-04  Borut Razem <borut.razem AT siol.net>
7110
7111         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7112           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7113           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7114           transferred to configure
7115
7116 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7117
7118         Use headers defined in the C[++] standards:
7119         * sim/ucsim/gui.src/serio.src/fileio.cc
7120         * sim/ucsim/gui.src/serio.src/frontend.cc
7121         * sim/ucsim/gui.src/serio.src/main.cc
7122         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7123         * support/Util/NewAlloc.c
7124         * as/hc08/lklibr.c
7125         * as/mcs51/lklibr.c
7126         * as/z80/aslist.c
7127         * as/z80/assym.c
7128
7129 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7130
7131         * Added MSVC projects for hc08 assembler and linker:
7132         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7133         /as/hc08/link_hc08.dsp
7134
7135 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7136
7137         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7138
7139 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7140
7141         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7142
7143 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7144
7145         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7146
7147 2003-10-31  Borut Razem <borut.razem AT siol.net>
7148
7149         * support/cpp2/cpplib.h,
7150           support/cpp2/cpplib.c,
7151           support/cpp2/cpplex.c,
7152           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7153           to switch _asm block preprocessing on / off. Default is
7154           #pragma preproc_asm +
7155
7156 2003-10-31  Borut Razem <borut.razem AT siol.net>
7157
7158         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7159           when outputting comment blocks (when executed with -C option) and
7160           _asm (SDCPP specific) blocks
7161
7162 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7163
7164         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7165
7166 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7167
7168         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7169
7170 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7171
7172         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7173         * src/SDCCast.c (decorateType): fixed bug #832664
7174
7175 2003-10-31  Borut Razem <borut.razem AT siol.net>
7176
7177         * support\cpp2\cpplex.c: fixed for SDCPP:
7178           comments(when executed with -C option) and _asm blocks
7179           were included even if they where in skipped #if block.
7180           Applied solution from GCC cpp 3.3.2
7181
7182 2003-10-31  Borut Razem <borut.razem AT siol.net>
7183
7184         * src/SDCC.lex: sdcc now understands both formats:
7185           '# <line_number> <file_name>' and
7186           '#line <line_number> <file_name>'
7187         * support/cpp2/cppmain.c: sdcpp now generates the standard
7188           '# <line_number> <file_name>' instead of former
7189           '#line <line_number> <file_name>'
7190
7191 2003-10-30  Borut Razem <borut.razem AT siol.net>
7192
7193         * support/cpp2/cpphash.h,
7194         * support/cpp2/cpplib.h
7195         * support/cpp2/cpplex.c,
7196         * support/cpp2/cppmain.c,
7197         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7198
7199 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7200
7201         Fixed a number of problems revealed by bug #827883.
7202         * src/SDCCloop.c (loopInvariants): Spill location of the
7203         result operand should be recomputed if extracted from
7204         a loop. Also, don't extract assignments of an iTemp
7205         from a literal.
7206         * src/SDCCast.c (isConformingBody): loop reversal should
7207         not occur if the control variable is involved with a
7208         relational operator.
7209
7210 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7211
7212         * .version: bumped to 2.3.6 to reflect the big improvements
7213         made by Erik and Klaus. Thanks!
7214
7215 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7216
7217         Replaced the livrange code.
7218         * src/SDCClrange.c: added new LR code
7219         * src/SDCCloop.c,
7220         * src/SDCCBBlock.h: removed remainig parts from old LR code
7221         * src/ds390/ralloc.c,
7222         * src/ds390/gen.c: minor fixes to make it work with new code
7223
7224 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7225
7226         * as/hc08/asm.h,
7227         * as/hc08/lkrloc.c,
7228         * src/hc08/gen.c,
7229         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7230         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7231         (tweaked fix for bug #818696)
7232
7233 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7234
7235         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7236
7237 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7238
7239         * src/SDCCmain.c,
7240         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7241         * src/mcs51/gen.c (gencjneshort),
7242         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7243         more efficient (per Scott Bronson's suggestion)
7244
7245 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7246
7247         Extended the semantics of the critical keyword to include
7248         individual statements. See RFE #827755 and #799831
7249         * src/SDCC.y
7250         * src/SDCCicode.c
7251         * src/SDCCopt.c
7252         * src/SDCCast.c
7253         * support/Util/SDCCerr.c
7254         * support/Util/SDCCerr.h
7255         * src/mcs51/gen.c
7256         * src/ds390/gen.c
7257         * src/hc08/gen.c
7258
7259 2003-10-19  Borut Razem <borut.razem AT siol.net>
7260
7261         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7262
7263 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7264
7265         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7266         Fixed bug #818696
7267         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7268         and predecrement operand is displayed
7269
7270 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7271
7272         * src/SDCCval.c (valMinus): fixed bug #826041
7273
7274 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7275
7276         Some hc08 related updates that I missed earlier
7277         * sim/ucsim/stypes.h
7278         * support/regression/ports/hc08/spec.mk
7279
7280 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7281
7282         New target "hc08" for the Motorola 68hc08 family of micros
7283
7284         * configure
7285         * configure.in
7286         * Makefile
7287         * src/hc08/*
7288         * src/SDCCmain.c
7289         * src/port.h
7290         * sim/ucsim/hc08.src/*
7291         * sim/ucsim/configure.in
7292         * src/ucsim/configure
7293         * sim/ucsim/packages_in.mk
7294         * as/hc08/*
7295         * as/Makefile
7296         * device/include/mc68hc908qy.h
7297         * device/lib/hc08/*
7298         * device/lib/Makefile.in
7299         * support/regression/ports/hc08/*
7300         * support/regression/Makefile
7301
7302 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7303
7304         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7305         regression test
7306         * src/ds390/gen.c (genCast): fixed bug #821957
7307
7308 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7309
7310         * device/lib/logf.c: "fixed" overlay bug
7311         * support/regression/ports/host/spec.mk: added m library
7312         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7313         * support/regression/tests/float_trans: added (for Eric)
7314
7315 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7316
7317         * src/mcs51/gen.c (genCpl): fixed bug
7318         http://sf.net/mailarchive/message.php?msg_id=6263915
7319
7320 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7321
7322         * src/SDCCast.c (decorateType): added extended constant folding
7323         * src/SDCCsymt.c (computeType): cleanup
7324         * src/SDCCval.c (valShift): minor optimization
7325         * support/regression/tests/ast_constant_folding.c: added
7326
7327 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7328
7329         * src/SDCCmain.c: removed some unintended changes
7330
7331 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7332
7333         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7334         * src/z80/gen.c: fixed part of bug #817589
7335         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7336
7337 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7338
7339         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7340         * src/SDCCcflow.c
7341         * src/SDCCcse.c
7342         * src/SDCCdflow.c
7343         * src/SDCClabel.c
7344         * src/SDCClrange.c
7345         * src/SDCCmem.c
7346         * src/SDCCopt.c
7347         * src/SDCCpeeph.c
7348         * src/SDCCset.c
7349         * src/avr/ralloc.c
7350         * src/ds390/ralloc.c
7351         * src/izt/ralloc.c
7352         * src/mcs51/ralloc.c
7353         * src/pic/ralloc.c
7354         * src/pic16/ralloc.c
7355         * src/xa51/ralloc.c
7356         * src/z80/ralloc.c
7357         * src/z80/gen.c: removed unused label "release:"
7358
7359 2003-10-06  Borut Razem <borut.razem AT siol.net>
7360
7361         * src/SDCC.lex: removed definition of unused variables
7362           save_optimize and save_options
7363
7364 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7365
7366         * clean.mk: removed '=' in "-maxdepth=1"
7367         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7368         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7369
7370 2003-10-06  Borut Razem <borut.razem AT siol.net>
7371
7372         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7373           my_unput() replaced by unput()
7374
7375 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7376
7377         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7378         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7379         type-punned pointer will break strict-aliasing rules"
7380         Old LR behaviour is again default; Klaus' LR can be choosen by
7381         defining the environment variable LRKLAUS
7382         * src/SDCCBBlock.h
7383         * src/SDCCloop.c
7384         * src/SDCClrange.c
7385         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7386         * clean.mk: fixed removal of files in bin/CVS/
7387         * device/lib/clean.mk: fixed removal of directories small and large
7388         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7389         * src/SDCCicode.c,
7390         * src/SDCCval.c: removed superflous test for pedantic
7391
7392 2003-10-05  Borut Razem <borut.razem AT siol.net>
7393
7394         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7395           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7396           message "unmatched #pragma SAVE and #pragma RESTORE"
7397
7398 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7399
7400         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7401           assembly, critical functions, atomic, nojtbound)
7402
7403 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7404
7405         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7406         * src/SDCCBBlock.h
7407         * src/SDCCloop.c
7408         * src/SDCCloop.h
7409         * src/SDCClrange.c
7410
7411 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7412
7413         * src/z80/gen.h,
7414         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7415         * src/mcs51/gen.h
7416         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7417         * src/ds390/gen.h
7418         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7419         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7420         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7421
7422 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7423
7424         * src/z80/gen.c (genRet): fixed bug #524753
7425         * src/z80/gen.c (genCast): fixed internal error on cast from
7426         pointer to long
7427         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7428         fix for bug #477835 to the z80
7429         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7430         for tracking iCodes in the peephole optimizer for z80
7431
7432 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7433
7434         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7435         the other part of bug #814548
7436         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7437
7438 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7439
7440         * src/SDCCcse.c: fixed part of bug #814548
7441
7442 2003-09-28  Borut Razem <borut.razem AT siol.net>
7443
7444         * src/asm.c: rewrite of printILine() to use temporary file instead
7445           a pipe
7446         * src/xa51/main.c: commented out declaration of int rewinds
7447
7448 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7449
7450         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7451
7452 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7453
7454         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7455         * src/asm.c (printILine): Fixed bug #811015
7456
7457 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7458
7459         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7460         freeing.
7461
7462 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7463
7464         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7465         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7466         to correctly handle general case of AOP_PAIRPTR
7467         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7468
7469 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7470
7471         * src/mcs51/ralloc.c (fillGaps),
7472         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7473         register positioning bug)
7474
7475 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7476
7477         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7478
7479 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7480
7481         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7482         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7483         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7484         (ralloc doesn't intentionally do this now, but perhaps later)
7485         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7486         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7487         register positioning bugs (Fixed bug #762602 and #795325)
7488         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7489         (Fixed bug #808779)
7490         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7491         lines that --i-code-in-asm generates
7492
7493 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7494
7495         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7496         trying to fclose a FILE* that was already closed.
7497
7498 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7499
7500         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7501         of const struct should be treated as if const themselves)
7502
7503 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7504
7505         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7506
7507 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7508
7509         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7510         Unix (/n) and DOS (/r/n) line terminations.
7511
7512 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7513
7514         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7515         bug #613775
7516
7517 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7518
7519         * src/mcs51/gen.c (genFunction, genEndFunction),
7520         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7521         and restore of EA so that stack offsets to parameters are
7522         correct when using both critical and reentrant/stack-auto.
7523         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7524         size (can be triggered in error if sloc is shared between
7525         different sized objects)
7526         * device/include/float.h: fixed macros to explicitly use
7527         unsigned long where needed
7528
7529 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7530
7531         Feature req. 799831: added code to allow nesting of critical functions
7532         * src/mcs51/gen.c (genFunction, genEndFunction)
7533         * src/ds390/gen.c (genFunction, genEndFunction)
7534
7535 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7536
7537         * src/SDCCsymt.c (sclsFromPtr),
7538         * src/SDCCsymt.h,
7539         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7540         support for standard C idiom of memory mapped variables; for
7541         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7542         to xdata int at 0x1234 tempvar = 1.
7543         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7544         provided by Akiya ISHIDA
7545
7546 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7547
7548         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7549         * src/SDCCval.c (constVal): added reduction from int to char
7550         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7551         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7552         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7553         to ignore the sign
7554         * support/regression/tests/shifts.c: fixed
7555
7556 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7557
7558         * src/z80/gen.c (genXor): Fixed bug #805445
7559
7560 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7561
7562         Fixed bug #621531 (const & volatile confusion in the type chain).
7563         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7564         refer to the const or volatile state of the pointer itself.
7565
7566         * src/SDCCast.c
7567         * src/SDCCglue.c
7568         * src/SDCCicode.c
7569         * src/SDCCsymt.c
7570         * src/SDCCval.c
7571         * src/SDCC.y
7572         * src/SDCCsymt.h
7573         * src/pic/gen.c
7574         * src/pic/ralloc.c
7575         * src/pic16/gen.c
7576         * src/pic16/ralloc.c
7577         * support/regression/tests/const.c
7578
7579 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7580
7581         When checking for duplicated modules, use absolute paths
7582         instead of relative paths.  Files changed:
7583
7584         * as/mcs51/lklib.c
7585         * link/z80/lklib.c
7586
7587 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7588
7589         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7590
7591 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7592
7593         * device/include/string.h: added size_t typedef, changed
7594         prototypes to use size_t, eliminated separate reentrant and
7595         non-reentrant declarations, added _memmove declaration
7596         * device/lib/_memcpy.c: changed to use size_t instead of int,
7597         changed /4 to >>2 to avoid division library call
7598         * device/lib/_memcmp.c,
7599         * device/lib/_memset.c,
7600         * device/lib/_strncat.c,
7601         * device/lib/_strncpy.c,
7602         * device/lib/_strncmp.c: changed to use size_t instead of int
7603         * device/lib/_memmove.c: new file (fixed bug #772294)
7604         * device/lib/Makefile.in: added _memmove.c
7605         * device/lib/z80/asm_strings.s: fixed bug #772290
7606         * support/regression/tests/bitfields.c: attempt to fix host assertion
7607         failure on amd64-unknown-linux2.2
7608
7609 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7610
7611         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7612         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7613         * as/z80/asmain.c (main): fixed bug #801766
7614
7615 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7616
7617         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7618         compilers
7619
7620 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7621
7622         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7623         reported in bug #800609
7624
7625 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7626
7627         * Top header beautifications in src/pic16 directory:
7628           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7629           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7630           pcoderegs.h, ralloc.c, ralloc.h
7631         * main.c: added top header and GPL license notice
7632         * pcode.c: fixed the if-conditional warning
7633
7634 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7635
7636         * device/lib/_mullong.c: replaced int by short for gcc
7637
7638 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7639
7640         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7641         and JUMPTABLE iCodes properly now (worked by accident before)
7642         * src/mcs51/gen.c (leftRightUseAcc),
7643         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7644         iCode properly now. Use getSize instead of nRegs since a & b
7645         aren't part of the nRegs tally.
7646
7647 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7648
7649         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7650         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7651           before instructions that use the _STATUS register
7652
7653 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7654
7655         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7656         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7657         fetching of the pointer
7658         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7659         copied from genNearPointerSet()
7660         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7661         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7662         If they pop r0/r1 they must be called in the opposite order than aopOp().
7663         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7664         (resp. --stack-auto), prepared for --xstack
7665
7666 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7667
7668         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7669
7670 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7671
7672         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7673         these ports have their own __sdcc_external_start()
7674
7675 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7676
7677         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7678         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7679         type for bits was changed. It resulted in bit variables becoming
7680         global, which is not permitted in PIC 14 assembly output.
7681
7682 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7683
7684         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7685
7686 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7687
7688         Z80 and MCS51 linkers complaint if a public symbol is defined
7689         in more than one library module:
7690
7691         * as/mcs51/lklib.c
7692         * link/z80/lklib.c
7693         * as/mcs51/Makefile.in
7694
7695 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7696
7697         A few small changes that speed up the peephole optimizer.
7698
7699         * src/SDCCpeeph.c
7700
7701 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7702
7703         Try to make the peephole optimizer smarter by maintaining
7704         an association between the assembly source code and the
7705         iCodes that originated them. Put this information to use
7706         with a new peephole rule condition "notVolatile" so that
7707         the rules can be aggressive yet still safe.
7708
7709         * src/SDCCpeeph.c
7710         * src/SDCCpeeph.h
7711         * src/mcs51/gen.c
7712         * src/mcs51/peeph.def
7713
7714 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7715
7716         Fixed bug #741761
7717
7718         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7719         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7720         if the left or right operand symbols have the accuse flag set.
7721
7722 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7723
7724         Changed the type of the result of the ! (NOT) operator to char;
7725         previously it returned the same type as the source. This allows
7726         us to eliminate all the genFloatNot functions (all of its target
7727         implementations were very buggy) since !float can use the same
7728         code as !long now.
7729
7730         * src/SDCCicode.c (ast2iCode): ! returns char
7731         * src/mcs51/gen.c (genNot, genNotFloat),
7732         * src/ds390/gen.c (genNot, genNotFloat),
7733         * src/z80/gen.c (genNot, genNotFloat),
7734         * src/pic/gen.c (genNot, genNotFloat),
7735         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7736
7737 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7738
7739         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7740         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7741            during interrupts. Ensure WSAVE is located at a shared bank address.
7742         2. Fixed page selection in some places
7743         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7744            the registers name strings.
7745         4. Fixed "signed / unsigned compare" compiler warnings.
7746         5. The PIC port manages its own allocation of the general purpose
7747            registers, but makes no attempt to reuse them. As a result when
7748            compiling it soon runs out of general purpose registers. Some
7749            additional code was added to the files pcode.c and device.c to walk
7750            through the function call tree and rename the registers so that they
7751            get reused.
7752
7753         * src/pic/device.c
7754         * src/pic/gen.c
7755         * src/pic/glue.c
7756         * src/pic/pcode.c
7757         * src/pic/pcode.h
7758         * src/pic/ralloc.c
7759         * src/pic/ralloc.h
7760         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7761         genPlus() & genMinus() when the result is the same as left or right
7762
7763 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7764
7765         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7766
7767 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7768
7769         Made bitfield a distinct type from bit so that bitfields
7770         convert as per ANSI C and bits retain their traditional
7771         boolean style behaviour. Implemented bitfield support in
7772         the z80 port.
7773
7774         * src/SDCCsymt.h,
7775         * src/SDCCsymt.c,
7776         * src/SDCCast.c,
7777         * src/cdbFile.c,
7778         * src/mcs51/gen.c,
7779         * src/ds390/gen.c: bit v bitfield split
7780         * src/z80/gen.c: New support for bitfields
7781         * support/regression/tests/bitfields.c: reenabled z80,
7782         added more tests
7783
7784 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7785
7786         Rules 246.x, 247.x relate to bitfields, the others speed up
7787         access to xdata mapped I/O devices.
7788
7789         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7790
7791 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7792
7793         Cleaned up genPackBits and genUnpackBits and added two helper
7794         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7795         for literal assignments in genPackBits (thanks to Frieder for
7796         reminding me).
7797
7798         * src/mcs51/gen.c
7799         * src/ds390/gen.c
7800
7801 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7802
7803         Fixed bug #748310 (pointer to function type mishandled when the
7804         function name is omitted). Also fixed a SIGSEGV when a function
7805         attribute (reentrant, etc) is used on a non-function or on a
7806         function but misplaced before the parameter list.
7807
7808         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7809         bug #748310
7810         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7811         * support/Util/SDCCerr.h,
7812         * support/Util/SDCCerr.c: Added func attr misuse error msg
7813
7814 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7815
7816         Fixed bug #787649 by anonymous
7817         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7818         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7819
7820 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7821
7822         Fixed numerous bitfield problems.
7823
7824         * src/SDCC.y: More bitfield related error checking
7825         * src/SDCCsymt.h,
7826         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7827         * support/Util/SDCCerr.h,
7828         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7829         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7830         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7831         * support/regression/tests/bitfields.c: tests added
7832
7833 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7834
7835         Made the constant following the "interrupt" keyword optional. If
7836         omitted, the function will not automatically be given an entry
7837         in the interrupt vector table (similar to #pragma NOIV, but
7838         less syntacticly kludgy). The interrupt number is also now
7839         range checked. Also fixed a bug in the high order bit example
7840         in the manual.
7841
7842         * src/SDCC.y
7843         * src/SDCCmem.c
7844         * src/SDCCglue.c
7845         * src/SDCCsymt.h
7846         * support/Util/SDCCerr.c
7847         * support/Util/SDCCerr.h
7848         * doc/sdccman.lyx
7849
7850 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7851
7852         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7853         * src/SDCCicode.c (operandOperation): rewritten some ops
7854         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7855         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7856         other type
7857         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7858         be re-activated by defining REDUCE_LITERALS)
7859         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7860         unsigned, but are signed by default
7861         * src/SDCCval.c (constVal): rearranged
7862         * src/SDCCval.c (valMod): preliminary fix
7863         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7864         * support/regression/literalop.c: added, work in progress
7865
7866 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7867
7868         Generate warnings for useless declarations like "char data;"
7869         that don't do what new users expect.
7870
7871         * src/SDCC.y
7872         * support/Util/SDCCerr.h
7873         * support/Util/SDCCerr.c
7874
7875 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7876
7877         * src/SDCCval.c (valMult): fix overflow detection of negative int
7878
7879 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7880
7881         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7882
7883         Changes to support big endian targets:
7884
7885         * src/ports.h
7886         * src/SDCCglue.c
7887         * src/avr/main.c
7888         * src/ds390/main.c
7889         * src/izt/i186.c
7890         * src/mcs51/main.c
7891         * src/pic/main.c
7892         * src/pic16/main.c
7893         * src/xa51/main.c
7894         * src/z80/main.c
7895
7896 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7897
7898         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7899         * device/lib/time.c: fixed warning "integer overflow in expression"
7900
7901 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7902
7903         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7904         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7905         constants are unsigned; added recognition of "u" flag for unsigned
7906         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7907         * src/SDCCval.c (valDiv, valMod): fixed signdness
7908         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7909         signedness of modulo, left and right shift
7910         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7911         * support/Util/SDCCerr.h: added warning W_INT_OVL
7912         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7913         * src/SDCCast.c (ast_print): improved output of constants
7914
7915 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7916
7917         Fixed some warnings when building with MSVC:
7918
7919         * as\mcs51\asdata.c
7920         * as\z80\asdata.c
7921         * as\mcs51\asm.h
7922         * as\z80\asm.h
7923         * link\z80\aslink.h
7924         * link\z80\lkdata.c
7925         * link\z80\lkeval.c
7926         * link\z80\lkgb.c
7927         * link\z80\lkihx.c
7928         * link\z80\lks19.c
7929         * link\z80\lksym.c
7930         * support\cpp2\cpplib.c
7931         * src\ds390\gen.c
7932         * src\mcs51\gen.c
7933
7934 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7935
7936         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7937
7938 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7939
7940         * support\librarian\clean.mk: Do not remove Makefile.
7941         * support\librarian\Makefile: added.
7942
7943 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7944
7945         Added librarian to MSVC build:
7946         * all.dsp
7947         * sdcc.dsw
7948         * support\librarian\librarian.dsp
7949
7950         'configure' not needed for librarian, removed:
7951         * support\librarian\configure
7952         * support\librarian\configure.in
7953         * support\librarian\config_in.h
7954         * support\librarian\Makefile.in
7955
7956         Hopefully these ones built the librarian and the rest of sdcc properly:
7957         * Makefile
7958         * Makefile.common.in
7959
7960         Messed up 'configure', so revert to previous version:
7961         * configure
7962         * configure.in
7963
7964 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7965
7966         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7967         there, while the mantissa of a double is "only" 53 bits wide.
7968
7969 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7970
7971         Adding sdcclib to the build.  MSVC project coming soon.
7972         Files added/changed:
7973
7974         * support\librarian\clean.mk
7975         * support\librarian\configure
7976         * support\librarian\configure.in
7977         * support\librarian\config_in.h
7978         * support\librarian\Makefile.bcc
7979         * support\librarian\Makefile.in
7980         * support\librarian\sdcclib.c
7981         * Makefile.bcc
7982         * Makefile
7983         * Makefile.common.in
7984         * configure
7985         * configure.in
7986
7987 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7988
7989         Linker now complaints if linked modules have conflicting options, for
7990         example, one compiled using --model-large and another one compiled with
7991         --model-small.  The following files were modified:
7992
7993         * as\mcs51\asdata.c
7994         * as\mcs51\aslink.h
7995         * as\mcs51\asm.h
7996         * as\mcs51\asmain.c
7997         * as\mcs51\asout.c
7998         * as\mcs51\i51pst.c
7999         * as\mcs51\lkdata.c
8000         * as\mcs51\lklibr.c
8001         * as\mcs51\lkmain.c
8002         * as\z80\asdata.c
8003         * as\z80\asm.h
8004         * as\z80\asmain.c
8005         * as\z80\asout.c
8006         * as\z80\z80pst.c
8007         * link\z80\aslink.h
8008         * link\z80\lkdata.c
8009         * link\z80\lklibr.c
8010         * link\z80\lkmain.c
8011         * src\SDCCglue.c
8012
8013 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8014
8015         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8016         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8017
8018 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8019
8020         * src/z80/mappings.i: fix _mul[us][int,long] entries
8021
8022 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8023
8024         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8025
8026 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8027
8028         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8029         * support/regression/tests/bitopcse.c: added
8030         fixed warning:
8031         * src/avr/gen.c:
8032         * src/pic/gen.c:
8033         * src/pic16/gen.c:
8034         * src/z80/gen.c:
8035         * src/xa51/gen.c:
8036
8037 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8038
8039         added support for new library format to z80, gbz80 linkers:
8040         *link/z80/aslink.h
8041         *link/z80/lklex.c
8042         *link/z80/lklib.c
8043         *link/z80/lklist.c
8044
8045 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8046
8047         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8048         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8049
8050 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8051
8052         added DUMMY_READ_VOLATILE:
8053         * src/SDCC.y:
8054         * src/avr/gen.c:
8055         * src/xa51/gen.c:
8056         * src/z80/gen.c:
8057         * src/pic/gen.c:
8058         * src/pic16/gen.c:
8059         * src/mcs51/gen.c:
8060         * src/ds390/gen.c:
8061         * src/SDCCcse.c (algebraicOpts): many improvements
8062         * src/SDCCcse.h: removed algebraicOpts()
8063         * src/SDCCicode.c (picDummyRead): added
8064
8065 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8066
8067         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8068         "Insufficient space in data memory".
8069
8070 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8071
8072         * src/mcs51/gen.c: fixed bug #771358
8073         * src/z80/gen.c: fixed bug #759087
8074
8075 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8076
8077         * src/pic16/glue.c: minor cleanup by Vangelis
8078
8079 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8080
8081         * device/include/regc515c.h: fixed #758477
8082         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8083         * device/lib/_gptrput.c: saved a few bytes
8084         * my tab spacing is 8, yours too?)
8085         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8086         * device/lib/serial.c: process RX bytes earlier than TX bytes
8087         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8088
8089 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8090
8091         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8092
8093 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8094
8095     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8096
8097 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8098
8099         * device/lib/Makefile.in: bad fix, reverted to 1.43
8100
8101 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8102
8103         * device/lib/Makefile.in: added missing z80 object files
8104
8105 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8106
8107         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8108         pic16 progress by Vangelis:
8109         * src/SDCCglobl.h:
8110         * src/SDCCmain.c:
8111         * src/pic/Makefile:
8112         * src/pic:
8113         * pic/Makefile:
8114         * pic16/device.c:
8115         * pic16/device.h:
8116         * pic16/gen.c:
8117         * pic16/gen.h:
8118         * pic16/genarith.c:
8119         * pic16/glue.c:
8120         * pic16/main.c:
8121         * pic16/pcode.c:
8122         * pic16/pcode.h:
8123         * pic16/pcodepeep.c:
8124         * pic16/peeph.def:
8125
8126 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8127
8128     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8129
8130 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8131
8132     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8133     added gbz80 build to MSVC project.
8134     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8135     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8136     from 8051 stuff and setup so it links using a .lnk file.
8137
8138 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8139
8140     * support/librarian/sdcclib.c: sdcc librarian.
8141     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8142     with sdcclib.
8143
8144 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8145
8146     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8147
8148 2003-07-02  Borut Razem <borut.razem AT siol.net>
8149
8150         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8151         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8152         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8153         src/xa51/main.c, src/z80/main.c:
8154         virtualization of glue() function: each port has it's own glue function,
8155         which is accessed by do_glue function pointer in PORT.general structure
8156
8157 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8158
8159         * DS800C400 fun, improved ROM interface and tinibios.
8160
8161 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8162
8163         * More support for DS80C400. Now includes beginning of interface to ROM.
8164
8165 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8166
8167         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8168
8169 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8170
8171         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8172
8173 2003-06-19  Borut Razem <borut.razem AT siol.net>
8174
8175         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8176
8177 2003-06-19  Borut Razem <borut.razem AT siol.net>
8178
8179         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8180         fixed Z80 port - crt0.o: cannot open.
8181
8182 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8183
8184         * support/Util/MySystem.c (merge_command): revert bad fix
8185
8186 2003-06-18  Borut Razem <borut.razem AT siol.net>
8187
8188         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8189
8190 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8191
8192         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8193         option --use-stdout sends errors to stdout instead of stderr.
8194
8195 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8196
8197         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8198
8199 2003-06-15  Borut Razem <borut.razem AT siol.net>
8200
8201         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8202         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8203         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8204         fixed width array of pointers replaced with sets;
8205         multiple include and lib paths ared transferred to preprocessor and linker
8206         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8207         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8208         fixed width array of pointers
8209         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8210         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8211         fixupPath(), getPathDifference()
8212         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8213         fixed width array of pointers
8214
8215 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8216
8217         * src/pic16/ralloc.c: fix warnings
8218         * src/pic16/pcode.c: fix warning
8219
8220 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8221
8222          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8223         know all the details, but essentially this set of changes enable
8224         the pic16 port to generate movff instructions and generate assembler
8225         directives,
8226         * src/SDCCmain.c:
8227         * src/pic16/gen.c:
8228         * src/pic16/glue.c:
8229         * src/pic16/pcode.c:
8230         * src/pic16/device.c:
8231         * src/pic16/main.c:
8232         * src/pic16/pcode.h:
8233         * src/pic16/pcoderegs.c:
8234         * src/pic16/ralloc.c:
8235         * src/pic16/ralloc.h:
8236
8237 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8238
8239         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8240         added option --vc, so sdcc errors and warnings are compatible with
8241         Microsoft Visual Studio.
8242
8243 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8244
8245         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8246           device/lib/libfloat.lib: added atof function.
8247
8248 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8249
8250         * doc/sdccman.lyx: updated to Lyx 1.3
8251         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8252         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8253         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8254
8255 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8256
8257         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8258
8259 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8260
8261         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8262           additions to the "related tools/documentation" section
8263
8264 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8265
8266         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8267
8268 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8269
8270         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8271         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8272
8273 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8274
8275         * doc/sdccman.lyx: fix double dash and other minor things
8276         * doc/Makefile: fix double dash
8277
8278 2003-05-28  Karl Bongers(patches from Martin Helmling)
8279         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8280           condition and ignore commands.
8281
8282 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8283
8284         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8285           is in parts still quite out of date, I did changes as far as I felt makes sense
8286           for a non-native english speaker.
8287           Please feel free to add to the manual or to correct my changes.
8288         * doc/Makefile: undid touching the date of intermediate tex files.
8289
8290 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8291
8292         * doc/sdccman.lyx: Manual has an index now
8293
8294 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8295
8296         Finalize muluint/mulsint and mululong/mulslong merging:
8297         * device/lib/_mulint.c
8298         * device/lib/_mullong.c
8299         * device/lib/gbz80/mul.s
8300         * device/lib/gbz80/stubs.s
8301         * device/lib/z80/mul.s
8302         * device/lib/z80/stubs.s
8303         * src/SDCCsymt.c (initCSupport)
8304
8305 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8306
8307         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8308         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8309           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8310           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8311           instead of /Zm500.
8312
8313 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8314
8315         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8316           the regression tests I'm not brave enough to enable 245.b, 245.c
8317         * doc/sdccman.lyx: added latex preamble for hyperref package.
8318           Using pdflatex this will give you a hyperlinked pdf file with
8319           bookmarks. (prepend '%' before /usepackage if this breaks something)
8320
8321 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8322
8323          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8324
8325 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8326
8327         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8328
8329 2003-05-21    <johan AT balder>
8330
8331         * src/SDCCglue.c (printIval): fixed bug #739934
8332
8333 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8334
8335         Applied patch from bug 737905 (renamed yylineo to mylineno):
8336         * src/altlex.c
8337         * src/SDCCast.c
8338         * src/SDCglobl.h
8339         * src/SDCC.lex
8340         * src/SDCCsymt.c
8341         * src/SDCCval.c
8342         * src/pic16/pcode.c: Cleaned warnings
8343         * src/pic16/pcodeflow.c: Cleaned warnings
8344         * src/pic16/pcoderegs.c: Cleaned warnings
8345
8346 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8347
8348         * src/pic16/pcode.c: Cleaned warnings
8349         * src/pic16/pcodepeep.c: Cleaned warnings
8350         * src/pic16/ralloc.c: Cleaned warnings
8351
8352 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8353
8354         * doc/sdccman.lyx: fixed bug 739745
8355         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8356
8357 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8358
8359         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8360         it can be defined with CFLAGS when running configure
8361         * src/SDCCmain.c: fixed compiling + linking with object files
8362
8363 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8364
8365         * configure.in: configure for pic16 port,
8366             added --disable-pic16-port
8367         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8368         * src/SDCCmain.c: linkOptions is changed to set *,
8369             added if/endif conditional macros to remove options help
8370             messages from optionsTable when a port is not configured, added
8371             support for the PIc16 port in the ports table, when executing
8372             the compiler with no port specified on command line, a default
8373             port is selected with the new macro DEFAULT_PORT which is
8374             defined in port.h, in setDefaultOptions() linkOptions is removed
8375             from initialization assignment, since now it is a set,
8376             parseCmdLine uses setParseWithComma for linkOptions, in
8377             linkEdit() linkOptions are accessed with new function indexSet()
8378             which returns the i'th item of a set variable. See SDCCset.c, in
8379             linkEdit() when calling buildCmdLine(), added linkOptions as
8380             last argument. Now users can pass arguments to gplink via the
8381             -Wl option, main() uses pic16glue() to glue up pic16 programs
8382         * src/SDCCpeeph.c: various changes to support pic16
8383         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8384             return the i'th item of the set
8385         * src/SDCCset.h: added function prototype for indexSet()
8386         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8387         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8388         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8389             added macro DEFAULT_PORT
8390         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8391         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8392             generated
8393         * src/pic16/glue.c: commented out some error producing lines
8394         * src/pic16/main.c: __config directives are commented out to stop
8395             gpasm complaining and test the linkage with gplink, _linkCmd and
8396             _asmCmd changed to be more gplink and gpasm friendly
8397         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8398             produced an error when parsed, peep rule 12 is added to utilize
8399             movff, but it is commented out since the pCode does not support
8400             yet a command with 2 address arguments
8401
8402 2003-05-18    <johan AT balder>
8403
8404         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8405         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8406 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8407
8408         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8409   Added feature to script commands from file.
8410
8411 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8412
8413         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8414         * src/SDCCutil.c: include ctype.h for win32
8415
8416 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8417
8418         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8419
8420 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8421
8422         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8423   Fixed so you can set breakpoints prior to run, run does not stop
8424   on entry now.  Add tbreak.  Other enhancements and fixes for use
8425   with ddd.
8426
8427 2003-05-12  Borut Razem <borut.razem AT siol.net>
8428
8429         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8430
8431 2003-05-11  Borut Razem <borut.razem AT siol.net>
8432
8433         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8434         the path of bin directory, so that PATH is the only env. variable, which has to be set
8435         in case of standard installation.
8436         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8437         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8438         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8439
8440 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8441
8442         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8443         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8444         temp files are in the port dir; clean the gen/test directory when
8445         generating new test.c
8446         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8447         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8448         * support/regression/tests/zeropad.c: added
8449
8450 2003-05-09    <johan AT balder>
8451
8452         * src/SDCCglue.c: fixed bug #597940
8453
8454 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8455
8456         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8457   cache sfr, optimize next,step, fix off by one sourceline,
8458   support ddd list function.
8459         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8460
8461 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8462
8463         * support/regression/HTMLgen.py: added compare_s2f()
8464         * support/regression/Makefile: redo 1.27
8465         * support/regression/generate-cases.py: redo 1.5
8466
8467 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8468
8469         * support/regression/tests/float.c: workaround 33 bit hex constant
8470         * support/regression/tests/simplefloat.c: fix division for host
8471
8472 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8473
8474         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8475         that tame's the PIC's over-aggressive optimizer.
8476
8477 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8478
8479          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8480          support for MSVC.
8481
8482 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8483
8484         Initial support for DS80C400. "Hello world" runs on TINIm400
8485         (with polled I/O).
8486
8487 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8488
8489          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8490          * Some notes on ddd usage added in debugger/README
8491          Martin Helmling adding more features and fixes for ddd GUI debugger.
8492          Code added for nexti, stepi, up, down, and other adjustments.
8493
8494 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8495
8496         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8497         * src/pic/peeph.def Added two rules to optimize carry manipulation
8498         * src/pic/* removed debug printfs
8499
8500 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8501
8502         * debugger/mcs51/cmd.c: added header newalloc.h
8503
8504 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8505
8506         * as/Makefile: new EXEEXT
8507         * as/z80/Makefile: remove trailing slash of BUILDIR
8508         * as/z80/clean.mk: new EXEEXT
8509         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8510         * support/cpp2/Makefile.in: new EXEEXT
8511         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8512
8513 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8514
8515         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8516         EXEEXT was introduced to fix all related problems with targets
8517         "clean", "install" and "uninstall"; a couple of further flaws
8518         especially with "clean" have been fixed too
8519         * as/mcs51/Makefile.in
8520         * as/mcs51/clean.mk
8521         * as/z80/Makefile
8522         * Makefile
8523         * clean.mk
8524         * debugger/mcs51/Makefile.in
8525         * debugger/mcs51/clean.mk
8526         * link/z80/Makefile
8527         * link/z80/Makefile.in
8528         * link/z80/clean.mk
8529         * link/Makefile
8530         * packihx/Makefile.in
8531         * packihx/clean.mk
8532         * sim/ucsim/Makefile
8533         * sim/ucsim/clean.mk
8534         * sim/ucsim/avr.src/Makefile.in
8535         * sim/ucsim/avr.src/clean.mk
8536         * sim/ucsim/s51.src/Makefile.in
8537         * sim/ucsim/s51.src/clean.mk
8538         * sim/ucsim/xa.src/Makefile.in
8539         * sim/ucsim/xa.src/clean.mk
8540         * sim/ucsim/z80.src/Makefile.in
8541         * sim/ucsim/z80.src/clean.mk
8542         * sim/ucsim/main_in.mk
8543         * sim/ucsim/packages_in.mk
8544         * sim/ucsim/gui.src/Makefile.in
8545         * sim/ucsim/gui.src/serio.src/Makefile.in
8546         * sim/ucsim/gui.src/serio.src/clean.mk
8547         * src/Makefile.in
8548         * src/clean.mk
8549         * support/cpp2/Makefile.in
8550         * support/cpp2/clean.mk
8551         * support/makebin/Makefile
8552         * support/makebin/clean.mk
8553         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8554         * doc/sdccman.lyx: --program-suffix no longer needed
8555
8556 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8557
8558          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8559          Martin Helmling added support for ddd GUI debugger.
8560          Code added to display assembly, set variables, and other commands
8561          to interface to ddd.
8562
8563 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8564
8565         * as/Makefile: fix target clean
8566         * as/clean.mk: fix target clean
8567         * as/z80/clean.mk: fix target clean
8568
8569 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8570
8571         * Makefile.common.in: added  AT EXEEXT AT
8572         * configure.in: removed all mingw32 stuff
8573         * configure: rebuilt from configure.in
8574         * doc/sdccman.lyx: updated section "installation"
8575         * support/scripts/sdcc_mingw32: adapted to configure
8576         * support/scripts/sdcc_cygwin_mingw32: added
8577
8578 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8579
8580         * src/pic Added object file support for the PIC port
8581         * src/pic Applied patch from Craig Franklin (this started the object file support)
8582         * src/regression Updated the PIC regression tests for object files
8583
8584 2003-04-20  Borut Razem <borut.razem AT siol.net>
8585
8586         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8587           lklex.c: In function `getfid':
8588           lklex.c:203: warning: array subscript has type `char'
8589         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8590           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8591         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8592           stack handling macros
8593
8594 2003-04-19  Borut Razem <borut.razem AT siol.net>
8595
8596         * "handling space characters in file path" task:
8597         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8598         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8599         * support/Util/MySystem.h: make it self-sufficient
8600         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8601           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8602           handling space characters in file path
8603         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8604           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8605         * support/Util/MySystem.c: handling space characters in executable's path
8606
8607 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8608
8609         * as/z80/Makefile: fix permanent rebuild of z80
8610         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8611         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8612
8613 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8614
8615         * src/SDCCopt.c: add special case optimization to replace modulo by
8616           a power of two with a bitwise AND.
8617
8618 2003-04-18    <johan AT balder>
8619
8620         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8621
8622 2003-04-17    <johan AT balder>
8623
8624         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8625         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8626
8627 2003-04-13  Borut Razem <borut.razem AT siol.net>
8628
8629         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8630         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8631           fixed mingw problem in adl_NORMALIZE_PATH
8632
8633 2003-04-12  Borut Razem <borut.razem AT siol.net>
8634
8635         * fixed "#pragma SAVE/RESTORE can not be nested":
8636         * src/SDCC.lex: reworked pragma handling functions
8637         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8638         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8639
8640 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8641
8642         * src/SDCCutil.c (pathEquivalent): defined but not used
8643         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8644         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8645         * configure: rebuilt from configure.in
8646         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8647         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8648         * device/include/Makefile.in: replace sdcc_datadir
8649         * device/lib/Makefile.in: replace sdcc_datadir
8650         * Makefile.common.in: add LDFLAGS from configure
8651         * packihx/Makefile.in: use LDFLAGS
8652         * src/Makefile.in: use LDFLAGS
8653         * support/cpp2/Makefile.in: add LDFLAGS from configure
8654         * support/makebin/Makefile: use LDFLAGS
8655         * .version: bumped version number to 2.3.5
8656
8657 2003-04-12  Borut Razem <borut.razem AT siol.net>
8658
8659         * completed "different paths" task:
8660         * src/SDCCmacro.c: fixed bug in handling quotes
8661         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8662         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8663
8664 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8665
8666         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8667
8668 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8669
8670         * ds390/gen.c ds390/peeph.def: fix bug 706781
8671
8672 2003-04-11  Borut Razem <borut.razem AT siol.net>
8673
8674         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8675
8676 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8677
8678         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8679         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8680          set - this bit used to not be set...).
8681         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8682           bad code in PIC Port
8683         * src/regression/and2.c added to test bug 609268
8684         * src/regression/Makefile added and2.c to regression test
8685
8686
8687 2003-04-08    <johan AT CP255758-A>
8688
8689         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8690         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8691         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8692
8693 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8694
8695         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8696         fix bug #487815
8697         * support/cpp2/Makefile.in: fix bug #487815
8698         * configure: rebuilt from configure.in
8699         * Makefile.common.in: docdir changed, new path suffixes
8700         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8701         * sdcc_vc_in.h: reflect changes from sdccconf.h
8702         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8703         * src/SDCCutil.h: remove BINDIR hack
8704         * doc/sdccman.lyx: update new path hierarchy
8705
8706 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8707
8708         * src/SDCCpeeph.c: added okToRemoveSLOC test
8709
8710 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8711
8712         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8713
8714 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8715
8716         * src/SDCCpeeph.c: added labelIsReturnOnly test
8717         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8718
8719 2003-04-05    <johan AT balder>
8720
8721         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8722         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8723         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8724         * src/SDCCast.c: fixed a warning
8725         * src/SDCCast.h: fixed a warning
8726         * src/SDCCicode.c (operandFromAst): fixed a warning
8727
8728 2003-04-04    <johan AT balder>
8729
8730         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8731         * src/SDCCast.c (decorateType): fixed bug #715076
8732         * src/SDCC.y: fixed bug #702907
8733
8734 2003-04-03    <johan AT balder>
8735
8736         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8737         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8738         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8739         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8740         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8741
8742 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8743
8744         * _decdptr.c: fix return values
8745         * _gptrget.c: fix return values
8746         * _gptrgetc.c: fix return values
8747         * _gptrput.c: fix return values
8748         * _mulint.c: fix return values
8749         * as/z80/Makefile: fix 'make -j' problem
8750
8751 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8752
8753         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8754         * configure.in: big cleanup, updated to autoconf 2.5x
8755         * configure: rebuilt from configure.in
8756         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8757         * sdcc_vc_in.h: reflect changes from sdccconf.h
8758         * doc/Makefile: fixed a flaw in "make install"
8759
8760 2003-04-02    <johan AT balder>
8761
8762         * src/ds390/gen.c (genCmp): no comments
8763         * src/mcs51/gen.c (genCmp): no comments
8764         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8765         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8766
8767 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8768
8769         * support/regression/generate-cases.py: place generated file in given sub directory
8770         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8771         * support/regression/Makefile: improvements for 'make -j';
8772         side effect: it's simpler and faster now
8773
8774 2003-03-31  Borut Razem <borut.razem AT siol.net>
8775
8776         * src/z80/main.c: link-{port} and as-{port} defined without path
8777         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8778
8779 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8780
8781         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8782
8783 2003-03-30  Borut Razem <borut.razem AT siol.net>
8784
8785         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8786           changed type of list parameter to set
8787         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8788         * src/port.h: changed type of do_assemble() parameter to set
8789         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8790           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8791           definition of "cppoutfilename" macro with NULL value in preProcess()
8792         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8793         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8794         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8795           replaced with set *binPathSet
8796         * shash_add() deallocates the item, if allready exsists, before adding the new one
8797         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8798
8799 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8800
8801         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8802           a nested for loop bug in the PIC port
8803         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8804           for loops
8805
8806 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8807
8808         * support/Util/dbuf.h: remove C++ stuff to make it portable
8809
8810 2003-03-28  Borut Razem <borut.razem AT siol.net>
8811
8812         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8813           literal strings in stringLiteral()
8814         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8815         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8816           to the project
8817
8818 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8819
8820         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8821
8822 2003-03-26    <johan AT balder>
8823
8824         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8825         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8826         * src/SDCCast.c (decorateType): fixed " -v < 3"
8827
8828 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8829
8830         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8831         Added Lenny Story's debug infrastructure changes:
8832         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8833         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8834         * src/cdbFile.c: added
8835         * src/SDCCdebug.c: added
8836         * src/SDCCdebug.h: added
8837         * src/SDCCast.c (createFunction)
8838         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8839         * src/SDCCmain.c (parseCmdLine, main)
8840         * src/SDCCmem.c (redoStackOffsets)
8841         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8842         * src/SDCCsymt.h
8843         * src/common.h
8844         * src/avr/gen.c (genAVRCode)
8845         * src/ds390/gen.c (gen390Code)
8846         * src/mcs51/gen.c (gen51Code)
8847         * src/pic/gen.c (genpic14Code)
8848         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8849         * src/xa51/gen.c (genXA51Code)
8850         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8851
8852 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8853
8854         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8855         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8856
8857 2003-03-22    <johan AT balder>
8858
8859         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8860
8861 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8862
8863         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8864         * doc/cdbfileformat.lyx: added, written by Lenny Story
8865         * doc/Makefile: added cdbfileformat.lyx
8866         * doc/clean.mk: added cdbfileformat.lyx
8867
8868 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8869
8870         * src/mcs51/peeph.def: fix bug #705773
8871
8872 2003-03-20    <johan AT balder>
8873
8874         An sfr/sbit can have an "at #" AND an initializer
8875         * src/SDCCsymt.c (checkSClass):
8876         * src/SDCCmem.c (allocGlobal):
8877         * src/SDCCmem.c (allocLocal):
8878         * src/SDCCast.c (createBlock):
8879
8880 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8881
8882         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8883
8884 2003-03-16    <johan AT balder>
8885
8886         Undid the hackup of const and volatile, the problem is much bigger
8887         * src/SDCC.y:1.65
8888         * src/SDCCast.c:1.171
8889         * src/SDCCglue.c:1.138
8890         * src/SDCCicode.c:1.146
8891         * src/SDCCsymt.c:1.150
8892         * src/SDCCval.c:1.65
8893
8894 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8895
8896         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8897         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8898
8899 2003-03-13    <johan AT balder>
8900
8901         Hackup const and volatile modifiers in type chains a bit:
8902         * src/SDCC.y:1.63
8903         * src/SDCCast.c:1.169
8904         * src/SDCCglue.c:1.136
8905         * src/SDCCicode.c:1.143
8906         * src/SDCCsymt.c1.146
8907         * src/SDCCsymt.h1.59
8908         * src/SDCCval.c:1.63
8909
8910 2003-03-12    <johan AT balder>
8911
8912         * src/SDCCBBlock.h: more LRH debugging junk
8913         * src/SDCCcflow.h: more LRH debugging junk
8914         * src/SDCCloop.c: more LRH debugging junk
8915         * src/SDCC.y (struct_declaration): fixed bug #697590
8916         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8917         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8918         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8919
8920 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8921         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8922         test function names must now match exactly).
8923         * src/SDCCcse.c: added special case in findCheaperOp to allow
8924         extending a short integer. Makes less awful code for bug 700121 test case.
8925
8926 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8927
8928         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8929         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8930
8931 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8932
8933         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8934         actually called (operandsNotEqual() was called for all
8935         operandsNotEqualX tests).
8936
8937 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8938
8939         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8940         with shorter literals. Fixes bug 700121.
8941
8942 2003-03-11    <johan AT balder>
8943
8944         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8945
8946 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8947
8948         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8949         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8950
8951 2003-03-10  Borut Razem <borut.razem AT siol.net>
8952
8953         * src/SDCCmain.c: pipe preprocessor's output
8954         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8955         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8956         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8957         which closes all pipes in pipeSet set
8958         * src/SDCCset.c: free deleted item in function deleteSetItem()
8959         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8960         moved from z80 to src subproject
8961         * .version: increased version number to 2.3.4
8962
8963 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8964
8965         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8966         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8967         * support/regression/ports/xa51/spec.mk: fix typo
8968
8969 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8970
8971         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8972
8973 2003-03-09  Borut Razem <borut.razem AT siol.net>
8974
8975         * src/SDCCmain.c: pipe preprocessor's output
8976         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8977         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8978         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8979         which closes all pipes in pipeSet set
8980         * src/SDCCset.c: free deleted item in function deleteSetItem()
8981         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8982         moved from z80 to src subproject
8983
8984 2003-03-09  Borut Razem <borut.razem AT siol.net>
8985
8986         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8987         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8988         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8989         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8990         * src/SDCCglobl.h: unification of WIN32 native definitions
8991
8992 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8993
8994         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8995
8996 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8997
8998         * src/configure.in:   check for endianess (even while cross-compiling)
8999         * src/configure:      check for endianess (even while cross-compiling)
9000         * src/configure_in.h: check for endianess (even while cross-compiling)
9001         * src/avr/gen.c:        remove old endianess stuff
9002         * src/mcs51/gen.c:      remove old endianess stuff
9003         * src/ds390/gen.c:      remove old endianess stuff
9004         * src/pic/gen.c:        remove old endianess stuff
9005         * src/pic/genarith.c:   remove old endianess stuff
9006         * src/pic/glue.c:       fix endianess check
9007         * src/pic16/gen.c:      remove old endianess stuff
9008         * src/pic16/genarith.c: remove old endianess stuff
9009         * src/pic16/glue.c:     fix endianess check
9010         * src/xa51/gen.c:       remove old endianess stuff
9011         * src/z80/gen.c:        fix endianess check
9012         * src/SDCCglue.c:       fix endianess check
9013         * src/ds390/peeph.def: fix bug 700036
9014
9015 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9016
9017         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9018         * src/configure: find appropriate data-types on host for SDCC's int and long
9019         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9020         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9021         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9022
9023 2003-03-07    <johan AT balder>
9024
9025         Just a big NOOP:
9026                 some minor cleanups before the big shot
9027                 OP_DEFS and OP_USES now use Kevin's protection
9028                 new option --nolabelopt
9029
9030         * src/SDCCBBlock.c:
9031         * src/SDCCast.c,:
9032         * src/SDCCcflow.c:
9033         * src/SDCCcse.c:
9034         * src/SDCCicode.c:
9035         * src/SDCCicode.h:
9036         * src/SDCClabel.c:
9037         * src/SDCCloop.c:
9038         * src/SDCCmain.c:
9039         * src/ds390/ralloc.c:
9040         * src/mcs51/ralloc.c:
9041         * src/pic/ralloc.c:
9042         * src/xa51/ralloc.c:
9043         * src/z80/ralloc.c:
9044
9045 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9046
9047         * src/pic/pcode.c (get_op): fix 64 bit warnings
9048         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9049         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9050         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9051         * support/regression/tests/malloc.c: fix 64 bit warnings
9052
9053 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9054
9055         * src/mcs51/gen.c (genMinus): fixed bug 696436
9056
9057 2003-03-02  Borut Razem <borut.razem AT siol.net>
9058
9059         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9060
9061 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9062
9063         * configure.in: test for mkstemp
9064         * sdccconf_in.h: add HAVE_MKSTEMP
9065
9066 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9067
9068         * device/include/ctype.h: removed warning while using --stack-auto
9069         * device/include/malloc.h: removed warning while using --stack-auto
9070         * device/include/string.h: removed warning while using --stack-auto
9071
9072 2003-02-23  Borut Razem <borut.razem AT siol.net>
9073
9074         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9075         because NDEBUG is defined (see man assert)
9076         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9077
9078 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9079
9080         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9081         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9082
9083 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9084
9085         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9086         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9087
9088 2003-02-18    <johan AT balder>
9089
9090         * as/mcs51/asmain.c (asmbl): module can start with a digit
9091         * as/z80/asmain.c (asmbl): module can start with a digit
9092
9093 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9094
9095         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9096         * src/asm.c: fix pipe() for Mingw32
9097
9098 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9099
9100         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9101         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9102         make -V work again; --c1mode reads now from stdin
9103         * doc/sdccman.lyx: added --c1mode
9104         * support/Util/SDCCerr.c: new messages for c1 mode
9105         * support/Util/SDCCerr.h: new messages for c1 mode
9106         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9107
9108 2003-02-15    <johan AT balder>
9109
9110         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9111
9112 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9113
9114         * doc/sdccman.lyx: Environment variables, -o and other minor things
9115
9116 2003-02-14    <johan AT balder>
9117
9118         * src/xa51/main.c: before anyone really tries to use it :)
9119
9120         * Install doc's in share/sdcc/doc
9121         * removed some obsolete files
9122         * Do a proper make distclean and uninstall
9123         M Makefile.common.in
9124         R sdccbuild.sh
9125         M as/Makefile
9126         M device/include/Makefile.in
9127         M device/lib/Makefile.in
9128         M doc/sdccman.lyx
9129         M link/Makefile
9130         M sim/ucsim/doc/Makefile.in
9131         M src/clean.mk
9132         R src/avr/peeph.rul
9133         R src/xa51/peeph.rul
9134         M support/cpp2/Makefile.in
9135         M support/makebin/Makefile
9136
9137
9138 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9139
9140         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9141
9142 2003-02-10  Borut Razem <borut.razem AT siol.net>
9143
9144         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9145         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9146         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9147         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9148         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9149         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9150         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9151         src/z80/Makefile.bcc: Borland Makefile cleanup
9152         * as/z80/Makefile.bcc: Added Borland Makefile
9153         * support/cpp2/borland.h: Removed
9154
9155 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9156
9157         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9158         * src/SDCC.lex: new pragma NOIV
9159         * src/SDCCglobl.h: new pragma NOIV
9160         * src/SDCCmem.c: new pragma NOIV
9161
9162 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9163
9164         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9165
9166 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9167
9168         * src/SDCCmain.c: signal handling is switched off by --debug
9169         * doc/Makefile: small fix for install; use clean.mk again
9170         * doc/clean.mk: clean *.pdf and *.html too
9171
9172 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9173
9174         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9175         * device/lib/printfl.c: fix a ds390 bug by making it portable
9176         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9177         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9178         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9179         * debugger/mcs51/cmd.c: converted multi-line string literals
9180         * sim/ucsim/globals.cc: converted multi-line string literals
9181         * src/SDCCmain.c: introduced signal handler to remove temp files
9182         * doc/Makefile: small tweaks, implement clean
9183         * doc: removed generated files
9184
9185 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9186
9187         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9188         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9189         Address Record is not correctly generated for DS390."
9190
9191 2003-02-02  Borut Razem <borut.razem AT siol.net>
9192
9193         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9194         * as/mcs51/asm.h: fixed compilation with Borland C
9195         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9196         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9197         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9198         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9199         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9200         src/z80/Makefile.bcc: delete $(LIB) only if exist
9201         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9202
9203 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9204
9205         * device/include/malloc.h: introduced NULL
9206         * device/include/string.h: introduced NULL
9207         * device/include/stdlib.h: introduced NULL
9208         * device/lib/_memcpy.c: removed NULL
9209         * device/lib/_strcat.c: removed NULL
9210         * device/lib/_strchr.c: removed NULL
9211         * device/lib/_strcmp.c: removed NULL
9212         * device/lib/_strcpy.c: removed NULL
9213         * device/lib/_strcspn.c: removed NULL
9214         * device/lib/_strlen.c: removed NULL
9215         * device/lib/_strncat.c: removed NULL
9216         * device/lib/_strncmp.c: removed NULL
9217         * device/lib/_strncpy.c: removed NULL
9218         * device/lib/_strpbrk.c: removed NULL
9219         * device/lib/_strrchr.c: removed NULL
9220         * device/lib/_strspn.c: removed NULL
9221         * device/lib/_strstr.c: removed NULL
9222         * device/lib/_strtok.c: removed NULL
9223         * device/lib/malloc.c: removed NULL, include own header
9224
9225 2003-02-02    <johan AT balder>
9226
9227         * 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
9228         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9229         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9230         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9231         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9232         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9233
9234 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9235
9236         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9237         area 'DATA'"
9238
9239 2003-02-01    <johan AT balder>
9240
9241         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9242
9243 2003-01-31    <johan AT CP255758-A>
9244
9245         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9246
9247 2003-01-30    <johan AT balder>
9248
9249         * src/SDCCBBlock.c: automatic bug detection
9250         * src/SDCCicode.c: automatic bug detection
9251
9252 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9253
9254         * src/SDCCglobl.h:   now --xram-size 0 works
9255         * src/SDCCmain.c:    now --xram-size 0 works
9256
9257 2003-01-29    <johan AT balder>
9258
9259         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9260
9261 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9262
9263         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9264         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9265         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9266         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9267         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9268         * src/SDCCmain.c:    Added options --xram-size and --code-size
9269
9270 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9271
9272         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9273         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9274
9275 2003-01-27    <johan AT balder>
9276
9277         * src/SDCC.y: fixed bug #613764
9278
9279 2003-01-26    <johan AT balder>
9280
9281         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9282         * src/SDCCsymt.h: fixed bug #673374
9283         * src/SDCCglue.c: fixed bug #661910
9284         * src/SDCCast.c: fixed bug #458099 and 673374
9285
9286 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9287
9288         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9289         * as/mcs51/strcmpi.h: added
9290         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9291         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9292         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9293         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9294         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9295         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9296         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9297         * as/mcs51/Makefile.aslink: new module strcmpi
9298         * as/mcs51/Makefile.asx8051: new module strcmpi
9299         * as/mcs51/Makefil.bcc: new module strcmpi
9300         * as/mcs51/Makefile.in: new module strcmpi
9301         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9302
9303 2003-01-26    <johan AT balder>
9304
9305         * src/SDCCglue.c: reverted back to 1.124
9306         * src/SDCCast.c: reverted back to 1.156
9307         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9308
9309 2003-01-25    <johan AT balder>
9310
9311         * src/SDCCglue.c: A better fix for bug #661910
9312         * src/SDCCast.c: A better fix for bug #661910
9313         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9314
9315 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9316
9317         * src/Makefile.in: remove spawn.o
9318         * src/SDCCmain.c: remove spawn.h
9319         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9320         * src/spawn.c: removed
9321         * src/spawn.h: removed
9322         * support/regression/ports/ds390/spec.mk: link with -r
9323
9324 2003-01-24    <johan AT CP255758-A>
9325
9326         * src/ds390/gen.c (aopOp): fixed bug #667458
9327         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9328         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9329         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9330
9331 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9332
9333         * src/mcs51/peeph.def: better assembler identation by Frieder
9334         * src/mcs51/gen.c: better assembler identation by Frieder
9335
9336 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9337
9338         * as/z80/string.h: removed for gcc 3.2
9339         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9340         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9341
9342 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9343
9344         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9345         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9346         * support/regression/Makefile: separate temp files for ports
9347         * support/regression/generate-cases.py: separate temp files for ports
9348         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9349         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9350
9351 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9352
9353         * moved tinitalk to device/examples/ds390
9354
9355 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9356
9357         * as/mcs51/lkmem.c: rflag is for DS390
9358         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9359         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9360                          (linkEdit): move mem- and map-files the same way as ihx-files
9361         * src/z80/main.c (_setDefaultOptions): removed --generic
9362         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9363         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9364         * src/pic/glue.c (picglue): --c1mode works again
9365         * src/pic16/glue.c (pic16glue): --c1mode works again
9366         * src/asm.c (printCLine): fix #660034
9367
9368 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9369
9370         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9371         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9372         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9373         * as/mcs51/lkmem (summary): better fix for sp problem
9374         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9375         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9376         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9377                                               remove --stack-after-data
9378
9379 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9380
9381         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9382         * src/SDCCutil.c (join): ugly bug: missing '\0'
9383         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9384
9385 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9386
9387         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9388         * src/port.h: typo
9389         * src/pic/main.c (_asmCmd): gpasm supports -o
9390         * src/z80/main.c: more general macros
9391         * device/lib/Makefile.in: remove intermediate files
9392
9393 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9394
9395         * .version: Bumped version number to 2.3.3
9396         * src/SDCCBBlock.c: new option -o
9397         * src/SDCCglobl.h: new option -o
9398         * src/SDCCglue.c: new option -o
9399         * src/SDCCmain.c: new option -o
9400         * src/asm.c: new option -o
9401         * src/ds390/main.c: new option -o
9402         * src/pic/glue.c: new option -o
9403         * src/pic/pcode.c: new option -o
9404         * src/pic/ralloc.c: new option -o
9405         * src/pic16/glue.c: new option -o
9406         * src/pic16/pcode.c: new option -o
9407         * src/pic16/ralloc.c: new option -o
9408         * src/z80/main.c: new option -o
9409         * device/lib/Makefile.in: use -o
9410         * support/regression/ports/ds390/spec.mk: use -o
9411         * support/regression/ports/gbz80/spec.mk: use -o
9412         * support/regression/ports/mcs51/spec.mk: use -o
9413         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9414         * support/regression/ports/z80/spec.mk: use -o
9415         * support/regression/ports/ucz80/spec.mk: use -o
9416         * support/regression/ports/xa51/spec.mk: use -o
9417         * support/regression/fwk/lib/timeout.c: fix usage string
9418
9419 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9420         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9421
9422 2003-01-07    <johan AT balder>
9423
9424         * src/SDCCast.c (decorateType): fixed bug #600035
9425
9426 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9427         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9428         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9429         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9430         * src/pic/pcode.c: outcommented unused variable to remove warnings
9431         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9432
9433 2003-01-06    <karl AT turbobit.com>
9434         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9435    regression tests.
9436
9437 2003-01-06    <johan AT balder>
9438
9439         * src/SDCCicode.c: fixed array add
9440
9441 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9442         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9443         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9444
9445 2003-01-04    <johan AT balder>
9446
9447         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9448
9449 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9450         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9451
9452 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9453         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9454         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9455
9456 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9457         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9458
9459 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9460         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9461
9462 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9463         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9464
9465 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9466
9467     * in \sdcc\as\mcs51\ changed these files in order to create an
9468     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9469     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9470     following files to include the previous two files: aslink.dsp,
9471     Makefile.aslink, Makefile.bcc, and Makefile.in.
9472
9473     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9474     .adb instead of .cdb
9475
9476 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9477
9478         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9479         value from option --iram-size.
9480
9481 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9482
9483         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9484         dram[] array.
9485
9486 2002-09-18    <wiml AT hhhh.org>
9487
9488         * SDCClrange.h: exposed setFromRange() and setToRange()
9489         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9490           packRegsForAccUse() (bug 542397)
9491         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9492           multiple times and emitting the fetch operations more than once
9493           added aopGetUsesAcc() function to allow binary operators to
9494           fetch their operands in the correct order; made genMinus() emit
9495           compact code for X = LITERAL - Y
9496
9497 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9498         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9499         sprintf() in line 1267.
9500
9501 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9502         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9503         like ports.
9504
9505 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9506         Changes to aslink (All the changes are marked with 'JCF'):
9507
9508         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9509         summary().
9510
9511         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9512         area BSEG.  Also moves, if possible, the DATA area down into the internal
9513         ram so more space is available.
9514
9515         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9516         sflag.
9517
9518         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9519         not bytes.  Function summary() which creates a memory usage summary
9520         file with extension .mem.  Reports of overlaping stack and small stack
9521         size.  If the space for the stack is less than 16 bytes aslink trows a
9522         warning.
9523
9524         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9525         the 8051.  Option 'y' for memory summary output file.
9526
9527         Changes to sdcc (All the changes are marked with 'JCF'):
9528
9529         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9530
9531         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9532         overlaying area for it (uses RegBankUsed[4]).
9533
9534         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9535         bank zero as used by default.  By default aslink locates the stack
9536         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9537         the creation of the .mem file.  Delegates the allocation of data area
9538         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9539         the begining of the stack area to aslink.
9540
9541         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9542         glue() in SDCCglue.c creates an area for it.
9543
9544 2002-09-03  Borut Razem <borut.razem AT siol.net>
9545         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9546         sdcc/src/pic/glue.c:
9547         introduced atexit() handler for teporay files removal in case of
9548         errors, assertions, ...
9549
9550 2002-08-29  Borut Razem <borut.razem AT siol.net>
9551         * sdcc/support/cpp2/auto-host_vc_in.h:
9552         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9553         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9554         Maybe there is a similar problem with BORLANDC? It should be checked!
9555
9556         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9557         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9558         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9559         was not executed, and the compiler (cl) launched a warning:
9560         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9561
9562 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9563         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9564
9565 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9566         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9567
9568         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9569           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9570           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9571           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9572           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9573           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9574           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9575         - added Release configuration in VS projects
9576         - review of compiler an linker options
9577         - VC .exe files are generated in bin_vc directory, not to interfere
9578           with binaries generated from other projects (cygwin, mingw, bcc ...)
9579
9580         * sdcc/src/yacc.dsp: added
9581
9582         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9583         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9584         and insert the version number definitions from .version
9585
9586         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9587
9588         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9589         added - genarate auto-host.h using auto-host_vc_in.h as template
9590
9591         * sdcc/sdcc_vc.h,
9592         removed from CVS, generated automatically
9593
9594 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9595         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9596
9597 2002-08-11  Borut Razem <borut.razem AT siol.net>
9598         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9599
9600 2002-08-10  Borut Razem <borut.razem AT siol.net>
9601         * src/SDCCmain.c (main):
9602         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9603         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9604         The consequence was that some temporary files were not removed.
9605
9606         * src/SDCCglue.c:
9607         unification of code in functions tempfilename() and tempfile():
9608         function tempnam() is defined in Visual Studio 6.0 and .NET
9609
9610         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9611
9612         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9613           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9614         - removed compiler command line option /WX: Treats all warnings as errors
9615         - update a list of source files, included into the project
9616
9617         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9618           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9619         changed project type to Generic Project so that can be correcly converted to VS.NET project
9620
9621         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9622
9623         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9624
9625         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9626
9627         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9628         added return 0 statements after assert() to make compiler happy
9629
9630         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9631         added newline in the def file to keep MSC compiler satisfied
9632
9633         * sdcc/src/z80/gen.c:
9634         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9635           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9636         - solved MSC error in function aopDump()
9637
9638         * sdcc_vc.h: define PREFIX as "\\sdcc"
9639
9640 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9641         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9642
9643 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9644         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9645         - Rewrote the register banking algorithm.
9646         - Added pCode live-range analysis to registers (for now, only non-used and
9647         singly-used registers optimized away)
9648
9649         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9650
9651         * 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.
9652
9653 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9654         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9655
9656 2002-04-22  Michael Hope  <michaelh AT vroom>
9657
9658         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9659
9660         * configure.in (DD_COPT): Added include support required for gbdk.
9661
9662         * .version: Bumped version number just to increase it.
9663
9664         * src/SDCCmain.c: Added -nostdinc to the default options.
9665
9666 2002-04-15  Michael Hope  <michaelh AT vroom>
9667
9668         * device/lib/z80/printf.c (sprintf): Added.
9669
9670         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9671
9672         * src/z80/peeph.def: Added transpose redundent load rule.
9673
9674         * src/z80/main.c: Added force callee saves for jaune.
9675
9676         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9677
9678         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9679
9680 2002-03-28  Johan Knol  <johan AT balder>
9681
9682         * src/SDCCval.c: fixed bug #532436
9683
9684 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9685         * /src/port.h:
9686         Added "char *Processor" field to the port structure.
9687
9688         * /src/SDCCmain.c:
9689         Added -p option. Allows port dependent processor to be specified.
9690
9691         * all ports:
9692         Initialized the new field char *Processor field to NULL in all ports
9693
9694         * /src/pic/*:
9695         Compiler generated registers for interrupt context saving
9696         were not getting allocated.
9697
9698 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9699
9700         * /src/SDCCast.c:
9701         Fixed left shift. Will promote the left side of a left shift
9702         if a) left shifting more than size of operand or b) when assigned
9703         to something size > size of left side
9704
9705 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9706         * src/pic/*
9707         tons of changes. Register allocation has been
9708         rewritten. Added customization for the various PICs. Flow
9709         analysis is restructured. ...
9710
9711         * src/pic/device.h:
9712         Added
9713
9714         * src/pic/device.c:
9715         Added. device.c is a PIC port hack to accomodate variations
9716         in PIC devices.
9717
9718 2002-03-13  Michael Hope  <michaelh AT vroom>
9719
9720         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9721
9722 2002-03-04  johanknol  <johanknol AT manik>
9723
9724         * /src/SDCCval.c: fixed
9725
9726         const unsigned char arr[][2] = { { 0, 1 } };
9727         t18.c:1: error: Initializer element is not constant
9728
9729 2002-03-04  bela  <bela AT manik>
9730
9731         * /device/include/mcs51reg.h:
9732         ds89c420 register definition update
9733
9734 2002-03-03    <johan AT FRIJA>
9735
9736         * support/Util/SDCCerr.c: did something, but don't no why anymore
9737
9738         * support/regression/tests/bug-524691.c: made it a little less shy
9739
9740         * src/SDCCast.c (decorateType): fixed bug #524697
9741
9742         * src/SDCCast.c: made some lineno improvements
9743
9744         * src/SDCCval.c (getNelements): changed warning to error
9745
9746         * src/SDCCglue.c (printIvalArray): changed warning to error
9747
9748         * src/SDCCicode.c: fixed a warning for mingw
9749
9750         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9751
9752         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9753
9754 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9755
9756         * src/ds390/peeph.def:
9757         Added some more peephole rules
9758
9759         * src/ds390/gen.c: Various fixes & enhancements
9760
9761         * src/SDCClrange.c, src/SDCClrange.h:
9762         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9763
9764         * src/ds390/ralloc.c:
9765         various fixes & enhancements (ds390) specific
9766
9767         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9768         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9769         from rallocs.
9770
9771         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9772
9773 2002-03-02    <johan AT FRIJA>
9774
9775         * src/SDCCast.c (decorateType): fixed bug #524708
9776
9777         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9778
9779         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9780
9781 2002-03-01  Michael Hope  <michaelh AT vroom>
9782
9783         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9784
9785         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9786
9787 2002-03-01    <johan AT FRIJA>
9788
9789         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9790
9791         * src/SDCCast.c (decorateType): fixed bug #524209
9792
9793         * src/SDCCval.c (valNot): fixed bug #524195
9794
9795 2002-02-26    <johan AT balder>
9796
9797         * src/xa51/gen.c: fixed a warning
9798
9799         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9800
9801         * src/SDCCast.c (decorateType): fixed bug #522534
9802
9803 2002-02-23    <johan AT balder>
9804
9805         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9806
9807 2002-02-22    <johan AT balder>
9808
9809         * src/SDCCast.c: fixed bug #514865
9810
9811         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9812
9813 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9814
9815         * sdcc/src/SDCCloop.c:
9816         Previous fix was not good. basic blocks that have "break" or "return" are
9817         not really partof a loop , but live ranges used in these blocks should
9818         be live thru the entire loop, so set partOfLoop but don't add them to
9819         loop region
9820
9821 2002-02-21    <johan AT FRIJA>
9822
9823         * src/SDCCcse.c: fixed bug #514308
9824
9825 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9826
9827         * src/SDCCloop.c:
9828         Fixed BUG #519583. If a conditional block ended in a return/break
9829         statement inside a loop, it was not being considered part of the loop.
9830
9831         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9832
9833 2002-02-10  Karl Bongers <karl AT turbobit.com>
9834
9835         * debugger/*:
9836         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9837         with lots of comments and notes.
9838
9839         * device/examples/test2.c:
9840         Fix bug, "red" variable not being initialized(compiler complained).
9841
9842         * device/examples/Makefile, examples/test3.c:
9843         Add Makefile in device/examples folder, compiles test3.c
9844         for use as a multiple module SDCDB test case.
9845
9846         * sim/ucsim/cmd.src/cmdset.cc:
9847         Took out debug printfs in ucsim "next" command.
9848
9849         * sim/ucsim/xa.src:
9850         Karl and Johan start ucsim XA support.  Most dissassembly working,
9851         about 75% emulation done(plenty of work remaining).
9852
9853         * sim/ucsim/z80.src:
9854         Add Z80 support to ucsim, add test-ucz80 regression test,
9855         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9856         Notice z80 compiler fails on examples/test3.c/crc code.
9857
9858 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9859
9860         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9861         Added support for --parms-in-bank1
9862
9863         * src/ds390/peeph.def:
9864         added a few more peephole optimzations
9865
9866         * src/ds390/main.c:
9867         1) added __builtin_inp & __builtin_outp used to read in data of given length
9868            from a memory mapped port
9869         2) added __builtin_memcmp
9870         3) added __builtin_swapw swap bytes of a short
9871
9872         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9873         1) handle multiple send & receives from register bank1
9874         2) ralloc can now allocate DPTR1 to some liveRanges
9875
9876         * src/SDCCsymt.c, src/SDCCsymt.h:
9877         changes to handle multiple sends & receives
9878
9879         * src/SDCCptropt.h:
9880         added some pointer arithmetic optimization
9881
9882         * src/SDCCptropt.c:
9883         added some pointer arithmetic optimizations but not stable yet so not
9884         called from anywhere (will get this working shortly)
9885
9886         * src/SDCCopt.c: fixed for multiple sends & receives
9887
9888         * src/SDCCmain.c:
9889         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9890         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9891            set preprocessor defines (depending on options)
9892
9893         * src/SDCCicode.c, src/SDCCicode.h:
9894         changes made to handle multiple sends & receives
9895
9896         * src/SDCCglobl.h:
9897         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9898
9899         * src/SDCCcse.c, src/SDCCcse.h:
9900         added function findbackward def (to be used in upcoming optimization)
9901
9902         * src/SDCCcflow.c, src/SDCCcflow.h:
9903         added function returnAtEnd - to determine if a basic block terminates with
9904         a RETURN iCode
9905
9906         * src/SDCCast.c, src/SDCCast.h:
9907         added option parms-in-bank1
9908
9909         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9910         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9911         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9912         adjusted for --parms-in-bank1 option
9913
9914         * device/include/string.h:
9915         donot redefine "reentrant" keyword
9916
9917         * device/include/ds80c390.h: Added some more SFRs
9918
9919 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9920
9921         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9922
9923 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9924
9925         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9926
9927 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9928
9929         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9930
9931 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9932
9933         * Added --xram-movc option
9934
9935 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9936
9937         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9938
9939 2002-01-11  Johan Knol
9940
9941         * Added math lib of Jesus Calvino-Fraga
9942
9943 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9944
9945         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9946         * support/regression/Makefile: new target test-mcs51-stack-auto
9947         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9948
9949 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9950
9951         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9952
9953 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9954
9955         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9956
9957 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9958
9959         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9960
9961         * src/SDCCglue.h: add definition for printIvalChar()
9962
9963 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9964
9965         * src/SDCCast.c: fix #498138 by Johan
9966
9967         * src/SDCCglue.c: fix #498138 by Johan
9968
9969 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9970
9971         * support/regression/Makefile: fix clean
9972
9973         * support/regression/ports/ds390/support.c: fix transmission of last character
9974
9975 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9976
9977         * /sdcc/src/ds390/gen.c:
9978         a) improved computing address of stack variable
9979         b) took out some #if 0 code
9980         c) improved parmBytes adjustment
9981         d) improved genPlusIncr & genMinusIncr
9982         e) genCmp could generate bad code (when left assigned to DPTR)
9983         f) Fixed bug in hasInc
9984
9985         * /sdcc/src/ds390/ralloc.c:
9986         a) packRegsForSupport could mess up live information (Fixed)
9987         b) packRegsDPTRuse could be incorrect for left & right shift
9988
9989         * /sdcc/src/mcs51/ralloc.c:
9990         packRegsForSupport could mess up the live information (Fixed)
9991
9992         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9993
9994         * /sdcc/src/SDCCast.c:
9995         can reverse a loop even if function call is present as long
9996         as the loop control variable is local & is not passed as parameter
9997
9998 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9999
10000         * /sdcc/ChangeLog: *** empty log message ***
10001
10002         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10003         More builtin function additions for TININative
10004
10005         * /sdcc/src/ds390/ralloc.c:
10006         Had broken the regression testsuite
10007
10008         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10009
10010         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10011         Added funcattr hasStackParms will be set for reentrant functions when there
10012         are paramteres on the stack, this helps in minimizing frame pointer generation
10013         typeFromStr can handle function pointers now
10014
10015         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10016         *** empty log message ***
10017
10018 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10019
10020         * /src/ds390/gen.c, /src/ds390/main.c:
10021         More builtin function additions for TININative
10022
10023         * /src/ds390/ralloc.c:
10024         Had broken the regression testsuite
10025
10026         * /src/SDCCast.c: Fixed a bug in dumptree
10027
10028         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10029         Added funcattr hasStackParms will be set for reentrant functions when there
10030         are paramteres on the stack, this helps in minimizing frame pointer generation
10031         typeFromStr can handle function pointers now
10032
10033         * /doc/builtins.txt, /doc/TININative.txt:
10034         *** empty log message ***
10035
10036
10037 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10038
10039         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10040         ALPHA version for -mTININative
10041
10042         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10043         updated to reflect changes in the port structure
10044
10045         * /src/port.h:
10046         added function do_assemble (similar to do_link) if non-null this function
10047         will be called to do assembly (-mTININative) requires a multi command
10048         assembly
10049         added function genAssemblerEnd will be called to generate assembler Epilogue
10050
10051         * /src/SDCCsymt.c:
10052         added _JavaNative to debug info printing
10053
10054         * /src/SDCCmain.c: added option --tini-libid
10055         added port->do_assemble function (-mTININative) has a multi command assemble
10056
10057         * /src/SDCCglue.c: Disabled "constExpr" check
10058         added port->genAssemblerEnd function
10059
10060         * /src/SDCCglobl.h: Added option --tini-libid value
10061
10062         * /src/SDCCast.h:
10063         tookout optimizeCompare from the header (has no external references)
10064
10065         * /src/SDCCast.c: made one more function "static"
10066
10067 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10068
10069         * src/z80/mappings.i: Added z80asm support.
10070
10071         * src/z80/main.c: Added z80asm support on --asm=z80asm
10072
10073         * src/z80/gen.c: Fixed asm portability issues.
10074
10075         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10076
10077         * src/SDCCglue.c (printExterns): Added global/extern split.
10078
10079 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10080
10081         * support/regression/Makefile: added test for mcs51 model large
10082
10083         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10084
10085         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10086
10087 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10088
10089         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10090
10091 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10092
10093         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10094
10095         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10096
10097 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10098
10099         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10100
10101         * support/regression/tests/simplefloat.c: Port to mcs51.
10102
10103 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10104         * support/regression/tests/bug-485362.c: Added.
10105
10106         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10107
10108         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10109
10110         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10111
10112         * src/z80/gen.c (aopDump): Added a dump function.
10113
10114 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10115         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10116
10117         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10118
10119         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10120
10121         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10122
10123         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10124
10125         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10126
10127         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10128
10129         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10130
10131         * support/regression/ports/ds390/support.c: Use tinibios.
10132
10133         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10134
10135 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10136
10137         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10138         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10139
10140         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10141
10142         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10143
10144 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10145
10146         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10147
10148         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10149         (packRegsForIYUse): Created and optimised.
10150
10151 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10152
10153         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10154 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10155
10156         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10157
10158         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10159
10160         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10161
10162 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10163
10164         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10165
10166         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10167
10168 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10169
10170         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10171
10172         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10173
10174         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10175
10176 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10177
10178         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10179         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10180         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10181
10182         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10183
10184         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10185         (genNotFloat): Added.
10186         (genUminusFloat): Added.
10187
10188         * device/lib/z80/Makefile: Added floating pt stubs.
10189
10190         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10191
10192         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10193
10194         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10195
10196 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10197
10198         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10199
10200         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10201
10202         * sdcc/support/regression/Makefile: Add port ds390.
10203
10204         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10205
10206         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10207
10208         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10209
10210         * sdcc/support/regression/ports/ds390/support.c: Added.
10211
10212         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10213
10214         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10215
10216         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10217
10218 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10219
10220         * device/include/malloc.h: Added z80 and gbz80 support.
10221
10222         * device/lib/gbz80/heap.s: Added.
10223
10224         * device/lib/z80/heap.s: Added.
10225
10226         * device/lib/malloc.c: Added z80 and gbz80 support.
10227
10228         * support/regression/tests/malloc.c (testMalloc): Added.
10229
10230         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10231
10232         * support/regression/tests/bug-478094.c: Added.
10233
10234         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10235
10236 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10237
10238         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10239
10240         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10241
10242         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10243
10244         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10245
10246         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10247
10248 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10249
10250         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10251
10252 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10253
10254         * support/regression/tests/bug-477927.c: Added.
10255
10256         * src/z80/peeph.def: Added minor rules.
10257
10258         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10259
10260         * src/z80/peeph.def: Added jump optimisation modification.
10261
10262 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10263
10264         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10265
10266 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10267
10268         * support/regression/tests/funptrs.c: Added.
10269
10270 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10271
10272         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10273
10274 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10275
10276         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10277
10278         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10279
10280         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10281         (movLeft2ResultLong): Created.
10282
10283         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10284         (joinPushes): Added.  Joins two char pushes into a word push.
10285
10286 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10287
10288         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10289
10290         * support/makebin/Makefile (install): Added creation of dest dir.
10291
10292 2001-10-24 Karl Bongers <karl AT turbobit.com>
10293
10294         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10295
10296 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10297
10298         * src/z80/ralloc.c: Turned off faulty pack for one use.
10299
10300         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10301
10302         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10303
10304 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10305
10306         * support/regression/Makefile: Improved clean
10307
10308         * support/regression/ports/gbz80/spec.mk: Added clean
10309
10310         * support/regression/ports/host/spec.mk: Added clean
10311
10312         * support/regression/ports/z80/spec.mk: Added clean
10313
10314         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10315
10316         * support/regression/ports/mcs51/timeout.c: little improvements
10317
10318 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10319
10320         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10321
10322         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10323
10324         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10325
10326 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10327
10328         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10329
10330         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10331
10332 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10333         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10334
10335         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10336
10337         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10338
10339         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10340
10341         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10342
10343         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10344
10345         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10346
10347         * support/regression/tests/longor.c: Added.
10348
10349 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10350
10351         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10352
10353         * as/mcs51/aslink.h: define PATH_MAX
10354
10355         * as/mcs51/asm.h: define PATH_MAX
10356
10357         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10358
10359         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10360
10361         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10362
10363         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10364
10365         * src/SDCCglobl.h: define PATH_MAX
10366
10367         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10368
10369         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10370
10371 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10372
10373         * src/z80/gen.c (gencjneshort): Fixed
10374
10375         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10376
10377 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10378
10379         * support/regression/tests/bug-469671.c: Added.
10380
10381         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10382
10383 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10384
10385         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10386
10387         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10388
10389 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10390
10391         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10392
10393         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10394
10395         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10396
10397         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10398
10399         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10400
10401         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10402
10403         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10404
10405 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10406
10407         * 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.
10408
10409         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10410
10411         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10412
10413 2001-10-07    <johan AT FRIJA>
10414
10415         * device/lib/gets.c (gets): fixed the return value.
10416
10417 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10418         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10419
10420         * 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.
10421
10422         * 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.
10423
10424         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10425
10426         * src/pic/gen.c: Removed Safe_strdup.
10427
10428         * configure.in: Added option to enable libgc support.
10429
10430         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10431         (bitVectUnion): Optimised.
10432         (bitVectIntersect): Optimised.
10433         (bitVectBitsInCommon): Optimised.
10434         (bitVectCplAnd): Optimised.
10435
10436         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10437
10438 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10439
10440         * src/SDCCmain.c: distinguish between assembler debug and plain options
10441
10442         * src/avr/main.c:   remove standard assembler options
10443
10444         * src/ds390/main.c: remove standard assembler options
10445
10446         * src/mcs51/main.c: remove standard assembler options
10447
10448         * src/port.h: removed "PENDING" comment
10449
10450 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10451
10452         * src/device/lib/_mulint.c  : new, with assember functions
10453
10454         * src/device/lib/_mullong.c : new, with assember functions
10455
10456         * src/device/lib/_divuint.c : with assember functions
10457
10458         * src/device/lib/_divsint.c : with assember functions
10459
10460         * src/device/lib/_divulong.c: with assember functions
10461
10462         * src/device/lib/_divslong.c: with assember functions
10463
10464         * src/device/lib/_moduint.c : with assember functions
10465
10466         * src/device/lib/_modsint.c : with assember functions
10467
10468         * src/device/lib/_modulong.c: with assember functions
10469
10470         * src/device/lib/_modslong.c: with assember functions
10471
10472         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10473
10474         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10475
10476         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10477                                       replaced _mululong.c and _mulslong.c by _mullong.c
10478
10479 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10480
10481         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10482
10483 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10484
10485         * src/SDCCglue.c: test, if win32api is available for MINGW
10486
10487 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10488
10489         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10490         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10491         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10492         * support/regression/ports/host/spec.mk: removed GENERIC
10493         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10494         * support/regression/ports/z80/spec.mk: removed GENERIC
10495
10496 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10497
10498         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10499
10500         * support/regression/tests/bug-467035.c: Created.
10501
10502 2001-10-01    <johan AT FRIJA>
10503
10504         * src/SDCC.y: fixed bug #466586 part 1
10505
10506 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10507
10508         * SDCCicode.c: z80 has no generic pointers
10509         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10510
10511 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10512
10513         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10514
10515 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10516
10517         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10518
10519         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10520
10521 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10522
10523         * configure.in: Fixed up so that ucsim is only configured once.
10524
10525         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10526
10527         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10528         (getPathDifference): As above.
10529
10530         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10531
10532         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10533
10534 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10535         * .version: Updated to 2.3.1
10536
10537         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10538         Added copyright header.
10539
10540         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10541         (assemble): Added support for macro based assembler commands.
10542         (linkEdit): Added support for macro based linker commands.
10543         (preProcess): Changed the pre-processor to use macros.
10544         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10545         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10546
10547         * device/lib/z80/crt0.s: Added module name for debugging.
10548
10549 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10550
10551         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10552
10553         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10554
10555         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10556
10557         * src/Makefile.in: Added SDCCmacro and SDCCutil
10558
10559 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10560
10561         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10562
10563 2001-09-16    <johan AT FRIJA>
10564
10565         * 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.
10566
10567 2001-09-15    <johan AT FRIJA>
10568
10569         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10570         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10571
10572 2001-09-11    <johan AT FRIJA>
10573
10574         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10575
10576 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10577
10578         * support/regression/tests/bug-460444.c: Added test case.
10579
10580         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10581         (genCast): Added justification for all of the asserts.
10582
10583 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10584
10585         * support/regression/support.c: _xdata replaced by xdata
10586
10587         * support/regression/spec.mk: removed _generic
10588
10589 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10590
10591         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10592
10593         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10594         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10595
10596         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10597
10598         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10599
10600         * support/regression/tests/bug-460010.c: Added test case.
10601
10602         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10603
10604 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10605
10606         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10607
10608         * support/regression/testfwk.c: removed workaround for bug #436344
10609
10610         * support/regression/tests/bp.c: use less memory with mcs51
10611
10612         * support/regression/tests/bug-441448.c: use less memory
10613
10614         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10615
10616         * support/regression/collate-results.py: typo
10617
10618 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10619
10620         * support/regression/tests/fetchoverlap.c: Added new test case.
10621
10622         * support/regression/tests/bp.c: Added new test case.
10623
10624         * support/regression/tests/bug-448984.c: Added new test case.
10625
10626         * support/regression/tests/pow2shifts.c: Added new test case.
10627
10628         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10629         (genlshTwo): Fixed right shift for count > 8.
10630
10631         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10632
10633 2001-09-08    <johan AT FRIJA>
10634
10635         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10636
10637 2001-09-07    <johan AT FRIJA>
10638
10639         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10640
10641         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10642
10643 2001-09-06    <johan AT FRIJA>
10644
10645         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10646         * bernhard noted me at this: "() equals to (void)" (1.38)
10647
10648 2001-09-05    <johan AT FRIJA>
10649
10650         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10651
10652 2001-09-04    <johan AT FRIJA>
10653
10654         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10655
10656
10657 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10658
10659         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10660
10661 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10662
10663         * link/z80/aslink.h: Fixed path for PATH_MAX
10664
10665 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10666
10667         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10668
10669         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10670
10671         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10672
10673         * 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.
10674
10675 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10676
10677         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10678         (genCmp): Fixed up genCmp for the GB with longs.
10679
10680         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10681
10682         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10683
10684         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10685
10686         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10687
10688 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10689
10690         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10691
10692 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10693
10694         * 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.
10695
10696         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10697
10698 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10699
10700         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10701
10702         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10703
10704 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10705
10706   * sim/ucsim/configure:    little improvement of Cygwin-detection
10707   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10708   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10709   * support/regression/tests/bug-221100.c: small changes for mcs51
10710   * support/regression/tests/bug-221168.c: small changes for mcs51
10711   * support/regression/tests/bug-227710.c: small changes for mcs51
10712   * support/regression/tests/staticinit.c: small changes for mcs51
10713   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10714   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10715   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10716
10717 $Revision$