* support/regression/ports/pic16/spec.mk: link with libm18f.lib,
[fw/sdcc] / ChangeLog
1 2006-03-06 Borut Razem <borut.razem AT siol.net>
2
3         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
4           made the linker quiet
5
6 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
7
8         * src/pic16/gen.c (genPcall): fixed bug #1443644
9         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
10         which dumps before the function entry point a data byte which represents
11         the number of the local variables used by the specified function, added
12         'xinst' for initial support for Extended Instruction Support,
13         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
14         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
15         port->fun_prefix anymore (may change later),
16         (genFunction, genEndFunction): do not store/restore local registers for
17         _main (this should take care the --main-return command line option in
18         the future),
19         (genOr): removed some legacy pic-port instructions,
20         * src/pic16/genarith.c (genAddLit): re-enabled old code because
21         performing operations with SFR's causes data to be written more than
22         once to each SFR. Perhaps SFRs should be handled in special cases...
23         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
24         pcode.h
25         * src/pic16/main.c (_process_pragma): stack bound checking did not take
26         into account for stack starting position,
27         (struct OPTIONS pic16_optionsTable): added command line argument
28         --extended or -y for Extended Instruction Support,
29         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
30         (deassignLRs): *** perhaps the most important change, old 'for' code
31         (comented out for reference), didn't account for some registers which
32         were left marked 'not free' after a pointer operation. The change
33         reduces register usage a lot in some cases
34
35 2006-03-04 Borut Razem <borut.razem AT siol.net>
36
37         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
38           _clean
39         * support/regression/tests/bug-524697.c: decreased array size for
40           mcs51 to fit into the internal RAM
41         * support/regression/Makefile.in: a little bit more verbose
42
43 2006-03-03 Borut Razem <borut.razem AT siol.net>
44
45         * support/regression/fwk/lib/testfwk.c,
46           support/regression/fwk/include/testfwk.h: introduced function
47           _prints(), nonrecursive _printn(), call _initEmu() from main()
48         * support/regression/ports/gbz80/support.asm,
49           support/regression/ports/ucz80/support.asm,
50           support/regression/ports/z80/support.asm,
51           support/regression/ports/ds390/support.c,
52           support/regression/ports/hc08/support.c,
53           support/regression/ports/host/support.c,
54           support/regression/ports/mcs51/support.c,
55           support/regression/ports/xa51/support.c: added empty _initEmu()
56           function
57         * support/regression/ports/pic16/gpsim.cmd,
58           support/regression/ports/pic16/spec.mk,
59           support/regression/ports/pic16/support.c,
60           support/regression/Makefile.in: added pic16 regression test
61
62 2006-03-01 Raphael Neider <rneider AT web.de>
63
64         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
65           genConstPointerGet): use safe way of generating MOVFF to cover
66             literals as well as registers, fixes bug #1440527
67         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
68             dereference
69           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
70             more correctly, fixes bug #1232186
71           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
72         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
73             gplink guess the correct processor in more cases, applied patch
74             from Till Riedel attached to and fixing bug #1436552
75
76 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
77
78         * support/regression/tests/array.c: added, contains check for #1434401
79         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
80
81 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
82
83         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
84         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
85         * device/include/mcs51/c8051f326.h,
86         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
87         * device/include/mcs51/c8051f000.h,
88         * device/include/mcs51/c8051f018.h,
89         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
90           PCON_IDLE,PCON_STOP and added sfr16 definitions
91
92 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
93
94         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
95           genGetWord): fixed bug 1409955
96
97 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
98
99         * device/include/hc08/mc68hc908gp32.h,
100         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
101
102 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
103
104         * src/SDCCast.c (constExprValue): return NULL if not a value
105         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
106         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
107         * support/regression/tests/bitfields.c: enabled signed bitfield for all
108
109 2006-02-13 Borut Razem <borut.razem AT siol.net>
110
111         * src/regression/ptrarg.c: added, fails due to bug #1430967
112         * src/regression/Makefile: ptrarg.c added, ...
113
114 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
115
116         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
117         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
118
119 2006-02-11 Borut Razem <borut.razem AT siol.net>
120
121         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
122           print "Processor: xxx" message to stdout only if --verbose
123
124 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
125
126         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
127         * support/regression/tests/bug1426356.c: added
128         * support/regression/tests/bitfields.c: removed 2 tests
129
130 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
131
132         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
133         * device/include/mcs51/c8051f330.h,
134         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
135           PCON_IDLE,PCON_STOP and added sfr16 definitions
136         * device/lib/_divsint.c,
137         * device/lib/_divuint.c,
138         * device/lib/_divulong.c,
139         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
140           register bank bug for small stackauto
141
142 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
143
144         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
145
146 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
147
148         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
149         * all.dsp: corrected several bin paths
150         * device/include/mcs51/c8051f120.h,
151         * device/include/mcs51/c8051f300.h,
152         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
153           to PCON_IDLE,PCON_STOP
154         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
155         * device/lib/printf_large.c (output_float): fixed bug 1388703
156         * support/regression/tests/bug1057979.c: added test for bug 1388703
157
158 2006-02-08 Raphael Neider <rneider AT web.de>
159
160         * src/pic/pcode.c (pciTRIS): fixed typo,
161           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
162           (LinkFlow): fixed handling of flows that end in a call,
163           (ReuseReg): perform safety check earlier
164         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
165             to work with flows at the beginning of a pBlock,
166             fixes #1426557 (Symbol not previously defined),
167           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
168             usage information
169           (RemoveUnusedRegisters): update register usage info
170         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
171             created, reuse existing ones instead
172         * src/pic/gen.c (genPcall): fixed #1424719
173
174 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
175
176         * link/z80/lkmain.c,
177         * link/z80/lklex.c,
178         * link/z80/lkdata.c,
179         * link/z80/aslink.h: fixed build on current cygwin:
180         replaced getline() by lk_getline()
181
182 2006-02-01 Borut Razem <borut.razem AT siol.net>
183
184         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
185           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
186           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
187           src/regression/bool1.c, src/regression/bool2.c,
188           src/regression/bool3.c, src/regression/call1.c,
189           src/regression/compare.c, src/regression/compare10.c,
190           src/regression/compare2.c, src/regression/compare3.c,
191           src/regression/compare4.c, src/regression/compare5.c,
192           src/regression/compare6.c, src/regression/compare7.c,
193           src/regression/compare8.c, src/regression/compare9.c,
194           src/regression/configword.c, src/regression/for.c,
195           src/regression/inline.c, src/regression/mult1.c,
196           src/regression/nestfor.c, src/regression/or1.c,
197           src/regression/pointer1.c, src/regression/ptrfunc.c,
198           src/regression/rotate1.c, src/regression/rotate2.c,
199           src/regression/rotate3.c, src/regression/rotate4.c,
200           src/regression/rotate5.c, src/regression/rotate6.c,
201           src/regression/rotate7.c, src/regression/string1.c,
202           src/regression/struct1.c, src/regression/sub.c,
203           src/regression/sub2.c, src/regression/switch1.c,
204           src/regression/while.c, src/regression/xor.c,
205           src/regression/create_stc, src/regression/simulate,
206           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
207           regression tests
208         * src/regression/gpsim_assert.h: added
209
210 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
211
212         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
213         ((void (code *) (void)) 0) ();
214         * as/hc08/aslex.c,
215         * as/hc08/aslink.h,
216         * as/hc08/asm.h,
217         * as/hc08/asmain.c,
218         * as/hc08/lkdata.c,
219         * as/hc08/lklex.c,
220         * as/hc08/lkmain.c,
221         * as/mcs51/aslex.c,
222         * as/mcs51/aslink.h,
223         * as/mcs51/asm.h,
224         * as/mcs51/asmain.c,
225         * as/mcs51/lkdata.c,
226         * as/mcs51/lklex.c,
227         * as/mcs51/lkmain.c,
228         * as/z80/aslex.c,
229         * as/z80/asm.h,
230         * as/z80/asmain.c: fixed build on current cygwin:
231         replaced getline() by as_getline()
232
233 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
234
235         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
236         declarator in the symbol chain
237         * src/SDCCsymt.h,
238         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
239         parameter list for function pointers
240         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
241         * support/regression/tests/bug-716242.c: added
242
243 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
244
245         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
246         offset if possible
247         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
248
249 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
250
251         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
252         inifinitely recurseable, added static
253         * support/regression/tests/bug-1408066.c: added
254
255 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
256
257         * src/SDCCicode.h,
258         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
259         renamed, added possibility to create "postLoopLbl"-labels
260         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
261         newiTempLoopHeaderLabel
262         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
263         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
264         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
265         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
266         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
267         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
268         (basicInduction): fixed bug #136564, made static,
269         (loopInduction): changed parameter of basicInduction, made static,
270         (addPostLoopBlock): added
271         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
272         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
273         findLoopEndSeq
274         * support/regression/tests/bug-136564.c: added
275         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
276         --std-sdcc99 to LIBSDCCFLAGS
277
278 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
279
280         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
281         while loop
282         * support/regression/tests/bug-1406131.c: added
283
284 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
285
286         * src/SDCCast.c (decorateType): fix promotion of unary minus
287         * src/SDCCsymt.c (computeType): beautified
288         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
289         (valUnaryPM, valComplement): fix sign and promotion,
290         (valNot): ANSI: result type is int (SDCC: unsigned char)
291         * support/regression/tests/uminus.c: speedup by removing superflous
292         test case 'int'
293         * support/regression/tests/onebyte.c: added promotion and signedness
294         tests for unary minus
295         * support/regressions/tests/bug-477927.c: disable warning about
296         uninitialized variables
297         * support/regression/tests/not.c: added
298
299 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
300
301         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
302         * src/mcs51/gen.c (gen51Code): show final register usage after
303         fillGaps in asm with --i-code-in-asm
304         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
305         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
306         incUsed, rliveClear, adjustIChain): made static,
307         (setFromRange): excluded because it's unused,
308         (findPrevUseSym, markWholeLoop): added,
309         (findPrevUse): rewritten; fixes bug 895992; now a complete search
310         through all branches of predecessors enables sdcc to emit the warning
311         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
312         (rlivePoint): made static, added parameter emitWarnings which is only
313         true during the first run out of two,
314         (findRecursiveSucc, findRecursivePred): removed,
315         (computeLiveRanges): made static, added parameter emitWarnings,
316         (dumpIcRlive): added for debugging only
317         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
318         removed prototype of setFromRange()
319         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
320         in call of computeLiveRanges()
321         * support/regression/tests/bug-895992.c: added
322         * support/regression/tests/bug-971834.c: added
323         * support/valdiag/tests/bug-895992.c: added
324         * support/valdiag/tests/bug-971834.c: added
325
326 2005-12-18 Raphael Neider <rneider AT web.de>
327
328         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
329           (genUnpackBits): improved code for direct operands,
330           (genPackBits): improved code for literal assignment to bitfields
331             and for direct destination operands (no FSR indirection),
332             prevented redundant AND, fixes #1362800,
333           (AccLsh): added parameter to disable masking of the result
334         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
335           skip instructions with side-effects (like incfsz),
336           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
337         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
338         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
339           fixes #1375263
340
341 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
342
343         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
344         volatile variables as spill location
345
346 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
347
348         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
349         replacing literals
350         * support/regression/tests/bug-1376320.c: added
351
352 2005-12-08 Raphael Neider <rneider AT web.de>
353
354         * src/pic/device.c: renamed is_shared to pic14_is_shared
355         * src/pic/gen.c (genIfx): re-enabled handling of sbits
356         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
357           (is_valid_identifier): added for above workaround
358
359 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
360
361         * device/lib/Makefile.in: fixed to enable port-specific-objects
362         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
363           char, thanks Hubert Sack
364         * doc/sdccman.lyx: documented --xstack-loc,
365           elaborated a bit more on interrupts and pitfalls,
366           removed "setjmp/longjmp unsupported",
367           documented some unsupported C99 features
368         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
369         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
370           if, thanks Hubert Sack
371         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
372         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
373           make make_library
374         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
375           regression tests can report resource usage (rfe 700441)
376         * support/regression/collate-results.py: report resource usage
377         * support/regression/ports/ds390/spec.mk,
378         * support/regression/ports/hc08/spec.mk,
379         * support/regression/ports/mcs51/spec.mk,
380         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
381         * support/regression/ports/ds390/uCsim.cmd,
382         * support/regression/ports/hc08/uCsim.cmd,
383         * support/regression/ports/mcs51/uCsim.cmd,
384         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
385         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
386           library, use the default one
387         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
388           building the library
389
390 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
391
392         * config.dsp: added dependency on .version and configure_vc.awk
393         * device/include/setjmp.h: updated for --stack-auto and --xstack
394         * device/include/mcs51/at89c51snd1c.h: corrected line endings
395         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
396         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
397         * device/lib/libsdcc.lib: added _setjmp
398         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
399           (decorateType): fixed bug 1372851,
400           (optimizeGetHbit): fixed warning
401         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
402           array initialisation
403         * support/regression/tests/bug1057979.c: added test for bug 1358192
404         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
405
406 2005-12-03 Borut Razem <borut.razem AT siol.net>
407
408         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
409           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
410
411 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
412
413         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
414         createIval): implement symbol independant "flexible array member",
415         (createIvalCharPtr): implemented flexible array initialisation with a
416         string
417         * src/SDCCsymt.c (copyStruct): removed,
418         (getSize): fixed misleading comment,
419         (getAllocSize): removed, the additional allocation size is now in
420         sym->flexArrayLength,
421         (checkStructFlexArray): new, syntax checks for flexible array members,
422         (compStructSize): added syntax checks for "flexible array members"
423         (copyStruct): removed,
424         (copyLinkChain): removed inefficient fix for bug 770487
425         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
426         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
427         symbol->flexArrayLength
428         * src/SDCCerr.c,
429         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
430         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
431         * support/regression/tests/structflexarray.c: added
432         * support/valdiag/tests/structflexiblearray.c: added
433
434 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
435
436         * src/SDCCast.c (decorateType): fixed bug 1368489
437         * support/Util/SDCCerr.c,
438         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
439
440 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
441
442         * device/include/mcs51/at89c51snd1c.h: added file submitted by
443           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
444
445 2005-11-27 Borut Razem <borut.razem AT siol.net>
446
447         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
448           support/cpp2/mkdeps.h: added command line option
449           -obj-ext=<extension> to SDCPP to define object file externion, used
450           for generation of make dependencies (-M)
451         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
452
453 2005-11-26 Borut Razem <borut.razem AT siol.net>
454
455         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
456           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
457           added pic and pic16 libraries
458
459 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
460
461         * device/include/float.h: Corrected typo in prototype of __fsgt
462
463 2005-11-25 Borut Razem <borut.razem AT siol.net>
464
465         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
466           added creation of model-mcs51-stack-auto libraries
467
468 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
469
470         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
471         and fields-list too
472         * src/SDCCast.c (createIvalArray): removed obsolete comment
473
474 2005-11-24 Borut Razem <borut.razem AT siol.net>
475
476         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
477           added missing device/lib/mcs51/crt*.asm sources
478
479 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
480
481         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
482
483 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
484
485         * device/lib/_fs2schar.c,
486         * device/lib/_fs2sint.c,
487         * device/lib/_fs2slong.c: optimized inline asm
488
489 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
490
491         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
492           Better handling of floats between -1.0 and 0.0.
493
494 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
495
496         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
497           (the missing "if"s prohibited removal of redundant labels)
498
499 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
500
501         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
502           Properly convert floats between -1.0 and 0.0 to long, int, and char
503           types (max integer value of negative floats tends to zero).
504         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
505           Removed changes made so to work properly with floats between
506           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
507           and _fs2char.c
508
509 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
510
511         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
512         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
513         (genCast) cosmetic change
514         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
515         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
516         from mcs51
517         * support/regression/tests/bitfields (testSignedBitfields): added
518
519 2005-11-18 Borut Razem <borut.razem AT siol.net>
520
521         * sdcc/device/lib/Makefile.in: remove all unnecessary files
522         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
523           introduced SILENT option to make building of pic16 libraries less
524
525 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
526
527         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
528           Now they work properly with floats between -1.0 and 0.0
529         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
530
531 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
532
533         * src/SDCCicode.c (printOperand): added missing else
534
535 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
536
537         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
538         reformatted for better readability
539         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
540         signed bitfields
541
542 2005-11-17 Borut Razem <borut.razem AT siol.net>
543
544         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
545           introduced SILENT option to make building of pic16 libraries less
546           verbose - used for nightly snapshot build
547         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
548           available on Win32 platforms.
549         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
550           medium, large, pic and pic16
551
552 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
553
554         * device/lib/printf_large.c: Temporary patch for bug 1358192:
555           printf("%f"...) sets fraction to zero.
556
557 2005-11-16 Raphael Neider <rneider AT web.de>
558
559         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
560           fixes #1357221
561         * src/pic/gen.c (genIfx): implemented for CARRY bit
562         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
563           to generic pointers, fixes #1357332,
564           (pic16_movLit2f): NEW,
565           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
566
567 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
568
569         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
570
571 2005-11-11 Raphael Neider <rneider AT web.de>
572
573         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
574         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
575           compute pointer's type from operand,
576           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
577           improved single bit reads, fixes bug #1353379
578
579 2005-11-09 Borut Razem <borut.razem AT siol.net>
580
581         * support/scripts/sdcc.nsi: added lib/pic to the package
582
583 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
584
585         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
586
587 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
588
589         * support/regression/tests/bug1348008.c: added
590         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
591         * support/regression/tests/bug1337835.c: updated comment
592
593 2005-11-06 Borut Razem <borut.razem AT siol.net>
594
595         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
596           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
597           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
598           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
599           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
600           dynamic construction of cl_error_class and derivates - 2.nd try
601
602 2005-11-05 Borut Razem <borut.razem AT siol.net>
603
604         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
605           bug, which caused Bus Errors on sparc solaris
606
607 2005-11-04 Borut Razem <borut.razem AT siol.net>
608
609         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
610           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
611           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
612           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
613           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
614           and derivates to resolve the initialization problem on OSX
615
616 2005-11-02 Borut Razem <borut.razem AT siol.net>
617
618         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
619           corrected typo - #include <winsock2.h>
620
621 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
622
623         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
624           (_asxxxx_mapping): added org directive for future enhancements
625
626 2005-11-01 Borut Razem <borut.razem AT siol.net>
627
628         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
629           enabled sockets on WIN32
630         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
631
632 2005-10-31 Borut Razem <borut.razem AT siol.net>
633
634         * support/regression/generate-cases.py: escape backslashes in {testcase}:
635           WIN32 backslash path delimiters should be escaped when used in C strings
636         * support/regression/tests/bitfields.c: exclude failing assertions for
637           __CYGWIN32__ and __MINGW32__ hosts
638
639 2005-10-30 Borut Razem <borut.razem AT siol.net>
640
641         * src/SDCCutil.c: corrected double comparison typo
642
643 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
644
645         * device/lib/medium/Makefile: added for new memory model medium
646         * device/include/asm/mcs51/features.h: updated for medium/pdata
647         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
648           added Multiply & Accumulate sbit's and MAC0_PAGE define
649         * device/include/mcs51/c8051f300.h: added sfr16 definitions
650         * device/include/mcs51/c8051f310.h: added sfr16 definitions
651         * device/lib/_mullong.c: update for medium model
652         * device/lib/incl.mk: added medium model
653         * doc/sdccman.lyx: documented medium model
654         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
655         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
656         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
657         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
658           (allocParms): set SCLS and OCLS to pdata for medium model
659         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
660           for pdata,
661           (powof2): return <0 if not power of 2
662         * src/avr/gen.c (genBitWise): use updated powof2
663         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
664           (shiftR2Left2Result): small optimization in setup, save acc when storing,
665           (shiftLLeftOrResult): use B if necessary
666         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
667         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
668         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
669         * support/regression/Makefile.in: added test-mcs51-medium
670         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
671
672 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
673
674         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
675         specifier unsigned
676         * device/lib/time.c (mktime): fixed bug 1334315
677
678 2005-10-28 Raphael Neider <rneider AT web.de>
679
680         * device/include/pic/p16f_common.inc: added common declarations
681         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
682
683 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
684
685         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
686           (aopPutUsesAcc): added to predict accumulator use,
687           (assignResultValue): save acc if necessary,
688           (genMinusDec): store result if indirectly addressed,
689           (genDivOneByte):  save acc if necessary,
690           (movLeft2Result): bugfix if left already in acc,
691           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
692             attention to accumulator use (esp. pdata),
693           (genReceive): receive pdata correctly
694         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
695         * src/SDCCicode.h: added isOperandInPagedSpace prototype
696
697 2005-10-27 Raphael Neider <rneider AT web.de>
698
699         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
700
701 2005-10-27 Raphael Neider <rneider AT web.de>
702
703         * .version: changed version to 2.5.4
704         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
705         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
706           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
707             arithmetics support routines
708         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
709         * device/lib/Makefile.in: also create installdir for pic
710
711         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
712           pic14 port as well
713         * src/pic/device.c (dump_sfr): rewritten to delegate register
714           placement to the linker (use `extern sym' rather than sym EQU addr),
715           (validAddress): fixed to check last specified address
716         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
717           (popGetLit): truncate literal value to 8 bit,
718           (popGet): moved assert to more appropriate place
719           (popGetExternal): create pCode operand from and mark the according
720             symbol as being `extern'
721           (popGetAddr): added sanity check on immediate's offset, provide
722             GPOINTER tag on demand
723           (aopPut): fixed for immediates,
724           (mov2w_op): move operand's address or contents to WREG (depending on
725             operand type), safer variant of mov2w,
726           (movwf,call_libraryfunc): NEW, handy abbreviations,
727           (get_argument_pcop,get_return_val_pcop,pass_argument,
728           get_returnvalue): interface for accessing function parameters and
729             return values,
730           (assignResultValuei,genRet): use new parameter/return value interface
731           (pic14_getDataSize): back to old version handling generic pointers,
732           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
733             provided implementation and/or fixed old one,
734           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
735             calls, removed legacy 8051 reference code
736           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
737           (loadSignToC): NEW, move the operands sign bit to CARRY,
738           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
739             genRightShiftSigned, accepts negative shift counts,
740           (setup_fsr): load FSR and adjust IRP (indirect memory access),
741           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
742             generic pointers, __data pointers and __code pointers,
743           (genUnpackBits,genPackBits): rewritten to work with generic pointers
744             and signed bitfields, limit bitfields to 8 bit,
745           (genDataPointerGet): fixed number of bytes read,
746           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
747           (genPointerGet,genPointerSet): fixed handling of __code pointers,
748             pointers to constant data are no longer assumed to point to __code
749             space, removed invalid pointer types,
750           (bitpatternFromVal): retrieve the PICs representation of an integer
751             or float literal,
752           (genDataPointerSet): fixed assigning to po_immediate operands,
753           (genGenPointerSet): implemented as library call,
754           (genIfx): fixed incorrect condition,
755           (genAddrOf): limit generic pointers' addresses to 2 bytes,
756             provide GPOINTER tag according to destination's storage class,
757           (genCast): added code to handle casting to generic pointers, added
758             sign-/zero extension of the result
759           (aop_isLitLike,op_isLitLike): fixed handling of immediates
760         * src/pic/gen.h: added macros to access IRP bit in STATUS register
761         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
762           extend the result
763         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
764           address/register resides in the shared banks
765           (emitSymbolToFile): improved to handle global and `pinned' symbols,
766             put all variables into separate sections (have the linker arrange
767             them)
768           (picglue): put init code and interrupt handlers in separate sections
769         * src/pic/main.c: added port specific options table, modified to PORT
770           structure to make GPOINTERs 3 byte, added pic14_options
771           (_pic14_do_link): private linking routine (update paths to libraries,
772             add libsdcc.lib by default)
773         * src/pic/main.h: declare pic14_options
774         * src/pic/pcode.c: fixed instructions i/o relations,
775           (RegCond): reverted to correct version,
776           (newpCodeOpLit): truncate literals to 8 bit,
777           (genericPrint): added debug output,
778           (getRegFromInstruction): fixed for various operand types, simplified
779           (BuildFlow): fixed broken handling of isntructions with labels
780           (LinkFlow): start at last instruction in flow (skip trailing comments),
781             pass the flow on to the next instruction after CALL
782           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
783           (insertPCodeInstruction): fixed inserting after a skip instruction,
784           (DoBankSelect): fixed for labeled instructions
785           (OptimizepBlock): honor --nopeep switch
786           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
787         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
788         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
789           (pCodeOptime2pCodes): allow disabling this optimization via
790             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
791             but is still buggy), started implementation of a dataflow based
792             pCode optimization (CSE + dead code elimination)
793           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
794         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
795           names are independant of the stack location and therefore portable across
796           devices
797
798 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
799
800         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
801           (selectSpil): fixed bug 1337835 by not spilling bit variables
802         * support/regression/tests/bug1337835.c: added test for this bug
803         * src/mcs51/peeph.def: restart after rule 3.c,
804           addded rules 263.x to optimize loading constants
805
806 2005-10-26 Raphael Neider <rneider AT web.de>
807
808         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
809         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
810           (genAssign): emit warning when casting literals to generic pointer
811             type, also applies when taking the address of a fixed variable,
812           (genCast): improved casting to generic pointers
813         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
814           extern variables, added verbose error message
815         * device/include/pic16/{string.h,errno.h}: added #pragma library c
816
817 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
818
819         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
820         carry must be complemented too
821         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
822         could be emitted by genMinus
823         * src/SDCCval.c (constVal): fixed bug 1305065
824
825 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
826
827         * src/SDCCast.c (addCast): added promotion for bit variables
828         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
829         promotion casts + optimisation
830         (optimizeGetWord): fix warning 'i' might be used uninitialized
831         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
832         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
833
834 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
835
836         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
837         all chars are promoted to int; promotion should be handled in SDCCast.c
838
839 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
840
841         * device/lib/_strcmp.c: Fixed bug 1326457
842
843 2005-10-11 Raphael Neider <rneider AT web.de>
844
845         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
846         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
847
848 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
849
850         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
851         * support/regression/tests/sfr16.c: added test for the sfr32 bug
852
853 2005-10-04 Raphael Neider <rneider AT web.de>
854
855         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
856           device/lib/pic16/pics.all: added pic18f1320
857         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
858
859 2005-09-30 Raphael Neider <rneider AT web.de>
860
861         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
862         * src/pic16/devices.inc: NEW, provides device descriptions
863         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
864
865 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
866
867         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
868           GETHBIT
869
870 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
871
872         * doc/sdccman.lyx: updated Highest Order Bit documentation,
873           documented Any Order Bit, Higher Order Byte and Higher Order Word
874         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
875         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
876           (optimizeGetAbit): new, to get any bit, not only the high bit,
877           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
878           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
879           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
880           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
881             RIGHT_OP: also try GETBYTE, GETWORD optimization,
882             GETABIT, GETBYTE, GETWORD: decorate them,
883           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
884           (ast_print): added GETABIT, GETBYTE, GETWORD
885         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
886         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
887           (geniCodeBinary): new generic binary icode,
888           (ast2iCode): added GETABIT, GETBYTE, GETWORD
889         * src/port.h: updated comment for PORT.hasExtBitOp
890         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
891           (genGetByte): new, to get a single byte,
892           (genGetWord): new, to get a word from a long,
893           (gen51Code): added GETABIT, GETBYTE, GETWORD
894         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
895
896 2005-09-23 Raphael Neider <rneider AT web.de>
897
898         * configure.in, configure: have device/lib/pic configured
899         * device/lib/Makefile.in: added model-pic14
900         * device/lib/clean.mk: added pic/ to clean rule
901         * device/lib/pic: added rudimentary pic14 library providing support
902           functions for multiplication/division/generic pointer access
903         * src/SDCCopt.c (convilong): mark support functions as extern
904           for pic14 port as well
905         * src/pic/gen.c (genMult): added assertions,
906           (genpic14Code): emit warning on unhandled iCodes
907         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
908         * src/pic/pcode.c (pCodeOpCopy),
909         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
910           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
911           SFR_REGISTER}), made safe for future extensions
912         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
913           instructions even if preceeded by SKIP instructions (also remove
914           them); removed unused code
915         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
916           prevents leaving parts of the structure uninitialized after copying
917
918 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
919
920         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
921           ago by me
922         * support/regression/tests/addsub.c: added test for the bug
923
924 2005-09-21 Raphael Neider <rneider AT web.de>
925
926         * device/include/pic16/pic18f1220.h,
927           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
928         * device/lib/pic16/Makefile.rules: added missing opening paren
929         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
930           are provided in genutils.c,
931           (genUminusFloat,genUminus,genCmpEq): added asserts on different
932           operand/result sizes,
933           (genCmp): assert on NULL pointers first, then check deref'ed values
934         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
935           result size
936
937 2005-09-18 Raphael Neider <rneider AT web.de>
938
939         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
940           as these are now unused,
941           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
942         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
943           local, avoids uninitialized pointer dereference on r->name
944         * src/pic16/ralloc.c (newReg): fixed indentation
945
946 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
947
948         * src/SDCCval.c (constVal): fixed bug 730366
949         * support/Util/SDCCerr.c,
950         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
951
952 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
953
954         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
955
956 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
957
958         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
959
960 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
961
962         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
963           (hex2dec): made hex_digit unsigned char, removed ascii dependance
964         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
965           (hex2dec): made hex_digit unsigned char, removed ascii dependance
966         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
967         * packihx/packihx.c (hexDigit): made c unsigned char
968         * as/mcs51/lklibr.c (fndsym),
969         * link/z80/lkgb.c (gb),
970         * link/z80/lklibr.c (fndsym),
971         * link/z80/lkrloc.c (relr),
972         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
973         * src/SDCC.lex (checkCurrFile, process_pragma),
974         * src/SDCCglue.c (spacesToUnderscores),
975         * src/SDCCmain.c (setParseWithComma, processFile),
976         * src/asm.c (tvsprintf, printCLine),
977         * src/avr/gen.c (emitcode, aopPut),
978         * src/ds390/gen.c (emitcode),
979         * src/hc08/gen.c (emitcode, emitinline),
980         * src/mcs51/gen.c (emitcode, genInline),
981         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
982           tokenizeLineNode),
983         * src/pic/ralloc.c (debugLog),
984         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
985           tokenizeLineNode),
986         * src/pic16/ralloc.c (debugLog),
987         * src/z80/main.c (_process_pragma):
988            made all ctype.h function calls safe
989         * src/SDCCopt.c: include math.h for fabs
990         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
991           and used them throughout the code to make ctype.h function calls safe
992         * src/ds390/main.c (asmLineNodeFromLineNode),
993         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
994         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
995            unsigned char*
996         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
997           (newpCodeAsmDir): made ctype.h function calls safe
998         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
999           pic16_emitcode):  made lbp unsigned char*
1000         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1001           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1002         * src/xa51/gen.c (emitcode),
1003         * src/z80/gen.c (_emit2): made lbp unsigned char*
1004         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1005            char*
1006
1007 2005-09-05 Raphael Neider <rneider AT web.de>
1008
1009         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1010           access bank splitpoint
1011
1012 2005-09-05 Raphael Neider <rneider AT web.de>
1013
1014         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1015
1016 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1017
1018         * .version: changed to version 2.5.3
1019         * doc/sdccman.lyx: changed version to 2.5.3,
1020           documented --codeseg and --constseg and pragma codeseg and constseg,
1021           documented bit parameters (reentrant) and bit returning
1022         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1023            currFunc->recvSize, but is this ok for all ports?
1024           (ast2iCode): result of ~ on unsigned char must be cast to int for
1025            bool to work
1026         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1027           function pointers in bit space
1028         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1029           (processFuncArgs): call port.reg_parm() with reentrancy info
1030         * src/port.h,
1031         * src/avr/main.c,
1032         * src/ds390/main.c,
1033         * src/hc08/main.c,
1034         * src/pic/main.c,
1035         * src/pic16/main.c,
1036         * src/xa51/main.c,
1037         * src/z80/main.c: port.reg_parm prototype extended with
1038           "bool reentrant" parameter
1039         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1040           options.stackAuto for allocating bit register parameters
1041         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1042           (genSend): set BitBankUsed if it is,
1043           (selectRegBank): factored out of genCall for use in genPcall,
1044           (genCall): removed redundant dtype assignmen, use selectRegBank,
1045           (genPcall): handle returning in Carry properly, save in F0 if needed,
1046           (genReceive): handle bit register parameters
1047         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1048           (mcs51_assignRegisters): enable bit registers for all reentrant
1049            functions and don't set BitBankUsed unconditionally
1050         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1051         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1052         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1053
1054 2005-08-27 Borut Razem <borut.razem AT siol.net>
1055
1056         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1057         ppc-osx (Darwin) does not support -u option. It seems that it is
1058         supported only on Linux - GNU cp
1059
1060 2005-08-25 Borut Razem <borut.razem AT siol.net>
1061
1062         * sim/ucsim/gui.src/serio.src/Makefile.in,
1063           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1064           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1065           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1066           install and strip, since the strip at /usr/ccs/bin should be used
1067           on solaris
1068
1069 2005-08-24 Borut Razem <borut.razem AT siol.net>
1070
1071         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1072
1073 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1074
1075         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1076         ffffffffu
1077
1078 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1079
1080         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1081         * as/mcs51/lkmain.c (link_main): fixed warning
1082         * device/include/stdbool.h: ds390 has no advanced bit support yet
1083         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1084         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1085         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1086           and updated their macros
1087         * src/SDCCval.c (constVal): updated comment for renamed b_long
1088
1089 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1090
1091         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1092         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1093           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1094           (oprio): set priority for '['
1095         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1096            and adb_24_bit
1097         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1098         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1099         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1100         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1101           added overlayable BIT_BANK area
1102         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1103           (summary2): explain 'T' in legenda
1104         * as/mcs51/lkrloc.c: replaced old K&R style,
1105           (relr): added R_BIT processing,
1106           (errmsg): added "Bit-addressable relocation error",
1107           (adb_bit): added for converting from byte- to bit-addressable space,
1108           (adb_24_bit): added for converting from byte- to bit-addressable space
1109         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1110            used in reentrant functions now even as return value
1111         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1112         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1113           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1114         * src/SDCCglobl.h: added indicator BitBankUsed
1115         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1116            the bit registers b0-b7
1117         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1118           (geniCodeCast): fixed bug 1263853,
1119           (geniCodeLogicAndOr): put result in bool or char,
1120           (geniCodeReceive): added parameter func for accessing the return type,
1121           (geniCodeFunctionBody): pass func to geniCodeReceive
1122         * src/SDCCmain.c: added indicator BitBankUsed
1123         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1124         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1125           (checkSClass): don't put automatic bool/bit on stack,
1126           (checkFunction): removed check on function cannot return bit
1127         * src/SDCCsymt.h: added newBoolLink prototype
1128         * src/mcs51/gen.c (rb1regs): added bit registers,
1129           (movc): created for assigning to carry,
1130           (pushReg, popReg): created for pushing registers,
1131           (sameRegs): check both AOP_REG and AOP_CRY types,
1132           (aopOp): handle bit registers,
1133           (aopPut): optimization no self-assign,
1134           (saveRegisters): push reg->base (bits) only once for bit registers,
1135            and use pushReg,
1136           (unsaveRegisters): pop reg->base only once and use popReg,
1137           (assignResultValue): added parameter func and return in carry for bits,
1138           (genIpush): optimization no reload in A if not changed,
1139           (genSend): bit parameters in reentrant functions are passed in bit
1140            registers by first assigning to bits in B, then save registers and
1141            copy B to bits,
1142           (genCall): handle returning in Carry properly, save it in F0 if needed,
1143           (genPcall): updated assignResultValue call, this is not safe yet for bit
1144            returning function !!!
1145           (genFunction): don't generate equ's for bit registers and use pushReg,
1146           (genEndFunction): take care of bit returning functions and use popReg,
1147           (genRet): return bit in Carry,
1148           (genIfx): optimize bit registers and other directly addressable bits,
1149           (genReceive): updated assignResultValue call
1150         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1151           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1152            registers when using stack-auto
1153         * src/mcs51/ralloc.c (_G): added allBitregs,
1154           (regs8051): added the bit registers,
1155           (createStackSpil): use macro IS_BIT,
1156           (getRegBit): added to allocate a bit register, else spill,
1157           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1158           (updateRegUsage): factored out to ease stepping while debugging,
1159           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1160            also allocate bit registers,
1161           (fillGaps): handle bit registers,
1162           (findAllBitregs): added to create bit vector with all bit registers,
1163           (mcs51_allBitregs): returns this bit vector,
1164           (mcs51_assignRegisters): when using stack-auto use bit registers for
1165            passing parameters and creating local variables
1166         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1167
1168 2005-08-22 Borut Razem <borut.razem AT siol.net>
1169
1170         * device/lib/Makefile.in: replaced find option -or with -o
1171           to make it run on solaris
1172
1173 2005-08-22 Raphael Neider <rneider AT web.de>
1174
1175         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1176           fixes #1265442 (crash on Solaris)
1177
1178 2005-08-20 Borut Razem <borut.razem AT siol.net>
1179
1180         * configure, configure.in: added tests for libsocket and libnsl libraries,
1181           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1182           from support/regression/Makefile.in
1183         * support/regression/Makefile.in: added
1184         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1185         * sim/ucsim/libtool: regenerated on sparc-solaris
1186         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1187           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1188           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1189           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1190           sparc-solaris, which doesn't use GNU ld linker
1191         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1192         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1193
1194 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1195
1196         * src/mcs51/peeph.def: updated comments
1197
1198 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1199
1200         * device/lib/_gptrget.c,
1201         * device/lib/_gptrput.c: slightly shorter
1202         * doc/sdccman.lyx: incremented version
1203         * src/mcs51/peeph.def: moved peephole comments to the line of first
1204           change to better keep line correlation, reanimated 186.e
1205         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1206
1207 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1208
1209         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1210           David Saxton with quotes around file name.
1211
1212 2005-08-15 Borut Razem <borut.razem AT siol.net>
1213
1214         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1215           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1216           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1217           make tests run on x86_64 platform
1218
1219 2005-08-13 Raphael Neider <rneider AT web.de>
1220
1221         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1222           as it might be executed DURING a build (parallel make is wonderful)
1223
1224 2005-08-13 Raphael Neider <rneider AT web.de>
1225
1226         * device/lib/Makefile.in (port-specific-objects-pic16):
1227           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1228         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1229           dependency
1230         * device/lib/pic16/Makefile.rules: build subdirs before creating
1231           the library, removed builddir rule, create $(builddir) early in
1232           recurse rule, use empty recurse rule for leaf directories
1233         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1234           mkdir errors (race condition), removed duplicate suffix "hex"
1235           from clean rules
1236         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1237         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1238           prevents mkdir -p from aborting on Alpha
1239
1240 2005-08-12 Raphael Neider <rneider AT web.de>
1241
1242         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1243           db-statements in order to allow for arrays of pointers in code
1244           sections to be placed without interspersed 0-padding, fixes
1245           bug #1256215
1246         * (emitStatistics): fixed division by zero for pic18f1220
1247         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1248           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1249         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1250         * (pic16_pCodeConstString): keep track of already emitted string
1251           literals to prevent "duplicate definitions of symbol _str_NR"
1252         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1253           debug message
1254         * device/lib/Makefile.in: ignore failing PIC16 library builds
1255         * device/lib/pic16/Makefile: do not build if gputils are missing
1256         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1257
1258 2005-08-10 Raphael Neider <rneider AT web.de>
1259
1260         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1261           my last commit)
1262
1263 2005-08-10 Raphael Neider <rneider AT web.de>
1264
1265         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1266           Rokas' patch to add the new fixed point type "__fixed16x16"
1267         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1268           functions for __fixed16x16 arithmetics
1269         * device/lib/pic16: reimplemented the build system to support
1270           a separate build directory, better handling of libio (create
1271           the library in a separate subdir for each architecture) and
1272           easier configuration (centralized in Makefile.common)
1273
1274 2005-08-07 Raphael Neider <rneider AT web.de>
1275
1276         * src/pic16/gen.c (genrshTwo): fixed sign extension
1277         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1278         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1279           added T0CONbits
1280         * device/include/pic16/pic18f4220.h: NEW, header for
1281           pic18f4220 and pic18f4320
1282         * device/include/pic16/pic18fregs.h: added new devices,
1283           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1284         * device/include/pic16/signal.h: resolved name clashes
1285           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1286           to also allow testing for interrupt enable bits, added
1287           comments on how to use the macros
1288         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1289         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1290           register definitions for the devices
1291         * device/lib/pic16/pics.all: added new devices
1292         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1293           allocated memory
1294         * device/lib/pic16/libc/stdlib/memfree: do not count
1295           the block header as free memory
1296         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1297           simplified and added missing end-of-blocklist-marker
1298           (reported by Peter Onion, fixes #1252814)
1299         * (_mergeHeapBlock): fixed loop condition
1300         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1301           len==0, restructured code
1302         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1303           up a bit, reduced bitfield accesses, prevent endless loops
1304           in case of heap corruption
1305         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1306           "unreferenced arguments/must return a value" warnings
1307         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1308           replaced BAUDREG with SPBRG
1309         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1310           device/lib/pic16/debug/gstack/gstack.c: replaced
1311           _naked, _asm, _endasm with __naked, __asm, __endasm
1312
1313 2005-08-05 Raphael Neider <rneider AT web.de>
1314
1315         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1316           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1317
1318 2005-08-05 Borut Razem <borut.razem AT siol.net>
1319
1320         * device/lib/Makefile.in: added missing ';'
1321         * configure: removed ^M characters
1322
1323 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1324
1325         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1326           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1327           License
1328
1329 2005-08-04 Borut Razem <borut.razem AT siol.net>
1330
1331         * configure.in: pic16 libraries build 2nd try - enable running
1332           configure in device/lib/pic16
1333         * configure: regenerated from configure.in
1334         * device/lib/Makefile.in: create $(PORT)/bin directory
1335
1336 2005-08-03 Raphael Neider <rneider AT web.de>
1337
1338         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1339           to get/set values via pointers
1340         * (genUnpackBits,genPackBits): changed detection of
1341           ptr->bitfield vs. sym.bitfield, fixed access via generic
1342           pointers, removed dead (wrong) code for multibyte bitfields
1343         * (genNearPointerGet, genGenPointerGet): removed useless code,
1344           fixed bitfield detection, fixes #1250594
1345         * (genNearPointerSet): removed useless code
1346         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1347           and introduced macro pic16_emitpcode that conditionally emits
1348           the origin of the following pCode (useful for debugging SDCC)
1349         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1350         * (createDefmap): fixed handling of LFSR for --optimize-df
1351
1352 2005-08-02 Borut Razem <borut.razem AT siol.net>
1353
1354         * device/lib/Makefile.in: pic16 libraries build enabled since
1355           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1356
1357 2005-08-02 Raphael Neider <rneider AT web.de>
1358
1359         * src/pic16/gen.c (genPackBits): removed deprecated warning
1360         * (genGenPointerSet): fixed bitfield detection
1361
1362 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1363
1364         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1365
1366 2005-07-31 Raphael Neider <rneider AT web.de>
1367
1368         * device/lib/pic16/libdev/pic18f458.c,
1369           device/include/pic16/pic18f458.h: added missing T0CONbits
1370
1371 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1372
1373         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1374
1375 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1376
1377         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1378
1379 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1380
1381         * device/include/mcs51/at89c51ed2.h: added.
1382
1383 2005-07-23 Raphael Neider <rneider AT web.de>
1384
1385         * src/pic/gen.h: added emitpcode macro for debugging
1386         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1387           and replace by macro adding debug information on demand
1388         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1389         * (gencjne): tried to fix; replaced with correct (slower) code
1390         * (gen{Unp,P}ackBits): fixed single bit access
1391         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1392         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1393           previous instruction
1394         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1395           register has to be handled with care (forbidding movement
1396           of assignments/uses, removing assignments completely, ...)
1397         * (pCodeOptime2pCodes): make use of regIsSpecial
1398         * added lots of debugging output (commented out)
1399         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1400           from being reused as result UNLESS it is known to work
1401
1402 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1403
1404         * support/Util/dbuf.h: include <stddef.h> for size_t
1405         * .version: changed to version 2.5.2
1406
1407 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1408
1409         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1410
1411 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1412
1413         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1414           (genModOneByte): removed needless psha/pula
1415
1416 2005-07-22 Raphael Neider <rneider AT web.de>
1417
1418         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1419           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1420         * src/pic/gen.c (resolveIfx): do not "invent" labels
1421         * (genSkipc): changed to positive logic
1422         * (genSkipCond): removed as no longer needed
1423         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1424           backport from PIC16
1425         * (genLeftShift): check operands are in different registers
1426         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1427           INCF does not update CARRY...
1428         * src/pic/main.c: fixed _linkCmd
1429         * src/pic/pcode.c (unlinkpCode): added inactive code
1430         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1431           alive (do not assign result and operand overlapping registers)
1432
1433 2005-07-22 Raphael Neider <rneider AT web.de>
1434
1435         * src/pic/device.c (dump_sfr): replaced register declaration with
1436           call to emitSymbolToFile() to avoid duplicate symbols
1437         * (assignRelocatableRegisters): do not declare external symbols
1438         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1439           right (take size of type, not etype)
1440         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1441         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1442         * (packRegsForAccUse): disabled assignment of WREG as
1443           the result reg to prevent occurence of just fixed #1235003,
1444           fixes #1242954
1445         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1446           symbols (avoids duplicate symbols in .asm file)
1447         * (pic14emitRegularMap): use emitSymbolToFile()
1448         * src/pic/gen.c (aopOp): fixed spillLocation handling
1449         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1450         * (genDataPointerSet): removed unneccessary variables/output
1451
1452 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1453
1454         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1455         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1456
1457 2005-07-21 Raphael Neider <rneider AT web.de>
1458
1459         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1460           architecture cannot handle them efficiently, fixes bug #1235003
1461         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1462           check for empty sets before using them (fixes bug #1232190)
1463
1464 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1465
1466         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1467           (lnksect2): generate warnings for memory overlap
1468         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1469           constseg to set the name of these segments so you can instruct the linker
1470           to place them in banks
1471         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1472         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1473           added code_seg and const_seg to options
1474         * src/SDCCglue.c (emitMaps): use options.const_seg,
1475           (createInterruptVect): put interrupt vectors in segment HOME,
1476           (glue): put HOME before static segment and put the main glue in HOME,
1477           (glue): use options.code_seg
1478         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1479         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1480           these segments so you can instruct the linker to place them in banks
1481           (linkEdit): use code_loc for HOME segment which should be the first
1482           segment in code memory now
1483         * src/SDCCmem.c: fixed more stuff like bug 1238386
1484         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1485           (changePointer): don't change function pointers to code pointers for
1486           banked functions,
1487           (compareType): added exceptional check for banked function pointers
1488         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1489         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1490           after static in code memory
1491         * src/mcs51/gen.c: added aopLiteralLong prototype,
1492           (aopForSym): use getSize for functions,
1493           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1494           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1495           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1496           the segment,
1497           (genPcall): use call for literal function pointers and generate banked
1498           calls over the one trampoline so there's only one place for the user to
1499           modify according to his/hers hardware,
1500           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1501           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1502         * src/mcs51/main.c: added keyword banked,
1503           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1504         * support/Util/SDCCerr.c,
1505         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1506           needed for passing the bank and address to the trampoline
1507         * device/lib/mcs51/crtbank.asm: added for bankswitching
1508         * device/lib/mcs51/Makefile: added crtbank
1509
1510 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1511
1512         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1513           for fields at offset 0 of a struct or union as reported
1514           on 2005-07-07 in the developer mailing list.
1515
1516 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1517
1518         * src/SDCCmem.c: fixed bug 1238386
1519
1520 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1521
1522         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1523           (patch #1144962), added peephole 300, enabled 259.x
1524         * doc/sdccman.lyx: removed screenshot and provided link instead
1525
1526 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1527
1528         * doc/sdccman.lyx: added section about debugging with ddd
1529         * doc/figures/ddd_example.eps: screenshot of debugging session
1530
1531 2005-07-04 Raphael Neider <rneider AT web.de>
1532
1533         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1534           like CODE pointers, fixes #1115683
1535         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1536           call, fixes bugs #1232211, #1228110,
1537           fixed wrong casts to pCodeFlow from pCodeInstructions
1538
1539 2005-07-04 Raphael Neider <rneider AT web.de>
1540
1541         * src/pic/gen.c (popGet): changed assert to allow for
1542           bit operands
1543         * (popGetAddr): changed signature to provide
1544           an additional index, patched all call sites
1545         * (genCmpEq): handle literal-like operands correctly
1546         * (genAddrOf): added sanity checks on __code/__data pointers
1547         * (genAssign): added handling of symbols from __code section
1548         * (gencjne): do not generate code for comparisons whose result
1549           is neither stored nor used, fixes bug #1171114
1550         * (AccLsh, AccRsh): operate on operand instead of WREG
1551         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1552           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1553           by known count
1554         * rewrote complete shift-by-literal logic, commented unused
1555           functions out
1556         * (genConstPointerGet): get multiple bytes (if result size > 1),
1557           fixed handling of non-immediate addresses
1558         * (genPointerGet): handle CODE pointers like CONST pointers
1559         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1560         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1561           operand is to be treated as a literal or not
1562         * (mov2w,genPcall,genCmpEq),
1563           src/pic/genarith.c: use aop_isLitLike() to decide between
1564           literal/register contents
1565         * (addSign): added missing offset
1566         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1567           only emit comment in debug-mode,
1568           use {aop,op}_isLitLike throughout the file
1569         * src/pic/glue.c: fix initializers for pointers (work in progress)
1570         * src/pic/pcode.c (get_op): honor index on _const symbols
1571         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1572         * (dumppBlock): added pCode size estimation
1573         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1574           check for IS_SYMOP before OP_SYMBOL'ing
1575         * fixed indentation, compacted switch-statements
1576         * (allocReg): find free register and allocate it instead of
1577           allocating new registers all the time
1578         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1579           registers as its operands (necessary only for multibyte GETs)
1580
1581 2005-07-01 Raphael Neider <rneider AT web.de>
1582
1583         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1584           debugging .asm-output macros FENTRY + FEXIT
1585         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1586           way... I wonder...
1587         * (emitpComment): NEW, printf to pCode
1588         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1589           offset handling
1590         * (popGetAddr): NEW, variant of popGet to access an immediates
1591           high(er) bytes instead of the n'th byte of memory they reference,
1592           replaced popGet with popGetAddr where neccessary
1593         * (genDataPointerGet): reactivated and fixed implementation
1594         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1595           accesses
1596         * (genDataPointerSet): fixed multibyte assignments
1597         * (genpic14Code): fixed --i-code-in-asm handling
1598         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1599         * (genPlus): fixed index-out-of-bounds error
1600         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1601         * src/pic/ralloc.c: added debugging output macro FENTRY2
1602         * (spillThis): fixed indentation, enbraced for-body for clarity
1603         * (rematStr): commented out as now unused
1604         * (regTypeNum): commented out special spill case (overwrites
1605           arbitrary values)
1606         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1607
1608 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1609
1610         * doc/sdccman.lyx: documented sfr16/sfr32,
1611           added example for using storage class with function pointers
1612         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1613
1614 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1615
1616         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1617         * device/lib/_itoa.c,
1618         * device/lib/_ltoa.c: optimized codesize
1619         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1620           but don't know how to suppress the double warning.
1621         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1622         * support/Util/SDCCerr.c,
1623         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1624
1625 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1626
1627         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1628           fixed old K&R prototypes
1629         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1630         * device/lib/_gptrget.c,
1631         * device/lib/_gptrgetc.c,
1632         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1633           also new versions for small generic pointers and banked generic pointers
1634         * src/port.h: added const_name
1635         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1636         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1637         * src/SDCCcse.c (findPrevIc): check all associative operators
1638         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1639         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1640         * src/SDCCmem.c: updated comments,
1641           set far-space to 0 for pdata, results in optimized code
1642         * src/SDCCmem.h: added macro CONST_NAME
1643         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1644           moving the info into the highest bits, see also gptrget/gptrput
1645         * src/src.dsp: added sdcc.ico to project files
1646         * src/avr/gen.c (genCast): fixed bug 0x%d
1647         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1648         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1649           relation between ptr_type and DCL_TYPE,
1650           (genCast): fixed bug 0x%d
1651         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1652           (CODE)" for const_name
1653         * src/hc08/gen.c (genCast): fixed bug 0x%d
1654         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1655           (hc08_port): added "CONST (CODE)" for const_name
1656         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1657           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1658           between ptr_type and DCL_TYPE,
1659           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1660           operand* and took AOP() inside function so sfr-ness can be checked,
1661           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1662           new prototype,
1663           (genFunction, genEndFunction): optimized stack setup,
1664           (genMinus): optimized for literals with ending zeroes (in bytes),
1665           (genCast): fixed bug 0x%d
1666         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1667           (mcs51_port): added "CONST (CODE)" for const_name
1668         * src/mcs51/peeph.def: made rule 226 more generic
1669         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1670         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1671         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1672         * src/z80/main.c (z80_port): added NULL for const_name,
1673           (gbz80_port): added NULL for const_name
1674         * support/regression/tests/bug663539.c,
1675         * support/regression/tests/sfr16.c: new tests
1676
1677 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1678
1679         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1680
1681 2005-06-24 Raphael Neider <rneider AT web.de>
1682
1683         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1684           corrected typos...
1685         * device/include/pic16/signal.h: added USBIF
1686           and SIG_USB
1687
1688 2005-06-24 Raphael Neider <rneider AT web.de>
1689
1690         * device/lib/pic16/libdev/pic18f2455.c,
1691           device/include/pic16/pic18f2455.h: NEW
1692         * device/include/pic16/pic18fregs.h,
1693           device/lib/pic16/pics.all,
1694           src/pic16/device.c: added 18f2455
1695         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1696           device/include/pic16/{pic18f[68][567].h,usart.h}:
1697           replaced MULTIPLE_USARTS define with more relaible
1698           compatibility sfrs (for USART access)
1699
1700 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1701
1702         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1703           and the output asm file line is printed on two lines.
1704
1705 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1706
1707         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1708           BGT, BLE, BHI, and BLS instructions
1709         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1710           genCmpEq): removed
1711         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1712           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1713           fixes bug #1216342
1714         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1715
1716 2005-06-15 Raphael Neider <rneider AT web.de>
1717
1718         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1719         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1720         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1721           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1722           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1723
1724 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1725
1726         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1727           Marcel Telka in bug #1215704
1728
1729 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1730
1731         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1732           located in shared memory bank.
1733
1734 2005-05-31 Raphael Neider <rneider AT web.de>
1735
1736         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1737           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1738           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1739
1740 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1741
1742         * device/lib/_strncpy.c: fixed the fix
1743
1744 2005-05-26 Raphael Neider <rneider AT web.de>
1745
1746         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1747           initializers with \0, bug #1208187
1748         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1749           intializers with \0, bug #1208187
1750
1751 2005-05-26 Raphael Neider <rneider AT web.de>
1752
1753         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1754           initializers with \0, bug #1208187
1755         * src/pic16/main.c (_process_pragma): added sanity checks
1756           for stack position and size, emit warnings when appropriate
1757
1758 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1759
1760         * device/lib/_strncpy.c: fixed not filling with \0
1761
1762 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1763
1764         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1765           createFunction),
1766         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1767           compound_statement),
1768         * src/SDCCsymt.h,
1769         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1770
1771 2005-05-24 Raphael Neider <rneider AT web.de>
1772
1773         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1774
1775 2005-05-24 Raphael Neider <rneider AT web.de>
1776
1777         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1778           TRISE definitions, closes bug #1162453
1779
1780 2005-05-22 Raphael Neider <rneider AT web.de>
1781
1782         * src/pic16/main.c (_process_pragma): check for missing
1783           arguments to pragmas code and udata
1784         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1785           consistency fixes to match other headers (thanks to Jim Paris)
1786         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1787
1788 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1789
1790         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1791
1792 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1793
1794         * support/regression/tests/bug1198642.c: new test
1795         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1796         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1797         * support/scripts/resource.h,
1798         * support/scripts/resource.rc,
1799         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1800         * support/scripts/sdcc.ico: added 32x32 icon
1801
1802 2005-05-18 Raphael Neider <rneider AT web.de>
1803
1804         * device/lib/pic16/libdev/pic18f*.c,
1805         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1806           keywords to "__sfr" and "__at (X)"
1807         * device/include/pic16/pic18fregs.h: added pic18f4520
1808         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1809           #1203088 (MPLAB compatibility)
1810
1811 2005-05-17 Raphael Neider <rneider AT web.de>
1812
1813         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1814         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1815         * device/lib/pic16/pics.all: added new devices
1816         * src/pic16/device.c: added support for pic18f4520
1817
1818 2005-05-16 Raphael Neider <rneider AT web.de>
1819         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1820         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1821         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1822           convenience function for bit access
1823
1824 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1825
1826         * device/lib/printf_large.c: fixed bug 1193299
1827         * support/regression/tests/bug1057979.c: added test %3.3s
1828
1829 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1830
1831         * device/include/mcs51/8051.h,
1832         * device/include/mcs51/8052.h: made parseable with lint
1833         * device/include/mcs51/lint.h: added include file for (sp)lint
1834         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1835         * doc/cdbfileformat.lyx,
1836         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1837
1838 2005-05-14 Raphael Neider <rneider AT web.de>
1839
1840         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1841         * device/lib/pic16/libc/stdlib/itoa.c (new)
1842         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1843         * device/lib/pic16/libio/Makefile: exclude subdir according to
1844           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1845         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1846         * src/pic16/gen.c (genFunction): prevent annoying warning
1847         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1848           nameclashes on BeOS
1849         * support/cpp2/cppmain.c (cpp_output_string): new
1850         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1851           fixes bug 1116802
1852
1853 2005-05-13 Borut Razem <borut.razem AT siol.net>
1854
1855         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1856
1857 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1858
1859         * .version: changed to version 2.5.1; back to bleeding edge development
1860
1861 2005-05-11 Borut Razem <borut.razem AT siol.net>
1862
1863         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1864           generate PDF version 1.3 documents
1865
1866 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1867
1868         * .version: changed to version 2.5.0
1869
1870 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1871
1872         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1873
1874 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1875
1876         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1877         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1878         well as many smaller updates.
1879         * .version: changed to version 2.5.0-pre1
1880
1881 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1882
1883         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1884
1885 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1886
1887         * support/regression/tests/bug1185672.c: added
1888         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1889           bug 1185672
1890         * src/mcs51/gen.c (genCall): added comments, made it look safer
1891         * src/mcs51/gen.c (genEndFunction): simplified
1892
1893 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1894
1895         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1896
1897 2005-04-14 Borut Razem <borut.razem AT siol.net>
1898
1899         * fixed bug 1045046 - SIGSEGV with really simple code?:
1900           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1901           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1902
1903 2005-04-14 Borut Razem <borut.razem AT siol.net>
1904
1905         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1906           src/pic16/device.h: temporarily disabled experimental #inline pragma
1907           for 2.5.0 release
1908
1909 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1910
1911         * device/include/z80/stdio.h,
1912         * device/include/z80/string.h: removed these highly incomplete files so
1913           SDCC can use the default ones in device/include/
1914
1915 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1916
1917         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1918         gcc warning.
1919         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1920         fix sdcpp warnings.
1921
1922 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1923
1924         * device/include/malloc.h: removed redundant __reentrant prototypes
1925         * device/lib/_mullong.c: added working xstack variant in asm (C version
1926           doesn't pass regression tests)
1927         * device/lib/bpx.c: used __data and made bpx char for mcs51
1928         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1929           (createFunction): fixed bug with xstackPtr
1930         * src/SDCCcse.c: corrected comments
1931         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1932           (killDeadCode, eBBlockFromiCode): removed unused code
1933         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1934           corrected comments
1935         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1936           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1937           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1938           (genModOneByte): fixed warning in MSVC
1939         * src/mcs51/main.c (): added comments
1940         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1941
1942 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1943
1944         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1945
1946 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1947
1948         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1949
1950 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1951
1952         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1953         characters arrays of larger size than the declared one.
1954
1955 2005-04-10 Borut Razem <borut.razem AT siol.net>
1956
1957         * src/pic/gen.c (genInline),
1958           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1959           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1960           (findNextInstruction), (findPrevInstruction),
1961           (findInstructionUsingLabel),
1962           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1963         * src/pic/pcode.c (findLabel): added missing '\n'
1964         * src/src.dsp: added SDCCdwarf2.c to the project
1965
1966 2005-04-09 Borut Razem <borut.razem AT siol.net>
1967
1968         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1969
1970 2005-04-08 Raphael Neider <rneider AT web.de>
1971
1972         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1973           into the chain after a given one) and mergeDefmapSymbols (combine
1974           defmap entries for each symbol per pcode)
1975         * (createDefmap): have defmap entries merged in the end
1976         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1977           a symbol before replacing one access type's symbol, merge symbols in
1978           the end (replacement symbol might already have an entry)
1979         * (assignValnums): keep reference to written WREG intact
1980
1981 2005-04-08 Raphael Neider <rneider AT web.de>
1982
1983         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1984           Alpha)
1985
1986 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1987
1988         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1989         bytes
1990
1991 2005-04-07 Raphael Neider <rneider AT web.de>
1992
1993         * device/include/pic16/usart.h: added compatibility defines for
1994           devices with more than one USART
1995         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1996
1997 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1998
1999         * device/lib/Makefile.in: updated for port specific include
2000
2001 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2002
2003         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2004
2005 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2006
2007         * device/include/8051.h,
2008         * device/include/8052.h,
2009         * device/include/at89S8252.h,
2010         * device/include/at89c55.h,
2011         * device/include/at89x051.h,
2012         * device/include/at89x51.h,
2013         * device/include/at89x52.h,
2014         * device/include/mcs51reg.h,
2015         * device/include/reg51.h,
2016         * device/include/reg764.h,
2017         * device/include/regc515c.h,
2018         * device/include/sab80515.h: (re)moved these 12 files
2019         * device/include/mcs51/8051.h,
2020         * device/include/mcs51/8052.h,
2021         * device/include/mcs51/at89S8252.h,
2022         * device/include/mcs51/at89c55.h,
2023         * device/include/mcs51/at89x051.h,
2024         * device/include/mcs51/at89x51.h,
2025         * device/include/mcs51/at89x52.h,
2026         * device/include/mcs51/mcs51reg.h,
2027         * device/include/mcs51/reg51.h,
2028         * device/include/mcs51/reg764.h,
2029         * device/include/mcs51/regc515c.h,
2030         * device/include/mcs51/sab80515.h: and added them here
2031
2032 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2033
2034         * device/include/stdarg.h: changed SDCC specific keywords to double
2035           underlined form.
2036         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2037           mcs51 and ds390.
2038         * device/include/hc08/mc68hc908gp32.h,
2039         * device/include/hc08/mc68hc908jb8.h,
2040         * device/include/hc08/mc68hc908jkjl.h,
2041         * device/include/hc08/mc68hc908qy.h: fixed comments
2042         * device/include/mcs51/README: updated
2043         * device/include/mcs51/c8051f120.h: added PINRSF
2044         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2045         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2046           amidst code. Also inline is not supported.
2047
2048 2005-04-06 Raphael Neider <rneider AT web.de>
2049
2050         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2051         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2052           callers stack/frame pointers
2053
2054 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2055
2056         * device/include/pic16/usart.h: added, missing in previous commit,
2057         * device/include/pic16/adc.h: fixed typo,
2058         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2059         commit,
2060         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2061         <p18fxxx.inc>
2062         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2063         uninitialized because a bug appears with gplink
2064         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2065         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2066         complains for unrecognised option
2067
2068 2005-04-05 Raphael Neider <rneider AT web.de>
2069
2070         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2071           structs as well (using memcpy)
2072         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2073           on ISRs (GOTO has no label)
2074         * src/pic16/device.h: added OF_OPTIMIZE_DF
2075         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2076           new data flow analysis/optimization
2077         * src/pic16/pcode.c: added (prototypes for and implementation of)
2078           dataflow analysis functions, fixed pCodeInstructions' inCond and
2079           outCond values, made RCALL a branch instruction
2080         * (pic16_unlinkpCode): keep C line if possible
2081         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2082           C line moved if possible
2083         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2084         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2085           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2086         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2087           new flow)
2088         * (pic16_getJumptabpCode): NEW, needed in...
2089         * (LinkFlow): fixed handling of jumptables, calls and conditional
2090           branches
2091         * (pic16_InsertCommentAfter): NEW
2092         * (pic16_pCodeReplace): made verbose and flow preserving
2093         * (AnalyzeFlow): added call to data flow analysis
2094         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2095         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2096         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2097
2098 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2099
2100         * src/SDCCast.c (decorateType): fixed bug #1105626
2101
2102 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2103
2104         * device/include/asm/pic16/features.h,
2105         * pic18f*.h headers,
2106         * device/include/pic16/adc.h,
2107         * device/include/pic16/delay.h,
2108         * device/include/pic16/i2c.h,
2109         * device/include/pic16/malloc.h,
2110         * device/include/pic16/stdio.h,
2111         * device/include/pic16/stdlib.h,
2112         * device/include/pic16/string.h,
2113         * device/lib/pic16/libc/stdio/printf_tiny.c,
2114         * device/lib/pic16/libc/stdio/printf_small.c,
2115         * device/lib/pic16/libc/stdio/strmgpsim.c,
2116         * device/lib/pic16/libc/stdio/strmmssp.c,
2117         * device/lib/pic16/libc/stdio/strmusart.c,
2118         * device/lib/pic16/libc/stdio/vfprintf.c,
2119         * device/lib/pic16/libc/stdlib/ltoa.c,
2120         * device/lib/pic16/libc/stdlib/putchar.c,
2121         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2122         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2123         * device/lib/pic16/libc/stdlib/memchrram.c,
2124         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2125         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2126         * device/lib/pic16/libio/adc/adcbusy.c,
2127         * device/lib/pic16/libio/adc/adcread.c,
2128         * device/lib/pic16/libio/adc/adcsetch.c,
2129         * device/lib/pic16/libio/usart/ubaud.c,
2130         * device/lib/pic16/libio/usart/ubusy.c,
2131         * device/lib/pic16/libio/usart/udrdy.c,
2132         * device/lib/pic16/libio/usart/uopen.c,
2133         * device/lib/pic16/libio/usart/uputc.c,
2134         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2135         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2136         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2137         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2138         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2139         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2140         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2141         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2142         specific keywords to double underlined form,
2143         * device/lib/pic16/libc/Makefile.rules,
2144         * device/lib/pic16/libsdcc/Makefile.rules,
2145         * device/lib/pic16/libm/Makefile,
2146         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2147         to compile with C standard set in Makefile.common
2148         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2149         rand.c and crc.c in compilation process,
2150         * device/lib/pic16/libsdcc/int/divuint.c,
2151         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2152         `c' from signed to unsigned,
2153         * device/lib/pic16/startup/crt0.c,
2154         * device/lib/pic16/startup/crt0i.c,
2155         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2156         keywords to double underlined form, bug fixes in _do_cinit function
2157         which prevented the correct initialization of the .idata segment,
2158         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2159         core to enter a infinite loop
2160         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2161
2162 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2163
2164         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2165
2166 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2167
2168         * device/include/Makefile.in: add support for hc08 subdirectory
2169         * device/include/hc08/: new subdirectory
2170         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2171         Lucas Loizaga, thanks!
2172         * device/include/hc08/mc68hc908qy.h,
2173         * device/include/hc08/mc68hc908gp32.h,
2174         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2175         their own directory. Changed internal macro names to use the compiler
2176         reserved namespace. Changed SDCC specific keywords to double
2177         underlined form.
2178         * device/include/math.h,
2179         * device/include/malloc.h,
2180         * device/include/stdarg.h,
2181         * device/include/stdbool.h
2182         * device/include/string.h,
2183         * device/include/tinibios.h,
2184         * device/include/ds400rom.h,
2185         * device/include/8051.h,
2186         * device/include/8052.h,
2187         * device/include/80c51xa.h,
2188         * device/include/at89c55.h,
2189         * device/include/at89S8252.h,
2190         * device/include/at89x51.h,
2191         * device/include/at89x52.h,
2192         * device/include/ds80c390.h,
2193         * device/include/reg764.h,
2194         * device/include/regc515c.h,
2195         * device/include/sab80515.h,
2196         * device/include/mcs51/c8051f000.h,
2197         * device/include/mcs51/c8051f018.h,
2198         * device/include/mcs51/c8051f020.h,
2199         * device/include/mcs51/c8051f040.h,
2200         * device/include/mcs51/c8051f060.h,
2201         * device/include/mcs51/c8051f120.h,
2202         * device/include/mcs51/c8051f300.h,
2203         * device/include/mcs51/c8051f310.h,
2204         * device/include/mcs51/c8051f320.h,
2205         * device/include/mcs51/c8051f330.h,
2206         * device/include/mcs51/c8051f350.h,
2207         * device/include/z180.h: Changed SDCC specific keywords to double
2208         underlined form.
2209
2210 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2211
2212         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2213         18F4455,
2214         * (pic16_assignConfigWordValue): disable testing of configuration
2215         register value with config mask,
2216         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2217         function with port->fun_prefix,
2218         * (genFunction): when generating a naked interrupt function never
2219         create an absolute segment placed in interrupt vector address, place
2220         the actual interrupt function at IVA instead, when an interrupt
2221         function is generated with unspecified interrupt then do not create
2222         the absolute section,
2223         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2224         code for generating a call to generic pointer get/put function with
2225         a call to function pic16_callGenericPointer(),
2226         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2227         the call to the generic pointer get/put functions with prefixing the
2228         function name with port->fun_prefix,
2229         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2230         * src/pic16/main.c (_process_pragma): prefix function with
2231         port->fun_prefix,
2232         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2233         calling assembler, old 18Fxxxx macro is deprecated,
2234         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2235         PC_ASMDIR in while condition,
2236         * (findInstruction): add PC_ASMDIR in while condition,
2237         * (buildCallTree): prefix main with port->fun_prefix,
2238         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2239         identifier for variable with banked access in instructions BTFSS,
2240         BTFSC, BCF, BSF, BTG
2241         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2242         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2243         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2244         perform optimization when enviroment variable NO_REG_OPT is set,
2245         * (insideLRBlock): NEW, return 1 if register is inside an
2246         INF_LOCALREGS block,
2247         * (RemoveRegFromLRBlock): remove a register that is completely
2248         eliminated by register optimization, but it is still left in local
2249         register store/restore in/from stack block,
2250         * (Remove2pcodes): after removing register, check to see if it
2251         should be removed from local register store/restore in/from stack
2252         block,
2253         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2254         DUMMY_READ_VOLATILE,
2255
2256         * device/include/pic16/adc.h: minor prototype modifications and
2257         update,
2258         * device/include/pic16/malloc.h: added GPL notice various
2259         modifications,
2260         * device/include/pic16/stdint.h: NEW, standard header for ints
2261         * device/include/pic16/delay.h: NEW, header for delay functions,
2262         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2263         delay1mtcy,
2264         * device/include/pic16/signal.h: NEW, header providing helper macros
2265         for implementing signal handlers,
2266         * device/include/pic16/stdio.h: added prototypes for functions,
2267         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2268         prototypes for stdin and stdout, added macro PUTCHAR to
2269         automatically implement putchar function prototype,
2270         * device/include/pic16/usart.h: modified and updated USART library,
2271         * device/lib/pic16/libio/adc/,
2272         * device/lib/pic16/libio/i2c: some modifications to improve library
2273         performance,
2274         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2275         family of functions,
2276         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2277         family of functions and other sources,
2278         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2279         of the PIC18Fxx[28] devices,
2280         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2281         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2282         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2283         _do_cinit function, because the previous failed when local variables
2284         where not placed in the same memory bank,
2285         * device/lib/pic16/libsdcc/char/: various modifications to improve
2286         library performance,
2287         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2288         information on the new functions of the c library and more...
2289
2290 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2291
2292         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2293
2294 2005-03-26 Raphael Neider <rneider AT web.de>
2295
2296         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2297           if condition == CARRY)
2298         * (genCmp): adapted to new genSkipc semantics
2299         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2300           on rIfx (genCmp was broken)
2301
2302 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2303
2304         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2305         * src/z80/main.c (_keywords[]),
2306         * src/SDCCglobal.h (struct options),
2307         * src/SDCC.y,
2308         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2309         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2310         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2311         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2312         always available in leading double underscore form. The C99 support is
2313         mostly missing, but it's a start.
2314         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2315         reserved identifier "__data".
2316
2317 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2318
2319         * src/mcs51/peeph.def: fixed bug 1170013
2320
2321 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2322
2323         * device/include/mcs51reg.h: fixed bug 842007
2324
2325 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2326
2327         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2328         last time.
2329
2330 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2331
2332         * src/port.h (struct PORT),
2333         * src/avr/ralloc.c (avr_assignRegisters),
2334         * src/avr/main.c,
2335         * src/ds390/ralloc.c (ds390_assignRegisters),
2336         * src/ds390/main.c,
2337         * src/hc08/ralloc.c (hc08_assignRegisters),
2338         * src/hc08/main.c,
2339         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2340         * src/mcs51/main.c,
2341         * src/pic/ralloc.c (pic14_assignRegisters),
2342         * src/pic/main.c,
2343         * src/pic16/ralloc.c (pic16_assignRegisters),
2344         * src/pic16/main.c,
2345         * src/xa51/ralloc.c (xa51_assignRegisters),
2346         * src/xa51/main.c,
2347         * src/z80/ralloc.c (z80_assignRegisters),
2348         * src/z80/ralloc.h,
2349         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2350         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2351         * src/SDCCcse.h,
2352         * src/SDCCdflow.c (computeDataFlow),
2353         * src/SDCCdflow.h,
2354         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2355         * src/SDCCloop.h,
2356         * src/SDCCcflow.c (*),
2357         * src/SDCCcflow.h,
2358         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2359         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2360         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2361         immedDom() returning wrong block; probably fixes bug #1160833)
2362
2363 2005-03-20 Borut Razem <borut.razem AT siol.net>
2364
2365         * support/scripts/inc2h.pl: WIN32 port
2366
2367 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2368
2369         * device/lib/makefile.in: added abs.c and labs.c
2370
2371 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2372
2373         * device/include/stdint.h: added
2374         * device/lib/abs.c: added
2375         * device/lib/labs.c: added
2376         * device/include/stdlib.h: added abs() and labs() prototypes
2377         * device/lib/libsdcc.lib: added abs and labs
2378         * device/include/float.h,
2379         * device/lib/_fsmul.c,
2380         * device/lib/printf_fast.c,
2381         * device/lib/printf_tiny.c: updated comments
2382
2383 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2384
2385         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2386         bug #1164313
2387
2388 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2389
2390         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2391         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2392
2393 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2394
2395         * device/lib/printf_large.c: removed inline assembly for portability and
2396           readability. Use printf_fast if speed or size are more important.
2397         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2398         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2399
2400 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2401
2402         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2403         prevent compiler warning
2404
2405 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2406
2407         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2408         moved to level 0 and declared as static. Also they are explicit
2409         placed in access bank. This was necessery because some times they
2410         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2411         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2412         optimizations. Currently only compare to unsigned char is implemented,
2413         * src/pic16/gen.c: added fReturnIdx array,
2414         * (struct resolvedIfx) is moved to gen.h and made public,
2415         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2416         * (aopForSym): added an optimization to directly store in stack of
2417         the operand of a SEND iCode,
2418         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2419         but as registers instead (AOP_REG) using the fReturnIdx array,
2420         * (pic16_freeAsmop): remove the freed register from the
2421         _G.sregsAlloc field,
2422         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2423         a compare of 'WREG',
2424         * (pic16_popGetTempRegCond): changed function prototype, now
2425         function takes also a bitVector argument v which holds the current
2426         set of registers that are allocated for stack access by aopForSym,
2427         registers allocated in aopForSym for accessing stack symbols are not
2428         any more part of the functions usedRegs field,
2429         * (genCall): some times aopOp is called for a stack variable to be
2430         send, aopForSym might perform the push, if this is true make sure
2431         that genCall doesn't push the variable twice by testing _G.resDirect,
2432         * (genFunction): changed testing for unspecified interrupt number
2433         from 256 to INTNO_UNSPEC,
2434         * modified selection scheme of frame pointer generation. Previously
2435         if function did use local registers a frame pointer was generated,
2436         now a frame pointer is generated only if function has arguments
2437         (that need PLUSW2 register access), or has stack arguments, or the
2438         compiler is not instructed to omit the frame pointer,
2439         * (genEndFunction): before restoring local registers that were saved
2440         in the function preamble, also restore the registers that *might*
2441         have been allocated for stack access,
2442         * (genRet): removed some old comments,
2443         * (genCmp, the active (RN's) version): added a call to the
2444         pic16_genCmp_special function to perform the compare with a more
2445         robust and optimized way,
2446         * (genInline): a feature has been added in inline code generation,
2447         which allows a wildcard variable substitution when writing inline
2448         assembly. Code is incomplete and experimental therefore undocumented,
2449         * (genCast): changed order of aopOp for result and right to allow
2450         aopForSym to directly load the result if possible,
2451         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2452         perform an optimized compare on some selected special occasions,
2453         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2454         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2455         generate an IVT any more,
2456         * src/pic16/main.c (pic16_optionsTable): added command line option
2457         --optimize-cmp,
2458         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2459         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2460         macros,
2461         * src/pic16/NOTES: Raphael Neider added in list of active developers
2462         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2463         jumptable_end to prevent bug #,
2464         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2465         inCond and outCond fields,
2466         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2467         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2468         turn off register spilling,
2469         * (packRegsForOneUse): synced with other ports' versions although it
2470         is not used currently,
2471         * (pic16_packRegisters): added an optimization while reading
2472         structure bitfields, some registers may be saved (malloc code is
2473         decreased by 80 bytes)
2474
2475 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2476
2477         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2478         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2479         this can be optimized more?
2480
2481 2005-03-10 Raphael Neider <rneider AT web.de>
2482
2483         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2484           genNearPointerGet): (hopefully) fixed access to bitfields via
2485           pointers (p->bitN = x; and x = p->bitN; failed)
2486
2487 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2488
2489         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2490
2491 2005-03-09 Raphael Neider <rneider AT web.de>
2492
2493         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2494
2495 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2496
2497         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2498         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2499           (regTypeNum): set REG_BIT type if necessary
2500         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2501         * support/regression/tests/critical.c: check bug 1144613
2502
2503 2005-03-02 Raphael Neider <rneider AT web.de>
2504
2505         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2506
2507 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2508
2509         * src/avr/ralloc.c (serialRegAssign),
2510         * src/ds390/ralloc.c (serialRegAssign),
2511         * src/hc08/ralloc.c (serialRegAssign),
2512         * src/mcs51/ralloc.c (serialRegAssign),
2513         * src/pic/ralloc.c (serialRegAssign),
2514         * src/pic16/ralloc.c (serialRegAssign),
2515         * src/xa51/ralloc.c (serialRegAssign),
2516         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2517
2518 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2519
2520         * src/SDCCast.c (decorateType): fixed bug 1124787
2521
2522 2005-02-20 Hubert Sack <sack AT digiplan.de>
2523         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2524
2525         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2526         patch #1121755
2527
2528 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2529
2530         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2531         to keep the correct label reference count when adding/removing references
2532         to labels. A peephole file using this is appended to patch #1144962.
2533
2534 2005-02-14 Raphael Neider <rneider AT web.de>
2535
2536         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2537         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2538         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2539           retrievals of result operand's value on assignment
2540
2541 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2542
2543         * device/include/pic16/string.h: modified prototype for memccpy()
2544         to memccpy(void *, void *, char, size_t)
2545         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2546         check whether to omit frame pointer or not,
2547         * (genInline): convert all occurences of "\n" to LF in inline
2548         assembler blocks, this helps formatting the inline text,
2549         * (pic16_loadFSR0): modified prototype,
2550         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2551         removed some 8051 legacy code,
2552         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2553         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2554         before allocating temporary registers in functions,
2555
2556 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2557
2558         * support/regression/tests/bitvars.c: corrected the "fix"
2559
2560 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2561
2562         * support/regression/tests/bitvars.c,
2563         * support/regression/tests/bitwise.c,
2564         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2565
2566 2005-02-10 Raphael Neider <rneider AT web.de>
2567
2568         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2569           different size for Alpha
2570         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2571
2572 2005-02-09 Raphael Neider <rneider AT web.de>
2573
2574         * src/SDCC.lex(doPragma) : save and restore warning options as well
2575           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2576         * have #pragma less_pedantic set the errorlevel to WARNING
2577           (fixes #1117001)
2578         * (cloneOptimize) : fixed wrong malloc's size
2579         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2580           facilitate correct handling of #pragma (save|restore)
2581
2582 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2583
2584         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2585
2586 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2587
2588         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2589
2590 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2591
2592         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2593
2594 2005-02-02 Raphael Neider <rneider AT web.de>
2595
2596         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2597         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2598         * (pic16_storeForReturn): fixed to allow returning function pointers
2599         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2600         * device/include/pic16/{stddef.h,stdbool.h}: added
2601
2602 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2603
2604         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2605
2606 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2607
2608         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2609         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2610          appeared to be required
2611
2612 2005-01-31 Borut Razem <borut.razem AT siol.net>
2613
2614         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2615           include/mcs51 and include/z80 directories to the package
2616
2617 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2618
2619         * src/hc08/gen.c (genFunction): fixed bug #1112752
2620
2621 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2622
2623         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2624
2625 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2626
2627         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2628
2629 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2630
2631         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2632
2633 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2634
2635         * device/include/c8051fxxx.h: removed these 6 files
2636         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2637
2638 2005-01-26 Raphael Neider <rneider AT web.de>
2639
2640         * src/pic16/gen.c (genAssign): fixed assignment from longs
2641           in codespace (were cut to three bytes)
2642         * (genDummyRead): implemented (except for CODESPACE...),
2643           fixed bug #1108575
2644         * src/pic16/glue.c (emitStatistics): beautified
2645         * device/lib/pic16/libm/Makefile: added include path
2646
2647 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2648
2649         * src/z80/gen.c (aopPut): fixed bug #1103902
2650
2651 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2652
2653         * device/lib/expf.c: fixed bug #1095792
2654
2655 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2656
2657         * device/lib/pic16/libm: added Math library sources
2658
2659 2005-01-24 Raphael Neider <rneider AT web.de>
2660
2661         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2662           to enable upcast to pCodeOpReg2 (there is no type tag to
2663           differenciate the two and pic16_popGet2p cast into PCOR2)
2664         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2665           (sizeof(sectNames) changed to sizeof(sectName))
2666           Both patches fix segfaults under MinGW.
2667
2668 2005-01-23 Raphael Neider <rneider AT web.de>
2669
2670         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2671           Safe_[mc]?alloc()'ed variables
2672         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2673           of (byte sized) temporaries (assign them to WREG for now)
2674         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2675           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2676           this might fix SIGSEGVs on MinGW...
2677         * src/SDCCopt.c (killDeadCode): restored original behaviour
2678           (volatile operands might get thrown away though)
2679
2680 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2681
2682         * src/pic16/gen.c: fixed bug #1106975,
2683         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2684         pointer update, INTCON is saved, global interrupts are disabled and
2685         restored after updateing TOS.
2686         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2687         * added function attribute 'shadowregs' to take advantage of shadow
2688         registers,
2689         * added function attribute 'wparam' as an alternative to the wparam
2690         pragma,
2691         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2692         user declares a non-ISR function as 'shadowregs',
2693         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2694
2695 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2696
2697         * .version: bumped version number to 2.4.8
2698         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2699         pic16 port,
2700         * device/lib/pic16/libio/i2c/: I2C module support library,
2701         * device/include/pic16/i2c.h: I2C support library header,
2702         * device/lib/pic16/libc/stdio/: standard IO support sources,
2703         * (printf_small.c): printf_small() source, supports float print,
2704         * (printf_tiny.c): printf_tiny() source, does not support floats,
2705         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2706         enable global optimizations for entire library source, other
2707         Makefiles in the source tree are also modified to reflect this,
2708         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2709         function,
2710         * doc/sdccman.lyx: updated to reflect new changes,
2711         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2712         sym->onStack if-case,
2713         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2714         sbit, idata, _idata, xdata, _xdata,
2715         * added pragma library, to link an external library, (see doc),
2716         * removed command line options, --pomit-config-words, --pomit-ivt,
2717         --pleave-reset-vector,
2718         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2719         when calling assembler to reflect memory model used, also define
2720         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2721         reflect stack model used,
2722         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2723         on stack return NULL,
2724
2725 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2726
2727         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2728           of the operands is volatile. Fixes #1020220
2729
2730 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2731
2732         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2733         * (OptimizeRegUsage): make sure that there is really no other flow where
2734           the first pCode is used
2735
2736 2005-01-22 Raphael Neider <rneider AT web.de>
2737
2738         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2739           to fix #1106967 (pCode->seq are not set up correctly)
2740
2741 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2742
2743         * src/SDCCglue.c (glue): make sure code area is declared before the
2744         static initialization area.
2745
2746 2005-01-21 Raphael Neider <rneider AT web.de>
2747
2748         * device/lib/Makefile.in: fixed test for pic16 install dir
2749         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2750           optimizations
2751         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2752           added --optimize-goto compiler switch and pragma wparam documentation
2753         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2754         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2755           and PRODH closing bug #1071770 (peephole optimizer)
2756
2757 2005-01-19 Raphael Neider <rneider AT web.de>
2758
2759         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2760           cmdLine buffers (used when calling sdcpp...) are large enough
2761           (MAX_PATH=256 truncates arguments leading to system halts when
2762           used in MinGW...)
2763         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2764         * (genUminus): rewritten to for efficiency
2765         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2766           used uninitialized in some cases)
2767         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2768           copy the third byte from the int -- now assumes 0x80 (data memory)
2769         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2770           operands (genAddLit expects the iCode's operands to swapped as
2771           well), fixed leftover bytes (crashed for short left operands)
2772         * (pic16_genMinusDec): performance improvements, removed false
2773           PIC14 emitSKPNCs
2774         * (pic16_genMinus): fixed to cope with differently sized operands
2775         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2776           for --obanksel > 1
2777         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2778         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2779           new banksel optimization
2780         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2781           analysis for temporary registers (segfaults...)
2782         * src/pic16/peeph.def: added rule
2783
2784 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2785
2786         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2787         which converts a float number to its ASCII representation
2788         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2789         functions to convert the fractional and integer part of a float to ASCII,
2790         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2791         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2792         ram
2793         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2794         _STATMEM macros,
2795         * device/include/pic16/adc.h: added GPL info,
2796         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2797         a pCodeOp as tested operand,
2798         * (genNearPointerGet): optimized bit testing, does not use
2799         intermediate register for bit value, test directly instead with
2800         BTFSS, BTFSC, works only for single bits,
2801         * (genpic16Code): dump the name of the iCode in the asm,
2802         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2803         renamed to pic16_decodeOp,
2804         * (serialRegAssign): do not allocate a temporary register for iCode
2805         sequences that test a single bit for 1/0
2806
2807 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2808
2809         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2810         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2811         access stack and frame pointers. They are initially assigned to
2812         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2813         accessing SFRs. Updated all occurences of modification of stack or
2814         frame pointer in gen.c and pcode.c,
2815         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2816         assigning of a literal value to pointers,
2817         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2818         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2819         selected
2820
2821 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2822
2823         * doc/sdccman.lyx: update documentation about stack pragma, added
2824         some info for stack memory models
2825
2826 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2827
2828         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2829
2830 2005-01-08 Raphael Neider <rneider AT web.de>
2831
2832         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2833           udata sections to fix bug #1097823
2834
2835 2005-01-05 Raphael Neider <rneider AT web.de>
2836
2837         * src/pic16/gen.c (genGenericShift): added handling of differently
2838           sized left operand and result
2839
2840 2005-01-04 Raphael Neider <rneider AT web.de>
2841
2842         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2843         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2844           to hold the condition bit)
2845         * added new version of genCmp (old code available via #define)
2846         * added new version of genShiftLeft/genShiftRight in a generic
2847           way, now supports shifting by negative values
2848         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2849           shiftCount (expected by genGenericShift)
2850         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2851         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2852           dump
2853         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2854           is an invalid literal too...)
2855
2856 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2857
2858         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2859         from Raphael Neider,
2860         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2861         for 8-bit literals. This fixes some literal operands which are sign
2862         extended to 16-bits ints when instruction needs only 8-bits.
2863
2864 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2865
2866         * device/lib/logf.c: added mcs51 assembly version
2867         * device/lib/expf.c: added mcs51 assembly version
2868         * device/lib/_logexpf.c: new shared asm code for expf and logf
2869         * device/include/math.h: add defines for assembly math library
2870         * device/lib/Makefile.in: build new _logexpf.c
2871         * device/lib/libfloat.lib: use new _logexpf.c
2872
2873 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2874
2875         * src/pic/device.c
2876         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2877           device types which have less than 0x7f registers.
2878
2879 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2880
2881         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2882
2883 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2884
2885         * device/lib/printf_fast.c: only build on supported arch.
2886         * device/lib/printf_tiny.c: only build on supported arch.
2887         * device/lib/printf_fast_f.c: only build if asm float lib
2888         * device/lib/_fsget1arg.c: only build if asm float lib
2889         * device/lib/_fsget2args.c: only build if asm float lib
2890         * device/lib/_fsnormalize.c: only build if asm float lib
2891         * device/lib/_fsreturnval.c: only build if asm float lib
2892         * device/lib/_fsrshift.c: only build if asm float lib
2893         * device/lib/_fsswapargs.c: only build if asm float lib
2894         * device/include/stdio.h: don't provide print_fast,
2895           print_fast_f, print_tiny prototypes if --xstack used
2896
2897 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2898
2899         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2900         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2901           to the SOURCES
2902
2903 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2904
2905         * device/lib/printf_fast_f.c: same as printf_fast, but
2906           with floating point enabled
2907         * device/lib/printf_fast.c: minor tweaks
2908         * device/include/stdio.h: add printf_fast_f
2909
2910 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2911
2912         * src/SDCCmain.c: make --float-reent default for mcs51
2913         * device/lib/_fsadd.c: added mcs51 assembly version
2914         * device/lib/_fssub.c: added mcs51 assembly version
2915         * device/lib/_fsmul.c: added mcs51 assembly version
2916         * device/lib/_fsdiv.c: added mcs51 assembly version
2917         * device/lib/_fseq.c: added mcs51 assembly version
2918         * device/lib/_fsneq.c: added mcs51 assembly version
2919         * device/lib/_fsgt.c: added mcs51 assembly version
2920         * device/lib/_fslt.c: added mcs51 assembly version
2921         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2922         * device/lib/Makefile.in: add _fscmp to build
2923         * device/lib/libfloat.lib: add _fscmp to build
2924
2925 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2926
2927         * device/lib/_fs2slong.c: added mcs51 assembly version
2928         * device/lib/_fs2sint.c: added mcs51 assembly version
2929         * device/lib/_fs2schar.c: added mcs51 assembly version
2930         * device/lib/_fs2ulong.c: added mcs51 assembly version
2931         * device/lib/_fs2uint.c: added mcs51 assembly version
2932         * device/lib/_fs2uchar.c: added mcs51 assembly version
2933         * device/lib/_slong2fs.c: added mcs51 assembly version
2934         * device/lib/_sint2fs.c: added mcs51 assembly version
2935         * device/lib/_schar2fs.c: added mcs51 assembly version
2936         * device/lib/_ulong2fs.c: added mcs51 assembly version
2937         * device/lib/_uint2fs.c: added mcs51 assembly version
2938         * device/lib/_uchar2fs.c: added mcs51 assembly version
2939         * device/include/float.h: added #define to select asm vs c
2940
2941 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2942
2943         * device/lib/printf_fast.c: improvements to float output
2944         * device/include/float.h: add defines for assembly float library
2945         * device/lib/_fsget1arg.c: receive 1 float arg
2946         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2947         * device/lib/_fsnormalize.c: normalize a float
2948         * device/lib/_fsreturnval.c: return float, various helper routines
2949         * device/lib/_fsrshift.c: right shift a float's mantissa
2950         * device/lib/_fsswapargs.c: swap 2 floats
2951         * device/lib/Makefile.in: build these 6 new files for mcs51
2952         * device/lib/libfloat.lib: add these 6 files to the library
2953
2954 2004-12-26 Borut Razem <borut.razem AT siol.net>
2955
2956         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2957           built by gcc 3.4.2
2958
2959 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2960
2961         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2962           and fully reentrant and register bank neutral.
2963         * device/lib/printf_fast.c: added float (not enabled by default),
2964           added compact/slower integer (also not enabled by default),
2965           improved size/speed of fast integer code, other minor changes
2966         * device/include/stdio.h, device/lib/Makefile.in,
2967           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2968
2969 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2970
2971         * src/pic16/pcode.c: declaring variables other than at the start of a
2972           block is not supported in C by VC6.
2973
2974 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2975
2976         * applied a previous patch from Raphael Neider that wasn't included
2977         in the previous commits, which fixes infinite loops within jumptable
2978         improvements,
2979         * made some fixes that previous patches introduced
2980
2981 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2982
2983         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2984         that fixes an issue with AOP_PCODE asmop's offset,
2985         * (pic16_popCopyReg): update instance field too,
2986         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2987         function of pic port,
2988         * (genCmp, genAnd, genAssign),
2989         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2990
2991 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2992
2993         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2994         variables initial values to idata section,
2995         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2996         variables in some functions. This utilizes parmBytes field of iCode
2997         structure to hold the offset of the variable in stack. (might be
2998         able to use the stack field too?)
2999         * applied patch from Raphael Neider # ### , # ###
3000         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3001         variable initial values in idata section,
3002         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3003         for static variables with initial value
3004         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3005         applied fix in while loop from Raphael Neider.
3006
3007 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3008
3009         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3010         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3011         * src/ds390/ralloc.c (serialRegAssign): spill bits
3012         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3013         * support/Util/SDCCerr.c,
3014         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3015         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3016         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3017
3018 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3019
3020         * device/include/sdcc-lib.h: inserted LGPL, added includes
3021           asm/ds390/features.h and asm/mcs51/features.h
3022         * device/include/asm/default/features.h,
3023         * device/include/asm/gbz80/features.h,
3024         * device/include/asm/z80/features.h: added empty _AUTOMEM
3025           and _STATMEM
3026         * device/include/asm/ds390/features.h,
3027         * device/include/asm/mcs51/features.h: added files with defines for
3028           _AUTOMEM and _STATMEM indicating automatic and static storage class
3029         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3030         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3031         * src/SDCCicode.c (geniCodeCast),
3032         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3033         * src/SDCCloop.c (loopInduction): removed unused variable lr
3034         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3035           to convertToFcall to include char modulo (RFE 1065037), added check
3036           if left operand is unsigned and use abs of literal value
3037         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3038           as it doesn't work after conversion from peephole.def to peephole.rul
3039         * src/mcs51/gen.c (toBoolean): added check for size,
3040           (genModOneByte): optimized code for signed char modulo a literal
3041           power of 2 (thanks to Hubert Sack),
3042           (genRRC): removed unnecessary "clr c",
3043           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3044         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3045           jump optimization,
3046           swapped rules 256.c and 256.d,
3047           extended 256.d by using new multiple checks (thanks Erik),
3048           added rules 256.e and 256.f,
3049           updated rule 261.a and 261.b to new generated code
3050         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3051
3052 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3053
3054         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3055           induction related bugs, including first part of bug #1074377
3056
3057 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3058
3059         * applied patch from bug-report #1076292,
3060         * applied patches for genAnd and Goto-optimizations for Raphael
3061         Neider,
3062         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3063         dump a less iCode information,
3064         * src/pic16/device.h (pic16_options_t): added field debgen,
3065         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3066         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3067         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3068         puclic,
3069         * (various functions): added macros FENTRY and FENTRY2 to functions,
3070         to emit function prologue,
3071         * (various functions): fixed indentation,
3072         * (genNearPointerGet): fixed loading of FSR0,
3073         * (genPackBits): applied patch from Raphael Neider to fix updating
3074         of FSR0 and touching only the modified bits,
3075         * src/pic16/genarith.c (various functions): added macros FENTRY to
3076         emit function prologue in comments,
3077         * src/pic16/pcode.h: added functions debugf2, debugf3,
3078         * src/pic16/ralloc.c: partial fix for packForPush caused
3079         segmentation fault,
3080
3081 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3082
3083         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3084           <stsp AT users.sourceforge.net> with reversed byte order
3085         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3086
3087 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3088
3089         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3090           bug #1074377
3091         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3092         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3093
3094 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3095
3096         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3097
3098 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3099
3100         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3101           conditions,
3102           (setFromConditionArgs): friendly operand parser for peephole rules,
3103           (operandBaseName, operandsNotRelated): new peephole condition
3104           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3105           architecture specific register naming into account, handles n-way
3106           comparisons, and supports quoted literals
3107         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3108
3109 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3110
3111         * src/mcs51/peeph.def: fixed bug #1076940
3112
3113 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3114
3115         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3116
3117 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3118
3119         Adding support for replacing ljmps with sjmps in jumptables
3120         generated for switch statements. For now you need to set the
3121         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3122         Now 4 algorithms for mcs51 jumptable generation are used:
3123         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3124         addresses loaded pc-relative for up to 112 cases and stack-pushing
3125         target addresses loaded with offset from dptr for up to 256 cases.
3126
3127         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3128         * src/mcs51/main.c: adapted constants for switch table generation
3129         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3130
3131 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3132
3133         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3134         * support/regression/tests/bug1057979.c: added test for bug 1073386
3135
3136 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3137
3138         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3139         compilers
3140
3141 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3142
3143         * src/pic16/device.h,
3144         * src/pic16/genarith.c,
3145         * src/pic16/glue.c,
3146         * src/pic16/main.c,
3147         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3148
3149 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3150
3151         Large cummulative patch for pic16 port.
3152         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3153         to call when a stack overflow occurs,
3154         * (malloc.h): added CVS Id tag,
3155         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3156         variable,
3157         * added libc directory. The current version of LibC contains string
3158         functions, ctype functions and macros and some functions of the
3159         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3160         be extensively tested in the future. Standard disclaimer here.
3161         Library is not automatically build yet. But one can build it by
3162         invoking 'make' inside the libc directory.
3163         * added ADC library under libio. Preliminary version yet.
3164
3165         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3166         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3167         aopForRemat() now and not by pic16_aopOp(),
3168         * (pic16_popGetTempReg): removed warning messgae when allocating
3169         temporary registers, its a buggy feature and will be removed,
3170         * (pic16_popGet): set register instance field in AOP_CRY,
3171         * (pic16_outBitC): fixed for results in size greater than 1,
3172         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3173         * (pic16_storeForReturn): optimized return of 0,
3174         * (genCmp): experimental code for new genCmp which uses PIC18's
3175         special compare&skip instructions. Initial tests fail some times
3176         with variables grater than 1 byte in size, so new code is disabled,
3177         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3178         a single bit,
3179         * (genCast): began a fix to optimize the casting of a bit to another
3180         bit, now assigning a bitfield to another bitfield will fail, sorry,
3181         * src/pic16/main.c: disabled the use of lr-support feature,
3182         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3183         * added some function prototypes, added function _debugf prototype,
3184         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3185         bits with offset (case PO_GPR_BIT),
3186         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3187         command line,
3188         * (isBankInstruction): modified to return 0 for no banking instruction,
3189         and 1 for banking instruction,
3190         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3191         caused stop processing pCodes after a inline assembly block,
3192         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3193         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3194         registers when it shouldn't,
3195         * src/pic16/ralloc.c (allocReg): add preliminary support for
3196         supporting a limited set of temporary registers,
3197
3198 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3199
3200         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3201           genDataPointerSet): ensure assignments always copy in MSB to LSB
3202           order,
3203           (loadRegFromAop): recognize CLRH optimization,
3204           (genFunction): optimize RECEIVE iCodes in reentrant functions
3205
3206 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3207
3208         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3209           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3210           selected.
3211         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3212         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3213           contiguous with data
3214
3215 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3216
3217         * device/lib/_gptrget.c (_gptrget),
3218         * device/lib/_gptrgetc.c (_gptrgetc),
3219         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3220           instead of sjmp to ret
3221         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3222           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3223
3224 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3225
3226         * .version: bumped version to 2.4.7
3227         * device/lib/_gptrget.c (_gptrget): is now _naked
3228         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3229         * device/lib/_gptrput.c (_gptrput): is now _naked
3230         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3231           (createFunction): fixed xstack
3232         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3233         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3234           or bit either,
3235           (geniCodeCritical): store original interrupt state in an iTemp bit
3236           var unless stack-auto
3237         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3238         * src/SDCCmain.c (setIncludePath): added include/target to search path
3239         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3240         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3241           prototype,
3242           (processFuncArgs): put bit vars in bit area
3243         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3244           unsaveRBank): fixed xstack,
3245           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3246           (genFunction, genEndFunction): fixed xstack,
3247           (genAssign): optimization don't walk backwards through mem
3248         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3249         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3250         * support/regression/Makefile: also make library (for stack-auto) when
3251           making "all" and added "test-mcs51-xstack-auto"
3252         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3253         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3254         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3255         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3256         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3257           make-library by MAKE_LIBRARY
3258         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3259           regression tests for xstack
3260         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3261         * support/regression/tests/critical.c: test for critical on mcs51
3262
3263 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3264
3265         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3266           built version of sdcc instead of installed version
3267
3268 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3269
3270         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3271         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3272           vprintf.c now
3273         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3274         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3275           WARNING: remove device/lib/build/z80/printf.o by hand when
3276           updating from previous build!
3277         * device/lib/z80/printf.c: updated comment
3278         * support/regression/tests/bug1057979.c: test all ports now
3279         * support/regression/tests/bug1065458.c: file added
3280
3281 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3282
3283         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3284           *_start and *_end symbols for static functions
3285
3286 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3287
3288         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3289           and search crt0.o in all library paths,
3290           (setIncludePath): proper handling of --nostdinc,
3291           (setLibPath): proper handling of --nostdlib
3292         * support/regression/Makefile,
3293         * support/regression/ports/ds390/spec.mk,
3294         * support/regression/ports/gbz80/spec.mk,
3295         * support/regression/ports/hc08/spec.mk,
3296         * support/regression/ports/mcs51/spec.mk,
3297         * support/regression/ports/mcs51-large/spec.mk,
3298         * support/regression/ports/mcs51-stack-auto/spec.mk,
3299         * support/regression/ports/z80/spec.mk: use include and lib files from
3300           built version of sdcc instead of installed version
3301         * doc/sdccman.lyx: fixed typo in --nostdinc
3302
3303 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3304
3305         * src/pic/pcode.c,
3306         * src/pic/device.c,
3307         * src/pic/ralloc.c,
3308         * src/pic/gen.c : added support to generate code for struct bit fields.
3309
3310 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3311
3312         * as/xa51/xa_version.h,
3313         * device/include/errno.h,
3314         * device/include/regc515c.h,
3315         * device/lib/_itoa.c,
3316         * device/lib/_ltoa.c,
3317         * device/lib/ser_ir_cts_rts.c,
3318         * sim/ucsim/xa.src/glob.cc,
3319         * sim/ucsim/xa.src/inst_gen.cc,
3320         * sim/ucsim/xa.src/xa_bit.cc,
3321         * sim/ucsim/xa.src/xa_sfr.cc,
3322         * sim/ucsim/z80.src/inst_dd.cc,
3323         * sim/ucsim/z80.src/inst_fdcb.cc,
3324         * support/scripts/keil2sdcc.pl,
3325         * src/pic16/pic16.dsp,
3326         * src/pic16/pic16a.dsp: corrected cvs line endings
3327         * device/lib/printf_large.c: fixed bug 1057979
3328         * src/pic16/gen.c: fixed non-C standard code
3329         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3330         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3331         * support/regression/ports/mcs51/support.c: reload T1 asap
3332         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3333           pdata use and clear idata startup behaviour
3334         * support/regression/tests/bug1057979.c: added
3335
3336 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3337
3338         * device/examples/ds390/ow390/ad26.h,
3339         * device/examples/ds390/ow390/cnt1d.h,
3340         * device/examples/ds390/ow390/crcutil.c,
3341         * device/examples/ds390/ow390/ownet.h,
3342         * device/examples/ds390/ow390/owsesu.c,
3343         * device/examples/ds390/ow390/swt12.h,
3344         * device/examples/ds390/ow390/swtoper.c,
3345         * device/examples/ds390/ow390/temp10.h,
3346         * device/examples/ds390/ow390/thermodl.c,
3347         * device/examples/ds390/tinitalk/tinitalk.dsp,
3348         * device/examples/ds390/tinitalk/tinitalk.dsw,
3349         * device/examples/mcs51/clock/hw.h,
3350         * device/examples/mcs51/simple2/go.bat,
3351         * device/examples/serialcomm/windows/serial.h,
3352         * device/examples/xa51/dummy.c,
3353         * device/examples/xa51/hello.c,
3354         * device/include/80c51xa.h,
3355         * device/include/at89x051.h: corrected cvs line endings
3356
3357 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3358
3359         * src/pic16/main.c (options): added command line --gstack, to trace
3360         stack over/under flows,
3361         * added pragma 'wparam' to allow passing first byte of function
3362         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3363         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3364         call to __gstack_test function and sets up the symbol as extern,
3365         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3366         * popaop): added call to pic16_testStackOverflow,
3367         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3368         wparamList list,
3369         * (genCall, genPcall): now all parameters are passed via stack
3370         except in functions that are pass to wparam pragma in which WREG is
3371         used too,
3372         * (genPcall): REENTRANT flag is checked to see if variable prototype
3373         contains reentrant keyword, don't call a non-reentrant function, via
3374         a reentrant function pointer or vice versa, functions are never
3375         passed via WREG,
3376         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3377         D.Winkler,
3378         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3379         SIGSEGV when accessing a NULL register stucture,
3380         * (pic16_printGPointerType): modified to handle UPPER modifier for
3381         function initializers, changed prototype of function to simpler one,
3382         * (pic16_printIvalFuncPtr): check to see if function is already
3383         added in externs list,
3384         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3385         optimized a move from W to SFR with a move to the same register
3386         later after a CALL,
3387         * device/lib/pic16/debug: NEW directory, contains debug features
3388         which are enabled when linking with libdebug.lib, currently command
3389         line option --gstack enables stack pointer tracing for over/under
3390         flow, corresponding sources are in debug/gstack
3391
3392 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3393
3394         * doc/sdccman.lyx: updated SDCC version,
3395         * (PIC16 port): update list of command line options,
3396         * src/pic16/device.h (structure pic16_options_t): added field gstack
3397         to enable stack overflow tracing on push/pops,
3398         * src/pic16/device.c (statistics structure): added statistics
3399         structure,
3400         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3401         pic16_dump_int_registers): increase statistics counters for each
3402         * variable which is encountered
3403         * (pic16_dump_usection): emit each .udata variable to its own udata
3404         section,
3405         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3406         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3407         parameters via stack, otherwise use old scheme,
3408         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3409         assembler output file,
3410         * src/pic16/main.c: added command line options --gstack to enable
3411         push/pop tracing for stack overflow,
3412         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3413         instructions): added size of each instruction,
3414         * (pic16_countInstruction): estimate size of instructions in
3415         the_pFile list, inline assembly blocks are not counted,
3416         * (pic16_FixRegisterBanking): trace previous register usage, when
3417         banksel optimizations is greater than 0, don't emit a redudant
3418         banksel directive,
3419
3420 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3421
3422         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3423         * src/pic16/ralloc.c : applied same fix for pic16.
3424         * src/pic/gen.c : tidied it up a little.
3425
3426 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3427
3428         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3429         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3430
3431 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3432
3433         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3434
3435 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3436
3437         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3438         non-reentrant function __modsint in the interrupt function (thus
3439         corrupting math operations during serial I/O)
3440         * device/lib/ser_ir.c: as above, changed buffersize
3441         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3442         256.c,d for zeroing
3443         * doc/Makefile: added option -t for rsync
3444
3445 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3446
3447         * src/SDCCast.h (struct ast),
3448         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3449
3450 2004-10-20 Borut Razem <borut.razem AT siol.net>
3451
3452         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3453         package
3454
3455 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3456
3457         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3458         makefile targets,
3459         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3460         support functions to replace long sequences of MOVFF's from access
3461         bank registers to stack and vice versa,
3462         * src/pic16/device.h: added new field opt_flags, where optimization
3463         flags can be set to enable certain features,
3464         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3465         * pBlock, (genFunction, genEndFunction): surroung loop for
3466         saving/loading used registers in stack with PC_INFO pCodes,
3467         INF_LREGS. Code in between can then be optimized by pCode optimizer
3468         to support function calls,
3469         * (genDataPointerSet): fixed bug which loaded float fields in
3470         structures with corrupt data,
3471         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3472         in a standard way debug info on stderr. Feature used for developing
3473         and debugging only,
3474         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3475         obsolete chunks of code,
3476         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3477         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3478         * pic16/src/pcode.c (pic16_newpCodeInfo,
3479         * (pic16_newpCodeOpLocalRegs),
3480         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3481         feature,
3482         * (pic16_pCodeConstString): printing of the initial value of a
3483         symbol as a comment is inhibited since parsing was already done by
3484         copyStr and output is corrupt,
3485         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3486
3487 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3488
3489         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3490
3491 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3492
3493         * as/mcs51/lkarea.c: removed old K&R style,
3494           (lnksect): changed check on boundary error,
3495           (lnksect2): changed check on boundary error,
3496           (lnksect2): extend XSTK to end of page if size = 1
3497         * as/mcs51/lkmain.c: removed old K&R style,
3498           (Areas51): create l_IRAM symbol
3499         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3500         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3501           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3502         * device/lib/_mullong.c: added version to be compiled with xstack
3503         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3504         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3505         * device/lib/mcs51/crtxstack.asm: fixed comment
3506         * src/SDCCglue.c: maxInterrupts defaults to 0,
3507           (emitMaps): added pdata,
3508           (createInterruptVect): (re)moved default,
3509           (glue): added pdata,
3510           (glue): moved __start__xstack to XSTK with default size 1
3511         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3512           and options.float_rent when options.stackAuto is set,
3513           (linkEdit): only write XDATA_NAME if provided on command line
3514         * src/SDCCmem.h,
3515         * src/SDCCmem.c: added pdata
3516         * src/port.h: added pdata_name to PORT
3517         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3518           (saveRegisters, unsaveRegisters): removed usage of B,
3519           (genMinus): fixed accumulator clash,
3520           (genJumpTab): added comment, this needs another look
3521         * src/mcs51/gen.c: added check for "B in use" paranoia,
3522           added pushB() and popB()
3523         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3524           chance
3525         * src/avr/main.c,
3526         * src/ds390/main.c,
3527         * src/hc08/main.c,
3528         * src/mcs51/main.c,
3529         * src/pic/main.c,
3530         * src/pic16/main.c,
3531         * src/xa51/main.c,
3532         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3533           added PSEG (PAG,XDATA) or NULL to port specifier
3534         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3535         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3536           (_mcs51_genInitStartup): removed __start__xstack equ,
3537           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3538         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3539         * src/z80/gen.c (_rleAppend): fixed warnings
3540         * support/regression/tests/zeropad.c: added pdata test
3541         * .version: bumped to 2.4.6
3542
3543 2004-10-17 Borut Razem <borut.razem AT siol.net>
3544
3545         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3546         as a part of nightly build
3547
3548 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3549
3550         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3551         WREG holds the first byte function parameters,
3552         * (aopForSym): take special case for symbols which are in FARSPACE
3553         but in CODESPACE too,
3554         * (assignResultValue): modified to take into account _G.useWreg,
3555         * (genCall): don't use wreg for parameter passing when function is
3556         declared as reentrant, too, added optimization INCF to stack
3557         pointer when stack parameter count is 1,
3558         * (genFunction, genEndFunction): refurnished and fixed to not using
3559         wreg for passing parameters when function has varargs or is
3560         reentrant, fixed bug with symbol name compare for generating
3561         functions in absolute address,
3562         * (pic16_storeForReturn): refurnished,
3563         * (genCmp): began writing a new version of the function, not ready
3564         yet, therefore it is disabled,
3565         * (genAssign): do not read code memory when assigning a function to
3566         a pointer function,
3567         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3568         array of characters, not pointer,
3569         * (pic16initialComments): in debug mode emit an .ident directive for
3570         the assembler,
3571         * (_process_pragma): emit a new warning type (internal to pic16)
3572         when setting stack to default length, emit a similar warning when
3573         placing a function at absolute address and address is not word aligned
3574         * (_pic16_parseOptions): added 'return TRUE' statement,
3575         * (_pic16_linkEdit): if compiling a source, then add the source's
3576         file object, first in the list of objects to link,
3577
3578 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3579
3580         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3581         * src/pic/main.c : removed VC warning.
3582         * src/pic/gen.c : changed comment.
3583
3584 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3585
3586         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3587         reference to a deprecated symbol _GPTRREG was causing failure to
3588         link. Thanks G. M. Gallant for the info.
3589
3590 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3591
3592         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3593         comments for Bugs item #954788.
3594
3595 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3596
3597         * src/pic16/device.c (pic16_dump_gsection,
3598         * pic16_groupRegistersInSection): handle symbols declared to be in
3599         access bank differently,
3600         * src/pic16/gen.c (struct _G): added field resDirect,
3601         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3602         send values read from stack directly to result and don't allocate
3603         temporary values,
3604         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3605         same registers,
3606         * (pic16_sameRegsOfs): NEW,
3607         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3608         free because they were not allocated from temporary pool,
3609         * pic16_popRegFromString): workaround to fix a problem with
3610         allocating variables twice or never,
3611         * (genGenPointerGet): using PRODL instead of FSR0H,
3612         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3613         instead of FSR0H,
3614         * (genAssign): take advantage of the _G.resDirect flag,
3615         * (genCast): around line 11844, use mov2f instead of directly
3616         MOVFF'ing between operands to account for literal values,
3617         * src/pic16/genutils.c: some new debug functions for gpsim have been
3618         added,
3619         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3620         float with integer part only,
3621         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3622         place variables in access bank
3623         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3624         updated sources to reflect recent changes in gen.c
3625
3626 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3627
3628         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3629         sources that searched for headers in installation path, now the
3630         device/include/pic16 is used,
3631         * src/pic16/glue.c (pic16glue),
3632         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3633         .line directives if not in debug mode, this suppresses assembler's
3634         warnings for ignored directives
3635
3636 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3637
3638         * src/port.h: made reset_regparms prototype void parameter explicit.
3639         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3640         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3641         * doc/sdccman.lyx: documented warning disabling and how to use
3642           printf_large to make it print floats.
3643         * device/include/stdbool.h: NEW
3644         * device/lib/_atof.c,
3645         * device/lib/_divuint.c,
3646         * device/lib/_divulong.c,
3647         * device/lib/expf.c,
3648         * device/lib/printf_large.c,
3649         * device/lib/sincosf.c,
3650         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3651         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3652           a completely reentrant lib.
3653
3654 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3655
3656         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3657         * device/include/pic16/stdio.h: fixed bug with colon
3658
3659 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3660
3661         * device/include/pic16/stdio.h,
3662         * device/include/pic16/stdlib.h,
3663         * device/include/pic16/math.h: NEW
3664         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3665         declared as _naked to reduce overhead
3666         * device/lib/Makefile.in (target port-specific-objects-pic16):
3667         changed * to *.* so to ignore the CVS directory,
3668         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3669         stacked variables back in stack,
3670         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3671         corruption
3672
3673 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3674
3675         * .version: bumped version number to 2.4.5
3676         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3677         * support/Util/SDCCerr.c (messages structure): added entry for
3678         W_POSSBUG2
3679
3680         Large cumulative patch for pic16 port and libraries.
3681         * device/include/pic16/sdcc-lib.h,
3682         * device/include/pic16/stdarg.h,
3683         * device/include/asm/pic16/features.h,
3684         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3685         * device/include/pic16/float.h: changes reentrant keyword with
3686         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3687         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3688         updated target build-libraries to include objects from gptr,
3689         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3690         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3691         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3692         all function headings,
3693         * src/SDCCmain.c: added global parameter userIncDirsSet,
3694         * (parseCmdLine): when option -I is encountered add directory to
3695         userIncDirsSet too,
3696         * src/version.awk: added space between control and long,
3697         * src/pic16/NOTES: added some notes for the port,
3698         * src/pic16/gen.c: added prototype for mov2fp function,
3699         * (fReturnpic16[]): properly named return value registers,
3700         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3701         * (aopForSym): added code to handle symbols with onStack flag set,
3702         symbols onStack are allocated PTRSIZE bytes,
3703         * (aopFreeAsmop): handles special case where asmops are stack objects,
3704         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3705         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3706         added argument lock to trace flaws in allocating temporary registers
3707         when developing port,
3708         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3709         * (pic16_popRegFromString): reenabled allocating a direct register
3710         from string,
3711         * (assignResultValue): various beautifications,
3712         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3713         referenced function argument,
3714         * (genIpush): reenabled to allow stacked arguments, handles only
3715         ic->parmPush iCodes,
3716         * (genCall, genPcall): major changes to allow for variable argument
3717         functions, fixed a bug with falsely restoring stack pointer after
3718         returning from call,
3719         * (genFunction): pending code for critical function,
3720         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3721         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3722         * (genNearPointerGet): fixed bug with indirect reading, was always
3723         reading from INDF0
3724         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3725         pointers,
3726         * (genAddrOf): rewrote code to take address of a stacked function parameter
3727         * (genCast): fixed casting to generic pointer type,
3728         * src/pic16/gen.h: added AOP_STA,
3729         * (struct asmop): added field stk,
3730         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3731         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3732         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3733         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3734         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3735         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3736         generic pointers,
3737         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3738         and library paths,
3739         * (pic16_port structure): generic pointer size is set to 3,
3740         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3741         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3742         compiler warning,
3743         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3744         operand is an iTemp,
3745
3746 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3747
3748         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3749         * debugger/mcs51/simi.c: addapt new syntax of s51
3750
3751 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3752
3753         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3754         * src/pic16/pcode.c: commented out some calls to free() in order to
3755         fix bug #989576,
3756
3757 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3758
3759         * src/SDCCicode.h,
3760         * src/SDCCicode.c (isiCodeInFunctionCall),
3761         * src/avr/ralloc.c (selectSpil),
3762         * src/pic/ralloc.c (selectSpil),
3763         * src/pic16/ralloc.c (selectSpil),
3764         * src/ds390/ralloc.c (selectSpil),
3765         * src/hc08/ralloc.c (selectSpil),
3766         * src/xa51/ralloc.c (selectSpil),
3767         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3768         stack in the middle of a function call sequence (fixes bug #1020268)
3769         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3770         costs associated with the minimum switch case.
3771
3772 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3773
3774         * src/SDCC.lex: fixed bug #1030549
3775
3776 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3777
3778         * src/SDCCcse.h (struct cseDef),
3779         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3780         over a function call if the CSE is derived from a symbol whose
3781         address has been taken (fixes bug #1029883)
3782         * support/regression/tests/bug-1029883: a new regression test for
3783         this bug
3784
3785 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3786
3787         * src/hc08/gen.c (emitinline): fixed bug #1029778
3788         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3789         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3790         and starts toward RFE #905167)
3791
3792 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3793
3794         * src/pic16/gen.c (mov2f): New function to move an operand to
3795         another without considering if it is a literal or a register,
3796         * (pic16_sameRegs): don't check if they are both AOP_REG,
3797         * (AccRsh): removed andmask=0 lines,
3798         * (genLeftShift): duplicated to be improved in future versions,
3799         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3800         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3801         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3802         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3803         * (insertBankSwitch): fixed inserting banksel directives algorithm
3804         for instructions that follow a skip instruction, this fixes a report
3805         for broken subtraction code generation,
3806         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3807         iCode is a left op, just in case result and right share the same
3808         registers
3809
3810 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3811
3812         * src/hc08/main.c,
3813         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3814         preservation of HX
3815         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3816         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3817         on 2004-09-12; it was buggy
3818
3819 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3820
3821         * src/SDCCsymt.h: removed RESULT_CHECK
3822         * src/SDCCast.c,
3823         * src/SDCCglue.c,
3824         * src/SDCCval.c,
3825         * src/pic/glue.c,
3826         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3827
3828 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3829
3830         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3831         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3832         configuration values no more rejected by compiler, they are assigned
3833         to configuration registers with a warning message instead,
3834         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3835         the for-loop so last conf register is emitted too,
3836         * (_pic16_initPaths): link library libsdcc.lib by default,
3837         * (_hasNativeMulFor): modified test for multiplication according to
3838         Raphael Neider's remarks. Integer multiplication is also done with
3839         support functions,
3840         * device/include/pic16/pic18fregs.h: corrected type error in while
3841         testing and including 18f6720 header file
3842
3843 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3844
3845         * src/pic16/device.h (pic16_options): removed field use_crt,
3846         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3847         until an optimization to handle single bits is added,
3848         * (pic16_loadFSR0): moved before genUnpackBits,
3849         * (genAnd): some white lines removed,
3850         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3851         leave_reset flags in pic16_options when using crt modules,
3852
3853 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3854
3855         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3856           for bugs 898889 & 979599. Also used some safer print instructions.
3857
3858 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3859
3860         * src/pic16/device.h (pic16_options_t): added field use_crt,
3861         crt_name, no_crt,
3862         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3863         catch a probable future bug,
3864         * src/pic16/gen.c: aopIdx function commented out,
3865         * (genAssign): commented out old code which used aopIdx,
3866         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3867         code, added if conditionals to take into account the --use-crt
3868         command line options,
3869         * src/pic16/main.c (pic16_optionsTable): added new command line
3870         options, --use-crt= and --no-crt,
3871         * (_pic16_linkEdit): now the proper crt object is added in the
3872         linker command line except than when --no-crt is specified,
3873         * src/pic16/pcode.c,
3874         * src/pic16/pcode.h: added some structures and functions for a new
3875         optimization scheme to compansate for instruction overhead between
3876         same iCodes, this scheme is currently under development and is not
3877         working in any way,
3878         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3879         to && operator,
3880         * device/lib/pic16/startup/crt0i.c,
3881         * device/lib/pic16/startup/crt0iz.c: added global char variable
3882         __uflags to force the generation of an idata section
3883
3884 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3885
3886         * doc/Makefile,
3887         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3888         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3889
3890 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3891
3892         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3893         Frieder) and clarified the default code optimization mode
3894
3895 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3896
3897         * src/SDCC.lex (doPragma, process_pragma),
3898         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3899         "opt_code_size", and "opt_code_balanced"
3900         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3901         regrouped options by category, added support for category headers
3902         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3903         and "--opt-code-size"
3904         * doc/sdccman.lyx: documented these new options and pragmas
3905         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3906         preference into account
3907
3908 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3909
3910         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3911           geniCodePreDec): Fixed bug 904237 by generating a warning
3912         * src/SDCCerr.h,
3913         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3914
3915 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3916
3917         * src/pic/device.c : When no max ram set validate full memory range.
3918         * src/pic/pcode.c,
3919         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3920
3921 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3922
3923         * device/lib/_gptrget.c,
3924         * device/lib/_gptrput.c: updated comment
3925         * device/lib/calloc.c,
3926         * device/lib/free.c,
3927         * device/lib/malloc.c,
3928         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3929         * src/SDCCcse.c (cseBBlock),
3930         * src/SDCCicode.c (printOperand, geniCodeArray),
3931         * src/SDCCicode.h (struct operand): fixed bug 868103
3932         * support/regression/tests/bug-868103.c: added
3933         * src/SDCCast.c (searchLitOp),
3934         * src/SDCCcse.h (struct cseDef),
3935         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3936         * src/SDCCicode.h (struct operand),
3937         * src/SDCCsymt.h (struct sym_link),
3938         * src/avr/gen.c (hasInc),
3939         * src/ds390/gen.c (hasInc),
3940         * src/hc08/gen.c (genPlusIncr, hasInc),
3941         * src/mcs51/gen.c (hasInc),
3942         * src/pic16/glue.c (pic16_printIvalChar),
3943         * src/pic16/ralloc.c (regWithIdx),
3944         * src/xa51/gen.c (hasInc) : removed warnings
3945         * src/SDCCast.c (createBlock): added comment ???
3946         * src/hc08/ralloc.c: updated comments
3947
3948 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3949
3950         * doc/sdccman.lyx: updated section on switch statements, added
3951         section about semaphore locking
3952         * doc/Makefile: added option -info for latex2html
3953         * device/lib/_gptrget.c,
3954         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3955
3956 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3957
3958         * src/pic/device.h,
3959         * src/pic/device.c,
3960         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3961          maxram is less than 0x100.
3962
3963 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3964
3965         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3966
3967 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3968
3969         * src/port.h,
3970         * src/mcs51/main.c,
3971         * src/ds390/main.c,
3972         * src/z80/main.c,
3973         * src/hc08/main.c,
3974         * src/pic/main.c,
3975         * src/pic16/main.c,
3976         * src/avr/main.c,
3977         * src/xa51/main.c
3978         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3979         a jump table is the best form for a switch statement, including
3980         automatic insertion of missing cases to make the case range
3981         continuous. Developed in collaboration with Frieder Ferlemann.
3982
3983 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3984
3985         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3986         accumulator result if it needs sign extension
3987
3988 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3989
3990         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3991
3992 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3993
3994         * device/lib/gbz80/printf.c,
3995         * device/lib/z80/printf.c: removed define for NULL
3996
3997 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3998
3999         * as/xa51/xa_link.c,
4000         * device/examples/ds390/ow390/ad26.c,
4001         * device/examples/ds390/ow390/cnt1d.c,
4002         * device/examples/ds390/ow390/counter.c,
4003         * device/examples/ds390/ow390/ds2480.h,
4004         * device/examples/ds390/ow390/ds2480ut.c,
4005         * device/examples/ds390/ow390/findtype.c,
4006         * device/examples/ds390/ow390/gethumd.c,
4007         * device/examples/ds390/ow390/owllu.c,
4008         * device/examples/ds390/ow390/ownetu.c,
4009         * device/examples/ds390/ow390/swt12.c,
4010         * device/examples/ds390/ow390/swtloop.c,
4011         * device/examples/ds390/ow390/temp.c,
4012         * device/examples/ds390/ow390/temp10.c,
4013         * device/examples/ds390/ow390/thermo21.c,
4014         * device/examples/ds390/ow390/tinilnk.c,
4015         * device/examples/ds390/ow390/tstfind.c,
4016         * device/examples/serialcomm/windows/serial.cpp,
4017         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4018         * device/include/reg51.h: fixed line endings for cvs
4019
4020 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4021
4022         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4023         packRegsForAccUse, packRegisters): new accumulator register
4024         packing algorithm
4025         * support/regression/ports/hc08/support.c (_putchar): suppress
4026         warning of unused variable
4027         * src/SDCCicode.c: added SWAP entry to codeTable
4028
4029 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4030
4031         * device/lib/sprintf.c: forgot to add this file before previous commit
4032
4033 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4034
4035         * src/pic16/gen.c (genPackBits): added operand right in function
4036         parameters, load result directly if p_type is POINTER (that is
4037         called by genNearPointerSet)
4038         * (genUnPackBits): added operand left in function parameters,
4039         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4040         FSR0 if accessing bitfields,
4041
4042 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4043
4044         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4045           _print_format; updated printf, sprintf, vsprintf
4046         * device/include/asm/default/features.h: corrected comment/define
4047         * device/lib/Makefile.in: added sprintf.c
4048         * device/lib/libsdcc.lib: added sprintf module
4049         * device/lib/printf_large.c,
4050         * device/lib/vprintf.c,
4051         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4052           into these 3 files
4053         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4054         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4055         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4056           hc08 test
4057         * support/regression/tests/zeropad.c: define idata as data for hc08
4058
4059 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4060
4061         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4062         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4063         labels are referenced at least once (even if a reference is not found)
4064         * src/hc08/gen.c (emitcode): set isComment flag for comments
4065         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4066         loads), rules 6a..6b (optimize jumps to return)
4067
4068 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4069
4070         * device/lib/acosf.c (acosf),
4071         * device/lib/asinf.c (asinf),
4072         * device/lib/atanf.c (atanf),
4073         * device/lib/ceilf.c (ceilf),
4074         * device/lib/cosf.c (cosf),
4075         * device/lib/coshf.c (coshf),
4076         * device/lib/cotf.c (cotf),
4077         * device/lib/fabsf.c (fabsf),
4078         * device/lib/floorf.c (floorf),
4079         * device/lib/log10f.c (log10f),
4080         * device/lib/logf.c (logf),
4081         * device/lib/sinf.c (sinf),
4082         * device/lib/sinhf.c (sinhf),
4083         * device/lib/sqrtf.c (sqrtf),
4084         * device/lib/tanf.c (tanf),
4085         * device/lib/tanhf.c (tanhf),
4086         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4087         replaced all instances of "reentrant" in the library functions
4088         defined in math.h with this macro.
4089         * support/regression/tests/float_trans.c: reenabled test for hc08
4090
4091 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4092
4093         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4094         erroneously deleted
4095
4096 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4097
4098         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4099         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4100         multi-byte volatile operands are used
4101         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4102         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4103         initialization to area GSINIT0 so that it would always precede
4104         any static initializers in GSINIT
4105         * support/regression/tests/zeropad.c: fixed idata define for hc08
4106         * support/regression/tests/bug-927659.c,
4107         * support/regression/tests/float_trans.c: disabled tests for hc08
4108         pending missing library routines
4109         * .version: increased version number to 2.4.4 - hc08 port now passes
4110         regression tests
4111
4112
4113 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4114
4115         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4116         * Makefile.common.in,
4117         * as/Makefile,
4118         * as/hc08/Makefile.in,
4119         * as/mcs51/Makefile.in,
4120         * as/z80/Makefile.in,
4121         * debugger/mcs51/Makefile.in,
4122         * device/include/Makefile.in,
4123         * device/lib/Makefile.in,
4124         * doc/Makefile,
4125         * link/Makefile,
4126         * link/z80/Makefile.in,
4127         * packihx/Makefile.in,
4128         * sim/ucsim/main_in.mk,
4129         * sim/ucsim/avr.src/Makefile.in,
4130         * sim/ucsim/doc/Makefile.in,
4131         * sim/ucsim/gui.src/serio.src/Makefile.in,
4132         * sim/ucsim/hc08.src/Makefile.in,
4133         * sim/ucsim/s51.src/Makefile.in,
4134         * sim/ucsim/xa.src/Makefile.in,
4135         * sim/ucsim/z80.src/Makefile.in,
4136         * src/Makefile.in,
4137         * support/cpp2/Makefile.in,
4138         * support/librarian/Makefile,
4139         * support/makebin/Makefile: added DESTDIR to the install path proposed
4140         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4141         * doc/sdccman.lyx: added DESTDIR documentation
4142
4143 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4144
4145         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4146         instruction for interrupt handlers, use fast returns when returning
4147         from high priority interrupts
4148
4149 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4150
4151         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4152         code generation
4153         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4154         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4155         bugs, ported much of Bernhard's code from mcs51
4156         * src/mcs51/gen.c (genSend),
4157         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4158         than one when calling a reentrant function
4159         * device/lib/_mullong.c: defined an alternate struct layout for big
4160         endian ports (hc08)
4161
4162 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4163
4164         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4165         test
4166
4167 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4168
4169         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4170         are sane and complete before asking the port its prefered parameter
4171         passing method (fixes bug #1017633)
4172         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4173         and _ret3
4174
4175 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4176
4177         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4178         problem in bitfields >= 8 bits.
4179
4180 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4181
4182         * src/SDCCsymt.c: undid changes that were not meant to be committed
4183
4184 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4185
4186         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4187
4188 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4189
4190         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4191           copied and wrong bit got inverted
4192
4193 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4194
4195         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4196         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4197         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4198         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4199         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4200         assignments to bitfields at known addresses
4201         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4202         reads from bitfields at known addresses
4203         * src/hc08/ralloc.c (packRegisters),
4204         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4205         genhc08Code): optimize pointer get values used as conditionals
4206         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4207         and branch
4208
4209 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4210
4211         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4212         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4213         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4214         as conditionals
4215
4216 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4217
4218         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4219
4220 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4221
4222         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4223         related problems
4224
4225 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4226
4227         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4228
4229 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4230
4231         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4232         mcs51 port
4233
4234 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4235
4236         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4237
4238 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4239
4240         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4241         cases use more compact code.
4242
4243 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4244
4245         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4246
4247 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4248
4249         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4250
4251 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4252
4253         * src/SDCCsymt.h,
4254         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4255         parameter of changePointer() from symbol* to sym_link*
4256         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4257         * src/SDCCsymt.c (compareType): void* type is castable to other
4258         pointers, but not necesarily an exact match.
4259         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4260         is no longer blindly treated as an exact match.
4261         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4262
4263 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4264
4265         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4266
4267 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4268
4269         * src/pic/gen.c,
4270         * src/pic/pcode.c,
4271         * src/pic/ralloc.h,
4272         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4273
4274 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4275
4276         * src/pic/device.c,
4277         * src/pic/device.h,
4278         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4279
4280 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4281
4282         * src/mcs51/gen.c (emitcode): fixed bug #992819
4283
4284 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4285
4286         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4287           there's no need to make it worse
4288
4289 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4290
4291         * src/mcs51/ralloc.c (deassignLR),
4292         * src/ds390/ralloc.c (deassignLR),
4293         * src/hc08/ralloc.c (deassignLR),
4294         * src/z80/ralloc.c (deassignLR),
4295         * src/pic/ralloc.c (deassignLR),
4296         * src/pic16/ralloc.c (deassignLR),
4297         * src/avr/ralloc.c (deassignLR),
4298         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4299         rlivePoint): fixed another part of bug #971834
4300
4301 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/z80/main.c: enabled "critical" keyword
4304         * src/z80/mappings.i,
4305         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4306         functions (fixes bug #979646)
4307         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4308
4309 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4310
4311         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4312           such as c:\mydir.
4313
4314 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4315
4316         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4317           doesn't disable too much optimizations
4318
4319 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4320
4321         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4322
4323 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4324
4325         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4326
4327 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4328
4329         * src/pic/gen.c tidied up tabs
4330         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4331         * src/pic/main.c tidied up tabs
4332         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4333         * src/pic/pcoderegs.c tidied up tabs
4334         * src/pic/ralloc.c tidied up tabs
4335
4336 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4337
4338         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4339         to S_FIXED for pic16 port and when symbol is not in level 0,
4340         allocate for S_REGISTER storage class and pic16 port, too,
4341         * src/pic16/device.h: prototype for checkSym,
4342         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4343         * (pic16_assignConfigWordValue): test the value and the mask to
4344         validate that the value is suitable for the configuration word,
4345         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4346         collect extern declared symbols, don't emit symbol twice, check
4347         first if symbol is in publics set first,
4348         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4349         * added command line '--fstack' which enables an experimental
4350         feature for stack access, too buggy to be used yet...
4351         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4352         * (pic16_allocDirReg): when register has storage class S_REGISTER
4353         allocate in pic16_dynAccessRegs,
4354         * device/include/pic16/pic18f????.h: modified configuration word
4355         naming convention, words started as CONFIG0H but should be CONFIG1H
4356
4357 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4358
4359         * device/include/mcs51reg.h: fixed bug 970993
4360
4361 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4362
4363         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4364         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4365         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4366         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4367         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4368         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4369           error/warning numbers,
4370           added function setWarningDisabled()
4371         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4372         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4373           _memcmp.c _memmove.c calloc.c realloc.c free.c
4374         * support/regression/tests/malloc.c: added tests for new functionality
4375         * support/regression/tests/zeropad.c: added tests for truncated initializers
4376           and initialized char arrays starting with '\x0'
4377         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4378
4379 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4380
4381         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4382
4383 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4384
4385         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4386         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4387         peephole 177.e. Thanks to anonymous
4388
4389 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4390
4391         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4392         function isn't used in the source but referenced as a
4393         variable initializer then declare it as extern in .asm file
4394
4395 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4396
4397         * .version: increased version number to 2.4.3
4398
4399         Adding version extension according to ChangeLog CVS revision
4400         * src/Makefile.in (target all): added dependency 'version.h'
4401         * (rule version.h): added rule to create version.h from ChangeLog,
4402         * (rule dep): added dependency version.h,
4403         * src/version.awk: AWK script to create version.h
4404         * src/SDCCdwarf2.c (dwWriteModule),
4405         * src/SDCCglue.c (initialComments),
4406         * src/SDCCmain.c (printVersionInfo): modified to write after
4407         version string the version extension number,
4408         * src/SDCCutil.c: included "version.h"
4409         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4410         number,
4411         * src/SDCCutil.h: added prototype for getBuildNumber
4412
4413         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4414         includeDirsSet, too,
4415         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4416         const char [] is found in function prototype...
4417
4418         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4419         moving to WREG with source is already in WREG,
4420         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4421         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4422         * (aopForSym): stack'ed symbols are partially supported, added
4423         if-clause to support symbols in FARSPACE,
4424         * (sameRegs): added test for AOP_ACC to see if registers are same,
4425         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4426         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4427         * (pic16_popRegFromString): will not allocate a new register if it
4428         doesn't find one by name, bug may have introduced...
4429         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4430         * (genIpush): revived to use pic16 port's stack,
4431         * (genAddrOf): added incomplete case for stack'ed operand,
4432         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4433         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4434         can handle multibyte operands,
4435         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4436         * (pic16initialComments): added message for MPLAB compatibility
4437         mode enabled,
4438         * src/pic16/main.h: prototype for pic16_mplab_comp,
4439         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4440         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4441         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4442         because of increased complexity of procedure,
4443         * (_process_pragma): stack pragma changed to format 'stack pos len',
4444         emit symbol '_stack_end' to conform with gplink,
4445         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4446         to search for register,
4447         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4448         PO_GPR_REGISTER,
4449         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4450         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4451         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4452         case for PO_GPR_REGISTER,
4453         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4454         dies, the new era is ahead !...
4455         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4456         pic16_dynInternalRegs,
4457         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4458         * (pic16_allocDirReg): minor optimizations and bug fixes,
4459         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4460
4461         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4462         load stack and frame pointer with address of 'stack_end' symbol
4463
4464 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4465
4466         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4467         without source code but only variable initializers
4468
4469 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4470
4471         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4472         external are not declared as extern to reduce overhead while linking
4473
4474 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4475
4476         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4477
4478 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4479
4480         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4481           Yee Keat for the patch
4482         * src/SDCCast.c (decorateType): fixed bug #979599
4483         * src/ds390/gen.h: removed local fReturnSizeDS390
4484         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4485         * src/ds390/gen.c (genAnd, genOr, genXor),
4486         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4487
4488 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4489
4490         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4491         add relFilesSet to $3, manipulate $2 to handle linking of object
4492         files without source files in command line,
4493         * device/include/pic16 (all headers): added ID location macros,
4494         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4495         entries for ID location bytes,
4496         * (pic16_assignIdByteValue): NEW,
4497         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4498         added field dumpcalltree to pic16_options_t,
4499         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4500         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4501         emitting rFalseIfx label after check_carry label,
4502         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4503         pic16_emitDIRegs), NEW
4504         * (pic16glue): dump .calltree file when option --calltree found,
4505         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4506         * (_pic16_genAssemblerPreamble): emit ID locations after
4507         configuration registers,
4508         * (pic16_linkCmd): modifications of the link command,
4509         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4510         * (pic16_pCodeInitRegisters): don't init stack registers,
4511         * (pic16_findPrevInstruction): fixed bug,
4512         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4513         bug with immediate registers,
4514         * (buildCallTree): traces stack push and pop,
4515         * (pct2): dump also stack usage for each function,
4516         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4517         * (pic16_allocDirReg): various modifications,
4518         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4519         fixed to 1,
4520
4521 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4522
4523         * src/pic16/pcode.c: removed buggy double colon
4524
4525 2004-07-01 Borut Razem <borut.razem AT siol.net>
4526
4527         * support/scripts/sdcc.nsi: added include/pic16 to setup
4528
4529 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4530
4531         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4532         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4533         target 'clean',
4534         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4535         specific command line arguments. Also added sample lkr script
4536         for placing a variable at a specific memory bank.
4537         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4538         at a specific memory bank,
4539         * (pic16_dump_isection): fixed bug which caused string literals to
4540         be omitted when dumping idata section,
4541         * (pic16_groupRegistersInSection): added code to handle registers
4542         in specific memory banks,
4543         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4544         public, all references are renamed too,
4545         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4546         AOP_DPTR2,
4547         * (pic16_storeForReturn): added case to handle when dest is WREG,
4548         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4549         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4550         pic16_rel_udata, check to see if that register is marked as being
4551         a member of a specific memory bank,
4552         * (pic16_printIvalCharPtr): added code to add string literals either
4553         to code or the idata sections,
4554         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4555         also accept the 'udata' pragma,
4556         * src/pic16/main.h: new structure types sectName and sectSym
4557         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4558         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4559         * (pic16_findPrevInstruction): fixed, it returned nothing,
4560         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4561         instruction combinations,
4562         * (pic16_FixRegisterBanking): heavily reorganised,
4563         * (pic16_AnalyzeBanking): if generating banksel directives is
4564         disabled, then don't call FixRegisterBanking at all,
4565         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4566         completely removed,
4567         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4568
4569 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4570
4571         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4572         Phuah Yee Keat <yk.phuah AT nestac.com>
4573
4574 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4575
4576         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4577         correctly the IVT even if it is relocated to some other location
4578
4579 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4580
4581         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4582         * device/include/pic16/pic18f2220.h: NEW,
4583         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4584         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4585         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4586         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4587         nodefaultlibs, ivt_loc is the location of the interrupt vector
4588         table, and nodefaultlibs signs that default libraries should not be
4589         linked in link stage,
4590         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4591         according to --ivt-loc argument,
4592         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4593         when pragma stack is found,
4594
4595 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4596
4597         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4598         256 (range check), 257 (do while), 258.a-f (bit banging
4599         f.e. on 3-wire SPI bus)
4600
4601 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4602
4603         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4604         variables used exclusively within a loop
4605
4606 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4607
4608         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4609
4610 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4611
4612         * src/SDCClrange.c (computeClash): fixed bug #971834
4613
4614 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4615
4616         * src/mcs51/gen.c (genCmp): fixed bug #975903
4617         * src/hc08/gen.c (operandsEqu),
4618         * src/ds390/gen.c (operandsEqu),
4619         * src/z80/gen.c (operandsEqu),
4620         * src/pic/gen.c (operandsEqu),
4621         * src/pic16/gen.c (operandsEqu),
4622         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4623         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4624
4625 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4626
4627         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4628
4629 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4630
4631         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4632         default case in switch statement,
4633         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4634         to eliminate problem with initialisation of pointers, but problem
4635         still exists,
4636         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4637         * (emitStaticSegment): removed various lines emitting debug info,
4638         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4639         added processor registers for utilizing EEPROM,
4640         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4641         configurable and set 8
4642
4643 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4644
4645         * .version: increased version number to 2.4.2,
4646
4647         Cumulative patch for pic16 port
4648         * src/pic16/device.c: changed scheme to dump initial values for
4649         variables in idata segment, all print_idata* functions were removed,
4650         now the pic16_printIval* will be called,
4651         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4652         * _pic16_printPointerType, pic16_printPointerType,
4653         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4654         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4655         NEW, similar to the respective functions in SDCCglue.c,
4656         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4657         way, emitting hex bytes,
4658         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4659
4660 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4661
4662         * src/avr/ralloc.c (serialRegAssign),
4663         * src/xa51/ralloc.c (serialRegAssign),
4664         * src/pic/ralloc.c (serialRegAssign),
4665         * src/pic16/ralloc.c (serialRegAssign),
4666         * src/hc08/ralloc.c (serialRegAssign),
4667         * src/z80/ralloc.c (serialRegAssign),
4668         * src/ds390/ralloc.c (serialRegAssign),
4669         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4670
4671 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4672
4673         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4674         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4675
4676 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4677
4678         Cumulative patch for pic16 port:
4679         * src/pic16/device.h (typedef PIC16_device) modified fields for
4680         defining microcontrollers,
4681         * src/pic16/device.c: added new info for all devices in Pics16 array,
4682         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4683         to be optimised out by the pCode optimiser,
4684         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4685         specially, bug reported by G.M. Gallant,
4686         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4687         as force'd so that cannot be optimised out by pCode optimiser,
4688         * src/pic16/pcode.c,
4689         * src/pic16/pcodepeeph.c,
4690         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4691         they are disabled by default, but can be enabled explicit with
4692         command argument --denable-peeps, for testing,
4693         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4694         --pomit-ivt in COMPILE_FLAGS
4695
4696 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4697
4698         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4699           compilation on MSVC
4700
4701 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4702
4703         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4704
4705 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4706
4707         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4708         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4709
4710 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4711
4712         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4713         would only assign 0x300001 register.
4714
4715 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4716
4717         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4718         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4719
4720 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4721
4722         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4723         for ds80c400
4724         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4725         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4726         added peephole 254 (left shift), 255 (jump table)
4727
4728 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4729
4730         * device/lib/Makefile.in: removed comment line with model-pic16,
4731         * (target port-specific-objects-pic16): the libraries and objects
4732         are copied to the build directory form the device/lib/pic16/bin
4733         directory
4734
4735         Cumulative patch concerning pic16 port:
4736         * library directory has been re-organized,
4737         * added support for PIC18F1220,
4738         * added headers and library sources for chips 18f1220,18f6520,
4739         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4740
4741         * configuration registers setting has changed, now each supported
4742         device has a complete description of the registers it uses,
4743         * all initialisations are moved to idata sections, these section
4744         can be absolute or relocatable,
4745         * fixed initialisation of codespace variables,
4746         * fixed warning about PCLATU and gpsim,
4747         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4748         * (genAssign): use table reads when assigning from variables in codespace,
4749         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4750         char/int variables placed in codespace,
4751         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4752         registers set in .asm file, no need for --pomit-config-words anymore,
4753         * (pic16glue): some 8051 legacy segments are commented out
4754         (to be removed completely),
4755         * added support for alternative assembler and linker with --asm=
4756         and --link= command line arguments,
4757         * peepholes are disabled automatically in the port, no need to
4758         specify on command line,
4759         * port supports natively char/int/long multiplication, but converts
4760         all divisions to support functions,
4761         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4762         to the file set in variable $2,
4763         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4764         strings in ASCII format and not in hex,
4765         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4766         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4767         allocate proper register if iCodes aren't temporary,
4768
4769 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4770
4771         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4772
4773 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4774
4775         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4776         is commented out
4777
4778 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4779
4780         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4781         computed address is reused
4782         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4783         multi-byte bitfields
4784
4785 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4786
4787         * src/z80/gen.c: (genArrayInit): must check for pointers too
4788
4789 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4790
4791         * support/regression/tests/zeropad.c: never meant to commit the
4792           nestedstruct test: removed, added check for GCC version
4793
4794 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4795
4796         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4797         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4798         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4799           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4800           bugs 928906 and 954082 half-empty initializers
4801         * src/SDCCsymt.h,
4802         * src/SDCCsymt.c (getAllocSize): added for above fix
4803         * src/z80/gen.c (genArrayInit): fixed bug 741044
4804         * support/regression/tests/zeropad.c: added tests
4805
4806 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4807
4808         * src/pic16/device.c (pic16_dump_section): corrected bug which
4809         caused some symbols of the libraries to be misplaced
4810
4811 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4812
4813         * src/pic16/glue.c,
4814         * src/pic16/ralloc.h,
4815         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4816         to fix conflict with pic port
4817
4818 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4819
4820         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4821         externs configuration variables,
4822         * src/pic16/ralloc.h,
4823         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4824         prototype in header, commented out some debug messages
4825
4826 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4827
4828         * src/pic16/glue.c,
4829         * src/pic16/main.c,
4830         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4831         for gpasm COFF object generation. Thanks to D. Hawkins for
4832         his patch info
4833
4834 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4835
4836         * src/ds390/main.c,
4837         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4838         Brock for spotting this)
4839         * src/ds390/gen.c (genEndFunction),
4840         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4841         interrupt handler and critical. Disable push/pop optimizations when
4842         peephole optimizations disabled.
4843
4844 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4845
4846         Updated pic16 library sources and headers.
4847         * device/lib/pic16/pic18f*/ ,
4848         * device/include/pic16/*.h: modified to handle structured SFR
4849         definitions
4850
4851 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4852
4853         * src/port.h (PORT structure): added hook initPaths, now each
4854         port can declare its own default search paths,
4855         which can been seen with the --print-search-dirs option,
4856         see pic16 port for example,
4857         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4858         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4859         * (doPrintSearchDirs): NEW, replaces in a central manner the
4860         printing of search dirs which was split in set*Paths functions,
4861         * (main): added call to port->initPaths and doPrintSearchDirs,
4862         * src/avr/main.c,
4863         * src/ds390/main.c,
4864         * src/hc08/main.c,
4865         * src/izt/i186.c,
4866         * src/izt/tlcs900h.c,
4867         * src/mcs51/main.c,
4868         * src/pic/main.c,
4869         * src/pic16/main.c: modified port structures to reflect addition of
4870         initPaths hook,
4871
4872         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4873         * (pic16_dump_section): for registers in same address reserve memory once,
4874         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4875         to no_banksel,
4876         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4877         result is greater in size than right or left,
4878         * (pic16_genUMult8X8_8): there are some cases where the result can
4879         be 16 bits size, so handle these,
4880         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4881         * (pic16_outBitC): modified to emit pcodes,
4882         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4883         or not,
4884         * (genDivOneByte): implemented algorithm to divide 8-bits,
4885         * (genCmp): uncommented goto, but issues still exist,
4886         * (genAnd): fixed a bug with variables >8bits,
4887         * (genPackBits): optimization added that uses BCF/BSF to change a
4888         single bit,
4889         * (genAssign): fixed bug when assigning floating point literals,
4890         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4891         __sdcc_gsinit_startup label,
4892         * src/pic16/main.c (_pic16_init): removed search directory
4893         initialisations,
4894         * (_pic16_initPaths): NEW, used to initialise search directories,
4895         * (_hasNativeMulFor): support functions for all except char/int
4896         multiplication, and char division,
4897         * (PIC16_port struct): modified entry for native mul support,
4898         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4899         no_banksel option,
4900         * (buildCallTree): call to register_usage is ifdef'ed out,
4901
4902 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4903
4904         * device/include/string.h: applied Stas Sergeev's patch to make this
4905         header file compatible with the preprocessor -Wundef option
4906         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4907         failure (fixes bug #941458)
4908
4909 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4910
4911         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4912         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4913         that the variable, not the function, should be static
4914         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4915         to be consistent with non-literal case
4916
4917 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4918
4919         * src/SDCCast.c (isConformingBody): fixed bug #949967
4920         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4921         convilong): fixed bug #952086
4922
4923 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4924
4925         * src/SDCCmem.c (allocVariables): fixed bug #955321
4926
4927 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4928
4929         * src/hc08/main.c (_hc08_genAssemblerEnd),
4930         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4931         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4932         completely eliminated the use of a temporary file
4933         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4934         when more than one file linked
4935         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4936
4937 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4938
4939         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4940         which fixes bug #543481
4941         * support/regression/tests/bug-751703.c: fixed comments left from a
4942         cut and paste error
4943         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4944         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4945         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4946         scopes
4947         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4948         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4949         are now changed to underscores in moduleName
4950
4951 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4952
4953         * as/mcs51/lkmem.c: better fix for bug #954173
4954
4955 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4956         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4957
4958         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4959         * device/include/c8051f000.h,
4960         * device/include/c8051f120.h,
4961         * device/include/c8051f300.h,
4962         * device/include/c8051f310.h,
4963         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4964         PWM16) and detab'ed
4965
4966 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4967
4968         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4969         and mailing lists, doc'ed --no-peep-comments, removed reference
4970         to knoppix (newest version has no LyX/LaTeX), other minor changes
4971         * src/SDCCglue.c (glue): save 2 bytes stack space with
4972         option --main-return. The ljmp could probably be avoided too
4973
4974 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4975
4976         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4977
4978 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4979
4980         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4981         * src/SDCCopt.c (isLocalWithoutDef),
4982         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4983         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4984         (credit to Maarten Brock for patch #949363, on which this is based)
4985         * support/regression/tests/bug-751703.c: some test cases of extern used
4986         within inner scopes.
4987
4988 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4989
4990         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4991         SPEC_STRUCT
4992         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4993         struct definitions
4994         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4995         dwWriteLabel): fix to create valid debugger symbols even when
4996         the module name has non-alphanumeric symbols in it
4997         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4998         when a variable's allocation has been optimized away
4999
5000
5001 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5002
5003         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5004         * src/hc08/main.c,
5005         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5006         * src/mcs51/main.c,
5007         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5008         * src/ds390/main.c,
5009         * src/z80/gen.c (z80_emitDebuggerSymbol),
5010         * src/z80/main.c,
5011         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5012         * src/pic/main.c,
5013         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5014         * src/pic16/main.c,
5015         * src/avr/gen.c (avr_emitDebuggerSymbol),
5016         * src/avr/main.c,
5017         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5018         * src/xa51/main.c,
5019         * src/SDCCdebug.c (emitDebuggerSymbol),
5020         * src/SDCCdebug.h,
5021         * src/port.h: added a debugger struct to the port struct. Added a
5022         callback for defining debugger symbols
5023
5024         * src/SDCCast.c (createLabel),
5025         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5026         with isitmp = 1
5027         * src/SDCCicode.h,
5028         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5029         iCode back to the ast for the function
5030
5031         * src/hc08/ralloc.c (hc08_assignRegisters),
5032         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5033         unneeded fields from the regs struct.
5034         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5035         pushReg() & pullReg() functions instead of emitcode()
5036
5037         * src/hc08/gen.c (genLabel, genhc08Code),
5038         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5039
5040         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5041         debugger hooks
5042
5043         * src/hc08/gen.c (genEndFunction, genhc08Code),
5044         * src/hc08/gen.h,
5045         * src/mcs51/gen.c (genEndFunction, gen51Code),
5046         * src/mcs51/gen.h,
5047         * src/ds390/gen.c (genEndFunction, gen390Code),
5048         * src/ds390/gen.h,
5049         * src/z80/gen.c (genEndFunction, genZ80Code),
5050         * src/z80/gen.h,
5051         * src/z80/z80.h,
5052         * src/pic/gen.c (genEndFunction, genpic14Code),
5053         * src/pic/gen.h,
5054         * src/pic16/gen.c (genEndFunction, genpic16Code),
5055         * src/pic16/gen.h,
5056         * src/avr/gen.c (genEndFunction, genAVRCode),
5057         * src/avr/gen.h,
5058         * src/xa51/gen.c (genEndFunction, genXA51Code),
5059         * src/xa51/gen.h,
5060         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5061         specific code to cdbFile.c and out of the backend code generators
5062
5063         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5064         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5065         starting address is now 0
5066
5067         * as/hc08/asm.h,
5068         * as/hc08/m08pst.c,
5069         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5070         assembler directive for DWARF support
5071         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5072
5073         * src/src.dsp,
5074         * src/Makefile.in,
5075         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5076
5077 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5078
5079         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5080         and inappropriate peephole optimization in jump tables
5081
5082 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5083
5084         * as/hc08/m08pst.c,
5085         * src/SDCCglue.c: sdccopt works for the hc08 port now
5086
5087 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5088
5089         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5090
5091 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5092
5093         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5094
5095 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5096
5097         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5098         rules
5099         * src/SDCCmain.c,
5100         * src/SDCCglobl.h,
5101         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5102         comments from the peephole optimizer replacement rules
5103         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5104         symbols
5105         * src/SDCCcse.c (updateSpillLocation),
5106         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5107         equivalents
5108         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5109         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5110         objects far pointers
5111
5112 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5113
5114         * src/SDCCsymt.h: a missing part of my last change
5115         * src/pic/ralloc.c (regTypeNum),
5116         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5117
5118 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5119
5120         * src/SDCCicode.h,
5121         * src/SDCCicode.c (aggrToPtrDclType),
5122         * src/SDCCptropt.h,
5123         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5124         ptrPseudoSymConvert),
5125         * src/pic/ralloc.c (regTypeNum),
5126         * src/pic16/ralloc.c (regTypeNum),
5127         * src/hc08/ralloc.c (regTypeNum),
5128         * src/ds390/ralloc.c (regTypeNum),
5129         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5130         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5131
5132 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5133
5134         * link/z80/lkmain.c (afile),
5135         * as/hc08/lkmain.c (afile),
5136         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5137         prevent a pointer problem when a filename has no directory and
5138         no extension specified.
5139
5140 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5141
5142         * link/z80/lkmain.c (afile): allow periods in directory names
5143         * link/z80/lkmain.c (afile),
5144         * as/mcs51/lkmain.c (afile),
5145         * as/hc08/lkmain.c (afile): allow linker script file to have an
5146         extension other than ".lnk"
5147         * link/z80/lklex.c (getfid),
5148         * link/z80/lkmain.c (parse),
5149         * as/mcs51/lklex.c (getfid),
5150         * as/mcs51/lkmain.c (parse),
5151         * as/hc08/lklex.c (getfid),
5152         * as/hc08/lkmain.c (parse): Support comments in the linker script
5153         file on lines by themselves and after filenames
5154
5155 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5156
5157         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5158
5159 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5160
5161         * src/z80/peeph-z80.def: removed some peephole rules that don't
5162         work with multibyte arithmetic (fixed bug #937126)
5163         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5164         to registers and not global variables
5165         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5166         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5167         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5168         checking for assignments not internally generated (fixed bug #931895)
5169         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5170         structure member (fixed bug #930072)
5171
5172 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5173
5174         * src/SDCCmain.c (linkEdit),
5175         * src/hc08/main.c (_hc08_parseOptions),
5176         * as/hc08/Makefile.in,
5177         * as/hc08/aslink.h,
5178         * as/hc08/asm.h,
5179         * as/hc08/m08pst.c,
5180         * as/hc08/lkrloc.c (relr, rele),
5181         * as/hc08/lkarea.c (lnkarea)
5182         * as/hc08/lkmain.c (afile, parse),
5183         * as/hc08/lkelf.c: support for ELF output
5184         * as/hc08/lks19.c (s19),
5185         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5186
5187 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5188
5189         * as/mcs51/lkihx.c: Fixed bug #899105.
5190
5191 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5192
5193         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5194         .dsp files from Unix to DOS.
5195
5196 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5199         function pointers; we have been compliant for several months now.
5200         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5201         change that was accidently commented out
5202         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5203         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5204         bug #922319
5205
5206 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5207
5208         * src/hc08/gen.c: output of all of the internal debugging information
5209         is now controlled by the D() macro; it is disabled by default
5210
5211 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5212
5213         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5214         harder to keep the same registers during a CAST iCode
5215         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5216         long via int can be done in a single cast, if the signedness is
5217         correct.
5218         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5219         putchar() in tinibios.c in ds390's library
5220
5221 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5222
5223         * src/SDCCast.c (decorateType): fixed bug #898889,
5224         cast result of a literal complement too
5225         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5226         fixed check for bitfields
5227
5228 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5229
5230         * src/SDCCicode.c (geniCodeLogic): made it static,
5231         (geniCodeLogicAndOr): added in order to fix bug #905492,
5232         (ast2iCode): fixed bug #905492
5233         * support/regression/tests/bug-905492.c: added
5234         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5235         (processParms): fixed bug #927659: don't copy parms, this will clear
5236         decorated flag
5237         * support/regression/tests/bug-927659.c: added
5238
5239 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5240
5241         * src/SDCCast.c (addCast): don't cast float to char
5242         * device/lib/libsdcc.lib: added _memmove
5243
5244 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5245
5246         * device/lib/large/Makefile: fixed parallel execution by
5247         replacing `make` by `$(MAKE)`
5248
5249 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5250
5251         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5252         offsets (fixes bug #923936)
5253
5254 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5255
5256         * device/lib/small/Makefile: fixed parallel execution by
5257         replacing `make` by `$(MAKE)`
5258
5259 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5260
5261         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5262
5263 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5264
5265         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5266         * src/regression/Makefile: Regression test was not running.
5267
5268 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5269
5270         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5271         complement if possible
5272         * src/SDCCval.c (valComplement),
5273         * src/SDCCicode.c (operandOperation): fixed complement of literal
5274         * support/regression/tests/onebyte.c (testComplement): added
5275
5276 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5277
5278         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5279         return an optimized tree; actually replace actParm with the new tree
5280         * src/SDCCast.h: added some parantheses to remove side effects
5281         * support/regression/tests/bug-920866.c
5282
5283 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5284         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5285         Bit operands were not being handled properly in the pic14 port.
5286         (now src/regression/add.c passes again).
5287
5288 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5289
5290         * src/SDCC.y (labeled_statement): case and default no longer require
5291         a following statement (RFE #893037)
5292
5293 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5294
5295         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5296         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5297         disabled (fixes bug #916294)
5298         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5299         "mov a,acc"; patch provided by Lenny Story
5300         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5301
5302 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5303
5304         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5305         functions
5306         * src/ds390/gen.c (genFunction, genEndFunction),
5307         * src/ds390/ralloc.c (ds390_assignRegisters),
5308         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5309         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5310         pushed if there are parameters passed on the stack. Also, a cleaner
5311         way to decide if r0/r1 should be pushed/popped. (Together they fix
5312         bug #918693)
5313
5314 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5315
5316         * doc/sdccman.lyx,
5317         * device/lib/mcs51/crtpagesfr.asm,
5318         * device/lib/mcs51/crtxinit.asm,
5319         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5320         to avoid confusion with Si Lab's SFRPAGE register.
5321
5322 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5323
5324         * src/SDCCglue.c (emitMaps): allow public sfr variables
5325         * src/SDCCglue.c (initialComments): include compiler build date
5326         with compiler version and put the timestamp of the generated
5327         assembly file on a serperate line to be less confusing.
5328         * src/port.h: added genInitStartup hook
5329         * src/avr/main.c,
5330         * src/ds390/main.c,
5331         * src/hc08/main.c,
5332         * src/pic/main.c,
5333         * src/pic16/main.c,
5334         * src/xa51/main.c,
5335         * src/z80/main.c: genInitStartup initialize as NULL (default to
5336         historical behaviour)
5337         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5338         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5339         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5340         library instead of hard coding it into the compiler.
5341         * support/regression/ports/mcs51-stack-auto/spec.mk,
5342         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5343         * device/lib/mcs51/Makefile,
5344         * device/lib/small/Makefile,
5345         * device/lib/large/Makefile,
5346         * device/lib/mcs51/crtpagesfr.asm,
5347         * device/lib/mcs51/crtstart.asm,
5348         * device/lib/mcs51/crtxclear.asm,
5349         * device/lib/mcs51/crtxinit.asm,
5350         * device/lib/mcs51/crtclear.asm,
5351         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5352         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5353         and into user configurable files.
5354         * device/lib/clean.mk: clean mcs51 directory too
5355         * support/regression/tests/longlit.c: added static to T1 declaration
5356         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5357         accesses in the initialization code
5358
5359 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5360
5361         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5362         OSCTRIMVAL as noted in bug #916008
5363
5364 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5365
5366         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5367         in loops with multiple exits (reported as incorrect registers
5368         used by Martin Helmling in Sdcc-user list)
5369
5370 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5371
5372         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5373         made ds390 register extensions look less like error messages
5374
5375 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5376
5377         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5378         reported by Adam Wozniak in Sdcc-user list
5379
5380 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5381
5382         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5383         arithmetic optimizations, added debug output
5384
5385 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5386
5387         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5388         * sdcc.spec: updated and split sdcc into 3 rpms
5389         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5390         needed for literals of LEFT_OP and '+'
5391         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5392         introduced RESULT_TYPE_NOPROM
5393         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5394         left shift
5395         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5396         limited promotion to int only for '*'
5397         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5398
5399 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5400
5401         * src/pic16/gen.c (genSkip),
5402         (genc16bit2lit), (gencjneshort): commented out
5403         (is_LitOp): new helper function, checks operand type
5404         (genCmpEq): rewritten
5405
5406 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5407
5408         * support/regression/tests/bug-908454.c: added
5409
5410 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5411
5412         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5413         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5414         (geniCodeCast): cosmetic, don't preserve bit storage class
5415         (geniCodeLeftShift): added promotion
5416         (geniCodeLogic): fixed regression
5417         * src/SDCCsymt.c (computeTypeOr): accept bits too
5418         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5419
5420 2004-03-07  Borut Razem <borut.razem AT siol.net>
5421
5422         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5423
5424 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5425
5426         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5427         version of pic16_genPackRegisters which does not check if ic is a
5428         CAST operator,
5429         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5430         function cause string1.c regression test fails
5431
5432 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5433
5434         * sim/ucsim/configure.in,
5435         * sim/ucsim/configure,
5436         * sim/ucsim/doc/Makefile.in: use docdir
5437         * src/SDCC.y: fixed sbit atrributes
5438         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5439         * src/SDCCast.c (decorateType): |^& need special promotion handling
5440         * src/SDCCast.h,
5441         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5442         * src/SDCCsymt.h (computeType),
5443         * src/SDCCicode.c: computeType() needs op
5444         * src/SDCCsymt.c (checkTypeSanity),
5445         * doc/sddman.lyx: "plain" bitfields are unsigned
5446         * src/SDCCsymt.c (computeTypeOr): added
5447         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5448         |^& ops
5449         * src/SDCCval.c (val*): computeType() needs op
5450         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5451         * support/regression/tests/onebyte.c: added tests for |^&
5452
5453 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5454
5455         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5456         for writing icode into asm output.
5457
5458 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5459
5460         * src/pic16/device.c: added some debug lines enabled
5461         with macro DEBUG_CHECK,
5462         * src/pic16/genarith.c: more debug in genPlus,
5463         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5464         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5465         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5466         * (aopForSym): onStack symbols are re-placed in data memspace,
5467         and onStack flag is cleared,
5468         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5469         copy temporary pcodeop,
5470         * (genPcall): added warning for not updating PCLATU,
5471         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5472         always true for pic16 port,
5473         * (genMultOneWord): NEW, supports integer multiplication,
5474         * (genMult): modified to call genMultOneWord,
5475         * (ifxForOp): added warning when return NULL,
5476         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5477         flag is set before call to operandFromSymbol for implicit
5478         added structures,
5479         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5480         options.intlong_rent are set by default,
5481         * (_hasNativeMulFor): modified to allow port generation of integer
5482         multiplication,
5483         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5484         set regtype to REG_SFR for all registers, restricting seting the
5485         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5486
5487 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5488
5489         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5490         more than 500 times in the regression tests
5491
5492 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5493
5494         * support/Util/SDCCerr.h,
5495         * support/Util/SDCCerr.c,
5496         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5497         enumerator_list),
5498         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5499         for symbol conflicts.
5500         * support/valdiags/tests/enum.c,
5501         * support/valdiags/tests/tentdecl.c,
5502         * support/valdiags/tests/struct.c: expect possible error messages
5503         referring to original symbol definitions.
5504         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5505         * src/SDCCsymt.h,
5506         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5507
5508 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5509
5510         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5511
5512 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5513
5514         * src/pic16/ralloc.c (newReg): fixed bug #908929
5515
5516 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5517
5518         * src/ds390/gen.c: added missing #include "main.h"
5519
5520 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5521
5522         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5523         checking if symbol is already in set,
5524         * src/pic16/device.h: prototype for checkAddSym,
5525         * src/pic16/gen.c: (_G): added entry interruptvector,
5526         * (assignResultValue): removed some commented out lines,
5527         * (genFunction): check for ISR via sym->type, absolute section for
5528         interrupt code is created via a new pBlock, the goto instruction is
5529         placed now correctly at the interrupt vector position, changed all
5530         references from ivec to _G.interruptvector,
5531         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5532         is the interrupt is a high priority one, same for return from ISR,
5533         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5534         externs to calls of checkAddSym,
5535         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5536         pic16_pcode_verbose flag is set,
5537         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5538         * src/pic16/pcoderegs.c: message about how many registers are saved
5539         will only be emitted if pic16_pcode_verbose flag is set,
5540
5541 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5542
5543         * src/ds390/ralloc.h,
5544         * src/ds390/ralloc.c (ds390_regWithIdx),
5545         * src/ds390/gen.c (emitcode),
5546         * src/ds390/main.h,
5547         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5548         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5549         ds390operandCompare, getRegsRead, getRegsWritten,
5550         initializeAsmLineNode): customized instruction size calculation for
5551         ds390, started basis for some register optimizations
5552         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5553         corresponding assembly output
5554         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5555         missing push/pop of r0/r1. Optimized push/pops
5556
5557 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5558
5559         * src/mcs51/main.c (instructionSize): fixed ACALL size
5560         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5561
5562 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5563
5564         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5565         the sorting of rlist with NULL elements
5566         * (print_idataType, print_idata): NEW to create idata sections
5567         * src/pic16/device.h: idataSymSet new variable
5568         * src/pic16/gen.c (genFunction): fixed some bugs in string
5569         comparing, improved the absolute section creation for ISRs,
5570         added FSR0L/FSR0H in registers that are saved in an ISR,
5571         * (genInline): fixed the processing of inline snippets,
5572         now they undergo no process by the peephole optimizer
5573         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5574         are placed in idataSymSet,
5575         * (pic16emitStaticSeg): extern symbols are added in externs,
5576         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5577         switching when aboslute variables are placed in access bank memory
5578         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5579         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5580         commented out with #if,
5581         * (pic16_packRegisters): reintroduce the check for CAST because some
5582         symbols are not correctly handled,
5583         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5584         pCodeInstruction instead of pCode,
5585         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5586         pCodeAsmDir definition,
5587         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5588         directive, then the argument directive is emitted without the leading
5589         tab, hack for inline labels which must be in the first column,
5590         * (compareLabel,pic16_findNextInstruction),
5591         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5592         * (insertBankSwitch): modified for the new pCodeAsmDir,
5593
5594 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5595         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5596
5597         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5598         instance,
5599         * (pushSide): commented out with #if,
5600         * (assignResultValue): fixed some typos in saving
5601         registers,
5602         * (genPcall): FIXED and sync'ed with genCall,
5603         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5604         * (genNearPointerGet): fixed to handle some more cases,
5605         implementation scheme via table reads,
5606         * (genConstPointerGet): modified to access code memory correct,
5607         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5608         and improved to handle some cases
5609         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5610         instead of "RETLW" for init data
5611         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5612         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5613         variables are placed in access bank memory (<0x80 and >=0xf80),
5614         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5615         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5616         TBLWT_POSTDEC,TBLWT_PREINC
5617         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5618         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5619         directives
5620         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5621         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5622         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5623         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5624
5625 2004-02-29  Borut Razem <borut.razem AT siol.net>
5626
5627         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5628         support/Util/findme.h, support/Util/system.h: enhance binary relative
5629         search for lib and include by using findProgramPath()
5630
5631 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5632
5633         * src/SDCCpeeph.h,
5634         * src/SDCCpeeph.c (pcDistance),
5635         * src/port.h,
5636         * src/mcs51/ralloc.h,
5637         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5638         * src/mcs51/main.h,
5639         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5640         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5641         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5642         size calculation port specific, started basis for some register
5643         optimizations
5644         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5645         missing push/pop of r0/r1. Optimized push/pops
5646         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5647         * device/lib/_modsint.c (_modsint),
5648         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5649         and stack version so regression tests pass
5650
5651 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5652
5653         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5654         * src/SDCCast.c (decorateType): catch another small optimization
5655         with '?' operator
5656         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5657         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5658         modified to finally use computeType() all over SDCC,
5659         see Feature Request #877103
5660         * src/SDCCval.h: cosmetic
5661         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5662         valCompare(); regression tested in muldiv.c
5663         * support/regression/tests/muldiv.c (testMod): mod sign follows
5664         dividend only
5665
5666 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5667
5668         * src/SDCCast.c (decorateType): fixed bug #902362
5669         * doc/INSTALL.txt: fixed install instructions for win32
5670
5671 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5672
5673         * device/include/Makefile.in (install): fixed by replacing spaces
5674         by tabs
5675         * doc/README.txt,
5676         * doc/INSTALL.txt: updated for release
5677         * doc/sdccman.lyx: added warning for --xstack being buggy
5678
5679 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5680
5681         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5682         to eliminate build warnings.
5683         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5684
5685 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5686            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5687
5688         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5689         removed -penable-stack, added comment for stack pragma, added
5690         warning for not initializing the stack/frame registers, removed
5691         comment at interrupts section
5692
5693         Stack is made permanent, there is no ability to disable stack usage.
5694         * src/pic16/device.h,
5695         * src/pic16/device.c: removed all references to USE_STACK macro,
5696         * src/pic16/device.c (pic16_dump_section): when no elements in
5697         rlist, free rlist before return,
5698         * (pic16_dump_int_registers): NEW, internal registers are a new set
5699         of general purpose registers reused by each function,
5700         * (checkAddReg): returns 1 if registers is added to set,
5701         * (pic16_groupRegistersInSection): when a registers is of type
5702         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5703         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5704         SRCASECMP macro is moved here from device.c
5705         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5706         PO_PCLATU, PO_PRODL, PO_PRODH,
5707         * (pic16_pCodeOpType, genMinus,
5708         changed compares to "a" register, with AOP_ACC,
5709         * (pic16_genPlus): fixed some bugs and indented properly,
5710         * (pic16_addSign): changed size to size+offset in the MOVWF
5711         instruction,
5712         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5713         multiply 8-bit operand by literal, result is 8-bit,
5714         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5715         multiply 2 8-bit operand, result is 8-bit,
5716         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5717         genUMult8X*_16,
5718         * src/pic16/gen.c: changed accUse to contain WREG only,
5719         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5720         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5721         true, do not use immediate addressing any more unless sym is a
5722         pointer in codespace,
5723         * (aopForRemat): do not use immediate addressing when symbol not in
5724         codespace and when symbol's address is requested,
5725         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5726         accUse size (= 1),
5727         * (aopGet): added case for AOP_ACC and don't return "accumulator
5728         bug" but WREG instead,
5729         * (popGetTempReg): pushes contents of temporary register in stack,
5730         * (popReleaseTempReg): pops contents of temporary register from
5731         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5732         * (pic16_popGet): separated case AOP_ACC to return register WREG
5733         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5734         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5735         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5736         the use of immediate pointers to certain cases only.
5737
5738         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5739         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5740         * (assignResultValue, genCall, genRet): modified to use the new
5741         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5742         genPcall is still broken,
5743         * (genFunction): added code to create 'A' type pBlocks when
5744         interrupt functions are generated, code not extensively tested yet,
5745         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5746         * (genEndFunction): modified so ISRs pop stored registers from stack,
5747         * (genMultOneByte): cleanup,
5748         * (AccRsh): added flag andmask, to and result with appropriate mask,
5749         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5750         * (genDataPointerGet): fixed and reenabled its use,
5751         * (genNearDataPointerGet): bugs fixed,
5752         * (genDataPointerSet): bugs fixed,
5753         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5754         pic16_DumpSymbol, pic16_DumpOp,
5755         * src/pic16/genutils.h: function prototypes for the above functions,
5756         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5757         pointers,
5758         * (pic16emitRegularMap): many many many improvements, but needs a
5759         major cleanup,
5760         * src/pic16/main.c: enable_stack in pic16_options is removed,
5761         * (_pic16_parseOptions): removed command line options -penable-stack,
5762         * (_process_pragma): emit stack symbol only when stack pragma is
5763         processed,
5764         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5765         redirected to FSR0L/FSR0H pair,
5766         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5767         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5768         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5769         for immediates,
5770         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5771         * (dumpPicOptype): NEW,
5772         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5773         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5774         with movff instruction,
5775         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5776         added pic16_int_regs, some packRegsFor* functions are commented out,
5777         because produce errors,
5778         * src/pic16/NOTES: minor modifications
5779
5780 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5781
5782         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5783         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5784         --pack-iram.
5785         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5786         * as/mcs51/lkaomf51.c: fixed bug #895763
5787
5788 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5789
5790         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5791
5792 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5793
5794         * doc/sdccman.lyx: added details about the HC08 storage classes and
5795         interrupts, fixed the register usage info for z80 & gbz80
5796
5797 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5798
5799         * doc/sdccman.lyx: added more pic16 port documentation
5800         * device/include/pic16/: added header pic18fregs.h
5801
5802 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5803
5804         * doc/sdccman.lyx: added Vangelis' contribution
5805
5806 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5807
5808         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5809         extend to the next CALL or PCALL, not just to the next CALL.
5810
5811 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5812
5813         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5814
5815 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5816
5817         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5818         bug #895752 and a better fix for bug #716790
5819
5820 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5821
5822         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5823
5824 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5825
5826         * doc/sdccman.lyx: minor changes, minor changed
5827
5828 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5829
5830         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5831         which can't handle SDCC_NEWONEBYTEOPS,
5832         (geniCodeMultiply): removed conversion from mult to shift for pic14
5833         and pic16
5834
5835 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5836
5837         * src/hc08/gen.h,
5838         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5839         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5840         thus fixing bug #895406
5841
5842 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5843
5844         * device/lib/_modsint.c,
5845         * device/lib/_modslong.c: sign follows divisor only
5846         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5847         signs or signedness can be ignored
5848         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5849         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5850         added optimization for IFX,
5851         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5852         arguments;
5853         reenabled optimization for IFX, which was removed on 2004-01-11
5854         * src/SDCCast.h: added return type IFX
5855         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5856         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5857         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5858         SDCC_OLDONEBYTEOPS selects the old behaviour
5859         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5860         changed again and commented promotion rule
5861         * src/SDCCval.c (valDiv): promotion no longer necessary
5862         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5863         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5864         rewritten
5865         * support/regression/tests/onebyte.c: added
5866
5867 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5868
5869         * gen.c (genInline): reverted to old code for assemnling inline
5870         code because of bug reported James Chadd
5871
5872 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5873
5874         * ralloc.h: missing declarations from previous patch,
5875         seems that patch for ralloc.h was never applied, fixed
5876
5877 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5878            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5879
5880         * pcode.c,
5881         * pcode.h,
5882         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5883         indirect addressing. Marked FSR0 as deprecated
5884         * gen.c (pointerCode): commented out, not needed now
5885         (pic16_popGet2p): new MOVFF helper function
5886         (genGenPointerGet),
5887         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5888         (shiftRLong): removed duplicate debugging info
5889
5890 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5891
5892         * src/ds390/gen.c (genNearPointerGet),
5893         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5894         optimization with bits, but not bitfields.
5895         * src/ds390/ralloc.c (packRegisters),
5896         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5897
5898 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5899
5900         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5901
5902 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5903
5904         * src/SDCCsymt.h,
5905         * src/SDCCicode.c (operandFromSymbol),
5906         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5907         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5908         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5909         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5910         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5911         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5912         bug #892038
5913         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5914         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5915         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5916         * src/SDCCsymt.c (newSymbol),
5917         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5918         enumerator_list),
5919         * src/SDCCval.h,
5920         * src/SDCCval.c (newiList): fixed bug #885705
5921
5922 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5923
5924         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5925         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5926
5927 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5928
5929         * device/include/c8051f120.h,
5930         * device/include/c8051f300.h,
5931         * device/include/c8051f310.h: added/updated header files for Silicon
5932         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5933         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5934         in new section Submitting patches
5935
5936 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5937
5938         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5939         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5940         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5941         genGenPointerSet),
5942         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5943         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5944         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5945         genGenPointerSet),
5946         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5947         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5948         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5949         genGenPointerSet),
5950         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5951         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5952         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5953         genGenPointerSet): fixed bug #892400
5954         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5955         to eliminate build warnings.
5956         * src/SDCCast.c (processParms),
5957         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5958         fixed bug 751859
5959         * support/valdiag/valdiag.py: added GCC to the list of defines active
5960         when compiling with gcc
5961
5962 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5963
5964         * support/Util/SDCCerr.h,
5965         * support/Util/SDCCerr.c,
5966         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5967         with an incomplete type (fixed bug #883734)
5968         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5969
5970 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5971
5972         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5973
5974 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5975
5976         * src/SDCCast.c (decorateType),
5977         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5978         function pointer implementation
5979         * support/regression/tests/funptrs.c: added tests to verify both forms
5980         of function pointers work correctly. Added tests to verify parameters
5981         are passed in the correct order.
5982
5983 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5984
5985         * device.c (regCompare): registers are sorted by ascending
5986         address and increasing size,
5987         * main.c (_pic16_finaliseOptions): removed the declaration
5988         of compiler macro MCU. Now a macro of the format pic18fxxxx
5989         will be defined from the command line
5990
5991 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5992             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5993
5994         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5995         PCOP_RLCF was overwritten!
5996         * gen.c (genSkip): commented out calls to pic16_emitcode,
5997         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5998         * (genlshTwo),
5999         * (genRRC): added debugging info,
6000         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6001         overwritten while shifting,
6002         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6003         overwritten while shifting,
6004         * (AccLsh),
6005         * (AccRsh),
6006         * (shiftLLeftOrResult),
6007         * (shiftRLeftOrResult),
6008         * (shiftRLong),
6009         * (shiftLLong): Implemented with pic16_emitpcode
6010         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6011         * (genLeftShift): Fixed bug, operand for shift by variable always
6012         was "and"ed with 0x0f,
6013         * (genLeftShiftLiteral),
6014         * (genrshTwo),
6015         * (genRightShiftLiteral): added debugging info,
6016         * (genrshFour): added comment,
6017         * (genRightShift): determined signedness from operand "left"
6018         instead of "result"
6019
6020 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6021
6022         * src/SDCCicode.c (geniCodeParms),
6023         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6024         function pointers, fixed function pointer bugs #861242 and #861896
6025
6026 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6027
6028         * device/include/c8051f000.h,
6029         * device/include/c8051f120.h,
6030         * device/include/c8051f300.h: added header files for Silicon
6031         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6032
6033 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6034
6035         * src/SDCCast.c (processParams): added new type flow and restructured
6036         (gatherAutoInit): added new type flow
6037         (addCast): cosmetic changes
6038         (getLeftResultType): added new type flow for array indices, patch
6039         provided by Stas, see FR #877103
6040         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6041         array index patch by Stas
6042         * src/SDCCast.h: added prototype getResultTypeFromType()
6043         * src/SDCCval.h,
6044         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6045         * src/pic/glue.c (pic14emitStaticSeg),
6046         * src/pic16/glue.c (pic16emitStaticSeg),
6047         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6048         for initialization of symbols
6049         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6050         * support/Util/SDCCerr.h:
6051         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6052         * .version: bumped version number to 2.3.8
6053         * device/include/Makefile.in (install),
6054         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6055         avoid warnings
6056
6057 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6058
6059         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6060         Slade Rich fixed an optimization bug
6061         * src/pic/pcodepeep.c,
6062         * src/pic/pcoderegs.c
6063         * doc/Makefile (install): added test for directory
6064
6065 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6066
6067         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6068         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6069         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6070         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6071         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6072         * as/mcs51/asexpr.c (term),
6073         * as/hc08/asexpr.c (term): fixed bug #887146
6074
6075 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6076
6077         * src/z80/gen.c (genMult): handle single byte result product
6078         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6079         DUMMY_READ_VOLATILE (fixed bug #886367)
6080
6081 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6082
6083         * support/regression/tests/libmullong.c: fixed logic, on little endian
6084         hosts we ended without a mullong_wrapper()
6085
6086 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6087
6088         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6089         virus/worm forged address usage.
6090
6091 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6092
6093         Fixed promotion, it should be done on AST level:
6094         * src/SDCCast.c (addCast): added promotion to int
6095         (decorateType): updated call to upCast()
6096         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6097         usualUnaryConversions()
6098
6099 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6100
6101         * support/regression/tests/literalop.c (mulWrapper): Added a
6102         wrapper to remove integer overflow warnings.
6103
6104         * support/regression/tests/float_trans.c: Made work on host.
6105
6106         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6107         location of sz80.
6108
6109         * support/regression/generate-cases.py (main): Changed from inline
6110         to a main method.
6111
6112         * doc/Makefile (install): Changed to depth first to get rid of
6113         missing directory install warning.
6114
6115         * as/Makefile (install-doc): Made work on Mac.
6116
6117 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6118
6119         * src/SDCCast.c: added an additional type flow in decorateType() of
6120         opposite direction, see feature request #860006; it's enabled at runtime
6121         by setting the environment variable SDCC_NEWTYPEFLOW
6122         * src/SDCCast.h: changed prototype of decorateType()
6123         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6124         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6125         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6126         see feature request #877103
6127         * src/SDCCval.c: updated call of decorateType()
6128         (valBitwise): fixed bug #882876
6129         (valMinus): added promotion
6130         (valLogicAndOr): result is unsigned
6131         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6132         * src/SDCCsymt.c (computeType),
6133         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6134         must not cause an unsigned operation
6135         * src/pic/glue (pic14emitRegularMap),
6136         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6137
6138 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6139
6140         * src/pic/pcode.c (PCodeID): commented out left over debug code
6141
6142 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6143
6144         * support/valdiag/tests/overflow.c: added shift tests
6145         * src/pic/device.c,
6146         * src/pic/gen.c,
6147         * src/pic/gen.h,
6148         * src/pic/glue.c,
6149         * src/pic/main.c,
6150         * src/pic/pcode.c,
6151         * src/pic/pcode.h,
6152         * src/pic/pcodepeep.c,
6153         * src/pic/pcoderegs.c,
6154         * src/pic/ralloc.c,
6155         * src/pic/ralloc.h: applied patch from Slade Rich;
6156         added support for multiple code pages and multiple RAM banks on the
6157         PIC 14 port. The ASM files now no longer simply assume all the
6158         code / RAM are in the same page / bank. This means the linker can
6159         safely allocate code/RAM of separate ASM files to different pages/banks.
6160         * doc/sdccman.lyx: added Slade's tips
6161         * src/mcs51/peeph.def: fixed bug #880768
6162
6163 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6164
6165         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6166         * src/SDCCast.c (decorateType): fixed bug #880197
6167
6168 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6169
6170         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6171         getopt.h.
6172
6173         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6174         strtof is not part of C89 and isn't included with Mac OS X.
6175
6176 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6177
6178         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6179         shiftL2Left2Result): fixed bug #879326
6180         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6181         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6182         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6183         address fetch for clr instruction
6184         * device/lib/hc08/_mulint.c: created optimized assembly version
6185         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6186
6187 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6188
6189         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6190         proposed in FR #877103
6191
6192 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6193
6194         * src/SDCCval.c (cheapestVal): added missing checks
6195         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6196         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6197
6198 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6199
6200         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6201         equal operands
6202
6203 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6204
6205         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6206         loaded with the linker search paths (-L arguments) and the libraries
6207         to be linked with the current source (-l arguments). Changes
6208         currently will affect only the pic16 port.
6209         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6210         include path the port specific paths and port specific libraries,
6211         * gplink command now contains the $3 argument,
6212         * src/pic16/device.h,
6213         * src/pic16/device.c,: structure PIC_device is made public and
6214         renamed to PIC16_device, the same for variable Pics which is renamed
6215         to Pics16. Updated all references to them.
6216         * src/pic16/glue.c (pic16glue): corrected bug with code
6217         initialization which bypassed the variable initializations block.
6218
6219         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6220         COMPILE_FLAGS and added the --nostdinc option
6221
6222 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6223
6224         * device/include/mc68hc908jb8.h: Register defs for another member
6225         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6226
6227 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6228
6229         Documenting changes from previous commits.
6230         * configure.in (version 1.56),
6231         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6232         when generating output files to configure the pic16 library,
6233         but now I've commented it out, since gputils aren't installed in the
6234         SF compile farm, so library won't compile
6235
6236         * device/lib/Makefile.in (version 1.56): initially I've added in
6237         target 'all' the prerequestive 'model-pic16' so it compiled the
6238         pic16 library, but now I've commented it out for the same reasons
6239         above,
6240         * added targets 'model-pic16' and 'objects-pic16' to compile the
6241         library
6242         * added target 'port-specific-objects-pic16' to handle the
6243         generated libraries and copy them into the build/ directory
6244         * added target 'clean-intermediate-pic16' to clean intermediate
6245         files into pic16 directory
6246         * in target 'installdirs' added line to create directory pic16 in
6247         the installation path
6248
6249         * device/include/Makefile.in (version 1.11): in target 'install'
6250         added lines to copy all header files to installation path,
6251         * in target 'installdirs' added line create directory for pic16
6252         headers in the installation path
6253
6254 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6255
6256         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6257          a function call
6258
6259 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6260
6261         * configure,
6262         * device/lib/configure.in,
6263         * device/lib/configure: fixed for autoconf 2.57
6264
6265 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6266
6267         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6268         option so that it actually works. Made it specific to the z80, since
6269         the gbz80 doesn't have these kinds of I/O ports.
6270
6271 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6272
6273         * device/include/z180.h,
6274         * device/lib/_memcpy.c,
6275         * device/lib/_memmove.c,
6276         * device/lib/_mulint.c,
6277         * device/lib/ser_ir.c,
6278         * device/lib/ser_ir_cts_rts.c,
6279         * device/lib/_strcmp.c,
6280         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6281         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6282         portmode; added deprecation warning for bank= and protmode= forms.
6283         Also, guard against buffer overflow.
6284         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6285
6286 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6287
6288         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6289         changed interrupt vector table generation to only emit declared vectors.
6290         * device/include/Makefile.in: added missing backslash
6291         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6292
6293 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6294
6295         Mainly changes to support compilation of the device libraries
6296         * src/pic16/device.c: stack is allocated via symbol and not
6297         via literal number. The symbol is placed in the corresponding
6298         position of the data ram
6299         * (pic16_dump_section): relocatable and absolute uninitialized
6300         data are now emitted in sorted order to reduce section naming,
6301         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6302         weren't marked as being in the access bank,
6303
6304 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6305
6306         Added portion of GNU PIC Library under the directory
6307         device/include/pic16 and device/lib/pic16. These files
6308         contain the declarations of SFRs for the PIC18Fxx2 devices.
6309         The directory is initialized via configure from toplevel.
6310
6311 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6312
6313         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6314         the spilllocations to be compared correctly
6315
6316 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6317
6318         * src/SDCCast.c (decorateType): fixed bug introduced today
6319
6320 2004-01-12  Borut Razem <borut.razem AT siol.net>
6321
6322         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6323         doc/sdccman.lyx: upper case pragmas are deprecated
6324
6325 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6326
6327         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6328         in simpler and even better code
6329
6330 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6331
6332         * src/SDCCicode.c (operandOperation): fixed bug #874819
6333         * src/SDCCast.c (decorateType): fixed
6334         char foo (unsigned long ul) { return ul > 0; }
6335
6336 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6337
6338         * doc/sdccman.lyx: Moved and added some sections, small changes
6339         all over. Telling LaTeX to be less strict with word spacing
6340         to better keep the right margin. Changed some notes about
6341         maintainance of the ports in section 3.2.1 - is it OK like this?
6342
6343 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6344
6345         SDCC source changes:
6346         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6347         convilong): modified to inform the pic16 port that builtin functions
6348         are external
6349
6350         PIC16 PORT specific changes:
6351         * src/pic16/device.c pic16_dump_equates() added,
6352         processor registers declared internally by the port are emitted in
6353         the translation as equates,
6354         * src/pic16/gen.c: inline code is passed unprocessed to the
6355         translation,
6356         * (pic16_popGetLit2): fnuction modified to take second operand as
6357         pCodeOp pointer and not as literal,
6358         * (popRegFromIdx): prefixed with pic16_,
6359         * (pic16_popCombine2): modified to receive already allocated pCode
6360         operands,
6361         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6362         * (genFunction): initializes local stack frame and pushes on stack
6363         all the registers used by this function,
6364         * (genEndFunction): restores all registers from stack and restores
6365         stack frame,
6366         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6367         improvements,
6368         * (pic16glue): changed the program startup sequence,
6369         * added new dbName code 'A' for functions placed in absolute section
6370         * src/pic16/main.c: added function attribute _naked,
6371         * added pragma 'code' to place a fnuction at an absolute address,
6372         * added command line arguments --debug-ralloc and --pcode-verbose,
6373         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6374         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6375         * (pic16_newpCodeOpLit2): modified to take the second operand as
6376         pCodeOp pointer,
6377         * (pic16_printpBlock): modified to emit each function in a separate
6378         section,
6379         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6380         UPPER for immediate operands,
6381         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6382         instruction,
6383         * src/pic16/peeph.def: all peepholes with movff are commented out,
6384         because there is a problem in the pcode peep optimizer,
6385         * src/pic16/ralloc.c: the register allocator can now reuse local
6386         function symbols for another function. This saves register usage.
6387         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6388
6389         Added file src/pic16/NOTES with information about program writing on
6390         the current port version.
6391
6392 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6393
6394         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6395         and peephole 252 (array access)
6396
6397 2004-01-09  Borut Razem <borut.razem AT siol.net>
6398
6399         * src/SDCCmain.c : fixed #872250: -l command line defined library
6400           files are scanned before standard library files
6401
6402 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6403
6404         * src/SDCCast.c (decorateType): fixed bug #874046
6405
6406 2004-01-09  Borut Razem <borut.razem AT siol.net>
6407
6408         * support/scripts/sdcc.nsi: remove previous installation
6409
6410 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6411
6412         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6413         bytes for last interrupt vector (mcs51)
6414         * sdcc.spec: fixed typo
6415
6416 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6417
6418         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6419         gen51Code): more efficient parameter receive for --model-large
6420         ("bug" #845294)
6421
6422 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6423
6424         * src/ds390/main.c,
6425         * src/z80/main.c: added missed needLinkerScript flags (more than
6426         one port structure defined in these file)
6427         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6428         bug #795325
6429
6430 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6431
6432         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6433         * src/port.h: added flag needLinkerScript in port->linker
6434         structure to inform whether to create a .lnk file or not,
6435         * src/avr/main.c,
6436         * src/ds390/main.c,
6437         * src/hc08/main.c,
6438         * src/mcs51/main.c,
6439         * src/pic/main.c,
6440         * src/pic16/main.c,
6441         * src/xa51/main.c,
6442         * src/z80/main.c: changed appropriately to configure
6443         needLinkerScript flag
6444         * src/pic/gen.c,
6445         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6446         * src/pic/glue.c: added variable udata_section_name to
6447         override default uninitialized data segment definition for
6448         devices only with SHAREBANK memory (reported from Erik Epetrich)
6449         * (pic14emitOverlay): modified to emit a commented overlay segment
6450         directive when no overlay data exist
6451         * (picglue): modified to emit uninitialized data segment
6452         according to udata_section_name
6453         * src/pic/main.c (_pic14_parseOptions): added command line
6454         options --udata-section-name=[name] to override default
6455         udata definition name
6456         * modified _linkCmd and _asmCmd to include compiler passed
6457         arguments via -W option
6458         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6459         object file from '.rel' to '.o' in port->linker structure,
6460         changed size of fptr from 2 to 3 in port structure
6461
6462 2004-01-07  Borut Razem <borut.razem AT siol.net>
6463
6464         * support/scripts/sdcc.nsi: update PATH
6465         * support/scripts/sdcc.ico: craeted
6466
6467 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6468
6469         * device/include/Makefile.in: fix install
6470         * doc/Makefile: fix install
6471
6472 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6473
6474         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6475         in bug #860505
6476         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6477         how the function variable allocation summary is displayed; also
6478         include information about variables allocated to the overlay
6479         segment
6480
6481 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6482
6483         * as/mcs51/lkmain.c: Help about -Y option
6484         * as/mcs51/lkarea.c: Fixed gcc warnings
6485
6486 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6487
6488         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6489         fixed warning
6490         * support/valdiag/tests/overflow.c: added
6491         * src/SDCCast.c (decorateType),
6492         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6493         LEFT_OP (left shift)
6494
6495 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6496
6497         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6498         (default behaviour).
6499
6500 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6501
6502         A python script to validate compiler diagnostic messages. It can be
6503         used to verify that sdcc complains about bad c source code and
6504         gives a good location of the error.
6505         * support/valdiag/Makefile,
6506         * support/valdiag/valdiag.py,
6507         * support/valdiag/tests/*
6508
6509 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6510
6511         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6512         * src/SDCCsymt.c (newEnumType),
6513         * src/SDCCsymt.h
6514         * support/Util/SDCCerr.c,
6515         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6516         enum related bugs.
6517         * support/regression/tests/enum.c: added test for enum values that
6518         require at least 2 bytes of storage.
6519
6520 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6521
6522         * src/common.h: added ifndef/define/endif macros
6523         around the header file.
6524         Bug reported from Jesus Calvino-Fraga
6525
6526 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6527
6528         * sdcc.spec: updated
6529         * device/include/Makefile.in: don't install CVS directories
6530         * device/lib/Makefile.in: added removal of CVS directories after install
6531         * doc/Makefile: fixed install, added local_icons
6532         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6533         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6534         * src/ds390/gen.c (genRightShift): fixed bug #870788
6535         * src/SDCCast.c (decorateType): fixed bug #870781
6536
6537 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6538
6539         PIC16 port related changes:
6540         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6541         added variable stackPos,
6542
6543         * gen.c: genCall, assignResultValue: added support for
6544         pushing/retrieving function parameters to/from stack,
6545         genFunction,genEndFunction: setup stack frame for the
6546         generated function,
6547         genAddrOf: will be changed according to bug 863624
6548
6549         * added files genutils.c and genutils.h which contain gen*
6550         debugged and optimised functions extracted from gen.c
6551
6552         * glue.c: added variable 'externs' which holds extern symbols,
6553         pic16emitRegularMap: is modified to properly handle relocatable
6554          symbols under the new scheme,
6555         pic16createInterruptVect: is modified
6556         pic16printPublics: is modified to emit 'global' assembler directives,
6557         added pic16_printExterns to print extern symbols,
6558         pic16glue: initializes stack/frame pointer in the beginning of
6559         the assembly output. Temporary hack, will be corrected later,
6560         because gplink yet does not support stack and SDCC does not
6561         yet support a type of crt0.o object to create the final binary.
6562
6563         * Removed many lines that contain 8051 legacy code.
6564         * The code is finally placed under a 'code' directive.
6565         * Added port specific options.
6566
6567         * _process_pragma: simplified since now we do not need *special*
6568         include file to define SFR registers. But a separate header
6569         will be needed. This will be developed later.
6570         * _pic16_parseOptions: added, parses port specific options:
6571         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6572         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6573         --preplace-udata-with=
6574
6575         * _pic16_setDefaultOptions: modified to initialize section names,
6576         but hack is temporarly out of order since it needs improvement.
6577         * _pic16_genAssemblerPreamble: configuration words are emitted by
6578         their address instead of their name. This part is incomplete and
6579         supports only the 18Fxx2 devices. Other devices will emit an error
6580         during assembly since they do not contain the same set of config
6581         registers
6582         * _pic16_genIVT: is modified,
6583
6584         * pcode.c: added definitions for some hardware registers that are needed
6585         for stack support
6586         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6587         All PCI entries are updated. Now LFSR is supported.
6588         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6589         * added pic16_newpCodeOpLit2 to support instructions with
6590         two literal arguments
6591         * pic16_pCode2str: corrected code that emits assembler instructions
6592         with two literal operands and those that have an access bit modifier
6593         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6594         this fixes a bug which caused some labels to be lost, when an
6595         assembler directive was added, i.e. banksel,
6596         * pic16_FixRegisterBanking: improved logic that causes the insertion
6597         of bank switching,
6598         * InlineFunction: functions that are called once, are not any more
6599         inlined. This can be a port option in the future,
6600
6601         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6602
6603         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6604         hold the corresponding uninitialized symbols,
6605         * pic16_allocProcessorRegister: registers have explicit marked the
6606         accessBank field,
6607         * pic16_allocInternalRegister: registers are explicit marked as
6608         not used,
6609         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6610         processing list, so bit registers were lost,
6611         *
6612
6613         * ralloc.h: added field 'accessBank' and original symbol operand
6614         in register definition,
6615         * removed the field isMapped from register definition,
6616
6617         ** Several functions have been removed from various sources:
6618         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6619         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6620         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6621         pic16_assignRelocatableRegisters
6622
6623         ** others have been introduced:
6624         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6625         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6626
6627 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6628
6629         * support/scripts/inc2h.pl: changed definition of BIT_AT
6630         to emit 'sbit at' instead of 'bit at'. This was a request.
6631
6632         PIC16 port related preliminary changes:
6633         * gen.c: prefixed function popRegFromString with
6634         pic16_ and all references to it corrected
6635         * pcode.c: all pic16_pc_* hardware registers prefixed
6636         with underscore (_),
6637         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6638         * ralloc.c: newReg(): when register is REG_SFR then
6639         set address to rIdx,
6640         pic16_allocProcessorRegister(): marks register wasUsed=0
6641         pic16_writeUsedRegs(): added a call to assign processor
6642         registers via pic16_assignFixedRegisters
6643
6644 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6645
6646         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6647         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6648         variables in unused register banks.  Also the SSEG is placed
6649         wherever there is enough space for it, and IDATA can be anywhere
6650         in internal RAM.  For now compile using -Wl-Y[stack_size].
6651         The mem file is different for this option as well, since it
6652         makes no sense of talking about DSEG lenght.
6653
6654 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6655
6656         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6657         in certain cases, e.g. when ROM assignment, patch provided
6658         from Albert den Haan.
6659
6660 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6661
6662         Many signedness and type propagation fixes:
6663         * src/SDCCicode.c: made geniCodeCast() static
6664         replaced SPEC_ by IS_ (cosmetic)
6665         (operandOperation): fixed div and mod operation
6666         (usualBinaryConversions): added support for promotion of char
6667         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6668         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6669         (geniCodeAdd): an array index will stay unsigned, even if promoted
6670         from char to int
6671         (geniCodeArray): ditto
6672         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6673         * src/SDCCsymt.c (computeType): added more support for char;
6674         promotion of char is selectable by promoteCharToInt, fixed signedness
6675         for all cases
6676         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6677         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6678         * src/SDCCval (val*): replaced signedness calculation by
6679         computeType()
6680         rearranged if-branches (cosmetic)
6681         (valShift): added warning W_SHIFT_CHANGED
6682         (valCompare): fixed problem with different types
6683         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6684         * support/regression/tests/literalop.c: added many cases
6685         * support/regression/tests/ast_constant_folding.c: changed finally to
6686         'unsigned int'
6687         * .version: new year, new version: 2.3.7
6688         * src/SDCCmain.c (main): applied patch #866468
6689         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6690         provided by Scott Bronson
6691         * doc/sdccman.lyx: updated documentation for sdcdb
6692         updated and added chapter tips
6693
6694 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6695
6696         * src/SDCCsymt.h: missing from yesterday's commits
6697
6698 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6699
6700         * src/SDCC.y (struct_or_union_specifier),
6701         * support/Util/SDCCerr.c,
6702         * support/Util/SDCCerr.h: verify that struct & union tags are used
6703         as declared.
6704
6705 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6706
6707         * src/SDCCglobl.h: missing from yesterday's commits
6708
6709 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6710
6711         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6712         sft_attributes, struct_declaration, parameter_declaration,
6713         type_name, start_block, declaration_list),
6714         * src/SDCC.lex (check_type): support redefinition of typedef names
6715
6716 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6717
6718         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6719         aligned xdata arrays. Erik helped me with the if clause.
6720
6721 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6722
6723         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6724         warning
6725
6726 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6727
6728         * src/SDCCast.h,
6729         * src/SDCCast.c (newAst_),
6730         * src/SDCCicode.h,
6731         * src/SDCCicode.c (ast2iCode, newiCode),
6732         * src/SDCCglobl.h,
6733         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6734         expr, statement, expression_statement, selection_statement,
6735         iteration_statement, expr_opt, jump_statement): foundation for tracking
6736         sequence points
6737         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6738         point code too)
6739
6740 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6741
6742         * support/Util/SDCCerr.c,
6743         * src/SDCCast.h,
6744         * src/SDCCast.c (createCase, createDefault, decorateType),
6745         * src/SDCClabel.c (labelUnreach),
6746         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6747         to error messages.
6748         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6749         (with thanks to Stas Sergeev)
6750         * device/include/time.h,
6751         * device/lib/time.c (CheckTime): suppress unreachable code warning
6752
6753 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6754
6755         * src/SDCCast.c (createIvalCharPtr),
6756         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6757         bug #753752)
6758         * support/regression/tests/nullstring.c: tests for these two bugs
6759
6760 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6761
6762         * support/Util/SDCCerr.h,
6763         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6764         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6765         about storage class and 'at' used inside struct or union
6766         * src/SDCCBBlock.c (iCodeFromeBBlock),
6767         * src/SDCCcse.c (ifxOptimize),
6768         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6769         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6770         printIval, emitStaticSeg, emitOverlay),
6771         * src/SDCClabel.c (deleteIfx),
6772         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6773         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6774         gatherAutoInit, processParms),
6775         * support/Util/SDCCerr.h,
6776         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6777         reporting for post-parse errors.
6778
6779 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6780
6781         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6782         implicit casts via union; they don't work on big endian systems
6783         (possible fix for bug #861138)
6784
6785 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6786
6787         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6788         * src/mcs51/main.c: fixed the fix for bug #737001
6789
6790 2003-12-15  Borut Razem <borut.razem AT siol.net>
6791
6792         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6793
6794 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6795
6796         * support/makebin/makebin.c: put output in binary mode
6797
6798 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6799
6800         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6801         xdata and data memory on startup. Set the environment variable
6802         SDCC_NOGENRAMCLEAR to disable this.
6803         * src/mcs51/peephole.def,
6804         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6805         (allows non-interrupt and interrupt code to safely compete for a resource
6806         without the non-interrupt code having to disable interrupts)
6807
6808 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6809
6810         * src/SDCCicode.c (geniCodeAdd),
6811         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6812         with valFromType if type might be a pointer and host is big endian).
6813         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6814         types, not just integer types.
6815         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6816         multiply defined with mismatching "at" address.
6817
6818 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6819
6820         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6821         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6822         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6823         with embedded nulls (fixed bug #753752)
6824
6825 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6826
6827         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6828         Apparently this did not see much testing (endless loop)
6829
6830 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6831
6832         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6833
6834 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6835
6836         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6837         gracefully handle NULL memmap pointers
6838
6839 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6840
6841         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6842         instead of deleting the iCode when an operand is volatile
6843         * src/z80/gen.c (genDummyRead),
6844         * src/mcs51/gen.c (genDummyRead),
6845         * src/ds390/gen.c (genDummyRead),
6846         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6847         not just IC_RIGHT
6848         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6849         * src/SDCC.y: fixed bug #850420
6850
6851 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6852
6853         Applied z80 i/o port patch from Peter Townson and fixed some operators
6854         to better handle operands in A register.
6855         * device/include/z180.h
6856         * src/SDCC.y
6857         * src/SDCCglue.c
6858         * src/z80/gen.c
6859         * src/z80/gen.h
6860         * src/z80/main.c
6861         * src/z80/peeph-z80.def
6862         * src/z80/peeph.def
6863         * src/z80/z80.h
6864
6865 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6866
6867         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6868
6869 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6870
6871         * device/lib/hc08/_mullong.c: Removed extra #endif
6872
6873 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6874
6875         * sim/ucsim/hc08.src/inst.cc,
6876         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6877         carries from x to h
6878         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6879         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6880         * device/include/stdarg.h: fixed varargs for hc08
6881         * device/lib/Makefile.in,
6882         * device/lib/hc08/Makefile,
6883         * device/lib/hc08/_mulint.c,
6884         * device/lib/hc08/_mullong.c: fixed some endian problems
6885
6886 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6887
6888         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6889         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6890         * device/lib/_gptrget.c,
6891         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6892
6893 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6894
6895         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6896         * src/SDCCast.c (astErrors): fixed bug #846007
6897         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6898
6899 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6900
6901         * src/SDCCast.c (decorateType): disabled a transformation I added in
6902         revision 1.188 (access to fields of a structure at an absolute address);
6903         it breaks with bitfields, extern declarations, and gcse analysis.
6904         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6905         could be assigned through a pointer, so don't complain.
6906         * src/SDCCast.c (astErrors),
6907         * src/SDCCast.h,
6908         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6909
6910 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6911
6912         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6913         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6914         output of __config directives, since gpasm now supports them
6915         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6916         pre-processor macro, i.e. -DMCU=p18f452
6917         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6918         and modified to handle 'cast' icode similarly to '=' icode
6919         * src/pic16/device.h (typedef struct PIC_device): added field
6920         'extMIface' to indicate that chip has external memory interface
6921         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6922         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6923         18F8720
6924
6925 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6926
6927         * src/SDCC.y (pointer): fixed bug #846006
6928         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6929         * src/SDCCast.c (decorateType): fixed bug #846009
6930         * src/ds390/peeph.def,
6931         * src/ds390/gen.c (genAnd, genOr),
6932         * src/mcs51/peeph.def,
6933         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6934
6935 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6936
6937         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6938         * src/SDCCdflow.c
6939         * src/SDCCcse.c
6940         * src/SDCCcse.h
6941         * src/SDCCBBlock.h
6942         * src/SDCCBBlock.c
6943
6944 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6945
6946         fixed bug #845089
6947         * src/SDCCbitv.h,
6948         * src/SDCCbitv.c: added function to free a bitvector
6949         * src/SDCClrange.h,
6950         * src/SDCClrange.c: added function to recompute the liveranges
6951         * src/avr/ralloc.c,
6952         * src/ds390/ralloc.c,
6953         * src/hc08/ralloc.c,
6954         * src/mcs51/ralloc.c,
6955         * src/pic/ralloc.c,
6956         * src/pic16/ralloc.c,
6957         * src/xa51/ralloc.c,
6958         * src/z80/ralloc.c: recompute the liveranges after register packing
6959
6960 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6961
6962         * src/SDCCloop.c (newInduction): fixed bug #845630
6963
6964 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6965
6966         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6967         inadvertantly left behind from my 2003-11-12 change
6968
6969 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6970
6971         Updated headers I neglected to commit yesterday.
6972         * src/SDCClrange.h,
6973         * src/SDCCicode.h
6974
6975 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6976
6977         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6978         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6979         * src/SDCCopt.c (eBBlockFromiCode),
6980         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6981         the creation of the key hash table from the sequencing so it can be used
6982         earlier (for some GCSE bug fixes still pending)
6983
6984 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6985
6986         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6987         * support/regression/tests/addsub.c: testing genPlus shortcut
6988
6989 2003-11-15  Borut Razem <borut.razem AT siol.net>
6990
6991         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6992
6993 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6994
6995         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6996         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6997         ordering is immaterial.
6998         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6999
7000 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7001
7002         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7003         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7004         (SIGSEV) of bug #840381
7005         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7006         unlink new file before rename if new and old filenames are the same)
7007
7008 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7009
7010         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7011         uninitialized variables) for the mcs51. Set environment variable
7012         SDCC_GENRAMCLEAR to test.
7013         xdata initialization slightly shorter
7014
7015 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7016
7017         * src/SDCCsymt.h,
7018         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7019         #838241 & 780691 (basicly the same bug)
7020         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7021         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7022
7023 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7024
7025         * src/SDCCmain.c (linkEdit): "fix" #834252
7026
7027 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7028
7029         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7030         * src/SDCCast.h,
7031         * src/SDCC.y: fixed bug #819403
7032
7033 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7034
7035         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7036         the reentrant attribute.
7037         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7038         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7039         simulation
7040         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7041         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7042         erroneously reduced to a literal.
7043         * src/hc08/ralloc.c (packRegisters, rematStr),
7044         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7045         some cases
7046
7047 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7048
7049         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7050         * doc/sdccman.lyx: changed from 'article' to 'book'
7051         * doc/Makefile: readded test_suite_spec and cdbfileformat
7052
7053 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7054
7055         * device/include/stdlib.h: include malloc.h to comply with ANSI
7056         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7057
7058 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7059
7060         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7061         * doc/clean.mk: also remove *.out files
7062         * doc/sdccman.lyx: some additions, larger top/bottom margins
7063
7064 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7065
7066         * src/SDCC.y: fixed bug #837365
7067         * support/regression/tests/bitopcse.c
7068         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7069         a symbol (might be valop instead)
7070         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7071         * device/lib/clean.mk: added hc08 to the cleaning list
7072
7073 2003-11-04  Borut Razem <borut.razem AT siol.net>
7074
7075         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7076           made 2003-11-04
7077         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7078           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7079           malloc is declared in standard stdlib.h
7080
7081 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7082
7083         * device/lib/hc08/Makefile: need to clean .rel not .o files
7084         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7085
7086 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7087
7088         * src/port.h,
7089         * src/hc08/main.c,
7090         * src/mcs51/main.c,
7091         * src/ds390/main.c,
7092         * src/z80/main.c,
7093         * src/avr/main.c,
7094         * src/pic/main.c,
7095         * src/pic16/main.c,
7096         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7097         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7098         tests (which uses the port's oclsExpense function)
7099         * src/SDCC.y,
7100         * src/SDCCast.c,
7101         * src/SDCCicode.c,
7102         * src/hc08/gen.c,
7103         * src/ds390/gen.c,
7104         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7105
7106 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7107
7108         * src/SDCCcse.c (ifxOptimize),
7109         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7110         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7111         deleting the IFX iCode.
7112         * src/hc08/ralloc.c: reduced unneeded slocs
7113         * src/hc08/gen.c: fixed bug in asmopToBoolean
7114
7115 2003-11-04  Borut Razem <borut.razem AT siol.net>
7116
7117         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7118           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7119           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7120           transferred to configure
7121
7122 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7123
7124         Use headers defined in the C[++] standards:
7125         * sim/ucsim/gui.src/serio.src/fileio.cc
7126         * sim/ucsim/gui.src/serio.src/frontend.cc
7127         * sim/ucsim/gui.src/serio.src/main.cc
7128         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7129         * support/Util/NewAlloc.c
7130         * as/hc08/lklibr.c
7131         * as/mcs51/lklibr.c
7132         * as/z80/aslist.c
7133         * as/z80/assym.c
7134
7135 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7136
7137         * Added MSVC projects for hc08 assembler and linker:
7138         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7139         /as/hc08/link_hc08.dsp
7140
7141 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7142
7143         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7144
7145 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7146
7147         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7148
7149 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7150
7151         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7152
7153 2003-10-31  Borut Razem <borut.razem AT siol.net>
7154
7155         * support/cpp2/cpplib.h,
7156           support/cpp2/cpplib.c,
7157           support/cpp2/cpplex.c,
7158           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7159           to switch _asm block preprocessing on / off. Default is
7160           #pragma preproc_asm +
7161
7162 2003-10-31  Borut Razem <borut.razem AT siol.net>
7163
7164         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7165           when outputting comment blocks (when executed with -C option) and
7166           _asm (SDCPP specific) blocks
7167
7168 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7169
7170         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7171
7172 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7173
7174         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7175
7176 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7177
7178         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7179         * src/SDCCast.c (decorateType): fixed bug #832664
7180
7181 2003-10-31  Borut Razem <borut.razem AT siol.net>
7182
7183         * support\cpp2\cpplex.c: fixed for SDCPP:
7184           comments(when executed with -C option) and _asm blocks
7185           were included even if they where in skipped #if block.
7186           Applied solution from GCC cpp 3.3.2
7187
7188 2003-10-31  Borut Razem <borut.razem AT siol.net>
7189
7190         * src/SDCC.lex: sdcc now understands both formats:
7191           '# <line_number> <file_name>' and
7192           '#line <line_number> <file_name>'
7193         * support/cpp2/cppmain.c: sdcpp now generates the standard
7194           '# <line_number> <file_name>' instead of former
7195           '#line <line_number> <file_name>'
7196
7197 2003-10-30  Borut Razem <borut.razem AT siol.net>
7198
7199         * support/cpp2/cpphash.h,
7200         * support/cpp2/cpplib.h
7201         * support/cpp2/cpplex.c,
7202         * support/cpp2/cppmain.c,
7203         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7204
7205 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7206
7207         Fixed a number of problems revealed by bug #827883.
7208         * src/SDCCloop.c (loopInvariants): Spill location of the
7209         result operand should be recomputed if extracted from
7210         a loop. Also, don't extract assignments of an iTemp
7211         from a literal.
7212         * src/SDCCast.c (isConformingBody): loop reversal should
7213         not occur if the control variable is involved with a
7214         relational operator.
7215
7216 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7217
7218         * .version: bumped to 2.3.6 to reflect the big improvements
7219         made by Erik and Klaus. Thanks!
7220
7221 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7222
7223         Replaced the livrange code.
7224         * src/SDCClrange.c: added new LR code
7225         * src/SDCCloop.c,
7226         * src/SDCCBBlock.h: removed remainig parts from old LR code
7227         * src/ds390/ralloc.c,
7228         * src/ds390/gen.c: minor fixes to make it work with new code
7229
7230 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7231
7232         * as/hc08/asm.h,
7233         * as/hc08/lkrloc.c,
7234         * src/hc08/gen.c,
7235         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7236         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7237         (tweaked fix for bug #818696)
7238
7239 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7240
7241         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7242
7243 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7244
7245         * src/SDCCmain.c,
7246         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7247         * src/mcs51/gen.c (gencjneshort),
7248         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7249         more efficient (per Scott Bronson's suggestion)
7250
7251 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7252
7253         Extended the semantics of the critical keyword to include
7254         individual statements. See RFE #827755 and #799831
7255         * src/SDCC.y
7256         * src/SDCCicode.c
7257         * src/SDCCopt.c
7258         * src/SDCCast.c
7259         * support/Util/SDCCerr.c
7260         * support/Util/SDCCerr.h
7261         * src/mcs51/gen.c
7262         * src/ds390/gen.c
7263         * src/hc08/gen.c
7264
7265 2003-10-19  Borut Razem <borut.razem AT siol.net>
7266
7267         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7268
7269 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7270
7271         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7272         Fixed bug #818696
7273         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7274         and predecrement operand is displayed
7275
7276 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7277
7278         * src/SDCCval.c (valMinus): fixed bug #826041
7279
7280 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7281
7282         Some hc08 related updates that I missed earlier
7283         * sim/ucsim/stypes.h
7284         * support/regression/ports/hc08/spec.mk
7285
7286 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7287
7288         New target "hc08" for the Motorola 68hc08 family of micros
7289
7290         * configure
7291         * configure.in
7292         * Makefile
7293         * src/hc08/*
7294         * src/SDCCmain.c
7295         * src/port.h
7296         * sim/ucsim/hc08.src/*
7297         * sim/ucsim/configure.in
7298         * src/ucsim/configure
7299         * sim/ucsim/packages_in.mk
7300         * as/hc08/*
7301         * as/Makefile
7302         * device/include/mc68hc908qy.h
7303         * device/lib/hc08/*
7304         * device/lib/Makefile.in
7305         * support/regression/ports/hc08/*
7306         * support/regression/Makefile
7307
7308 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7309
7310         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7311         regression test
7312         * src/ds390/gen.c (genCast): fixed bug #821957
7313
7314 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7315
7316         * device/lib/logf.c: "fixed" overlay bug
7317         * support/regression/ports/host/spec.mk: added m library
7318         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7319         * support/regression/tests/float_trans: added (for Eric)
7320
7321 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7322
7323         * src/mcs51/gen.c (genCpl): fixed bug
7324         http://sf.net/mailarchive/message.php?msg_id=6263915
7325
7326 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7327
7328         * src/SDCCast.c (decorateType): added extended constant folding
7329         * src/SDCCsymt.c (computeType): cleanup
7330         * src/SDCCval.c (valShift): minor optimization
7331         * support/regression/tests/ast_constant_folding.c: added
7332
7333 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7334
7335         * src/SDCCmain.c: removed some unintended changes
7336
7337 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7338
7339         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7340         * src/z80/gen.c: fixed part of bug #817589
7341         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7342
7343 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7344
7345         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7346         * src/SDCCcflow.c
7347         * src/SDCCcse.c
7348         * src/SDCCdflow.c
7349         * src/SDCClabel.c
7350         * src/SDCClrange.c
7351         * src/SDCCmem.c
7352         * src/SDCCopt.c
7353         * src/SDCCpeeph.c
7354         * src/SDCCset.c
7355         * src/avr/ralloc.c
7356         * src/ds390/ralloc.c
7357         * src/izt/ralloc.c
7358         * src/mcs51/ralloc.c
7359         * src/pic/ralloc.c
7360         * src/pic16/ralloc.c
7361         * src/xa51/ralloc.c
7362         * src/z80/ralloc.c
7363         * src/z80/gen.c: removed unused label "release:"
7364
7365 2003-10-06  Borut Razem <borut.razem AT siol.net>
7366
7367         * src/SDCC.lex: removed definition of unused variables
7368           save_optimize and save_options
7369
7370 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7371
7372         * clean.mk: removed '=' in "-maxdepth=1"
7373         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7374         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7375
7376 2003-10-06  Borut Razem <borut.razem AT siol.net>
7377
7378         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7379           my_unput() replaced by unput()
7380
7381 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7382
7383         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7384         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7385         type-punned pointer will break strict-aliasing rules"
7386         Old LR behaviour is again default; Klaus' LR can be choosen by
7387         defining the environment variable LRKLAUS
7388         * src/SDCCBBlock.h
7389         * src/SDCCloop.c
7390         * src/SDCClrange.c
7391         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7392         * clean.mk: fixed removal of files in bin/CVS/
7393         * device/lib/clean.mk: fixed removal of directories small and large
7394         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7395         * src/SDCCicode.c,
7396         * src/SDCCval.c: removed superflous test for pedantic
7397
7398 2003-10-05  Borut Razem <borut.razem AT siol.net>
7399
7400         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7401           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7402           message "unmatched #pragma SAVE and #pragma RESTORE"
7403
7404 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7405
7406         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7407           assembly, critical functions, atomic, nojtbound)
7408
7409 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7410
7411         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7412         * src/SDCCBBlock.h
7413         * src/SDCCloop.c
7414         * src/SDCCloop.h
7415         * src/SDCClrange.c
7416
7417 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7418
7419         * src/z80/gen.h,
7420         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7421         * src/mcs51/gen.h
7422         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7423         * src/ds390/gen.h
7424         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7425         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7426         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7427
7428 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7429
7430         * src/z80/gen.c (genRet): fixed bug #524753
7431         * src/z80/gen.c (genCast): fixed internal error on cast from
7432         pointer to long
7433         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7434         fix for bug #477835 to the z80
7435         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7436         for tracking iCodes in the peephole optimizer for z80
7437
7438 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7439
7440         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7441         the other part of bug #814548
7442         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7443
7444 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7445
7446         * src/SDCCcse.c: fixed part of bug #814548
7447
7448 2003-09-28  Borut Razem <borut.razem AT siol.net>
7449
7450         * src/asm.c: rewrite of printILine() to use temporary file instead
7451           a pipe
7452         * src/xa51/main.c: commented out declaration of int rewinds
7453
7454 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7455
7456         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7457
7458 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7459
7460         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7461         * src/asm.c (printILine): Fixed bug #811015
7462
7463 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7464
7465         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7466         freeing.
7467
7468 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7469
7470         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7471         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7472         to correctly handle general case of AOP_PAIRPTR
7473         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7474
7475 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7476
7477         * src/mcs51/ralloc.c (fillGaps),
7478         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7479         register positioning bug)
7480
7481 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7482
7483         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7484
7485 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7486
7487         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7488         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7489         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7490         (ralloc doesn't intentionally do this now, but perhaps later)
7491         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7492         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7493         register positioning bugs (Fixed bug #762602 and #795325)
7494         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7495         (Fixed bug #808779)
7496         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7497         lines that --i-code-in-asm generates
7498
7499 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7500
7501         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7502         trying to fclose a FILE* that was already closed.
7503
7504 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7505
7506         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7507         of const struct should be treated as if const themselves)
7508
7509 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7510
7511         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7512
7513 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7514
7515         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7516         Unix (/n) and DOS (/r/n) line terminations.
7517
7518 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7519
7520         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7521         bug #613775
7522
7523 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7524
7525         * src/mcs51/gen.c (genFunction, genEndFunction),
7526         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7527         and restore of EA so that stack offsets to parameters are
7528         correct when using both critical and reentrant/stack-auto.
7529         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7530         size (can be triggered in error if sloc is shared between
7531         different sized objects)
7532         * device/include/float.h: fixed macros to explicitly use
7533         unsigned long where needed
7534
7535 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7536
7537         Feature req. 799831: added code to allow nesting of critical functions
7538         * src/mcs51/gen.c (genFunction, genEndFunction)
7539         * src/ds390/gen.c (genFunction, genEndFunction)
7540
7541 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7542
7543         * src/SDCCsymt.c (sclsFromPtr),
7544         * src/SDCCsymt.h,
7545         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7546         support for standard C idiom of memory mapped variables; for
7547         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7548         to xdata int at 0x1234 tempvar = 1.
7549         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7550         provided by Akiya ISHIDA
7551
7552 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7553
7554         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7555         * src/SDCCval.c (constVal): added reduction from int to char
7556         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7557         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7558         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7559         to ignore the sign
7560         * support/regression/tests/shifts.c: fixed
7561
7562 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7563
7564         * src/z80/gen.c (genXor): Fixed bug #805445
7565
7566 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7567
7568         Fixed bug #621531 (const & volatile confusion in the type chain).
7569         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7570         refer to the const or volatile state of the pointer itself.
7571
7572         * src/SDCCast.c
7573         * src/SDCCglue.c
7574         * src/SDCCicode.c
7575         * src/SDCCsymt.c
7576         * src/SDCCval.c
7577         * src/SDCC.y
7578         * src/SDCCsymt.h
7579         * src/pic/gen.c
7580         * src/pic/ralloc.c
7581         * src/pic16/gen.c
7582         * src/pic16/ralloc.c
7583         * support/regression/tests/const.c
7584
7585 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7586
7587         When checking for duplicated modules, use absolute paths
7588         instead of relative paths.  Files changed:
7589
7590         * as/mcs51/lklib.c
7591         * link/z80/lklib.c
7592
7593 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7594
7595         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7596
7597 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7598
7599         * device/include/string.h: added size_t typedef, changed
7600         prototypes to use size_t, eliminated separate reentrant and
7601         non-reentrant declarations, added _memmove declaration
7602         * device/lib/_memcpy.c: changed to use size_t instead of int,
7603         changed /4 to >>2 to avoid division library call
7604         * device/lib/_memcmp.c,
7605         * device/lib/_memset.c,
7606         * device/lib/_strncat.c,
7607         * device/lib/_strncpy.c,
7608         * device/lib/_strncmp.c: changed to use size_t instead of int
7609         * device/lib/_memmove.c: new file (fixed bug #772294)
7610         * device/lib/Makefile.in: added _memmove.c
7611         * device/lib/z80/asm_strings.s: fixed bug #772290
7612         * support/regression/tests/bitfields.c: attempt to fix host assertion
7613         failure on amd64-unknown-linux2.2
7614
7615 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7616
7617         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7618         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7619         * as/z80/asmain.c (main): fixed bug #801766
7620
7621 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7622
7623         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7624         compilers
7625
7626 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7627
7628         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7629         reported in bug #800609
7630
7631 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7632
7633         * Top header beautifications in src/pic16 directory:
7634           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7635           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7636           pcoderegs.h, ralloc.c, ralloc.h
7637         * main.c: added top header and GPL license notice
7638         * pcode.c: fixed the if-conditional warning
7639
7640 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7641
7642         * device/lib/_mullong.c: replaced int by short for gcc
7643
7644 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7645
7646         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7647         and JUMPTABLE iCodes properly now (worked by accident before)
7648         * src/mcs51/gen.c (leftRightUseAcc),
7649         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7650         iCode properly now. Use getSize instead of nRegs since a & b
7651         aren't part of the nRegs tally.
7652
7653 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7654
7655         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7656         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7657           before instructions that use the _STATUS register
7658
7659 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7660
7661         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7662         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7663         fetching of the pointer
7664         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7665         copied from genNearPointerSet()
7666         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7667         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7668         If they pop r0/r1 they must be called in the opposite order than aopOp().
7669         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7670         (resp. --stack-auto), prepared for --xstack
7671
7672 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7673
7674         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7675
7676 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7677
7678         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7679         these ports have their own __sdcc_external_start()
7680
7681 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7682
7683         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7684         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7685         type for bits was changed. It resulted in bit variables becoming
7686         global, which is not permitted in PIC 14 assembly output.
7687
7688 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7689
7690         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7691
7692 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7693
7694         Z80 and MCS51 linkers complaint if a public symbol is defined
7695         in more than one library module:
7696
7697         * as/mcs51/lklib.c
7698         * link/z80/lklib.c
7699         * as/mcs51/Makefile.in
7700
7701 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7702
7703         A few small changes that speed up the peephole optimizer.
7704
7705         * src/SDCCpeeph.c
7706
7707 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7708
7709         Try to make the peephole optimizer smarter by maintaining
7710         an association between the assembly source code and the
7711         iCodes that originated them. Put this information to use
7712         with a new peephole rule condition "notVolatile" so that
7713         the rules can be aggressive yet still safe.
7714
7715         * src/SDCCpeeph.c
7716         * src/SDCCpeeph.h
7717         * src/mcs51/gen.c
7718         * src/mcs51/peeph.def
7719
7720 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7721
7722         Fixed bug #741761
7723
7724         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7725         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7726         if the left or right operand symbols have the accuse flag set.
7727
7728 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7729
7730         Changed the type of the result of the ! (NOT) operator to char;
7731         previously it returned the same type as the source. This allows
7732         us to eliminate all the genFloatNot functions (all of its target
7733         implementations were very buggy) since !float can use the same
7734         code as !long now.
7735
7736         * src/SDCCicode.c (ast2iCode): ! returns char
7737         * src/mcs51/gen.c (genNot, genNotFloat),
7738         * src/ds390/gen.c (genNot, genNotFloat),
7739         * src/z80/gen.c (genNot, genNotFloat),
7740         * src/pic/gen.c (genNot, genNotFloat),
7741         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7742
7743 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7744
7745         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7746         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7747            during interrupts. Ensure WSAVE is located at a shared bank address.
7748         2. Fixed page selection in some places
7749         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7750            the registers name strings.
7751         4. Fixed "signed / unsigned compare" compiler warnings.
7752         5. The PIC port manages its own allocation of the general purpose
7753            registers, but makes no attempt to reuse them. As a result when
7754            compiling it soon runs out of general purpose registers. Some
7755            additional code was added to the files pcode.c and device.c to walk
7756            through the function call tree and rename the registers so that they
7757            get reused.
7758
7759         * src/pic/device.c
7760         * src/pic/gen.c
7761         * src/pic/glue.c
7762         * src/pic/pcode.c
7763         * src/pic/pcode.h
7764         * src/pic/ralloc.c
7765         * src/pic/ralloc.h
7766         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7767         genPlus() & genMinus() when the result is the same as left or right
7768
7769 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7770
7771         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7772
7773 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7774
7775         Made bitfield a distinct type from bit so that bitfields
7776         convert as per ANSI C and bits retain their traditional
7777         boolean style behaviour. Implemented bitfield support in
7778         the z80 port.
7779
7780         * src/SDCCsymt.h,
7781         * src/SDCCsymt.c,
7782         * src/SDCCast.c,
7783         * src/cdbFile.c,
7784         * src/mcs51/gen.c,
7785         * src/ds390/gen.c: bit v bitfield split
7786         * src/z80/gen.c: New support for bitfields
7787         * support/regression/tests/bitfields.c: reenabled z80,
7788         added more tests
7789
7790 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7791
7792         Rules 246.x, 247.x relate to bitfields, the others speed up
7793         access to xdata mapped I/O devices.
7794
7795         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7796
7797 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7798
7799         Cleaned up genPackBits and genUnpackBits and added two helper
7800         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7801         for literal assignments in genPackBits (thanks to Frieder for
7802         reminding me).
7803
7804         * src/mcs51/gen.c
7805         * src/ds390/gen.c
7806
7807 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7808
7809         Fixed bug #748310 (pointer to function type mishandled when the
7810         function name is omitted). Also fixed a SIGSEGV when a function
7811         attribute (reentrant, etc) is used on a non-function or on a
7812         function but misplaced before the parameter list.
7813
7814         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7815         bug #748310
7816         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7817         * support/Util/SDCCerr.h,
7818         * support/Util/SDCCerr.c: Added func attr misuse error msg
7819
7820 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7821
7822         Fixed bug #787649 by anonymous
7823         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7824         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7825
7826 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7827
7828         Fixed numerous bitfield problems.
7829
7830         * src/SDCC.y: More bitfield related error checking
7831         * src/SDCCsymt.h,
7832         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7833         * support/Util/SDCCerr.h,
7834         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7835         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7836         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7837         * support/regression/tests/bitfields.c: tests added
7838
7839 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7840
7841         Made the constant following the "interrupt" keyword optional. If
7842         omitted, the function will not automatically be given an entry
7843         in the interrupt vector table (similar to #pragma NOIV, but
7844         less syntacticly kludgy). The interrupt number is also now
7845         range checked. Also fixed a bug in the high order bit example
7846         in the manual.
7847
7848         * src/SDCC.y
7849         * src/SDCCmem.c
7850         * src/SDCCglue.c
7851         * src/SDCCsymt.h
7852         * support/Util/SDCCerr.c
7853         * support/Util/SDCCerr.h
7854         * doc/sdccman.lyx
7855
7856 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7857
7858         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7859         * src/SDCCicode.c (operandOperation): rewritten some ops
7860         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7861         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7862         other type
7863         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7864         be re-activated by defining REDUCE_LITERALS)
7865         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7866         unsigned, but are signed by default
7867         * src/SDCCval.c (constVal): rearranged
7868         * src/SDCCval.c (valMod): preliminary fix
7869         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7870         * support/regression/literalop.c: added, work in progress
7871
7872 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7873
7874         Generate warnings for useless declarations like "char data;"
7875         that don't do what new users expect.
7876
7877         * src/SDCC.y
7878         * support/Util/SDCCerr.h
7879         * support/Util/SDCCerr.c
7880
7881 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7882
7883         * src/SDCCval.c (valMult): fix overflow detection of negative int
7884
7885 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7886
7887         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7888
7889         Changes to support big endian targets:
7890
7891         * src/ports.h
7892         * src/SDCCglue.c
7893         * src/avr/main.c
7894         * src/ds390/main.c
7895         * src/izt/i186.c
7896         * src/mcs51/main.c
7897         * src/pic/main.c
7898         * src/pic16/main.c
7899         * src/xa51/main.c
7900         * src/z80/main.c
7901
7902 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7903
7904         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7905         * device/lib/time.c: fixed warning "integer overflow in expression"
7906
7907 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7908
7909         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7910         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7911         constants are unsigned; added recognition of "u" flag for unsigned
7912         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7913         * src/SDCCval.c (valDiv, valMod): fixed signdness
7914         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7915         signedness of modulo, left and right shift
7916         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7917         * support/Util/SDCCerr.h: added warning W_INT_OVL
7918         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7919         * src/SDCCast.c (ast_print): improved output of constants
7920
7921 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7922
7923         Fixed some warnings when building with MSVC:
7924
7925         * as\mcs51\asdata.c
7926         * as\z80\asdata.c
7927         * as\mcs51\asm.h
7928         * as\z80\asm.h
7929         * link\z80\aslink.h
7930         * link\z80\lkdata.c
7931         * link\z80\lkeval.c
7932         * link\z80\lkgb.c
7933         * link\z80\lkihx.c
7934         * link\z80\lks19.c
7935         * link\z80\lksym.c
7936         * support\cpp2\cpplib.c
7937         * src\ds390\gen.c
7938         * src\mcs51\gen.c
7939
7940 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7941
7942         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7943
7944 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7945
7946         * support\librarian\clean.mk: Do not remove Makefile.
7947         * support\librarian\Makefile: added.
7948
7949 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7950
7951         Added librarian to MSVC build:
7952         * all.dsp
7953         * sdcc.dsw
7954         * support\librarian\librarian.dsp
7955
7956         'configure' not needed for librarian, removed:
7957         * support\librarian\configure
7958         * support\librarian\configure.in
7959         * support\librarian\config_in.h
7960         * support\librarian\Makefile.in
7961
7962         Hopefully these ones built the librarian and the rest of sdcc properly:
7963         * Makefile
7964         * Makefile.common.in
7965
7966         Messed up 'configure', so revert to previous version:
7967         * configure
7968         * configure.in
7969
7970 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7971
7972         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7973         there, while the mantissa of a double is "only" 53 bits wide.
7974
7975 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7976
7977         Adding sdcclib to the build.  MSVC project coming soon.
7978         Files added/changed:
7979
7980         * support\librarian\clean.mk
7981         * support\librarian\configure
7982         * support\librarian\configure.in
7983         * support\librarian\config_in.h
7984         * support\librarian\Makefile.bcc
7985         * support\librarian\Makefile.in
7986         * support\librarian\sdcclib.c
7987         * Makefile.bcc
7988         * Makefile
7989         * Makefile.common.in
7990         * configure
7991         * configure.in
7992
7993 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7994
7995         Linker now complaints if linked modules have conflicting options, for
7996         example, one compiled using --model-large and another one compiled with
7997         --model-small.  The following files were modified:
7998
7999         * as\mcs51\asdata.c
8000         * as\mcs51\aslink.h
8001         * as\mcs51\asm.h
8002         * as\mcs51\asmain.c
8003         * as\mcs51\asout.c
8004         * as\mcs51\i51pst.c
8005         * as\mcs51\lkdata.c
8006         * as\mcs51\lklibr.c
8007         * as\mcs51\lkmain.c
8008         * as\z80\asdata.c
8009         * as\z80\asm.h
8010         * as\z80\asmain.c
8011         * as\z80\asout.c
8012         * as\z80\z80pst.c
8013         * link\z80\aslink.h
8014         * link\z80\lkdata.c
8015         * link\z80\lklibr.c
8016         * link\z80\lkmain.c
8017         * src\SDCCglue.c
8018
8019 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8020
8021         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8022         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8023
8024 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8025
8026         * src/z80/mappings.i: fix _mul[us][int,long] entries
8027
8028 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8029
8030         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8031
8032 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8033
8034         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8035         * support/regression/tests/bitopcse.c: added
8036         fixed warning:
8037         * src/avr/gen.c:
8038         * src/pic/gen.c:
8039         * src/pic16/gen.c:
8040         * src/z80/gen.c:
8041         * src/xa51/gen.c:
8042
8043 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8044
8045         added support for new library format to z80, gbz80 linkers:
8046         *link/z80/aslink.h
8047         *link/z80/lklex.c
8048         *link/z80/lklib.c
8049         *link/z80/lklist.c
8050
8051 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8052
8053         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8054         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8055
8056 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8057
8058         added DUMMY_READ_VOLATILE:
8059         * src/SDCC.y:
8060         * src/avr/gen.c:
8061         * src/xa51/gen.c:
8062         * src/z80/gen.c:
8063         * src/pic/gen.c:
8064         * src/pic16/gen.c:
8065         * src/mcs51/gen.c:
8066         * src/ds390/gen.c:
8067         * src/SDCCcse.c (algebraicOpts): many improvements
8068         * src/SDCCcse.h: removed algebraicOpts()
8069         * src/SDCCicode.c (picDummyRead): added
8070
8071 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8072
8073         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8074         "Insufficient space in data memory".
8075
8076 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8077
8078         * src/mcs51/gen.c: fixed bug #771358
8079         * src/z80/gen.c: fixed bug #759087
8080
8081 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8082
8083         * src/pic16/glue.c: minor cleanup by Vangelis
8084
8085 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8086
8087         * device/include/regc515c.h: fixed #758477
8088         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8089         * device/lib/_gptrput.c: saved a few bytes
8090         * my tab spacing is 8, yours too?)
8091         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8092         * device/lib/serial.c: process RX bytes earlier than TX bytes
8093         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8094
8095 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8096
8097         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8098
8099 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8100
8101     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8102
8103 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8104
8105         * device/lib/Makefile.in: bad fix, reverted to 1.43
8106
8107 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8108
8109         * device/lib/Makefile.in: added missing z80 object files
8110
8111 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8112
8113         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8114         pic16 progress by Vangelis:
8115         * src/SDCCglobl.h:
8116         * src/SDCCmain.c:
8117         * src/pic/Makefile:
8118         * src/pic:
8119         * pic/Makefile:
8120         * pic16/device.c:
8121         * pic16/device.h:
8122         * pic16/gen.c:
8123         * pic16/gen.h:
8124         * pic16/genarith.c:
8125         * pic16/glue.c:
8126         * pic16/main.c:
8127         * pic16/pcode.c:
8128         * pic16/pcode.h:
8129         * pic16/pcodepeep.c:
8130         * pic16/peeph.def:
8131
8132 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8133
8134     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8135
8136 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8137
8138     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8139     added gbz80 build to MSVC project.
8140     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8141     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8142     from 8051 stuff and setup so it links using a .lnk file.
8143
8144 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8145
8146     * support/librarian/sdcclib.c: sdcc librarian.
8147     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8148     with sdcclib.
8149
8150 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8151
8152     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8153
8154 2003-07-02  Borut Razem <borut.razem AT siol.net>
8155
8156         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8157         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8158         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8159         src/xa51/main.c, src/z80/main.c:
8160         virtualization of glue() function: each port has it's own glue function,
8161         which is accessed by do_glue function pointer in PORT.general structure
8162
8163 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8164
8165         * DS800C400 fun, improved ROM interface and tinibios.
8166
8167 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8168
8169         * More support for DS80C400. Now includes beginning of interface to ROM.
8170
8171 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8172
8173         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8174
8175 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8176
8177         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8178
8179 2003-06-19  Borut Razem <borut.razem AT siol.net>
8180
8181         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8182
8183 2003-06-19  Borut Razem <borut.razem AT siol.net>
8184
8185         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8186         fixed Z80 port - crt0.o: cannot open.
8187
8188 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8189
8190         * support/Util/MySystem.c (merge_command): revert bad fix
8191
8192 2003-06-18  Borut Razem <borut.razem AT siol.net>
8193
8194         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8195
8196 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8197
8198         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8199         option --use-stdout sends errors to stdout instead of stderr.
8200
8201 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8202
8203         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8204
8205 2003-06-15  Borut Razem <borut.razem AT siol.net>
8206
8207         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8208         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8209         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8210         fixed width array of pointers replaced with sets;
8211         multiple include and lib paths ared transferred to preprocessor and linker
8212         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8213         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8214         fixed width array of pointers
8215         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8216         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8217         fixupPath(), getPathDifference()
8218         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8219         fixed width array of pointers
8220
8221 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8222
8223         * src/pic16/ralloc.c: fix warnings
8224         * src/pic16/pcode.c: fix warning
8225
8226 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8227
8228          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8229         know all the details, but essentially this set of changes enable
8230         the pic16 port to generate movff instructions and generate assembler
8231         directives,
8232         * src/SDCCmain.c:
8233         * src/pic16/gen.c:
8234         * src/pic16/glue.c:
8235         * src/pic16/pcode.c:
8236         * src/pic16/device.c:
8237         * src/pic16/main.c:
8238         * src/pic16/pcode.h:
8239         * src/pic16/pcoderegs.c:
8240         * src/pic16/ralloc.c:
8241         * src/pic16/ralloc.h:
8242
8243 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8244
8245         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8246         added option --vc, so sdcc errors and warnings are compatible with
8247         Microsoft Visual Studio.
8248
8249 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8250
8251         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8252           device/lib/libfloat.lib: added atof function.
8253
8254 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8255
8256         * doc/sdccman.lyx: updated to Lyx 1.3
8257         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8258         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8259         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8260
8261 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8262
8263         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8264
8265 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8266
8267         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8268           additions to the "related tools/documentation" section
8269
8270 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8271
8272         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8273
8274 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8275
8276         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8277         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8278
8279 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8280
8281         * doc/sdccman.lyx: fix double dash and other minor things
8282         * doc/Makefile: fix double dash
8283
8284 2003-05-28  Karl Bongers(patches from Martin Helmling)
8285         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8286           condition and ignore commands.
8287
8288 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8289
8290         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8291           is in parts still quite out of date, I did changes as far as I felt makes sense
8292           for a non-native english speaker.
8293           Please feel free to add to the manual or to correct my changes.
8294         * doc/Makefile: undid touching the date of intermediate tex files.
8295
8296 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8297
8298         * doc/sdccman.lyx: Manual has an index now
8299
8300 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8301
8302         Finalize muluint/mulsint and mululong/mulslong merging:
8303         * device/lib/_mulint.c
8304         * device/lib/_mullong.c
8305         * device/lib/gbz80/mul.s
8306         * device/lib/gbz80/stubs.s
8307         * device/lib/z80/mul.s
8308         * device/lib/z80/stubs.s
8309         * src/SDCCsymt.c (initCSupport)
8310
8311 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8312
8313         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8314         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8315           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8316           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8317           instead of /Zm500.
8318
8319 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8320
8321         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8322           the regression tests I'm not brave enough to enable 245.b, 245.c
8323         * doc/sdccman.lyx: added latex preamble for hyperref package.
8324           Using pdflatex this will give you a hyperlinked pdf file with
8325           bookmarks. (prepend '%' before /usepackage if this breaks something)
8326
8327 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8328
8329          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8330
8331 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8332
8333         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8334
8335 2003-05-21    <johan AT balder>
8336
8337         * src/SDCCglue.c (printIval): fixed bug #739934
8338
8339 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8340
8341         Applied patch from bug 737905 (renamed yylineo to mylineno):
8342         * src/altlex.c
8343         * src/SDCCast.c
8344         * src/SDCglobl.h
8345         * src/SDCC.lex
8346         * src/SDCCsymt.c
8347         * src/SDCCval.c
8348         * src/pic16/pcode.c: Cleaned warnings
8349         * src/pic16/pcodeflow.c: Cleaned warnings
8350         * src/pic16/pcoderegs.c: Cleaned warnings
8351
8352 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8353
8354         * src/pic16/pcode.c: Cleaned warnings
8355         * src/pic16/pcodepeep.c: Cleaned warnings
8356         * src/pic16/ralloc.c: Cleaned warnings
8357
8358 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8359
8360         * doc/sdccman.lyx: fixed bug 739745
8361         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8362
8363 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8364
8365         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8366         it can be defined with CFLAGS when running configure
8367         * src/SDCCmain.c: fixed compiling + linking with object files
8368
8369 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8370
8371         * configure.in: configure for pic16 port,
8372             added --disable-pic16-port
8373         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8374         * src/SDCCmain.c: linkOptions is changed to set *,
8375             added if/endif conditional macros to remove options help
8376             messages from optionsTable when a port is not configured, added
8377             support for the PIc16 port in the ports table, when executing
8378             the compiler with no port specified on command line, a default
8379             port is selected with the new macro DEFAULT_PORT which is
8380             defined in port.h, in setDefaultOptions() linkOptions is removed
8381             from initialization assignment, since now it is a set,
8382             parseCmdLine uses setParseWithComma for linkOptions, in
8383             linkEdit() linkOptions are accessed with new function indexSet()
8384             which returns the i'th item of a set variable. See SDCCset.c, in
8385             linkEdit() when calling buildCmdLine(), added linkOptions as
8386             last argument. Now users can pass arguments to gplink via the
8387             -Wl option, main() uses pic16glue() to glue up pic16 programs
8388         * src/SDCCpeeph.c: various changes to support pic16
8389         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8390             return the i'th item of the set
8391         * src/SDCCset.h: added function prototype for indexSet()
8392         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8393         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8394         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8395             added macro DEFAULT_PORT
8396         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8397         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8398             generated
8399         * src/pic16/glue.c: commented out some error producing lines
8400         * src/pic16/main.c: __config directives are commented out to stop
8401             gpasm complaining and test the linkage with gplink, _linkCmd and
8402             _asmCmd changed to be more gplink and gpasm friendly
8403         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8404             produced an error when parsed, peep rule 12 is added to utilize
8405             movff, but it is commented out since the pCode does not support
8406             yet a command with 2 address arguments
8407
8408 2003-05-18    <johan AT balder>
8409
8410         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8411         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8412 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8413
8414         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8415   Added feature to script commands from file.
8416
8417 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8418
8419         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8420         * src/SDCCutil.c: include ctype.h for win32
8421
8422 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8423
8424         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8425
8426 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8427
8428         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8429   Fixed so you can set breakpoints prior to run, run does not stop
8430   on entry now.  Add tbreak.  Other enhancements and fixes for use
8431   with ddd.
8432
8433 2003-05-12  Borut Razem <borut.razem AT siol.net>
8434
8435         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8436
8437 2003-05-11  Borut Razem <borut.razem AT siol.net>
8438
8439         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8440         the path of bin directory, so that PATH is the only env. variable, which has to be set
8441         in case of standard installation.
8442         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8443         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8444         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8445
8446 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8447
8448         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8449         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8450         temp files are in the port dir; clean the gen/test directory when
8451         generating new test.c
8452         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8453         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8454         * support/regression/tests/zeropad.c: added
8455
8456 2003-05-09    <johan AT balder>
8457
8458         * src/SDCCglue.c: fixed bug #597940
8459
8460 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8461
8462         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8463   cache sfr, optimize next,step, fix off by one sourceline,
8464   support ddd list function.
8465         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8466
8467 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8468
8469         * support/regression/HTMLgen.py: added compare_s2f()
8470         * support/regression/Makefile: redo 1.27
8471         * support/regression/generate-cases.py: redo 1.5
8472
8473 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8474
8475         * support/regression/tests/float.c: workaround 33 bit hex constant
8476         * support/regression/tests/simplefloat.c: fix division for host
8477
8478 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8479
8480         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8481         that tame's the PIC's over-aggressive optimizer.
8482
8483 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8484
8485          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8486          support for MSVC.
8487
8488 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8489
8490         Initial support for DS80C400. "Hello world" runs on TINIm400
8491         (with polled I/O).
8492
8493 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8494
8495          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8496          * Some notes on ddd usage added in debugger/README
8497          Martin Helmling adding more features and fixes for ddd GUI debugger.
8498          Code added for nexti, stepi, up, down, and other adjustments.
8499
8500 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8501
8502         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8503         * src/pic/peeph.def Added two rules to optimize carry manipulation
8504         * src/pic/* removed debug printfs
8505
8506 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8507
8508         * debugger/mcs51/cmd.c: added header newalloc.h
8509
8510 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8511
8512         * as/Makefile: new EXEEXT
8513         * as/z80/Makefile: remove trailing slash of BUILDIR
8514         * as/z80/clean.mk: new EXEEXT
8515         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8516         * support/cpp2/Makefile.in: new EXEEXT
8517         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8518
8519 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8520
8521         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8522         EXEEXT was introduced to fix all related problems with targets
8523         "clean", "install" and "uninstall"; a couple of further flaws
8524         especially with "clean" have been fixed too
8525         * as/mcs51/Makefile.in
8526         * as/mcs51/clean.mk
8527         * as/z80/Makefile
8528         * Makefile
8529         * clean.mk
8530         * debugger/mcs51/Makefile.in
8531         * debugger/mcs51/clean.mk
8532         * link/z80/Makefile
8533         * link/z80/Makefile.in
8534         * link/z80/clean.mk
8535         * link/Makefile
8536         * packihx/Makefile.in
8537         * packihx/clean.mk
8538         * sim/ucsim/Makefile
8539         * sim/ucsim/clean.mk
8540         * sim/ucsim/avr.src/Makefile.in
8541         * sim/ucsim/avr.src/clean.mk
8542         * sim/ucsim/s51.src/Makefile.in
8543         * sim/ucsim/s51.src/clean.mk
8544         * sim/ucsim/xa.src/Makefile.in
8545         * sim/ucsim/xa.src/clean.mk
8546         * sim/ucsim/z80.src/Makefile.in
8547         * sim/ucsim/z80.src/clean.mk
8548         * sim/ucsim/main_in.mk
8549         * sim/ucsim/packages_in.mk
8550         * sim/ucsim/gui.src/Makefile.in
8551         * sim/ucsim/gui.src/serio.src/Makefile.in
8552         * sim/ucsim/gui.src/serio.src/clean.mk
8553         * src/Makefile.in
8554         * src/clean.mk
8555         * support/cpp2/Makefile.in
8556         * support/cpp2/clean.mk
8557         * support/makebin/Makefile
8558         * support/makebin/clean.mk
8559         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8560         * doc/sdccman.lyx: --program-suffix no longer needed
8561
8562 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8563
8564          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8565          Martin Helmling added support for ddd GUI debugger.
8566          Code added to display assembly, set variables, and other commands
8567          to interface to ddd.
8568
8569 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8570
8571         * as/Makefile: fix target clean
8572         * as/clean.mk: fix target clean
8573         * as/z80/clean.mk: fix target clean
8574
8575 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8576
8577         * Makefile.common.in: added  AT EXEEXT AT
8578         * configure.in: removed all mingw32 stuff
8579         * configure: rebuilt from configure.in
8580         * doc/sdccman.lyx: updated section "installation"
8581         * support/scripts/sdcc_mingw32: adapted to configure
8582         * support/scripts/sdcc_cygwin_mingw32: added
8583
8584 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8585
8586         * src/pic Added object file support for the PIC port
8587         * src/pic Applied patch from Craig Franklin (this started the object file support)
8588         * src/regression Updated the PIC regression tests for object files
8589
8590 2003-04-20  Borut Razem <borut.razem AT siol.net>
8591
8592         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8593           lklex.c: In function `getfid':
8594           lklex.c:203: warning: array subscript has type `char'
8595         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8596           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8597         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8598           stack handling macros
8599
8600 2003-04-19  Borut Razem <borut.razem AT siol.net>
8601
8602         * "handling space characters in file path" task:
8603         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8604         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8605         * support/Util/MySystem.h: make it self-sufficient
8606         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8607           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8608           handling space characters in file path
8609         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8610           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8611         * support/Util/MySystem.c: handling space characters in executable's path
8612
8613 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8614
8615         * as/z80/Makefile: fix permanent rebuild of z80
8616         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8617         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8618
8619 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8620
8621         * src/SDCCopt.c: add special case optimization to replace modulo by
8622           a power of two with a bitwise AND.
8623
8624 2003-04-18    <johan AT balder>
8625
8626         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8627
8628 2003-04-17    <johan AT balder>
8629
8630         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8631         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8632
8633 2003-04-13  Borut Razem <borut.razem AT siol.net>
8634
8635         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8636         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8637           fixed mingw problem in adl_NORMALIZE_PATH
8638
8639 2003-04-12  Borut Razem <borut.razem AT siol.net>
8640
8641         * fixed "#pragma SAVE/RESTORE can not be nested":
8642         * src/SDCC.lex: reworked pragma handling functions
8643         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8644         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8645
8646 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8647
8648         * src/SDCCutil.c (pathEquivalent): defined but not used
8649         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8650         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8651         * configure: rebuilt from configure.in
8652         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8653         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8654         * device/include/Makefile.in: replace sdcc_datadir
8655         * device/lib/Makefile.in: replace sdcc_datadir
8656         * Makefile.common.in: add LDFLAGS from configure
8657         * packihx/Makefile.in: use LDFLAGS
8658         * src/Makefile.in: use LDFLAGS
8659         * support/cpp2/Makefile.in: add LDFLAGS from configure
8660         * support/makebin/Makefile: use LDFLAGS
8661         * .version: bumped version number to 2.3.5
8662
8663 2003-04-12  Borut Razem <borut.razem AT siol.net>
8664
8665         * completed "different paths" task:
8666         * src/SDCCmacro.c: fixed bug in handling quotes
8667         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8668         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8669
8670 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8671
8672         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8673
8674 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8675
8676         * ds390/gen.c ds390/peeph.def: fix bug 706781
8677
8678 2003-04-11  Borut Razem <borut.razem AT siol.net>
8679
8680         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8681
8682 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8683
8684         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8685         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8686          set - this bit used to not be set...).
8687         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8688           bad code in PIC Port
8689         * src/regression/and2.c added to test bug 609268
8690         * src/regression/Makefile added and2.c to regression test
8691
8692
8693 2003-04-08    <johan AT CP255758-A>
8694
8695         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8696         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8697         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8698
8699 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8700
8701         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8702         fix bug #487815
8703         * support/cpp2/Makefile.in: fix bug #487815
8704         * configure: rebuilt from configure.in
8705         * Makefile.common.in: docdir changed, new path suffixes
8706         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8707         * sdcc_vc_in.h: reflect changes from sdccconf.h
8708         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8709         * src/SDCCutil.h: remove BINDIR hack
8710         * doc/sdccman.lyx: update new path hierarchy
8711
8712 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8713
8714         * src/SDCCpeeph.c: added okToRemoveSLOC test
8715
8716 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8717
8718         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8719
8720 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8721
8722         * src/SDCCpeeph.c: added labelIsReturnOnly test
8723         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8724
8725 2003-04-05    <johan AT balder>
8726
8727         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8728         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8729         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8730         * src/SDCCast.c: fixed a warning
8731         * src/SDCCast.h: fixed a warning
8732         * src/SDCCicode.c (operandFromAst): fixed a warning
8733
8734 2003-04-04    <johan AT balder>
8735
8736         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8737         * src/SDCCast.c (decorateType): fixed bug #715076
8738         * src/SDCC.y: fixed bug #702907
8739
8740 2003-04-03    <johan AT balder>
8741
8742         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8743         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8744         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8745         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8746         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8747
8748 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8749
8750         * _decdptr.c: fix return values
8751         * _gptrget.c: fix return values
8752         * _gptrgetc.c: fix return values
8753         * _gptrput.c: fix return values
8754         * _mulint.c: fix return values
8755         * as/z80/Makefile: fix 'make -j' problem
8756
8757 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8758
8759         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8760         * configure.in: big cleanup, updated to autoconf 2.5x
8761         * configure: rebuilt from configure.in
8762         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8763         * sdcc_vc_in.h: reflect changes from sdccconf.h
8764         * doc/Makefile: fixed a flaw in "make install"
8765
8766 2003-04-02    <johan AT balder>
8767
8768         * src/ds390/gen.c (genCmp): no comments
8769         * src/mcs51/gen.c (genCmp): no comments
8770         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8771         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8772
8773 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8774
8775         * support/regression/generate-cases.py: place generated file in given sub directory
8776         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8777         * support/regression/Makefile: improvements for 'make -j';
8778         side effect: it's simpler and faster now
8779
8780 2003-03-31  Borut Razem <borut.razem AT siol.net>
8781
8782         * src/z80/main.c: link-{port} and as-{port} defined without path
8783         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8784
8785 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8786
8787         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8788
8789 2003-03-30  Borut Razem <borut.razem AT siol.net>
8790
8791         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8792           changed type of list parameter to set
8793         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8794         * src/port.h: changed type of do_assemble() parameter to set
8795         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8796           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8797           definition of "cppoutfilename" macro with NULL value in preProcess()
8798         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8799         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8800         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8801           replaced with set *binPathSet
8802         * shash_add() deallocates the item, if allready exsists, before adding the new one
8803         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8804
8805 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8806
8807         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8808           a nested for loop bug in the PIC port
8809         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8810           for loops
8811
8812 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8813
8814         * support/Util/dbuf.h: remove C++ stuff to make it portable
8815
8816 2003-03-28  Borut Razem <borut.razem AT siol.net>
8817
8818         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8819           literal strings in stringLiteral()
8820         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8821         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8822           to the project
8823
8824 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8825
8826         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8827
8828 2003-03-26    <johan AT balder>
8829
8830         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8831         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8832         * src/SDCCast.c (decorateType): fixed " -v < 3"
8833
8834 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8835
8836         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8837         Added Lenny Story's debug infrastructure changes:
8838         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8839         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8840         * src/cdbFile.c: added
8841         * src/SDCCdebug.c: added
8842         * src/SDCCdebug.h: added
8843         * src/SDCCast.c (createFunction)
8844         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8845         * src/SDCCmain.c (parseCmdLine, main)
8846         * src/SDCCmem.c (redoStackOffsets)
8847         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8848         * src/SDCCsymt.h
8849         * src/common.h
8850         * src/avr/gen.c (genAVRCode)
8851         * src/ds390/gen.c (gen390Code)
8852         * src/mcs51/gen.c (gen51Code)
8853         * src/pic/gen.c (genpic14Code)
8854         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8855         * src/xa51/gen.c (genXA51Code)
8856         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8857
8858 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8859
8860         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8861         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8862
8863 2003-03-22    <johan AT balder>
8864
8865         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8866
8867 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8868
8869         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8870         * doc/cdbfileformat.lyx: added, written by Lenny Story
8871         * doc/Makefile: added cdbfileformat.lyx
8872         * doc/clean.mk: added cdbfileformat.lyx
8873
8874 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8875
8876         * src/mcs51/peeph.def: fix bug #705773
8877
8878 2003-03-20    <johan AT balder>
8879
8880         An sfr/sbit can have an "at #" AND an initializer
8881         * src/SDCCsymt.c (checkSClass):
8882         * src/SDCCmem.c (allocGlobal):
8883         * src/SDCCmem.c (allocLocal):
8884         * src/SDCCast.c (createBlock):
8885
8886 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8887
8888         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8889
8890 2003-03-16    <johan AT balder>
8891
8892         Undid the hackup of const and volatile, the problem is much bigger
8893         * src/SDCC.y:1.65
8894         * src/SDCCast.c:1.171
8895         * src/SDCCglue.c:1.138
8896         * src/SDCCicode.c:1.146
8897         * src/SDCCsymt.c:1.150
8898         * src/SDCCval.c:1.65
8899
8900 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8901
8902         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8903         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8904
8905 2003-03-13    <johan AT balder>
8906
8907         Hackup const and volatile modifiers in type chains a bit:
8908         * src/SDCC.y:1.63
8909         * src/SDCCast.c:1.169
8910         * src/SDCCglue.c:1.136
8911         * src/SDCCicode.c:1.143
8912         * src/SDCCsymt.c1.146
8913         * src/SDCCsymt.h1.59
8914         * src/SDCCval.c:1.63
8915
8916 2003-03-12    <johan AT balder>
8917
8918         * src/SDCCBBlock.h: more LRH debugging junk
8919         * src/SDCCcflow.h: more LRH debugging junk
8920         * src/SDCCloop.c: more LRH debugging junk
8921         * src/SDCC.y (struct_declaration): fixed bug #697590
8922         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8923         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8924         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8925
8926 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8927         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8928         test function names must now match exactly).
8929         * src/SDCCcse.c: added special case in findCheaperOp to allow
8930         extending a short integer. Makes less awful code for bug 700121 test case.
8931
8932 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8933
8934         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8935         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8936
8937 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8938
8939         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8940         actually called (operandsNotEqual() was called for all
8941         operandsNotEqualX tests).
8942
8943 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8944
8945         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8946         with shorter literals. Fixes bug 700121.
8947
8948 2003-03-11    <johan AT balder>
8949
8950         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8951
8952 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8953
8954         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8955         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8956
8957 2003-03-10  Borut Razem <borut.razem AT siol.net>
8958
8959         * src/SDCCmain.c: pipe preprocessor's output
8960         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8961         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8962         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8963         which closes all pipes in pipeSet set
8964         * src/SDCCset.c: free deleted item in function deleteSetItem()
8965         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8966         moved from z80 to src subproject
8967         * .version: increased version number to 2.3.4
8968
8969 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8970
8971         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8972         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8973         * support/regression/ports/xa51/spec.mk: fix typo
8974
8975 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8976
8977         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8978
8979 2003-03-09  Borut Razem <borut.razem AT siol.net>
8980
8981         * src/SDCCmain.c: pipe preprocessor's output
8982         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8983         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8984         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8985         which closes all pipes in pipeSet set
8986         * src/SDCCset.c: free deleted item in function deleteSetItem()
8987         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8988         moved from z80 to src subproject
8989
8990 2003-03-09  Borut Razem <borut.razem AT siol.net>
8991
8992         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8993         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8994         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8995         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8996         * src/SDCCglobl.h: unification of WIN32 native definitions
8997
8998 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8999
9000         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9001
9002 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9003
9004         * src/configure.in:   check for endianess (even while cross-compiling)
9005         * src/configure:      check for endianess (even while cross-compiling)
9006         * src/configure_in.h: check for endianess (even while cross-compiling)
9007         * src/avr/gen.c:        remove old endianess stuff
9008         * src/mcs51/gen.c:      remove old endianess stuff
9009         * src/ds390/gen.c:      remove old endianess stuff
9010         * src/pic/gen.c:        remove old endianess stuff
9011         * src/pic/genarith.c:   remove old endianess stuff
9012         * src/pic/glue.c:       fix endianess check
9013         * src/pic16/gen.c:      remove old endianess stuff
9014         * src/pic16/genarith.c: remove old endianess stuff
9015         * src/pic16/glue.c:     fix endianess check
9016         * src/xa51/gen.c:       remove old endianess stuff
9017         * src/z80/gen.c:        fix endianess check
9018         * src/SDCCglue.c:       fix endianess check
9019         * src/ds390/peeph.def: fix bug 700036
9020
9021 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9022
9023         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9024         * src/configure: find appropriate data-types on host for SDCC's int and long
9025         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9026         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9027         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9028
9029 2003-03-07    <johan AT balder>
9030
9031         Just a big NOOP:
9032                 some minor cleanups before the big shot
9033                 OP_DEFS and OP_USES now use Kevin's protection
9034                 new option --nolabelopt
9035
9036         * src/SDCCBBlock.c:
9037         * src/SDCCast.c,:
9038         * src/SDCCcflow.c:
9039         * src/SDCCcse.c:
9040         * src/SDCCicode.c:
9041         * src/SDCCicode.h:
9042         * src/SDCClabel.c:
9043         * src/SDCCloop.c:
9044         * src/SDCCmain.c:
9045         * src/ds390/ralloc.c:
9046         * src/mcs51/ralloc.c:
9047         * src/pic/ralloc.c:
9048         * src/xa51/ralloc.c:
9049         * src/z80/ralloc.c:
9050
9051 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9052
9053         * src/pic/pcode.c (get_op): fix 64 bit warnings
9054         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9055         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9056         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9057         * support/regression/tests/malloc.c: fix 64 bit warnings
9058
9059 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9060
9061         * src/mcs51/gen.c (genMinus): fixed bug 696436
9062
9063 2003-03-02  Borut Razem <borut.razem AT siol.net>
9064
9065         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9066
9067 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9068
9069         * configure.in: test for mkstemp
9070         * sdccconf_in.h: add HAVE_MKSTEMP
9071
9072 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9073
9074         * device/include/ctype.h: removed warning while using --stack-auto
9075         * device/include/malloc.h: removed warning while using --stack-auto
9076         * device/include/string.h: removed warning while using --stack-auto
9077
9078 2003-02-23  Borut Razem <borut.razem AT siol.net>
9079
9080         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9081         because NDEBUG is defined (see man assert)
9082         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9083
9084 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9085
9086         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9087         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9088
9089 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9090
9091         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9092         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9093
9094 2003-02-18    <johan AT balder>
9095
9096         * as/mcs51/asmain.c (asmbl): module can start with a digit
9097         * as/z80/asmain.c (asmbl): module can start with a digit
9098
9099 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9100
9101         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9102         * src/asm.c: fix pipe() for Mingw32
9103
9104 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9105
9106         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9107         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9108         make -V work again; --c1mode reads now from stdin
9109         * doc/sdccman.lyx: added --c1mode
9110         * support/Util/SDCCerr.c: new messages for c1 mode
9111         * support/Util/SDCCerr.h: new messages for c1 mode
9112         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9113
9114 2003-02-15    <johan AT balder>
9115
9116         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9117
9118 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9119
9120         * doc/sdccman.lyx: Environment variables, -o and other minor things
9121
9122 2003-02-14    <johan AT balder>
9123
9124         * src/xa51/main.c: before anyone really tries to use it :)
9125
9126         * Install doc's in share/sdcc/doc
9127         * removed some obsolete files
9128         * Do a proper make distclean and uninstall
9129         M Makefile.common.in
9130         R sdccbuild.sh
9131         M as/Makefile
9132         M device/include/Makefile.in
9133         M device/lib/Makefile.in
9134         M doc/sdccman.lyx
9135         M link/Makefile
9136         M sim/ucsim/doc/Makefile.in
9137         M src/clean.mk
9138         R src/avr/peeph.rul
9139         R src/xa51/peeph.rul
9140         M support/cpp2/Makefile.in
9141         M support/makebin/Makefile
9142
9143
9144 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9145
9146         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9147
9148 2003-02-10  Borut Razem <borut.razem AT siol.net>
9149
9150         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9151         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9152         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9153         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9154         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9155         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9156         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9157         src/z80/Makefile.bcc: Borland Makefile cleanup
9158         * as/z80/Makefile.bcc: Added Borland Makefile
9159         * support/cpp2/borland.h: Removed
9160
9161 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9162
9163         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9164         * src/SDCC.lex: new pragma NOIV
9165         * src/SDCCglobl.h: new pragma NOIV
9166         * src/SDCCmem.c: new pragma NOIV
9167
9168 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9169
9170         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9171
9172 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9173
9174         * src/SDCCmain.c: signal handling is switched off by --debug
9175         * doc/Makefile: small fix for install; use clean.mk again
9176         * doc/clean.mk: clean *.pdf and *.html too
9177
9178 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9179
9180         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9181         * device/lib/printfl.c: fix a ds390 bug by making it portable
9182         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9183         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9184         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9185         * debugger/mcs51/cmd.c: converted multi-line string literals
9186         * sim/ucsim/globals.cc: converted multi-line string literals
9187         * src/SDCCmain.c: introduced signal handler to remove temp files
9188         * doc/Makefile: small tweaks, implement clean
9189         * doc: removed generated files
9190
9191 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9192
9193         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9194         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9195         Address Record is not correctly generated for DS390."
9196
9197 2003-02-02  Borut Razem <borut.razem AT siol.net>
9198
9199         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9200         * as/mcs51/asm.h: fixed compilation with Borland C
9201         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9202         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9203         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9204         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9205         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9206         src/z80/Makefile.bcc: delete $(LIB) only if exist
9207         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9208
9209 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9210
9211         * device/include/malloc.h: introduced NULL
9212         * device/include/string.h: introduced NULL
9213         * device/include/stdlib.h: introduced NULL
9214         * device/lib/_memcpy.c: removed NULL
9215         * device/lib/_strcat.c: removed NULL
9216         * device/lib/_strchr.c: removed NULL
9217         * device/lib/_strcmp.c: removed NULL
9218         * device/lib/_strcpy.c: removed NULL
9219         * device/lib/_strcspn.c: removed NULL
9220         * device/lib/_strlen.c: removed NULL
9221         * device/lib/_strncat.c: removed NULL
9222         * device/lib/_strncmp.c: removed NULL
9223         * device/lib/_strncpy.c: removed NULL
9224         * device/lib/_strpbrk.c: removed NULL
9225         * device/lib/_strrchr.c: removed NULL
9226         * device/lib/_strspn.c: removed NULL
9227         * device/lib/_strstr.c: removed NULL
9228         * device/lib/_strtok.c: removed NULL
9229         * device/lib/malloc.c: removed NULL, include own header
9230
9231 2003-02-02    <johan AT balder>
9232
9233         * 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
9234         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9235         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9236         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9237         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9238         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9239
9240 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9241
9242         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9243         area 'DATA'"
9244
9245 2003-02-01    <johan AT balder>
9246
9247         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9248
9249 2003-01-31    <johan AT CP255758-A>
9250
9251         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9252
9253 2003-01-30    <johan AT balder>
9254
9255         * src/SDCCBBlock.c: automatic bug detection
9256         * src/SDCCicode.c: automatic bug detection
9257
9258 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9259
9260         * src/SDCCglobl.h:   now --xram-size 0 works
9261         * src/SDCCmain.c:    now --xram-size 0 works
9262
9263 2003-01-29    <johan AT balder>
9264
9265         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9266
9267 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9268
9269         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9270         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9271         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9272         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9273         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9274         * src/SDCCmain.c:    Added options --xram-size and --code-size
9275
9276 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9277
9278         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9279         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9280
9281 2003-01-27    <johan AT balder>
9282
9283         * src/SDCC.y: fixed bug #613764
9284
9285 2003-01-26    <johan AT balder>
9286
9287         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9288         * src/SDCCsymt.h: fixed bug #673374
9289         * src/SDCCglue.c: fixed bug #661910
9290         * src/SDCCast.c: fixed bug #458099 and 673374
9291
9292 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9293
9294         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9295         * as/mcs51/strcmpi.h: added
9296         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9297         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9298         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9299         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9300         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9301         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9302         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9303         * as/mcs51/Makefile.aslink: new module strcmpi
9304         * as/mcs51/Makefile.asx8051: new module strcmpi
9305         * as/mcs51/Makefil.bcc: new module strcmpi
9306         * as/mcs51/Makefile.in: new module strcmpi
9307         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9308
9309 2003-01-26    <johan AT balder>
9310
9311         * src/SDCCglue.c: reverted back to 1.124
9312         * src/SDCCast.c: reverted back to 1.156
9313         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9314
9315 2003-01-25    <johan AT balder>
9316
9317         * src/SDCCglue.c: A better fix for bug #661910
9318         * src/SDCCast.c: A better fix for bug #661910
9319         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9320
9321 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9322
9323         * src/Makefile.in: remove spawn.o
9324         * src/SDCCmain.c: remove spawn.h
9325         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9326         * src/spawn.c: removed
9327         * src/spawn.h: removed
9328         * support/regression/ports/ds390/spec.mk: link with -r
9329
9330 2003-01-24    <johan AT CP255758-A>
9331
9332         * src/ds390/gen.c (aopOp): fixed bug #667458
9333         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9334         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9335         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9336
9337 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9338
9339         * src/mcs51/peeph.def: better assembler identation by Frieder
9340         * src/mcs51/gen.c: better assembler identation by Frieder
9341
9342 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9343
9344         * as/z80/string.h: removed for gcc 3.2
9345         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9346         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9347
9348 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9349
9350         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9351         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9352         * support/regression/Makefile: separate temp files for ports
9353         * support/regression/generate-cases.py: separate temp files for ports
9354         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9355         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9356
9357 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9358
9359         * moved tinitalk to device/examples/ds390
9360
9361 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9362
9363         * as/mcs51/lkmem.c: rflag is for DS390
9364         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9365         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9366                          (linkEdit): move mem- and map-files the same way as ihx-files
9367         * src/z80/main.c (_setDefaultOptions): removed --generic
9368         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9369         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9370         * src/pic/glue.c (picglue): --c1mode works again
9371         * src/pic16/glue.c (pic16glue): --c1mode works again
9372         * src/asm.c (printCLine): fix #660034
9373
9374 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9375
9376         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9377         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9378         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9379         * as/mcs51/lkmem (summary): better fix for sp problem
9380         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9381         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9382         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9383                                               remove --stack-after-data
9384
9385 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9386
9387         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9388         * src/SDCCutil.c (join): ugly bug: missing '\0'
9389         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9390
9391 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9392
9393         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9394         * src/port.h: typo
9395         * src/pic/main.c (_asmCmd): gpasm supports -o
9396         * src/z80/main.c: more general macros
9397         * device/lib/Makefile.in: remove intermediate files
9398
9399 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9400
9401         * .version: Bumped version number to 2.3.3
9402         * src/SDCCBBlock.c: new option -o
9403         * src/SDCCglobl.h: new option -o
9404         * src/SDCCglue.c: new option -o
9405         * src/SDCCmain.c: new option -o
9406         * src/asm.c: new option -o
9407         * src/ds390/main.c: new option -o
9408         * src/pic/glue.c: new option -o
9409         * src/pic/pcode.c: new option -o
9410         * src/pic/ralloc.c: new option -o
9411         * src/pic16/glue.c: new option -o
9412         * src/pic16/pcode.c: new option -o
9413         * src/pic16/ralloc.c: new option -o
9414         * src/z80/main.c: new option -o
9415         * device/lib/Makefile.in: use -o
9416         * support/regression/ports/ds390/spec.mk: use -o
9417         * support/regression/ports/gbz80/spec.mk: use -o
9418         * support/regression/ports/mcs51/spec.mk: use -o
9419         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9420         * support/regression/ports/z80/spec.mk: use -o
9421         * support/regression/ports/ucz80/spec.mk: use -o
9422         * support/regression/ports/xa51/spec.mk: use -o
9423         * support/regression/fwk/lib/timeout.c: fix usage string
9424
9425 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9426         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9427
9428 2003-01-07    <johan AT balder>
9429
9430         * src/SDCCast.c (decorateType): fixed bug #600035
9431
9432 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9433         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9434         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9435         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9436         * src/pic/pcode.c: outcommented unused variable to remove warnings
9437         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9438
9439 2003-01-06    <karl AT turbobit.com>
9440         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9441    regression tests.
9442
9443 2003-01-06    <johan AT balder>
9444
9445         * src/SDCCicode.c: fixed array add
9446
9447 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9448         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9449         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9450
9451 2003-01-04    <johan AT balder>
9452
9453         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9454
9455 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9456         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9457
9458 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9459         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9460         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9461
9462 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9463         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9464
9465 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9466         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9467
9468 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9469         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9470
9471 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9472
9473     * in \sdcc\as\mcs51\ changed these files in order to create an
9474     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9475     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9476     following files to include the previous two files: aslink.dsp,
9477     Makefile.aslink, Makefile.bcc, and Makefile.in.
9478
9479     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9480     .adb instead of .cdb
9481
9482 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9483
9484         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9485         value from option --iram-size.
9486
9487 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9488
9489         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9490         dram[] array.
9491
9492 2002-09-18    <wiml AT hhhh.org>
9493
9494         * SDCClrange.h: exposed setFromRange() and setToRange()
9495         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9496           packRegsForAccUse() (bug 542397)
9497         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9498           multiple times and emitting the fetch operations more than once
9499           added aopGetUsesAcc() function to allow binary operators to
9500           fetch their operands in the correct order; made genMinus() emit
9501           compact code for X = LITERAL - Y
9502
9503 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9504         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9505         sprintf() in line 1267.
9506
9507 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9508         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9509         like ports.
9510
9511 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9512         Changes to aslink (All the changes are marked with 'JCF'):
9513
9514         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9515         summary().
9516
9517         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9518         area BSEG.  Also moves, if possible, the DATA area down into the internal
9519         ram so more space is available.
9520
9521         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9522         sflag.
9523
9524         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9525         not bytes.  Function summary() which creates a memory usage summary
9526         file with extension .mem.  Reports of overlaping stack and small stack
9527         size.  If the space for the stack is less than 16 bytes aslink trows a
9528         warning.
9529
9530         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9531         the 8051.  Option 'y' for memory summary output file.
9532
9533         Changes to sdcc (All the changes are marked with 'JCF'):
9534
9535         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9536
9537         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9538         overlaying area for it (uses RegBankUsed[4]).
9539
9540         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9541         bank zero as used by default.  By default aslink locates the stack
9542         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9543         the creation of the .mem file.  Delegates the allocation of data area
9544         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9545         the begining of the stack area to aslink.
9546
9547         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9548         glue() in SDCCglue.c creates an area for it.
9549
9550 2002-09-03  Borut Razem <borut.razem AT siol.net>
9551         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9552         sdcc/src/pic/glue.c:
9553         introduced atexit() handler for teporay files removal in case of
9554         errors, assertions, ...
9555
9556 2002-08-29  Borut Razem <borut.razem AT siol.net>
9557         * sdcc/support/cpp2/auto-host_vc_in.h:
9558         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9559         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9560         Maybe there is a similar problem with BORLANDC? It should be checked!
9561
9562         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9563         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9564         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9565         was not executed, and the compiler (cl) launched a warning:
9566         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9567
9568 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9569         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9570
9571 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9572         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9573
9574         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9575           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9576           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9577           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9578           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9579           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9580           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9581         - added Release configuration in VS projects
9582         - review of compiler an linker options
9583         - VC .exe files are generated in bin_vc directory, not to interfere
9584           with binaries generated from other projects (cygwin, mingw, bcc ...)
9585
9586         * sdcc/src/yacc.dsp: added
9587
9588         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9589         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9590         and insert the version number definitions from .version
9591
9592         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9593
9594         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9595         added - genarate auto-host.h using auto-host_vc_in.h as template
9596
9597         * sdcc/sdcc_vc.h,
9598         removed from CVS, generated automatically
9599
9600 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9601         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9602
9603 2002-08-11  Borut Razem <borut.razem AT siol.net>
9604         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9605
9606 2002-08-10  Borut Razem <borut.razem AT siol.net>
9607         * src/SDCCmain.c (main):
9608         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9609         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9610         The consequence was that some temporary files were not removed.
9611
9612         * src/SDCCglue.c:
9613         unification of code in functions tempfilename() and tempfile():
9614         function tempnam() is defined in Visual Studio 6.0 and .NET
9615
9616         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9617
9618         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9619           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9620         - removed compiler command line option /WX: Treats all warnings as errors
9621         - update a list of source files, included into the project
9622
9623         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9624           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9625         changed project type to Generic Project so that can be correcly converted to VS.NET project
9626
9627         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9628
9629         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9630
9631         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9632
9633         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9634         added return 0 statements after assert() to make compiler happy
9635
9636         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9637         added newline in the def file to keep MSC compiler satisfied
9638
9639         * sdcc/src/z80/gen.c:
9640         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9641           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9642         - solved MSC error in function aopDump()
9643
9644         * sdcc_vc.h: define PREFIX as "\\sdcc"
9645
9646 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9647         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9648
9649 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9650         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9651         - Rewrote the register banking algorithm.
9652         - Added pCode live-range analysis to registers (for now, only non-used and
9653         singly-used registers optimized away)
9654
9655         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9656
9657         * 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.
9658
9659 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9660         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9661
9662 2002-04-22  Michael Hope  <michaelh AT vroom>
9663
9664         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9665
9666         * configure.in (DD_COPT): Added include support required for gbdk.
9667
9668         * .version: Bumped version number just to increase it.
9669
9670         * src/SDCCmain.c: Added -nostdinc to the default options.
9671
9672 2002-04-15  Michael Hope  <michaelh AT vroom>
9673
9674         * device/lib/z80/printf.c (sprintf): Added.
9675
9676         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9677
9678         * src/z80/peeph.def: Added transpose redundent load rule.
9679
9680         * src/z80/main.c: Added force callee saves for jaune.
9681
9682         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9683
9684         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9685
9686 2002-03-28  Johan Knol  <johan AT balder>
9687
9688         * src/SDCCval.c: fixed bug #532436
9689
9690 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9691         * /src/port.h:
9692         Added "char *Processor" field to the port structure.
9693
9694         * /src/SDCCmain.c:
9695         Added -p option. Allows port dependent processor to be specified.
9696
9697         * all ports:
9698         Initialized the new field char *Processor field to NULL in all ports
9699
9700         * /src/pic/*:
9701         Compiler generated registers for interrupt context saving
9702         were not getting allocated.
9703
9704 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9705
9706         * /src/SDCCast.c:
9707         Fixed left shift. Will promote the left side of a left shift
9708         if a) left shifting more than size of operand or b) when assigned
9709         to something size > size of left side
9710
9711 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9712         * src/pic/*
9713         tons of changes. Register allocation has been
9714         rewritten. Added customization for the various PICs. Flow
9715         analysis is restructured. ...
9716
9717         * src/pic/device.h:
9718         Added
9719
9720         * src/pic/device.c:
9721         Added. device.c is a PIC port hack to accomodate variations
9722         in PIC devices.
9723
9724 2002-03-13  Michael Hope  <michaelh AT vroom>
9725
9726         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9727
9728 2002-03-04  johanknol  <johanknol AT manik>
9729
9730         * /src/SDCCval.c: fixed
9731
9732         const unsigned char arr[][2] = { { 0, 1 } };
9733         t18.c:1: error: Initializer element is not constant
9734
9735 2002-03-04  bela  <bela AT manik>
9736
9737         * /device/include/mcs51reg.h:
9738         ds89c420 register definition update
9739
9740 2002-03-03    <johan AT FRIJA>
9741
9742         * support/Util/SDCCerr.c: did something, but don't no why anymore
9743
9744         * support/regression/tests/bug-524691.c: made it a little less shy
9745
9746         * src/SDCCast.c (decorateType): fixed bug #524697
9747
9748         * src/SDCCast.c: made some lineno improvements
9749
9750         * src/SDCCval.c (getNelements): changed warning to error
9751
9752         * src/SDCCglue.c (printIvalArray): changed warning to error
9753
9754         * src/SDCCicode.c: fixed a warning for mingw
9755
9756         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9757
9758         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9759
9760 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9761
9762         * src/ds390/peeph.def:
9763         Added some more peephole rules
9764
9765         * src/ds390/gen.c: Various fixes & enhancements
9766
9767         * src/SDCClrange.c, src/SDCClrange.h:
9768         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9769
9770         * src/ds390/ralloc.c:
9771         various fixes & enhancements (ds390) specific
9772
9773         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9774         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9775         from rallocs.
9776
9777         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9778
9779 2002-03-02    <johan AT FRIJA>
9780
9781         * src/SDCCast.c (decorateType): fixed bug #524708
9782
9783         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9784
9785         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9786
9787 2002-03-01  Michael Hope  <michaelh AT vroom>
9788
9789         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9790
9791         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9792
9793 2002-03-01    <johan AT FRIJA>
9794
9795         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9796
9797         * src/SDCCast.c (decorateType): fixed bug #524209
9798
9799         * src/SDCCval.c (valNot): fixed bug #524195
9800
9801 2002-02-26    <johan AT balder>
9802
9803         * src/xa51/gen.c: fixed a warning
9804
9805         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9806
9807         * src/SDCCast.c (decorateType): fixed bug #522534
9808
9809 2002-02-23    <johan AT balder>
9810
9811         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9812
9813 2002-02-22    <johan AT balder>
9814
9815         * src/SDCCast.c: fixed bug #514865
9816
9817         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9818
9819 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9820
9821         * sdcc/src/SDCCloop.c:
9822         Previous fix was not good. basic blocks that have "break" or "return" are
9823         not really partof a loop , but live ranges used in these blocks should
9824         be live thru the entire loop, so set partOfLoop but don't add them to
9825         loop region
9826
9827 2002-02-21    <johan AT FRIJA>
9828
9829         * src/SDCCcse.c: fixed bug #514308
9830
9831 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9832
9833         * src/SDCCloop.c:
9834         Fixed BUG #519583. If a conditional block ended in a return/break
9835         statement inside a loop, it was not being considered part of the loop.
9836
9837         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9838
9839 2002-02-10  Karl Bongers <karl AT turbobit.com>
9840
9841         * debugger/*:
9842         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9843         with lots of comments and notes.
9844
9845         * device/examples/test2.c:
9846         Fix bug, "red" variable not being initialized(compiler complained).
9847
9848         * device/examples/Makefile, examples/test3.c:
9849         Add Makefile in device/examples folder, compiles test3.c
9850         for use as a multiple module SDCDB test case.
9851
9852         * sim/ucsim/cmd.src/cmdset.cc:
9853         Took out debug printfs in ucsim "next" command.
9854
9855         * sim/ucsim/xa.src:
9856         Karl and Johan start ucsim XA support.  Most dissassembly working,
9857         about 75% emulation done(plenty of work remaining).
9858
9859         * sim/ucsim/z80.src:
9860         Add Z80 support to ucsim, add test-ucz80 regression test,
9861         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9862         Notice z80 compiler fails on examples/test3.c/crc code.
9863
9864 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9865
9866         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9867         Added support for --parms-in-bank1
9868
9869         * src/ds390/peeph.def:
9870         added a few more peephole optimzations
9871
9872         * src/ds390/main.c:
9873         1) added __builtin_inp & __builtin_outp used to read in data of given length
9874            from a memory mapped port
9875         2) added __builtin_memcmp
9876         3) added __builtin_swapw swap bytes of a short
9877
9878         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9879         1) handle multiple send & receives from register bank1
9880         2) ralloc can now allocate DPTR1 to some liveRanges
9881
9882         * src/SDCCsymt.c, src/SDCCsymt.h:
9883         changes to handle multiple sends & receives
9884
9885         * src/SDCCptropt.h:
9886         added some pointer arithmetic optimization
9887
9888         * src/SDCCptropt.c:
9889         added some pointer arithmetic optimizations but not stable yet so not
9890         called from anywhere (will get this working shortly)
9891
9892         * src/SDCCopt.c: fixed for multiple sends & receives
9893
9894         * src/SDCCmain.c:
9895         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9896         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9897            set preprocessor defines (depending on options)
9898
9899         * src/SDCCicode.c, src/SDCCicode.h:
9900         changes made to handle multiple sends & receives
9901
9902         * src/SDCCglobl.h:
9903         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9904
9905         * src/SDCCcse.c, src/SDCCcse.h:
9906         added function findbackward def (to be used in upcoming optimization)
9907
9908         * src/SDCCcflow.c, src/SDCCcflow.h:
9909         added function returnAtEnd - to determine if a basic block terminates with
9910         a RETURN iCode
9911
9912         * src/SDCCast.c, src/SDCCast.h:
9913         added option parms-in-bank1
9914
9915         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9916         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9917         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9918         adjusted for --parms-in-bank1 option
9919
9920         * device/include/string.h:
9921         donot redefine "reentrant" keyword
9922
9923         * device/include/ds80c390.h: Added some more SFRs
9924
9925 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9926
9927         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9928
9929 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9930
9931         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9932
9933 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9934
9935         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9936
9937 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9938
9939         * Added --xram-movc option
9940
9941 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9942
9943         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9944
9945 2002-01-11  Johan Knol
9946
9947         * Added math lib of Jesus Calvino-Fraga
9948
9949 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9950
9951         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9952         * support/regression/Makefile: new target test-mcs51-stack-auto
9953         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9954
9955 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9956
9957         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9958
9959 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9960
9961         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9962
9963 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9964
9965         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9966
9967         * src/SDCCglue.h: add definition for printIvalChar()
9968
9969 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9970
9971         * src/SDCCast.c: fix #498138 by Johan
9972
9973         * src/SDCCglue.c: fix #498138 by Johan
9974
9975 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9976
9977         * support/regression/Makefile: fix clean
9978
9979         * support/regression/ports/ds390/support.c: fix transmission of last character
9980
9981 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9982
9983         * /sdcc/src/ds390/gen.c:
9984         a) improved computing address of stack variable
9985         b) took out some #if 0 code
9986         c) improved parmBytes adjustment
9987         d) improved genPlusIncr & genMinusIncr
9988         e) genCmp could generate bad code (when left assigned to DPTR)
9989         f) Fixed bug in hasInc
9990
9991         * /sdcc/src/ds390/ralloc.c:
9992         a) packRegsForSupport could mess up live information (Fixed)
9993         b) packRegsDPTRuse could be incorrect for left & right shift
9994
9995         * /sdcc/src/mcs51/ralloc.c:
9996         packRegsForSupport could mess up the live information (Fixed)
9997
9998         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9999
10000         * /sdcc/src/SDCCast.c:
10001         can reverse a loop even if function call is present as long
10002         as the loop control variable is local & is not passed as parameter
10003
10004 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10005
10006         * /sdcc/ChangeLog: *** empty log message ***
10007
10008         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10009         More builtin function additions for TININative
10010
10011         * /sdcc/src/ds390/ralloc.c:
10012         Had broken the regression testsuite
10013
10014         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10015
10016         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10017         Added funcattr hasStackParms will be set for reentrant functions when there
10018         are paramteres on the stack, this helps in minimizing frame pointer generation
10019         typeFromStr can handle function pointers now
10020
10021         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10022         *** empty log message ***
10023
10024 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10025
10026         * /src/ds390/gen.c, /src/ds390/main.c:
10027         More builtin function additions for TININative
10028
10029         * /src/ds390/ralloc.c:
10030         Had broken the regression testsuite
10031
10032         * /src/SDCCast.c: Fixed a bug in dumptree
10033
10034         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10035         Added funcattr hasStackParms will be set for reentrant functions when there
10036         are paramteres on the stack, this helps in minimizing frame pointer generation
10037         typeFromStr can handle function pointers now
10038
10039         * /doc/builtins.txt, /doc/TININative.txt:
10040         *** empty log message ***
10041
10042
10043 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10044
10045         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10046         ALPHA version for -mTININative
10047
10048         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10049         updated to reflect changes in the port structure
10050
10051         * /src/port.h:
10052         added function do_assemble (similar to do_link) if non-null this function
10053         will be called to do assembly (-mTININative) requires a multi command
10054         assembly
10055         added function genAssemblerEnd will be called to generate assembler Epilogue
10056
10057         * /src/SDCCsymt.c:
10058         added _JavaNative to debug info printing
10059
10060         * /src/SDCCmain.c: added option --tini-libid
10061         added port->do_assemble function (-mTININative) has a multi command assemble
10062
10063         * /src/SDCCglue.c: Disabled "constExpr" check
10064         added port->genAssemblerEnd function
10065
10066         * /src/SDCCglobl.h: Added option --tini-libid value
10067
10068         * /src/SDCCast.h:
10069         tookout optimizeCompare from the header (has no external references)
10070
10071         * /src/SDCCast.c: made one more function "static"
10072
10073 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10074
10075         * src/z80/mappings.i: Added z80asm support.
10076
10077         * src/z80/main.c: Added z80asm support on --asm=z80asm
10078
10079         * src/z80/gen.c: Fixed asm portability issues.
10080
10081         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10082
10083         * src/SDCCglue.c (printExterns): Added global/extern split.
10084
10085 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10086
10087         * support/regression/Makefile: added test for mcs51 model large
10088
10089         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10090
10091         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10092
10093 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10094
10095         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10096
10097 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10098
10099         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10100
10101         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10102
10103 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10104
10105         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10106
10107         * support/regression/tests/simplefloat.c: Port to mcs51.
10108
10109 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10110         * support/regression/tests/bug-485362.c: Added.
10111
10112         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10113
10114         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10115
10116         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10117
10118         * src/z80/gen.c (aopDump): Added a dump function.
10119
10120 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10121         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10122
10123         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10124
10125         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10126
10127         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10128
10129         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10130
10131         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10132
10133         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10134
10135         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10136
10137         * support/regression/ports/ds390/support.c: Use tinibios.
10138
10139         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10140
10141 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10142
10143         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10144         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10145
10146         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10147
10148         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10149
10150 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10151
10152         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10153
10154         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10155         (packRegsForIYUse): Created and optimised.
10156
10157 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10158
10159         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10160 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10161
10162         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10163
10164         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10165
10166         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10167
10168 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10169
10170         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10171
10172         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10173
10174 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10175
10176         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10177
10178         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10179
10180         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10181
10182 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10183
10184         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10185         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10186         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10187
10188         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10189
10190         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10191         (genNotFloat): Added.
10192         (genUminusFloat): Added.
10193
10194         * device/lib/z80/Makefile: Added floating pt stubs.
10195
10196         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10197
10198         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10199
10200         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10201
10202 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10203
10204         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10205
10206         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10207
10208         * sdcc/support/regression/Makefile: Add port ds390.
10209
10210         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10211
10212         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10213
10214         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10215
10216         * sdcc/support/regression/ports/ds390/support.c: Added.
10217
10218         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10219
10220         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10221
10222         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10223
10224 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10225
10226         * device/include/malloc.h: Added z80 and gbz80 support.
10227
10228         * device/lib/gbz80/heap.s: Added.
10229
10230         * device/lib/z80/heap.s: Added.
10231
10232         * device/lib/malloc.c: Added z80 and gbz80 support.
10233
10234         * support/regression/tests/malloc.c (testMalloc): Added.
10235
10236         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10237
10238         * support/regression/tests/bug-478094.c: Added.
10239
10240         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10241
10242 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10243
10244         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10245
10246         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10247
10248         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10249
10250         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10251
10252         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10253
10254 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10255
10256         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10257
10258 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10259
10260         * support/regression/tests/bug-477927.c: Added.
10261
10262         * src/z80/peeph.def: Added minor rules.
10263
10264         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10265
10266         * src/z80/peeph.def: Added jump optimisation modification.
10267
10268 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10269
10270         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10271
10272 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10273
10274         * support/regression/tests/funptrs.c: Added.
10275
10276 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10277
10278         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10279
10280 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10281
10282         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10283
10284         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10285
10286         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10287         (movLeft2ResultLong): Created.
10288
10289         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10290         (joinPushes): Added.  Joins two char pushes into a word push.
10291
10292 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10293
10294         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10295
10296         * support/makebin/Makefile (install): Added creation of dest dir.
10297
10298 2001-10-24 Karl Bongers <karl AT turbobit.com>
10299
10300         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10301
10302 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10303
10304         * src/z80/ralloc.c: Turned off faulty pack for one use.
10305
10306         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10307
10308         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10309
10310 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10311
10312         * support/regression/Makefile: Improved clean
10313
10314         * support/regression/ports/gbz80/spec.mk: Added clean
10315
10316         * support/regression/ports/host/spec.mk: Added clean
10317
10318         * support/regression/ports/z80/spec.mk: Added clean
10319
10320         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10321
10322         * support/regression/ports/mcs51/timeout.c: little improvements
10323
10324 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10325
10326         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10327
10328         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10329
10330         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10331
10332 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10333
10334         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10335
10336         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10337
10338 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10339         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10340
10341         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10342
10343         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10344
10345         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10346
10347         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10348
10349         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10350
10351         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10352
10353         * support/regression/tests/longor.c: Added.
10354
10355 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10356
10357         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10358
10359         * as/mcs51/aslink.h: define PATH_MAX
10360
10361         * as/mcs51/asm.h: define PATH_MAX
10362
10363         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10364
10365         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10366
10367         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10368
10369         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10370
10371         * src/SDCCglobl.h: define PATH_MAX
10372
10373         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10374
10375         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10376
10377 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10378
10379         * src/z80/gen.c (gencjneshort): Fixed
10380
10381         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10382
10383 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10384
10385         * support/regression/tests/bug-469671.c: Added.
10386
10387         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10388
10389 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10390
10391         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10392
10393         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10394
10395 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10396
10397         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10398
10399         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10400
10401         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10402
10403         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10404
10405         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10406
10407         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10408
10409         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10410
10411 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10412
10413         * 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.
10414
10415         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10416
10417         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10418
10419 2001-10-07    <johan AT FRIJA>
10420
10421         * device/lib/gets.c (gets): fixed the return value.
10422
10423 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10424         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10425
10426         * 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.
10427
10428         * 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.
10429
10430         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10431
10432         * src/pic/gen.c: Removed Safe_strdup.
10433
10434         * configure.in: Added option to enable libgc support.
10435
10436         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10437         (bitVectUnion): Optimised.
10438         (bitVectIntersect): Optimised.
10439         (bitVectBitsInCommon): Optimised.
10440         (bitVectCplAnd): Optimised.
10441
10442         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10443
10444 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10445
10446         * src/SDCCmain.c: distinguish between assembler debug and plain options
10447
10448         * src/avr/main.c:   remove standard assembler options
10449
10450         * src/ds390/main.c: remove standard assembler options
10451
10452         * src/mcs51/main.c: remove standard assembler options
10453
10454         * src/port.h: removed "PENDING" comment
10455
10456 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10457
10458         * src/device/lib/_mulint.c  : new, with assember functions
10459
10460         * src/device/lib/_mullong.c : new, with assember functions
10461
10462         * src/device/lib/_divuint.c : with assember functions
10463
10464         * src/device/lib/_divsint.c : with assember functions
10465
10466         * src/device/lib/_divulong.c: with assember functions
10467
10468         * src/device/lib/_divslong.c: with assember functions
10469
10470         * src/device/lib/_moduint.c : with assember functions
10471
10472         * src/device/lib/_modsint.c : with assember functions
10473
10474         * src/device/lib/_modulong.c: with assember functions
10475
10476         * src/device/lib/_modslong.c: with assember functions
10477
10478         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10479
10480         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10481
10482         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10483                                       replaced _mululong.c and _mulslong.c by _mullong.c
10484
10485 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10486
10487         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10488
10489 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10490
10491         * src/SDCCglue.c: test, if win32api is available for MINGW
10492
10493 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10494
10495         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10496         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10497         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10498         * support/regression/ports/host/spec.mk: removed GENERIC
10499         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10500         * support/regression/ports/z80/spec.mk: removed GENERIC
10501
10502 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10503
10504         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10505
10506         * support/regression/tests/bug-467035.c: Created.
10507
10508 2001-10-01    <johan AT FRIJA>
10509
10510         * src/SDCC.y: fixed bug #466586 part 1
10511
10512 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10513
10514         * SDCCicode.c: z80 has no generic pointers
10515         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10516
10517 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10518
10519         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10520
10521 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10522
10523         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10524
10525         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10526
10527 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10528
10529         * configure.in: Fixed up so that ucsim is only configured once.
10530
10531         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10532
10533         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10534         (getPathDifference): As above.
10535
10536         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10537
10538         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10539
10540 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10541         * .version: Updated to 2.3.1
10542
10543         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10544         Added copyright header.
10545
10546         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10547         (assemble): Added support for macro based assembler commands.
10548         (linkEdit): Added support for macro based linker commands.
10549         (preProcess): Changed the pre-processor to use macros.
10550         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10551         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10552
10553         * device/lib/z80/crt0.s: Added module name for debugging.
10554
10555 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10556
10557         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10558
10559         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10560
10561         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10562
10563         * src/Makefile.in: Added SDCCmacro and SDCCutil
10564
10565 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10566
10567         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10568
10569 2001-09-16    <johan AT FRIJA>
10570
10571         * 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.
10572
10573 2001-09-15    <johan AT FRIJA>
10574
10575         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10576         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10577
10578 2001-09-11    <johan AT FRIJA>
10579
10580         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10581
10582 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10583
10584         * support/regression/tests/bug-460444.c: Added test case.
10585
10586         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10587         (genCast): Added justification for all of the asserts.
10588
10589 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10590
10591         * support/regression/support.c: _xdata replaced by xdata
10592
10593         * support/regression/spec.mk: removed _generic
10594
10595 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10596
10597         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10598
10599         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10600         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10601
10602         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10603
10604         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10605
10606         * support/regression/tests/bug-460010.c: Added test case.
10607
10608         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10609
10610 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10611
10612         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10613
10614         * support/regression/testfwk.c: removed workaround for bug #436344
10615
10616         * support/regression/tests/bp.c: use less memory with mcs51
10617
10618         * support/regression/tests/bug-441448.c: use less memory
10619
10620         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10621
10622         * support/regression/collate-results.py: typo
10623
10624 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10625
10626         * support/regression/tests/fetchoverlap.c: Added new test case.
10627
10628         * support/regression/tests/bp.c: Added new test case.
10629
10630         * support/regression/tests/bug-448984.c: Added new test case.
10631
10632         * support/regression/tests/pow2shifts.c: Added new test case.
10633
10634         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10635         (genlshTwo): Fixed right shift for count > 8.
10636
10637         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10638
10639 2001-09-08    <johan AT FRIJA>
10640
10641         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10642
10643 2001-09-07    <johan AT FRIJA>
10644
10645         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10646
10647         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10648
10649 2001-09-06    <johan AT FRIJA>
10650
10651         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10652         * bernhard noted me at this: "() equals to (void)" (1.38)
10653
10654 2001-09-05    <johan AT FRIJA>
10655
10656         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10657
10658 2001-09-04    <johan AT FRIJA>
10659
10660         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10661
10662
10663 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10664
10665         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10666
10667 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10668
10669         * link/z80/aslink.h: Fixed path for PATH_MAX
10670
10671 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10672
10673         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10674
10675         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10676
10677         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10678
10679         * 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.
10680
10681 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10682
10683         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10684         (genCmp): Fixed up genCmp for the GB with longs.
10685
10686         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10687
10688         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10689
10690         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10691
10692         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10693
10694 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10695
10696         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10697
10698 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10699
10700         * 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.
10701
10702         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10703
10704 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10705
10706         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10707
10708         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10709
10710 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10711
10712   * sim/ucsim/configure:    little improvement of Cygwin-detection
10713   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10714   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10715   * support/regression/tests/bug-221100.c: small changes for mcs51
10716   * support/regression/tests/bug-221168.c: small changes for mcs51
10717   * support/regression/tests/bug-227710.c: small changes for mcs51
10718   * support/regression/tests/staticinit.c: small changes for mcs51
10719   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10720   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10721   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10722
10723 $Revision$