* .version: bumped version to 2.5.6
[fw/sdcc] / ChangeLog
1 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * .version: bumped version to 2.5.6
4         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
5
6 2006-04-06 Raphael Neider <rneider AT web.de>
7
8         * .version: bumped version to 2.5.6 (pic14 ABI changed)
9         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
10         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
11           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
12             pic14_constructAbsMap
13           (pic14printPublics): declare absolute global symbols as global
14           (pic14createInterruptVect),
15         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
16           (newReg): assume new registers unused, use correct name in
17             hashtable (reg->name instead of name), more debugLog output
18         * src/pic/device.h (PIC_device): added fields for verbose output
19         * src/pic/device.c: moved device definition to pic14devices.txt,
20             added routines for runtime parsing of pic14devices.txt,
21             added support for second config word
22         * src/pic/main.c (_process_pragma): removed #pragma maxram,
23           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
24           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
25           (_pic14_parseOptions): moved pCodeInitRegisters here
26           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
27         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
28           (pCodeInitRegisters): rewrapped comments, perpared new approach to
29             handling the pseudo stack
30         * device/lib/Makefile.in: ignore failures in objects-pic16,
31         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
32         * device/lib/pic/NEWS: document new dependency on picXXX.lib
33         * device/lib/pic/Makefile.subdir,
34         * device/lib/pic16/Makefile.subdir: improved clean rules
35         * device/lib/pic/libdev/: NEW, pic14 device libraries
36         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
37         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
38         * device/include/Makefile.in: create subdir and install pic14 headers
39         * device/include/pic/p16f_common.inc: removed unused declarations
40         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
41             PICs from inc2h.pl v1.6,
42             replaced BIT_AT macros with struct declarations
43         * device/include/pic/pic14devices.txt: definition of supported devices,
44             all above improvements contributed by Zik Saleeba, thanks
45         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
46         * support/scripts/sdcc.nsi: also install pic14 device libraries and
47             headers
48
49 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
50
51         * device/include/mcs51/c8051f410.h: added interrupt numbers,
52         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
53           thanks to Charles Olds
54
55 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
56
57         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
58
59 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
60
61         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
62         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
63         * support/regression/bug1464657.c: added, new test
64
65 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
66
67         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
68           version number
69
70 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
71
72         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
73           --no-peep and --peep-file <file> are used don't use default rules but
74           do use the <file>
75
76 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
77
78         * src/mcs51/gen.c (genCall): fixed bug 1457608
79
80 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
81
82         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
83         changes seem to cause (trigger?) problems with the build system.
84
85 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
86
87         * src/SDCCpeeph.c (operandsLiteral): new, added,
88           (callFuncByName): inserted operandsLiteral
89         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
90
91 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
92
93         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
94         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
95
96 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
97
98         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
99           implemented patch 1120823 Thanks to Willy De la Court (normal
100           interrupts need an interrupt number now if they are made critical),
101           and enabled nesting of critical functions though not for gbz80
102           (genCritical, genEndCritical): added functions
103           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
104         * src/z80/mappings.i: added "ei" to all mappings
105
106 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
107
108         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
109         submitted by the Debian SDCC maintainer Aurelien Jarno:
110         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
111         archive with gcc 4.1 on mips and wrote the patch"
112
113 2006-03-16 Raphael Neider <rneider AT web.de>
114
115         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
116           the left operand is shorter than the result (c* = lit-c* + int),
117           fixes bug #1450796
118         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
119           OP_SYMBOL
120
121 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
122
123         * src/.version: increased version number to 2.5.5
124         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
125         linking is done manually in pic16 port's _linkEdit,
126         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
127         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
128         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
129         allocate asmop as AOP_ACC,
130         (aopForRemat): added parameter 'bool result' in function declaration,
131         (pic16_aopGet): return AOP_ACC when accessing WREG,
132         (pic16_popGetTempReg): minor modification,
133         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
134         'pic16_allocWithIdx',
135         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
136         calling function in absolute addresses,
137         (genAssign): take into account AOP_ACC asmop,
138         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
139         * src/pic16/pcoderegs.c: some debug functions and lines added,
140         * src/pic16/ralloc.c (decodeRegType): added but commented out,
141         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
142         register too,
143         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
144         call to allocReg, not by manually allocating a new one,
145         (pic16_assignRegisters): now before going through the register
146         allocating functions mark all registers as free. This eliminates some
147         side effects resulting from peephole parser done earlier in the backbone
148
149 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
150
151         * src/SDCCicode.c (geniCodeLogic),
152         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
153
154 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
155
156         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
157           (genSend): bugfix, do not allocate and free twice,
158           (shiftRLong): handle partially overlapping aops
159         * support/regression/tests/bitopcse.c: fixed warning redefined idata
160
161 2006-03-08 Borut Razem <borut.razem AT siol.net>
162
163         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
164           for pic16
165
166 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
167
168         * support/regression/tests/bug1409955.c: new, added
169         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
170         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
171           (aopForSym, aopOp): increment asmop.allocated if reused,
172           (freeAsmop): decrement asmop.allocated and check for zero instead of
173           using asmop.freed,
174           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
175           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
176            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
177            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
178            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
179            genSignedRightShift, genRightShift, genDataPointerGet,
180            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
181            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
182             in reverse order from allocation,
183           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
184             added swappedLR to keep track
185         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
186           pdata & code for GCC, z80, gbz80 & hc08
187         * support/regression/tests/zeropad.c: moved defines to testfwk.h
188
189 2006-03-08 Raphael Neider <rneider AT web.de>
190
191         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
192
193 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
194
195         * device/include/mcs51/c8051f410.h: new SiLabs mcu
196         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
197         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
198
199 2006-03-06 Borut Razem <borut.razem AT siol.net>
200
201         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
202           made the linker quiet
203
204 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
205
206         * src/pic16/gen.c (genPcall): fixed bug #1443644
207         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
208         which dumps before the function entry point a data byte which represents
209         the number of the local variables used by the specified function, added
210         'xinst' for initial support for Extended Instruction Support,
211         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
212         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
213         port->fun_prefix anymore (may change later),
214         (genFunction, genEndFunction): do not store/restore local registers for
215         _main (this should take care the --main-return command line option in
216         the future),
217         (genOr): removed some legacy pic-port instructions,
218         * src/pic16/genarith.c (genAddLit): re-enabled old code because
219         performing operations with SFR's causes data to be written more than
220         once to each SFR. Perhaps SFRs should be handled in special cases...
221         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
222         pcode.h
223         * src/pic16/main.c (_process_pragma): stack bound checking did not take
224         into account for stack starting position,
225         (struct OPTIONS pic16_optionsTable): added command line argument
226         --extended or -y for Extended Instruction Support,
227         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
228         (deassignLRs): *** perhaps the most important change, old 'for' code
229         (commented out for reference), didn't account for some registers which
230         were left marked 'not free' after a pointer operation. The change
231         reduces register usage a lot in some cases
232
233 2006-03-04 Borut Razem <borut.razem AT siol.net>
234
235         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
236           _clean
237         * support/regression/tests/bug-524697.c: decreased array size for
238           mcs51 to fit into the internal RAM
239         * support/regression/Makefile.in: a little bit more verbose
240
241 2006-03-03 Borut Razem <borut.razem AT siol.net>
242
243         * support/regression/fwk/lib/testfwk.c,
244           support/regression/fwk/include/testfwk.h: introduced function
245           _prints(), nonrecursive _printn(), call _initEmu() from main()
246         * support/regression/ports/gbz80/support.asm,
247           support/regression/ports/ucz80/support.asm,
248           support/regression/ports/z80/support.asm,
249           support/regression/ports/ds390/support.c,
250           support/regression/ports/hc08/support.c,
251           support/regression/ports/host/support.c,
252           support/regression/ports/mcs51/support.c,
253           support/regression/ports/xa51/support.c: added empty _initEmu()
254           function
255         * support/regression/ports/pic16/gpsim.cmd,
256           support/regression/ports/pic16/spec.mk,
257           support/regression/ports/pic16/support.c,
258           support/regression/Makefile.in: added pic16 regression test
259
260 2006-03-01 Raphael Neider <rneider AT web.de>
261
262         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
263           genConstPointerGet): use safe way of generating MOVFF to cover
264             literals as well as registers, fixes bug #1440527
265         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
266             dereference
267           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
268             more correctly, fixes bug #1232186
269           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
270         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
271             gplink guess the correct processor in more cases, applied patch
272             from Till Riedel attached to and fixing bug #1436552
273
274 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
275
276         * support/regression/tests/array.c: added, contains check for #1434401
277         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
278
279 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
280
281         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
282         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
283         * device/include/mcs51/c8051f326.h,
284         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
285         * device/include/mcs51/c8051f000.h,
286         * device/include/mcs51/c8051f018.h,
287         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
288           PCON_IDLE,PCON_STOP and added sfr16 definitions
289
290 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
291
292         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
293           genGetWord): fixed bug 1409955
294
295 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
296
297         * device/include/hc08/mc68hc908gp32.h,
298         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
299
300 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
301
302         * src/SDCCast.c (constExprValue): return NULL if not a value
303         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
304         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
305         * support/regression/tests/bitfields.c: enabled signed bitfield for all
306
307 2006-02-13 Borut Razem <borut.razem AT siol.net>
308
309         * src/regression/ptrarg.c: added, fails due to bug #1430967
310         * src/regression/Makefile: ptrarg.c added, ...
311
312 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
313
314         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
315         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
316
317 2006-02-11 Borut Razem <borut.razem AT siol.net>
318
319         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
320           print "Processor: xxx" message to stdout only if --verbose
321
322 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
323
324         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
325         * support/regression/tests/bug1426356.c: added
326         * support/regression/tests/bitfields.c: removed 2 tests
327
328 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
329
330         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
331         * device/include/mcs51/c8051f330.h,
332         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
333           PCON_IDLE,PCON_STOP and added sfr16 definitions
334         * device/lib/_divsint.c,
335         * device/lib/_divuint.c,
336         * device/lib/_divulong.c,
337         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
338           register bank bug for small stackauto
339
340 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
341
342         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
343
344 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
345
346         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
347         * all.dsp: corrected several bin paths
348         * device/include/mcs51/c8051f120.h,
349         * device/include/mcs51/c8051f300.h,
350         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
351           to PCON_IDLE,PCON_STOP
352         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
353         * device/lib/printf_large.c (output_float): fixed bug 1388703
354         * support/regression/tests/bug1057979.c: added test for bug 1388703
355
356 2006-02-08 Raphael Neider <rneider AT web.de>
357
358         * src/pic/pcode.c (pciTRIS): fixed typo,
359           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
360           (LinkFlow): fixed handling of flows that end in a call,
361           (ReuseReg): perform safety check earlier
362         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
363             to work with flows at the beginning of a pBlock,
364             fixes #1426557 (Symbol not previously defined),
365           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
366             usage information
367           (RemoveUnusedRegisters): update register usage info
368         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
369             created, reuse existing ones instead
370         * src/pic/gen.c (genPcall): fixed #1424719
371
372 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
373
374         * link/z80/lkmain.c,
375         * link/z80/lklex.c,
376         * link/z80/lkdata.c,
377         * link/z80/aslink.h: fixed build on current cygwin:
378         replaced getline() by lk_getline()
379
380 2006-02-01 Borut Razem <borut.razem AT siol.net>
381
382         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
383           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
384           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
385           src/regression/bool1.c, src/regression/bool2.c,
386           src/regression/bool3.c, src/regression/call1.c,
387           src/regression/compare.c, src/regression/compare10.c,
388           src/regression/compare2.c, src/regression/compare3.c,
389           src/regression/compare4.c, src/regression/compare5.c,
390           src/regression/compare6.c, src/regression/compare7.c,
391           src/regression/compare8.c, src/regression/compare9.c,
392           src/regression/configword.c, src/regression/for.c,
393           src/regression/inline.c, src/regression/mult1.c,
394           src/regression/nestfor.c, src/regression/or1.c,
395           src/regression/pointer1.c, src/regression/ptrfunc.c,
396           src/regression/rotate1.c, src/regression/rotate2.c,
397           src/regression/rotate3.c, src/regression/rotate4.c,
398           src/regression/rotate5.c, src/regression/rotate6.c,
399           src/regression/rotate7.c, src/regression/string1.c,
400           src/regression/struct1.c, src/regression/sub.c,
401           src/regression/sub2.c, src/regression/switch1.c,
402           src/regression/while.c, src/regression/xor.c,
403           src/regression/create_stc, src/regression/simulate,
404           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
405           regression tests
406         * src/regression/gpsim_assert.h: added
407
408 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
409
410         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
411         ((void (code *) (void)) 0) ();
412         * as/hc08/aslex.c,
413         * as/hc08/aslink.h,
414         * as/hc08/asm.h,
415         * as/hc08/asmain.c,
416         * as/hc08/lkdata.c,
417         * as/hc08/lklex.c,
418         * as/hc08/lkmain.c,
419         * as/mcs51/aslex.c,
420         * as/mcs51/aslink.h,
421         * as/mcs51/asm.h,
422         * as/mcs51/asmain.c,
423         * as/mcs51/lkdata.c,
424         * as/mcs51/lklex.c,
425         * as/mcs51/lkmain.c,
426         * as/z80/aslex.c,
427         * as/z80/asm.h,
428         * as/z80/asmain.c: fixed build on current cygwin:
429         replaced getline() by as_getline()
430
431 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
432
433         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
434         declarator in the symbol chain
435         * src/SDCCsymt.h,
436         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
437         parameter list for function pointers
438         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
439         * support/regression/tests/bug-716242.c: added
440
441 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
442
443         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
444         offset if possible
445         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
446
447 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
448
449         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
450         inifinitely recurseable, added static
451         * support/regression/tests/bug-1408066.c: added
452
453 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
454
455         * src/SDCCicode.h,
456         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
457         renamed, added possibility to create "postLoopLbl"-labels
458         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
459         newiTempLoopHeaderLabel
460         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
461         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
462         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
463         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
464         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
465         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
466         (basicInduction): fixed bug #136564, made static,
467         (loopInduction): changed parameter of basicInduction, made static,
468         (addPostLoopBlock): added
469         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
470         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
471         findLoopEndSeq
472         * support/regression/tests/bug-136564.c: added
473         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
474         --std-sdcc99 to LIBSDCCFLAGS
475
476 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
477
478         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
479         while loop
480         * support/regression/tests/bug-1406131.c: added
481
482 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
483
484         * src/SDCCast.c (decorateType): fix promotion of unary minus
485         * src/SDCCsymt.c (computeType): beautified
486         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
487         (valUnaryPM, valComplement): fix sign and promotion,
488         (valNot): ANSI: result type is int (SDCC: unsigned char)
489         * support/regression/tests/uminus.c: speedup by removing superflous
490         test case 'int'
491         * support/regression/tests/onebyte.c: added promotion and signedness
492         tests for unary minus
493         * support/regressions/tests/bug-477927.c: disable warning about
494         uninitialized variables
495         * support/regression/tests/not.c: added
496
497 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
498
499         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
500         * src/mcs51/gen.c (gen51Code): show final register usage after
501         fillGaps in asm with --i-code-in-asm
502         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
503         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
504         incUsed, rliveClear, adjustIChain): made static,
505         (setFromRange): excluded because it's unused,
506         (findPrevUseSym, markWholeLoop): added,
507         (findPrevUse): rewritten; fixes bug 895992; now a complete search
508         through all branches of predecessors enables sdcc to emit the warning
509         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
510         (rlivePoint): made static, added parameter emitWarnings which is only
511         true during the first run out of two,
512         (findRecursiveSucc, findRecursivePred): removed,
513         (computeLiveRanges): made static, added parameter emitWarnings,
514         (dumpIcRlive): added for debugging only
515         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
516         removed prototype of setFromRange()
517         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
518         in call of computeLiveRanges()
519         * support/regression/tests/bug-895992.c: added
520         * support/regression/tests/bug-971834.c: added
521         * support/valdiag/tests/bug-895992.c: added
522         * support/valdiag/tests/bug-971834.c: added
523
524 2005-12-18 Raphael Neider <rneider AT web.de>
525
526         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
527           (genUnpackBits): improved code for direct operands,
528           (genPackBits): improved code for literal assignment to bitfields
529             and for direct destination operands (no FSR indirection),
530             prevented redundant AND, fixes #1362800,
531           (AccLsh): added parameter to disable masking of the result
532         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
533           skip instructions with side-effects (like incfsz),
534           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
535         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
536         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
537           fixes #1375263
538
539 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
540
541         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
542         volatile variables as spill location
543
544 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
545
546         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
547         replacing literals
548         * support/regression/tests/bug-1376320.c: added
549
550 2005-12-08 Raphael Neider <rneider AT web.de>
551
552         * src/pic/device.c: renamed is_shared to pic14_is_shared
553         * src/pic/gen.c (genIfx): re-enabled handling of sbits
554         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
555           (is_valid_identifier): added for above workaround
556
557 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
558
559         * device/lib/Makefile.in: fixed to enable port-specific-objects
560         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
561           char, thanks Hubert Sack
562         * doc/sdccman.lyx: documented --xstack-loc,
563           elaborated a bit more on interrupts and pitfalls,
564           removed "setjmp/longjmp unsupported",
565           documented some unsupported C99 features
566         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
567         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
568           if, thanks Hubert Sack
569         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
570         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
571           make make_library
572         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
573           regression tests can report resource usage (rfe 700441)
574         * support/regression/collate-results.py: report resource usage
575         * support/regression/ports/ds390/spec.mk,
576         * support/regression/ports/hc08/spec.mk,
577         * support/regression/ports/mcs51/spec.mk,
578         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
579         * support/regression/ports/ds390/uCsim.cmd,
580         * support/regression/ports/hc08/uCsim.cmd,
581         * support/regression/ports/mcs51/uCsim.cmd,
582         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
583         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
584           library, use the default one
585         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
586           building the library
587
588 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
589
590         * config.dsp: added dependency on .version and configure_vc.awk
591         * device/include/setjmp.h: updated for --stack-auto and --xstack
592         * device/include/mcs51/at89c51snd1c.h: corrected line endings
593         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
594         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
595         * device/lib/libsdcc.lib: added _setjmp
596         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
597           (decorateType): fixed bug 1372851,
598           (optimizeGetHbit): fixed warning
599         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
600           array initialisation
601         * support/regression/tests/bug1057979.c: added test for bug 1358192
602         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
603
604 2005-12-03 Borut Razem <borut.razem AT siol.net>
605
606         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
607           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
608
609 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
610
611         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
612         createIval): implement symbol independant "flexible array member",
613         (createIvalCharPtr): implemented flexible array initialisation with a
614         string
615         * src/SDCCsymt.c (copyStruct): removed,
616         (getSize): fixed misleading comment,
617         (getAllocSize): removed, the additional allocation size is now in
618         sym->flexArrayLength,
619         (checkStructFlexArray): new, syntax checks for flexible array members,
620         (compStructSize): added syntax checks for "flexible array members"
621         (copyStruct): removed,
622         (copyLinkChain): removed inefficient fix for bug 770487
623         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
624         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
625         symbol->flexArrayLength
626         * src/SDCCerr.c,
627         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
628         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
629         * support/regression/tests/structflexarray.c: added
630         * support/valdiag/tests/structflexiblearray.c: added
631
632 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
633
634         * src/SDCCast.c (decorateType): fixed bug 1368489
635         * support/Util/SDCCerr.c,
636         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
637
638 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
639
640         * device/include/mcs51/at89c51snd1c.h: added file submitted by
641           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
642
643 2005-11-27 Borut Razem <borut.razem AT siol.net>
644
645         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
646           support/cpp2/mkdeps.h: added command line option
647           -obj-ext=<extension> to SDCPP to define object file externion, used
648           for generation of make dependencies (-M)
649         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
650
651 2005-11-26 Borut Razem <borut.razem AT siol.net>
652
653         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
654           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
655           added pic and pic16 libraries
656
657 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
658
659         * device/include/float.h: Corrected typo in prototype of __fsgt
660
661 2005-11-25 Borut Razem <borut.razem AT siol.net>
662
663         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
664           added creation of model-mcs51-stack-auto libraries
665
666 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
667
668         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
669         and fields-list too
670         * src/SDCCast.c (createIvalArray): removed obsolete comment
671
672 2005-11-24 Borut Razem <borut.razem AT siol.net>
673
674         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
675           added missing device/lib/mcs51/crt*.asm sources
676
677 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
678
679         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
680
681 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
682
683         * device/lib/_fs2schar.c,
684         * device/lib/_fs2sint.c,
685         * device/lib/_fs2slong.c: optimized inline asm
686
687 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
688
689         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
690           Better handling of floats between -1.0 and 0.0.
691
692 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
693
694         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
695           (the missing "if"s prohibited removal of redundant labels)
696
697 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
698
699         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
700           Properly convert floats between -1.0 and 0.0 to long, int, and char
701           types (max integer value of negative floats tends to zero).
702         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
703           Removed changes made so to work properly with floats between
704           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
705           and _fs2char.c
706
707 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
708
709         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
710         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
711         (genCast) cosmetic change
712         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
713         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
714         from mcs51
715         * support/regression/tests/bitfields (testSignedBitfields): added
716
717 2005-11-18 Borut Razem <borut.razem AT siol.net>
718
719         * sdcc/device/lib/Makefile.in: remove all unnecessary files
720         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
721           introduced SILENT option to make building of pic16 libraries less
722
723 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
724
725         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
726           Now they work properly with floats between -1.0 and 0.0
727         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
728
729 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
730
731         * src/SDCCicode.c (printOperand): added missing else
732
733 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
734
735         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
736         reformatted for better readability
737         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
738         signed bitfields
739
740 2005-11-17 Borut Razem <borut.razem AT siol.net>
741
742         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
743           introduced SILENT option to make building of pic16 libraries less
744           verbose - used for nightly snapshot build
745         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
746           available on Win32 platforms.
747         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
748           medium, large, pic and pic16
749
750 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
751
752         * device/lib/printf_large.c: Temporary patch for bug 1358192:
753           printf("%f"...) sets fraction to zero.
754
755 2005-11-16 Raphael Neider <rneider AT web.de>
756
757         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
758           fixes #1357221
759         * src/pic/gen.c (genIfx): implemented for CARRY bit
760         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
761           to generic pointers, fixes #1357332,
762           (pic16_movLit2f): NEW,
763           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
764
765 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
766
767         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
768
769 2005-11-11 Raphael Neider <rneider AT web.de>
770
771         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
772         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
773           compute pointer's type from operand,
774           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
775           improved single bit reads, fixes bug #1353379
776
777 2005-11-09 Borut Razem <borut.razem AT siol.net>
778
779         * support/scripts/sdcc.nsi: added lib/pic to the package
780
781 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
782
783         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
784
785 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
786
787         * support/regression/tests/bug1348008.c: added
788         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
789         * support/regression/tests/bug1337835.c: updated comment
790
791 2005-11-06 Borut Razem <borut.razem AT siol.net>
792
793         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
794           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
795           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
796           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
797           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
798           dynamic construction of cl_error_class and derivates - 2.nd try
799
800 2005-11-05 Borut Razem <borut.razem AT siol.net>
801
802         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
803           bug, which caused Bus Errors on sparc solaris
804
805 2005-11-04 Borut Razem <borut.razem AT siol.net>
806
807         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
808           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
809           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
810           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
811           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
812           and derivates to resolve the initialization problem on OSX
813
814 2005-11-02 Borut Razem <borut.razem AT siol.net>
815
816         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
817           corrected typo - #include <winsock2.h>
818
819 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
820
821         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
822           (_asxxxx_mapping): added org directive for future enhancements
823
824 2005-11-01 Borut Razem <borut.razem AT siol.net>
825
826         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
827           enabled sockets on WIN32
828         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
829
830 2005-10-31 Borut Razem <borut.razem AT siol.net>
831
832         * support/regression/generate-cases.py: escape backslashes in {testcase}:
833           WIN32 backslash path delimiters should be escaped when used in C strings
834         * support/regression/tests/bitfields.c: exclude failing assertions for
835           __CYGWIN32__ and __MINGW32__ hosts
836
837 2005-10-30 Borut Razem <borut.razem AT siol.net>
838
839         * src/SDCCutil.c: corrected double comparison typo
840
841 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
842
843         * device/lib/medium/Makefile: added for new memory model medium
844         * device/include/asm/mcs51/features.h: updated for medium/pdata
845         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
846           added Multiply & Accumulate sbit's and MAC0_PAGE define
847         * device/include/mcs51/c8051f300.h: added sfr16 definitions
848         * device/include/mcs51/c8051f310.h: added sfr16 definitions
849         * device/lib/_mullong.c: update for medium model
850         * device/lib/incl.mk: added medium model
851         * doc/sdccman.lyx: documented medium model
852         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
853         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
854         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
855         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
856           (allocParms): set SCLS and OCLS to pdata for medium model
857         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
858           for pdata,
859           (powof2): return <0 if not power of 2
860         * src/avr/gen.c (genBitWise): use updated powof2
861         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
862           (shiftR2Left2Result): small optimization in setup, save acc when storing,
863           (shiftLLeftOrResult): use B if necessary
864         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
865         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
866         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
867         * support/regression/Makefile.in: added test-mcs51-medium
868         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
869
870 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
871
872         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
873         specifier unsigned
874         * device/lib/time.c (mktime): fixed bug 1334315
875
876 2005-10-28 Raphael Neider <rneider AT web.de>
877
878         * device/include/pic/p16f_common.inc: added common declarations
879         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
880
881 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
882
883         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
884           (aopPutUsesAcc): added to predict accumulator use,
885           (assignResultValue): save acc if necessary,
886           (genMinusDec): store result if indirectly addressed,
887           (genDivOneByte):  save acc if necessary,
888           (movLeft2Result): bugfix if left already in acc,
889           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
890             attention to accumulator use (esp. pdata),
891           (genReceive): receive pdata correctly
892         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
893         * src/SDCCicode.h: added isOperandInPagedSpace prototype
894
895 2005-10-27 Raphael Neider <rneider AT web.de>
896
897         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
898
899 2005-10-27 Raphael Neider <rneider AT web.de>
900
901         * .version: changed version to 2.5.4
902         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
903         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
904           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
905             arithmetics support routines
906         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
907         * device/lib/Makefile.in: also create installdir for pic
908
909         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
910           pic14 port as well
911         * src/pic/device.c (dump_sfr): rewritten to delegate register
912           placement to the linker (use `extern sym' rather than sym EQU addr),
913           (validAddress): fixed to check last specified address
914         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
915           (popGetLit): truncate literal value to 8 bit,
916           (popGet): moved assert to more appropriate place
917           (popGetExternal): create pCode operand from and mark the according
918             symbol as being `extern'
919           (popGetAddr): added sanity check on immediate's offset, provide
920             GPOINTER tag on demand
921           (aopPut): fixed for immediates,
922           (mov2w_op): move operand's address or contents to WREG (depending on
923             operand type), safer variant of mov2w,
924           (movwf,call_libraryfunc): NEW, handy abbreviations,
925           (get_argument_pcop,get_return_val_pcop,pass_argument,
926           get_returnvalue): interface for accessing function parameters and
927             return values,
928           (assignResultValuei,genRet): use new parameter/return value interface
929           (pic14_getDataSize): back to old version handling generic pointers,
930           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
931             provided implementation and/or fixed old one,
932           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
933             calls, removed legacy 8051 reference code
934           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
935           (loadSignToC): NEW, move the operands sign bit to CARRY,
936           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
937             genRightShiftSigned, accepts negative shift counts,
938           (setup_fsr): load FSR and adjust IRP (indirect memory access),
939           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
940             generic pointers, __data pointers and __code pointers,
941           (genUnpackBits,genPackBits): rewritten to work with generic pointers
942             and signed bitfields, limit bitfields to 8 bit,
943           (genDataPointerGet): fixed number of bytes read,
944           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
945           (genPointerGet,genPointerSet): fixed handling of __code pointers,
946             pointers to constant data are no longer assumed to point to __code
947             space, removed invalid pointer types,
948           (bitpatternFromVal): retrieve the PICs representation of an integer
949             or float literal,
950           (genDataPointerSet): fixed assigning to po_immediate operands,
951           (genGenPointerSet): implemented as library call,
952           (genIfx): fixed incorrect condition,
953           (genAddrOf): limit generic pointers' addresses to 2 bytes,
954             provide GPOINTER tag according to destination's storage class,
955           (genCast): added code to handle casting to generic pointers, added
956             sign-/zero extension of the result
957           (aop_isLitLike,op_isLitLike): fixed handling of immediates
958         * src/pic/gen.h: added macros to access IRP bit in STATUS register
959         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
960           extend the result
961         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
962           address/register resides in the shared banks
963           (emitSymbolToFile): improved to handle global and `pinned' symbols,
964             put all variables into separate sections (have the linker arrange
965             them)
966           (picglue): put init code and interrupt handlers in separate sections
967         * src/pic/main.c: added port specific options table, modified to PORT
968           structure to make GPOINTERs 3 byte, added pic14_options
969           (_pic14_do_link): private linking routine (update paths to libraries,
970             add libsdcc.lib by default)
971         * src/pic/main.h: declare pic14_options
972         * src/pic/pcode.c: fixed instructions i/o relations,
973           (RegCond): reverted to correct version,
974           (newpCodeOpLit): truncate literals to 8 bit,
975           (genericPrint): added debug output,
976           (getRegFromInstruction): fixed for various operand types, simplified
977           (BuildFlow): fixed broken handling of isntructions with labels
978           (LinkFlow): start at last instruction in flow (skip trailing comments),
979             pass the flow on to the next instruction after CALL
980           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
981           (insertPCodeInstruction): fixed inserting after a skip instruction,
982           (DoBankSelect): fixed for labeled instructions
983           (OptimizepBlock): honor --nopeep switch
984           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
985         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
986         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
987           (pCodeOptime2pCodes): allow disabling this optimization via
988             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
989             but is still buggy), started implementation of a dataflow based
990             pCode optimization (CSE + dead code elimination)
991           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
992         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
993           names are independant of the stack location and therefore portable across
994           devices
995
996 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
997
998         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
999           (selectSpil): fixed bug 1337835 by not spilling bit variables
1000         * support/regression/tests/bug1337835.c: added test for this bug
1001         * src/mcs51/peeph.def: restart after rule 3.c,
1002           addded rules 263.x to optimize loading constants
1003
1004 2005-10-26 Raphael Neider <rneider AT web.de>
1005
1006         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1007         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1008           (genAssign): emit warning when casting literals to generic pointer
1009             type, also applies when taking the address of a fixed variable,
1010           (genCast): improved casting to generic pointers
1011         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1012           extern variables, added verbose error message
1013         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1014
1015 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1016
1017         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1018         carry must be complemented too
1019         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1020         could be emitted by genMinus
1021         * src/SDCCval.c (constVal): fixed bug 1305065
1022
1023 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1024
1025         * src/SDCCast.c (addCast): added promotion for bit variables
1026         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1027         promotion casts + optimisation
1028         (optimizeGetWord): fix warning 'i' might be used uninitialized
1029         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1030         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1031
1032 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1033
1034         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1035         all chars are promoted to int; promotion should be handled in SDCCast.c
1036
1037 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1038
1039         * device/lib/_strcmp.c: Fixed bug 1326457
1040
1041 2005-10-11 Raphael Neider <rneider AT web.de>
1042
1043         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1044         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1045
1046 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1047
1048         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1049         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1050
1051 2005-10-04 Raphael Neider <rneider AT web.de>
1052
1053         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1054           device/lib/pic16/pics.all: added pic18f1320
1055         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1056
1057 2005-09-30 Raphael Neider <rneider AT web.de>
1058
1059         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1060         * src/pic16/devices.inc: NEW, provides device descriptions
1061         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1062
1063 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1064
1065         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1066           GETHBIT
1067
1068 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1069
1070         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1071           documented Any Order Bit, Higher Order Byte and Higher Order Word
1072         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1073         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1074           (optimizeGetAbit): new, to get any bit, not only the high bit,
1075           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1076           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1077           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1078           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1079             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1080             GETABIT, GETBYTE, GETWORD: decorate them,
1081           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1082           (ast_print): added GETABIT, GETBYTE, GETWORD
1083         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1084         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1085           (geniCodeBinary): new generic binary icode,
1086           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1087         * src/port.h: updated comment for PORT.hasExtBitOp
1088         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1089           (genGetByte): new, to get a single byte,
1090           (genGetWord): new, to get a word from a long,
1091           (gen51Code): added GETABIT, GETBYTE, GETWORD
1092         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1093
1094 2005-09-23 Raphael Neider <rneider AT web.de>
1095
1096         * configure.in, configure: have device/lib/pic configured
1097         * device/lib/Makefile.in: added model-pic14
1098         * device/lib/clean.mk: added pic/ to clean rule
1099         * device/lib/pic: added rudimentary pic14 library providing support
1100           functions for multiplication/division/generic pointer access
1101         * src/SDCCopt.c (convilong): mark support functions as extern
1102           for pic14 port as well
1103         * src/pic/gen.c (genMult): added assertions,
1104           (genpic14Code): emit warning on unhandled iCodes
1105         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1106         * src/pic/pcode.c (pCodeOpCopy),
1107         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1108           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1109           SFR_REGISTER}), made safe for future extensions
1110         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1111           instructions even if preceeded by SKIP instructions (also remove
1112           them); removed unused code
1113         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1114           prevents leaving parts of the structure uninitialized after copying
1115
1116 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1117
1118         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1119           ago by me
1120         * support/regression/tests/addsub.c: added test for the bug
1121
1122 2005-09-21 Raphael Neider <rneider AT web.de>
1123
1124         * device/include/pic16/pic18f1220.h,
1125           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1126         * device/lib/pic16/Makefile.rules: added missing opening paren
1127         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1128           are provided in genutils.c,
1129           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1130           operand/result sizes,
1131           (genCmp): assert on NULL pointers first, then check deref'ed values
1132         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1133           result size
1134
1135 2005-09-18 Raphael Neider <rneider AT web.de>
1136
1137         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1138           as these are now unused,
1139           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1140         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1141           local, avoids uninitialized pointer dereference on r->name
1142         * src/pic16/ralloc.c (newReg): fixed indentation
1143
1144 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1145
1146         * src/SDCCval.c (constVal): fixed bug 730366
1147         * support/Util/SDCCerr.c,
1148         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1149
1150 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1151
1152         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1153
1154 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1155
1156         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1157
1158 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1159
1160         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1161           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1162         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1163           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1164         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1165         * packihx/packihx.c (hexDigit): made c unsigned char
1166         * as/mcs51/lklibr.c (fndsym),
1167         * link/z80/lkgb.c (gb),
1168         * link/z80/lklibr.c (fndsym),
1169         * link/z80/lkrloc.c (relr),
1170         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1171         * src/SDCC.lex (checkCurrFile, process_pragma),
1172         * src/SDCCglue.c (spacesToUnderscores),
1173         * src/SDCCmain.c (setParseWithComma, processFile),
1174         * src/asm.c (tvsprintf, printCLine),
1175         * src/avr/gen.c (emitcode, aopPut),
1176         * src/ds390/gen.c (emitcode),
1177         * src/hc08/gen.c (emitcode, emitinline),
1178         * src/mcs51/gen.c (emitcode, genInline),
1179         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1180           tokenizeLineNode),
1181         * src/pic/ralloc.c (debugLog),
1182         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1183           tokenizeLineNode),
1184         * src/pic16/ralloc.c (debugLog),
1185         * src/z80/main.c (_process_pragma):
1186            made all ctype.h function calls safe
1187         * src/SDCCopt.c: include math.h for fabs
1188         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1189           and used them throughout the code to make ctype.h function calls safe
1190         * src/ds390/main.c (asmLineNodeFromLineNode),
1191         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1192         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1193            unsigned char*
1194         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1195           (newpCodeAsmDir): made ctype.h function calls safe
1196         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1197           pic16_emitcode):  made lbp unsigned char*
1198         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1199           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1200         * src/xa51/gen.c (emitcode),
1201         * src/z80/gen.c (_emit2): made lbp unsigned char*
1202         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1203            char*
1204
1205 2005-09-05 Raphael Neider <rneider AT web.de>
1206
1207         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1208           access bank splitpoint
1209
1210 2005-09-05 Raphael Neider <rneider AT web.de>
1211
1212         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1213
1214 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1215
1216         * .version: changed to version 2.5.3
1217         * doc/sdccman.lyx: changed version to 2.5.3,
1218           documented --codeseg and --constseg and pragma codeseg and constseg,
1219           documented bit parameters (reentrant) and bit returning
1220         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1221            currFunc->recvSize, but is this ok for all ports?
1222           (ast2iCode): result of ~ on unsigned char must be cast to int for
1223            bool to work
1224         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1225           function pointers in bit space
1226         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1227           (processFuncArgs): call port.reg_parm() with reentrancy info
1228         * src/port.h,
1229         * src/avr/main.c,
1230         * src/ds390/main.c,
1231         * src/hc08/main.c,
1232         * src/pic/main.c,
1233         * src/pic16/main.c,
1234         * src/xa51/main.c,
1235         * src/z80/main.c: port.reg_parm prototype extended with
1236           "bool reentrant" parameter
1237         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1238           options.stackAuto for allocating bit register parameters
1239         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1240           (genSend): set BitBankUsed if it is,
1241           (selectRegBank): factored out of genCall for use in genPcall,
1242           (genCall): removed redundant dtype assignmen, use selectRegBank,
1243           (genPcall): handle returning in Carry properly, save in F0 if needed,
1244           (genReceive): handle bit register parameters
1245         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1246           (mcs51_assignRegisters): enable bit registers for all reentrant
1247            functions and don't set BitBankUsed unconditionally
1248         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1249         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1250         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1251
1252 2005-08-27 Borut Razem <borut.razem AT siol.net>
1253
1254         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1255         ppc-osx (Darwin) does not support -u option. It seems that it is
1256         supported only on Linux - GNU cp
1257
1258 2005-08-25 Borut Razem <borut.razem AT siol.net>
1259
1260         * sim/ucsim/gui.src/serio.src/Makefile.in,
1261           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1262           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1263           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1264           install and strip, since the strip at /usr/ccs/bin should be used
1265           on solaris
1266
1267 2005-08-24 Borut Razem <borut.razem AT siol.net>
1268
1269         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1270
1271 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1272
1273         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1274         ffffffffu
1275
1276 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1277
1278         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1279         * as/mcs51/lkmain.c (link_main): fixed warning
1280         * device/include/stdbool.h: ds390 has no advanced bit support yet
1281         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1282         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1283         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1284           and updated their macros
1285         * src/SDCCval.c (constVal): updated comment for renamed b_long
1286
1287 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1288
1289         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1290         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1291           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1292           (oprio): set priority for '['
1293         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1294            and adb_24_bit
1295         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1296         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1297         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1298         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1299           added overlayable BIT_BANK area
1300         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1301           (summary2): explain 'T' in legenda
1302         * as/mcs51/lkrloc.c: replaced old K&R style,
1303           (relr): added R_BIT processing,
1304           (errmsg): added "Bit-addressable relocation error",
1305           (adb_bit): added for converting from byte- to bit-addressable space,
1306           (adb_24_bit): added for converting from byte- to bit-addressable space
1307         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1308            used in reentrant functions now even as return value
1309         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1310         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1311           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1312         * src/SDCCglobl.h: added indicator BitBankUsed
1313         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1314            the bit registers b0-b7
1315         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1316           (geniCodeCast): fixed bug 1263853,
1317           (geniCodeLogicAndOr): put result in bool or char,
1318           (geniCodeReceive): added parameter func for accessing the return type,
1319           (geniCodeFunctionBody): pass func to geniCodeReceive
1320         * src/SDCCmain.c: added indicator BitBankUsed
1321         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1322         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1323           (checkSClass): don't put automatic bool/bit on stack,
1324           (checkFunction): removed check on function cannot return bit
1325         * src/SDCCsymt.h: added newBoolLink prototype
1326         * src/mcs51/gen.c (rb1regs): added bit registers,
1327           (movc): created for assigning to carry,
1328           (pushReg, popReg): created for pushing registers,
1329           (sameRegs): check both AOP_REG and AOP_CRY types,
1330           (aopOp): handle bit registers,
1331           (aopPut): optimization no self-assign,
1332           (saveRegisters): push reg->base (bits) only once for bit registers,
1333            and use pushReg,
1334           (unsaveRegisters): pop reg->base only once and use popReg,
1335           (assignResultValue): added parameter func and return in carry for bits,
1336           (genIpush): optimization no reload in A if not changed,
1337           (genSend): bit parameters in reentrant functions are passed in bit
1338            registers by first assigning to bits in B, then save registers and
1339            copy B to bits,
1340           (genCall): handle returning in Carry properly, save it in F0 if needed,
1341           (genPcall): updated assignResultValue call, this is not safe yet for bit
1342            returning function !!!
1343           (genFunction): don't generate equ's for bit registers and use pushReg,
1344           (genEndFunction): take care of bit returning functions and use popReg,
1345           (genRet): return bit in Carry,
1346           (genIfx): optimize bit registers and other directly addressable bits,
1347           (genReceive): updated assignResultValue call
1348         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1349           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1350            registers when using stack-auto
1351         * src/mcs51/ralloc.c (_G): added allBitregs,
1352           (regs8051): added the bit registers,
1353           (createStackSpil): use macro IS_BIT,
1354           (getRegBit): added to allocate a bit register, else spill,
1355           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1356           (updateRegUsage): factored out to ease stepping while debugging,
1357           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1358            also allocate bit registers,
1359           (fillGaps): handle bit registers,
1360           (findAllBitregs): added to create bit vector with all bit registers,
1361           (mcs51_allBitregs): returns this bit vector,
1362           (mcs51_assignRegisters): when using stack-auto use bit registers for
1363            passing parameters and creating local variables
1364         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1365
1366 2005-08-22 Borut Razem <borut.razem AT siol.net>
1367
1368         * device/lib/Makefile.in: replaced find option -or with -o
1369           to make it run on solaris
1370
1371 2005-08-22 Raphael Neider <rneider AT web.de>
1372
1373         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1374           fixes #1265442 (crash on Solaris)
1375
1376 2005-08-20 Borut Razem <borut.razem AT siol.net>
1377
1378         * configure, configure.in: added tests for libsocket and libnsl libraries,
1379           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1380           from support/regression/Makefile.in
1381         * support/regression/Makefile.in: added
1382         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1383         * sim/ucsim/libtool: regenerated on sparc-solaris
1384         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1385           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1386           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1387           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1388           sparc-solaris, which doesn't use GNU ld linker
1389         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1390         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1391
1392 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1393
1394         * src/mcs51/peeph.def: updated comments
1395
1396 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1397
1398         * device/lib/_gptrget.c,
1399         * device/lib/_gptrput.c: slightly shorter
1400         * doc/sdccman.lyx: incremented version
1401         * src/mcs51/peeph.def: moved peephole comments to the line of first
1402           change to better keep line correlation, reanimated 186.e
1403         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1404
1405 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1406
1407         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1408           David Saxton with quotes around file name.
1409
1410 2005-08-15 Borut Razem <borut.razem AT siol.net>
1411
1412         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1413           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1414           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1415           make tests run on x86_64 platform
1416
1417 2005-08-13 Raphael Neider <rneider AT web.de>
1418
1419         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1420           as it might be executed DURING a build (parallel make is wonderful)
1421
1422 2005-08-13 Raphael Neider <rneider AT web.de>
1423
1424         * device/lib/Makefile.in (port-specific-objects-pic16):
1425           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1426         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1427           dependency
1428         * device/lib/pic16/Makefile.rules: build subdirs before creating
1429           the library, removed builddir rule, create $(builddir) early in
1430           recurse rule, use empty recurse rule for leaf directories
1431         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1432           mkdir errors (race condition), removed duplicate suffix "hex"
1433           from clean rules
1434         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1435         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1436           prevents mkdir -p from aborting on Alpha
1437
1438 2005-08-12 Raphael Neider <rneider AT web.de>
1439
1440         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1441           db-statements in order to allow for arrays of pointers in code
1442           sections to be placed without interspersed 0-padding, fixes
1443           bug #1256215
1444         * (emitStatistics): fixed division by zero for pic18f1220
1445         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1446           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1447         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1448         * (pic16_pCodeConstString): keep track of already emitted string
1449           literals to prevent "duplicate definitions of symbol _str_NR"
1450         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1451           debug message
1452         * device/lib/Makefile.in: ignore failing PIC16 library builds
1453         * device/lib/pic16/Makefile: do not build if gputils are missing
1454         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1455
1456 2005-08-10 Raphael Neider <rneider AT web.de>
1457
1458         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1459           my last commit)
1460
1461 2005-08-10 Raphael Neider <rneider AT web.de>
1462
1463         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1464           Rokas' patch to add the new fixed point type "__fixed16x16"
1465         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1466           functions for __fixed16x16 arithmetics
1467         * device/lib/pic16: reimplemented the build system to support
1468           a separate build directory, better handling of libio (create
1469           the library in a separate subdir for each architecture) and
1470           easier configuration (centralized in Makefile.common)
1471
1472 2005-08-07 Raphael Neider <rneider AT web.de>
1473
1474         * src/pic16/gen.c (genrshTwo): fixed sign extension
1475         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1476         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1477           added T0CONbits
1478         * device/include/pic16/pic18f4220.h: NEW, header for
1479           pic18f4220 and pic18f4320
1480         * device/include/pic16/pic18fregs.h: added new devices,
1481           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1482         * device/include/pic16/signal.h: resolved name clashes
1483           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1484           to also allow testing for interrupt enable bits, added
1485           comments on how to use the macros
1486         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1487         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1488           register definitions for the devices
1489         * device/lib/pic16/pics.all: added new devices
1490         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1491           allocated memory
1492         * device/lib/pic16/libc/stdlib/memfree: do not count
1493           the block header as free memory
1494         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1495           simplified and added missing end-of-blocklist-marker
1496           (reported by Peter Onion, fixes #1252814)
1497         * (_mergeHeapBlock): fixed loop condition
1498         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1499           len==0, restructured code
1500         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1501           up a bit, reduced bitfield accesses, prevent endless loops
1502           in case of heap corruption
1503         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1504           "unreferenced arguments/must return a value" warnings
1505         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1506           replaced BAUDREG with SPBRG
1507         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1508           device/lib/pic16/debug/gstack/gstack.c: replaced
1509           _naked, _asm, _endasm with __naked, __asm, __endasm
1510
1511 2005-08-05 Raphael Neider <rneider AT web.de>
1512
1513         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1514           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1515
1516 2005-08-05 Borut Razem <borut.razem AT siol.net>
1517
1518         * device/lib/Makefile.in: added missing ';'
1519         * configure: removed ^M characters
1520
1521 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1522
1523         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1524           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1525           License
1526
1527 2005-08-04 Borut Razem <borut.razem AT siol.net>
1528
1529         * configure.in: pic16 libraries build 2nd try - enable running
1530           configure in device/lib/pic16
1531         * configure: regenerated from configure.in
1532         * device/lib/Makefile.in: create $(PORT)/bin directory
1533
1534 2005-08-03 Raphael Neider <rneider AT web.de>
1535
1536         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1537           to get/set values via pointers
1538         * (genUnpackBits,genPackBits): changed detection of
1539           ptr->bitfield vs. sym.bitfield, fixed access via generic
1540           pointers, removed dead (wrong) code for multibyte bitfields
1541         * (genNearPointerGet, genGenPointerGet): removed useless code,
1542           fixed bitfield detection, fixes #1250594
1543         * (genNearPointerSet): removed useless code
1544         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1545           and introduced macro pic16_emitpcode that conditionally emits
1546           the origin of the following pCode (useful for debugging SDCC)
1547         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1548         * (createDefmap): fixed handling of LFSR for --optimize-df
1549
1550 2005-08-02 Borut Razem <borut.razem AT siol.net>
1551
1552         * device/lib/Makefile.in: pic16 libraries build enabled since
1553           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1554
1555 2005-08-02 Raphael Neider <rneider AT web.de>
1556
1557         * src/pic16/gen.c (genPackBits): removed deprecated warning
1558         * (genGenPointerSet): fixed bitfield detection
1559
1560 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1561
1562         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1563
1564 2005-07-31 Raphael Neider <rneider AT web.de>
1565
1566         * device/lib/pic16/libdev/pic18f458.c,
1567           device/include/pic16/pic18f458.h: added missing T0CONbits
1568
1569 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1570
1571         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1572
1573 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1574
1575         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1576
1577 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1578
1579         * device/include/mcs51/at89c51ed2.h: added.
1580
1581 2005-07-23 Raphael Neider <rneider AT web.de>
1582
1583         * src/pic/gen.h: added emitpcode macro for debugging
1584         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1585           and replace by macro adding debug information on demand
1586         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1587         * (gencjne): tried to fix; replaced with correct (slower) code
1588         * (gen{Unp,P}ackBits): fixed single bit access
1589         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1590         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1591           previous instruction
1592         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1593           register has to be handled with care (forbidding movement
1594           of assignments/uses, removing assignments completely, ...)
1595         * (pCodeOptime2pCodes): make use of regIsSpecial
1596         * added lots of debugging output (commented out)
1597         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1598           from being reused as result UNLESS it is known to work
1599
1600 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1601
1602         * support/Util/dbuf.h: include <stddef.h> for size_t
1603         * .version: changed to version 2.5.2
1604
1605 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1606
1607         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1608
1609 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1610
1611         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1612           (genModOneByte): removed needless psha/pula
1613
1614 2005-07-22 Raphael Neider <rneider AT web.de>
1615
1616         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1617           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1618         * src/pic/gen.c (resolveIfx): do not "invent" labels
1619         * (genSkipc): changed to positive logic
1620         * (genSkipCond): removed as no longer needed
1621         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1622           backport from PIC16
1623         * (genLeftShift): check operands are in different registers
1624         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1625           INCF does not update CARRY...
1626         * src/pic/main.c: fixed _linkCmd
1627         * src/pic/pcode.c (unlinkpCode): added inactive code
1628         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1629           alive (do not assign result and operand overlapping registers)
1630
1631 2005-07-22 Raphael Neider <rneider AT web.de>
1632
1633         * src/pic/device.c (dump_sfr): replaced register declaration with
1634           call to emitSymbolToFile() to avoid duplicate symbols
1635         * (assignRelocatableRegisters): do not declare external symbols
1636         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1637           right (take size of type, not etype)
1638         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1639         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1640         * (packRegsForAccUse): disabled assignment of WREG as
1641           the result reg to prevent occurence of just fixed #1235003,
1642           fixes #1242954
1643         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1644           symbols (avoids duplicate symbols in .asm file)
1645         * (pic14emitRegularMap): use emitSymbolToFile()
1646         * src/pic/gen.c (aopOp): fixed spillLocation handling
1647         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1648         * (genDataPointerSet): removed unneccessary variables/output
1649
1650 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1651
1652         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1653         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1654
1655 2005-07-21 Raphael Neider <rneider AT web.de>
1656
1657         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1658           architecture cannot handle them efficiently, fixes bug #1235003
1659         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1660           check for empty sets before using them (fixes bug #1232190)
1661
1662 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1663
1664         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1665           (lnksect2): generate warnings for memory overlap
1666         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1667           constseg to set the name of these segments so you can instruct the linker
1668           to place them in banks
1669         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1670         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1671           added code_seg and const_seg to options
1672         * src/SDCCglue.c (emitMaps): use options.const_seg,
1673           (createInterruptVect): put interrupt vectors in segment HOME,
1674           (glue): put HOME before static segment and put the main glue in HOME,
1675           (glue): use options.code_seg
1676         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1677         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1678           these segments so you can instruct the linker to place them in banks
1679           (linkEdit): use code_loc for HOME segment which should be the first
1680           segment in code memory now
1681         * src/SDCCmem.c: fixed more stuff like bug 1238386
1682         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1683           (changePointer): don't change function pointers to code pointers for
1684           banked functions,
1685           (compareType): added exceptional check for banked function pointers
1686         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1687         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1688           after static in code memory
1689         * src/mcs51/gen.c: added aopLiteralLong prototype,
1690           (aopForSym): use getSize for functions,
1691           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1692           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1693           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1694           the segment,
1695           (genPcall): use call for literal function pointers and generate banked
1696           calls over the one trampoline so there's only one place for the user to
1697           modify according to his/hers hardware,
1698           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1699           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1700         * src/mcs51/main.c: added keyword banked,
1701           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1702         * support/Util/SDCCerr.c,
1703         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1704           needed for passing the bank and address to the trampoline
1705         * device/lib/mcs51/crtbank.asm: added for bankswitching
1706         * device/lib/mcs51/Makefile: added crtbank
1707
1708 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1709
1710         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1711           for fields at offset 0 of a struct or union as reported
1712           on 2005-07-07 in the developer mailing list.
1713
1714 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1715
1716         * src/SDCCmem.c: fixed bug 1238386
1717
1718 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1719
1720         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1721           (patch #1144962), added peephole 300, enabled 259.x
1722         * doc/sdccman.lyx: removed screenshot and provided link instead
1723
1724 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1725
1726         * doc/sdccman.lyx: added section about debugging with ddd
1727         * doc/figures/ddd_example.eps: screenshot of debugging session
1728
1729 2005-07-04 Raphael Neider <rneider AT web.de>
1730
1731         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1732           like CODE pointers, fixes #1115683
1733         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1734           call, fixes bugs #1232211, #1228110,
1735           fixed wrong casts to pCodeFlow from pCodeInstructions
1736
1737 2005-07-04 Raphael Neider <rneider AT web.de>
1738
1739         * src/pic/gen.c (popGet): changed assert to allow for
1740           bit operands
1741         * (popGetAddr): changed signature to provide
1742           an additional index, patched all call sites
1743         * (genCmpEq): handle literal-like operands correctly
1744         * (genAddrOf): added sanity checks on __code/__data pointers
1745         * (genAssign): added handling of symbols from __code section
1746         * (gencjne): do not generate code for comparisons whose result
1747           is neither stored nor used, fixes bug #1171114
1748         * (AccLsh, AccRsh): operate on operand instead of WREG
1749         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1750           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1751           by known count
1752         * rewrote complete shift-by-literal logic, commented unused
1753           functions out
1754         * (genConstPointerGet): get multiple bytes (if result size > 1),
1755           fixed handling of non-immediate addresses
1756         * (genPointerGet): handle CODE pointers like CONST pointers
1757         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1758         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1759           operand is to be treated as a literal or not
1760         * (mov2w,genPcall,genCmpEq),
1761           src/pic/genarith.c: use aop_isLitLike() to decide between
1762           literal/register contents
1763         * (addSign): added missing offset
1764         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1765           only emit comment in debug-mode,
1766           use {aop,op}_isLitLike throughout the file
1767         * src/pic/glue.c: fix initializers for pointers (work in progress)
1768         * src/pic/pcode.c (get_op): honor index on _const symbols
1769         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1770         * (dumppBlock): added pCode size estimation
1771         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1772           check for IS_SYMOP before OP_SYMBOL'ing
1773         * fixed indentation, compacted switch-statements
1774         * (allocReg): find free register and allocate it instead of
1775           allocating new registers all the time
1776         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1777           registers as its operands (necessary only for multibyte GETs)
1778
1779 2005-07-01 Raphael Neider <rneider AT web.de>
1780
1781         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1782           debugging .asm-output macros FENTRY + FEXIT
1783         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1784           way... I wonder...
1785         * (emitpComment): NEW, printf to pCode
1786         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1787           offset handling
1788         * (popGetAddr): NEW, variant of popGet to access an immediates
1789           high(er) bytes instead of the n'th byte of memory they reference,
1790           replaced popGet with popGetAddr where neccessary
1791         * (genDataPointerGet): reactivated and fixed implementation
1792         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1793           accesses
1794         * (genDataPointerSet): fixed multibyte assignments
1795         * (genpic14Code): fixed --i-code-in-asm handling
1796         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1797         * (genPlus): fixed index-out-of-bounds error
1798         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1799         * src/pic/ralloc.c: added debugging output macro FENTRY2
1800         * (spillThis): fixed indentation, enbraced for-body for clarity
1801         * (rematStr): commented out as now unused
1802         * (regTypeNum): commented out special spill case (overwrites
1803           arbitrary values)
1804         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1805
1806 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1807
1808         * doc/sdccman.lyx: documented sfr16/sfr32,
1809           added example for using storage class with function pointers
1810         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1811
1812 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1813
1814         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1815         * device/lib/_itoa.c,
1816         * device/lib/_ltoa.c: optimized codesize
1817         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1818           but don't know how to suppress the double warning.
1819         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1820         * support/Util/SDCCerr.c,
1821         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1822
1823 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1824
1825         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1826           fixed old K&R prototypes
1827         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1828         * device/lib/_gptrget.c,
1829         * device/lib/_gptrgetc.c,
1830         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1831           also new versions for small generic pointers and banked generic pointers
1832         * src/port.h: added const_name
1833         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1834         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1835         * src/SDCCcse.c (findPrevIc): check all associative operators
1836         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1837         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1838         * src/SDCCmem.c: updated comments,
1839           set far-space to 0 for pdata, results in optimized code
1840         * src/SDCCmem.h: added macro CONST_NAME
1841         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1842           moving the info into the highest bits, see also gptrget/gptrput
1843         * src/src.dsp: added sdcc.ico to project files
1844         * src/avr/gen.c (genCast): fixed bug 0x%d
1845         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1846         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1847           relation between ptr_type and DCL_TYPE,
1848           (genCast): fixed bug 0x%d
1849         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1850           (CODE)" for const_name
1851         * src/hc08/gen.c (genCast): fixed bug 0x%d
1852         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1853           (hc08_port): added "CONST (CODE)" for const_name
1854         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1855           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1856           between ptr_type and DCL_TYPE,
1857           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1858           operand* and took AOP() inside function so sfr-ness can be checked,
1859           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1860           new prototype,
1861           (genFunction, genEndFunction): optimized stack setup,
1862           (genMinus): optimized for literals with ending zeroes (in bytes),
1863           (genCast): fixed bug 0x%d
1864         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1865           (mcs51_port): added "CONST (CODE)" for const_name
1866         * src/mcs51/peeph.def: made rule 226 more generic
1867         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1868         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1869         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1870         * src/z80/main.c (z80_port): added NULL for const_name,
1871           (gbz80_port): added NULL for const_name
1872         * support/regression/tests/bug663539.c,
1873         * support/regression/tests/sfr16.c: new tests
1874
1875 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1876
1877         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1878
1879 2005-06-24 Raphael Neider <rneider AT web.de>
1880
1881         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1882           corrected typos...
1883         * device/include/pic16/signal.h: added USBIF
1884           and SIG_USB
1885
1886 2005-06-24 Raphael Neider <rneider AT web.de>
1887
1888         * device/lib/pic16/libdev/pic18f2455.c,
1889           device/include/pic16/pic18f2455.h: NEW
1890         * device/include/pic16/pic18fregs.h,
1891           device/lib/pic16/pics.all,
1892           src/pic16/device.c: added 18f2455
1893         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1894           device/include/pic16/{pic18f[68][567].h,usart.h}:
1895           replaced MULTIPLE_USARTS define with more relaible
1896           compatibility sfrs (for USART access)
1897
1898 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1899
1900         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1901           and the output asm file line is printed on two lines.
1902
1903 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1904
1905         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1906           BGT, BLE, BHI, and BLS instructions
1907         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1908           genCmpEq): removed
1909         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1910           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1911           fixes bug #1216342
1912         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1913
1914 2005-06-15 Raphael Neider <rneider AT web.de>
1915
1916         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1917         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1918         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1919           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1920           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1921
1922 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1923
1924         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1925           Marcel Telka in bug #1215704
1926
1927 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1928
1929         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1930           located in shared memory bank.
1931
1932 2005-05-31 Raphael Neider <rneider AT web.de>
1933
1934         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1935           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1936           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1937
1938 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1939
1940         * device/lib/_strncpy.c: fixed the fix
1941
1942 2005-05-26 Raphael Neider <rneider AT web.de>
1943
1944         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1945           initializers with \0, bug #1208187
1946         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1947           intializers with \0, bug #1208187
1948
1949 2005-05-26 Raphael Neider <rneider AT web.de>
1950
1951         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1952           initializers with \0, bug #1208187
1953         * src/pic16/main.c (_process_pragma): added sanity checks
1954           for stack position and size, emit warnings when appropriate
1955
1956 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1957
1958         * device/lib/_strncpy.c: fixed not filling with \0
1959
1960 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1961
1962         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1963           createFunction),
1964         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1965           compound_statement),
1966         * src/SDCCsymt.h,
1967         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1968
1969 2005-05-24 Raphael Neider <rneider AT web.de>
1970
1971         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1972
1973 2005-05-24 Raphael Neider <rneider AT web.de>
1974
1975         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1976           TRISE definitions, closes bug #1162453
1977
1978 2005-05-22 Raphael Neider <rneider AT web.de>
1979
1980         * src/pic16/main.c (_process_pragma): check for missing
1981           arguments to pragmas code and udata
1982         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1983           consistency fixes to match other headers (thanks to Jim Paris)
1984         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1985
1986 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1987
1988         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1989
1990 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1991
1992         * support/regression/tests/bug1198642.c: new test
1993         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1994         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1995         * support/scripts/resource.h,
1996         * support/scripts/resource.rc,
1997         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1998         * support/scripts/sdcc.ico: added 32x32 icon
1999
2000 2005-05-18 Raphael Neider <rneider AT web.de>
2001
2002         * device/lib/pic16/libdev/pic18f*.c,
2003         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2004           keywords to "__sfr" and "__at (X)"
2005         * device/include/pic16/pic18fregs.h: added pic18f4520
2006         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2007           #1203088 (MPLAB compatibility)
2008
2009 2005-05-17 Raphael Neider <rneider AT web.de>
2010
2011         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2012         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2013         * device/lib/pic16/pics.all: added new devices
2014         * src/pic16/device.c: added support for pic18f4520
2015
2016 2005-05-16 Raphael Neider <rneider AT web.de>
2017         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2018         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2019         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2020           convenience function for bit access
2021
2022 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2023
2024         * device/lib/printf_large.c: fixed bug 1193299
2025         * support/regression/tests/bug1057979.c: added test %3.3s
2026
2027 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2028
2029         * device/include/mcs51/8051.h,
2030         * device/include/mcs51/8052.h: made parseable with lint
2031         * device/include/mcs51/lint.h: added include file for (sp)lint
2032         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2033         * doc/cdbfileformat.lyx,
2034         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2035
2036 2005-05-14 Raphael Neider <rneider AT web.de>
2037
2038         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2039         * device/lib/pic16/libc/stdlib/itoa.c (new)
2040         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2041         * device/lib/pic16/libio/Makefile: exclude subdir according to
2042           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2043         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2044         * src/pic16/gen.c (genFunction): prevent annoying warning
2045         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2046           nameclashes on BeOS
2047         * support/cpp2/cppmain.c (cpp_output_string): new
2048         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2049           fixes bug 1116802
2050
2051 2005-05-13 Borut Razem <borut.razem AT siol.net>
2052
2053         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2054
2055 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2056
2057         * .version: changed to version 2.5.1; back to bleeding edge development
2058
2059 2005-05-11 Borut Razem <borut.razem AT siol.net>
2060
2061         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2062           generate PDF version 1.3 documents
2063
2064 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2065
2066         * .version: changed to version 2.5.0
2067
2068 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2069
2070         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2071
2072 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2073
2074         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2075         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2076         well as many smaller updates.
2077         * .version: changed to version 2.5.0-pre1
2078
2079 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2080
2081         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2082
2083 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2084
2085         * support/regression/tests/bug1185672.c: added
2086         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2087           bug 1185672
2088         * src/mcs51/gen.c (genCall): added comments, made it look safer
2089         * src/mcs51/gen.c (genEndFunction): simplified
2090
2091 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2092
2093         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2094
2095 2005-04-14 Borut Razem <borut.razem AT siol.net>
2096
2097         * fixed bug 1045046 - SIGSEGV with really simple code?:
2098           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2099           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2100
2101 2005-04-14 Borut Razem <borut.razem AT siol.net>
2102
2103         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2104           src/pic16/device.h: temporarily disabled experimental #inline pragma
2105           for 2.5.0 release
2106
2107 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2108
2109         * device/include/z80/stdio.h,
2110         * device/include/z80/string.h: removed these highly incomplete files so
2111           SDCC can use the default ones in device/include/
2112
2113 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2114
2115         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2116         gcc warning.
2117         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2118         fix sdcpp warnings.
2119
2120 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2121
2122         * device/include/malloc.h: removed redundant __reentrant prototypes
2123         * device/lib/_mullong.c: added working xstack variant in asm (C version
2124           doesn't pass regression tests)
2125         * device/lib/bpx.c: used __data and made bpx char for mcs51
2126         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2127           (createFunction): fixed bug with xstackPtr
2128         * src/SDCCcse.c: corrected comments
2129         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2130           (killDeadCode, eBBlockFromiCode): removed unused code
2131         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2132           corrected comments
2133         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2134           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2135           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2136           (genModOneByte): fixed warning in MSVC
2137         * src/mcs51/main.c (): added comments
2138         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2139
2140 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2141
2142         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2143
2144 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2145
2146         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2147
2148 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2149
2150         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2151         characters arrays of larger size than the declared one.
2152
2153 2005-04-10 Borut Razem <borut.razem AT siol.net>
2154
2155         * src/pic/gen.c (genInline),
2156           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2157           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2158           (findNextInstruction), (findPrevInstruction),
2159           (findInstructionUsingLabel),
2160           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2161         * src/pic/pcode.c (findLabel): added missing '\n'
2162         * src/src.dsp: added SDCCdwarf2.c to the project
2163
2164 2005-04-09 Borut Razem <borut.razem AT siol.net>
2165
2166         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2167
2168 2005-04-08 Raphael Neider <rneider AT web.de>
2169
2170         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2171           into the chain after a given one) and mergeDefmapSymbols (combine
2172           defmap entries for each symbol per pcode)
2173         * (createDefmap): have defmap entries merged in the end
2174         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2175           a symbol before replacing one access type's symbol, merge symbols in
2176           the end (replacement symbol might already have an entry)
2177         * (assignValnums): keep reference to written WREG intact
2178
2179 2005-04-08 Raphael Neider <rneider AT web.de>
2180
2181         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2182           Alpha)
2183
2184 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2185
2186         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2187         bytes
2188
2189 2005-04-07 Raphael Neider <rneider AT web.de>
2190
2191         * device/include/pic16/usart.h: added compatibility defines for
2192           devices with more than one USART
2193         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2194
2195 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2196
2197         * device/lib/Makefile.in: updated for port specific include
2198
2199 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2200
2201         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2202
2203 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2204
2205         * device/include/8051.h,
2206         * device/include/8052.h,
2207         * device/include/at89S8252.h,
2208         * device/include/at89c55.h,
2209         * device/include/at89x051.h,
2210         * device/include/at89x51.h,
2211         * device/include/at89x52.h,
2212         * device/include/mcs51reg.h,
2213         * device/include/reg51.h,
2214         * device/include/reg764.h,
2215         * device/include/regc515c.h,
2216         * device/include/sab80515.h: (re)moved these 12 files
2217         * device/include/mcs51/8051.h,
2218         * device/include/mcs51/8052.h,
2219         * device/include/mcs51/at89S8252.h,
2220         * device/include/mcs51/at89c55.h,
2221         * device/include/mcs51/at89x051.h,
2222         * device/include/mcs51/at89x51.h,
2223         * device/include/mcs51/at89x52.h,
2224         * device/include/mcs51/mcs51reg.h,
2225         * device/include/mcs51/reg51.h,
2226         * device/include/mcs51/reg764.h,
2227         * device/include/mcs51/regc515c.h,
2228         * device/include/mcs51/sab80515.h: and added them here
2229
2230 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2231
2232         * device/include/stdarg.h: changed SDCC specific keywords to double
2233           underlined form.
2234         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2235           mcs51 and ds390.
2236         * device/include/hc08/mc68hc908gp32.h,
2237         * device/include/hc08/mc68hc908jb8.h,
2238         * device/include/hc08/mc68hc908jkjl.h,
2239         * device/include/hc08/mc68hc908qy.h: fixed comments
2240         * device/include/mcs51/README: updated
2241         * device/include/mcs51/c8051f120.h: added PINRSF
2242         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2243         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2244           amidst code. Also inline is not supported.
2245
2246 2005-04-06 Raphael Neider <rneider AT web.de>
2247
2248         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2249         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2250           callers stack/frame pointers
2251
2252 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2253
2254         * device/include/pic16/usart.h: added, missing in previous commit,
2255         * device/include/pic16/adc.h: fixed typo,
2256         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2257         commit,
2258         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2259         <p18fxxx.inc>
2260         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2261         uninitialized because a bug appears with gplink
2262         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2263         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2264         complains for unrecognised option
2265
2266 2005-04-05 Raphael Neider <rneider AT web.de>
2267
2268         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2269           structs as well (using memcpy)
2270         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2271           on ISRs (GOTO has no label)
2272         * src/pic16/device.h: added OF_OPTIMIZE_DF
2273         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2274           new data flow analysis/optimization
2275         * src/pic16/pcode.c: added (prototypes for and implementation of)
2276           dataflow analysis functions, fixed pCodeInstructions' inCond and
2277           outCond values, made RCALL a branch instruction
2278         * (pic16_unlinkpCode): keep C line if possible
2279         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2280           C line moved if possible
2281         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2282         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2283           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2284         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2285           new flow)
2286         * (pic16_getJumptabpCode): NEW, needed in...
2287         * (LinkFlow): fixed handling of jumptables, calls and conditional
2288           branches
2289         * (pic16_InsertCommentAfter): NEW
2290         * (pic16_pCodeReplace): made verbose and flow preserving
2291         * (AnalyzeFlow): added call to data flow analysis
2292         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2293         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2294         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2295
2296 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2297
2298         * src/SDCCast.c (decorateType): fixed bug #1105626
2299
2300 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2301
2302         * device/include/asm/pic16/features.h,
2303         * pic18f*.h headers,
2304         * device/include/pic16/adc.h,
2305         * device/include/pic16/delay.h,
2306         * device/include/pic16/i2c.h,
2307         * device/include/pic16/malloc.h,
2308         * device/include/pic16/stdio.h,
2309         * device/include/pic16/stdlib.h,
2310         * device/include/pic16/string.h,
2311         * device/lib/pic16/libc/stdio/printf_tiny.c,
2312         * device/lib/pic16/libc/stdio/printf_small.c,
2313         * device/lib/pic16/libc/stdio/strmgpsim.c,
2314         * device/lib/pic16/libc/stdio/strmmssp.c,
2315         * device/lib/pic16/libc/stdio/strmusart.c,
2316         * device/lib/pic16/libc/stdio/vfprintf.c,
2317         * device/lib/pic16/libc/stdlib/ltoa.c,
2318         * device/lib/pic16/libc/stdlib/putchar.c,
2319         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2320         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2321         * device/lib/pic16/libc/stdlib/memchrram.c,
2322         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2323         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2324         * device/lib/pic16/libio/adc/adcbusy.c,
2325         * device/lib/pic16/libio/adc/adcread.c,
2326         * device/lib/pic16/libio/adc/adcsetch.c,
2327         * device/lib/pic16/libio/usart/ubaud.c,
2328         * device/lib/pic16/libio/usart/ubusy.c,
2329         * device/lib/pic16/libio/usart/udrdy.c,
2330         * device/lib/pic16/libio/usart/uopen.c,
2331         * device/lib/pic16/libio/usart/uputc.c,
2332         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2333         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2334         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2335         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2336         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2337         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2338         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2339         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2340         specific keywords to double underlined form,
2341         * device/lib/pic16/libc/Makefile.rules,
2342         * device/lib/pic16/libsdcc/Makefile.rules,
2343         * device/lib/pic16/libm/Makefile,
2344         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2345         to compile with C standard set in Makefile.common
2346         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2347         rand.c and crc.c in compilation process,
2348         * device/lib/pic16/libsdcc/int/divuint.c,
2349         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2350         `c' from signed to unsigned,
2351         * device/lib/pic16/startup/crt0.c,
2352         * device/lib/pic16/startup/crt0i.c,
2353         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2354         keywords to double underlined form, bug fixes in _do_cinit function
2355         which prevented the correct initialization of the .idata segment,
2356         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2357         core to enter a infinite loop
2358         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2359
2360 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2361
2362         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2363
2364 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2365
2366         * device/include/Makefile.in: add support for hc08 subdirectory
2367         * device/include/hc08/: new subdirectory
2368         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2369         Lucas Loizaga, thanks!
2370         * device/include/hc08/mc68hc908qy.h,
2371         * device/include/hc08/mc68hc908gp32.h,
2372         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2373         their own directory. Changed internal macro names to use the compiler
2374         reserved namespace. Changed SDCC specific keywords to double
2375         underlined form.
2376         * device/include/math.h,
2377         * device/include/malloc.h,
2378         * device/include/stdarg.h,
2379         * device/include/stdbool.h
2380         * device/include/string.h,
2381         * device/include/tinibios.h,
2382         * device/include/ds400rom.h,
2383         * device/include/8051.h,
2384         * device/include/8052.h,
2385         * device/include/80c51xa.h,
2386         * device/include/at89c55.h,
2387         * device/include/at89S8252.h,
2388         * device/include/at89x51.h,
2389         * device/include/at89x52.h,
2390         * device/include/ds80c390.h,
2391         * device/include/reg764.h,
2392         * device/include/regc515c.h,
2393         * device/include/sab80515.h,
2394         * device/include/mcs51/c8051f000.h,
2395         * device/include/mcs51/c8051f018.h,
2396         * device/include/mcs51/c8051f020.h,
2397         * device/include/mcs51/c8051f040.h,
2398         * device/include/mcs51/c8051f060.h,
2399         * device/include/mcs51/c8051f120.h,
2400         * device/include/mcs51/c8051f300.h,
2401         * device/include/mcs51/c8051f310.h,
2402         * device/include/mcs51/c8051f320.h,
2403         * device/include/mcs51/c8051f330.h,
2404         * device/include/mcs51/c8051f350.h,
2405         * device/include/z180.h: Changed SDCC specific keywords to double
2406         underlined form.
2407
2408 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2409
2410         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2411         18F4455,
2412         * (pic16_assignConfigWordValue): disable testing of configuration
2413         register value with config mask,
2414         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2415         function with port->fun_prefix,
2416         * (genFunction): when generating a naked interrupt function never
2417         create an absolute segment placed in interrupt vector address, place
2418         the actual interrupt function at IVA instead, when an interrupt
2419         function is generated with unspecified interrupt then do not create
2420         the absolute section,
2421         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2422         code for generating a call to generic pointer get/put function with
2423         a call to function pic16_callGenericPointer(),
2424         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2425         the call to the generic pointer get/put functions with prefixing the
2426         function name with port->fun_prefix,
2427         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2428         * src/pic16/main.c (_process_pragma): prefix function with
2429         port->fun_prefix,
2430         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2431         calling assembler, old 18Fxxxx macro is deprecated,
2432         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2433         PC_ASMDIR in while condition,
2434         * (findInstruction): add PC_ASMDIR in while condition,
2435         * (buildCallTree): prefix main with port->fun_prefix,
2436         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2437         identifier for variable with banked access in instructions BTFSS,
2438         BTFSC, BCF, BSF, BTG
2439         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2440         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2441         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2442         perform optimization when enviroment variable NO_REG_OPT is set,
2443         * (insideLRBlock): NEW, return 1 if register is inside an
2444         INF_LOCALREGS block,
2445         * (RemoveRegFromLRBlock): remove a register that is completely
2446         eliminated by register optimization, but it is still left in local
2447         register store/restore in/from stack block,
2448         * (Remove2pcodes): after removing register, check to see if it
2449         should be removed from local register store/restore in/from stack
2450         block,
2451         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2452         DUMMY_READ_VOLATILE,
2453
2454         * device/include/pic16/adc.h: minor prototype modifications and
2455         update,
2456         * device/include/pic16/malloc.h: added GPL notice various
2457         modifications,
2458         * device/include/pic16/stdint.h: NEW, standard header for ints
2459         * device/include/pic16/delay.h: NEW, header for delay functions,
2460         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2461         delay1mtcy,
2462         * device/include/pic16/signal.h: NEW, header providing helper macros
2463         for implementing signal handlers,
2464         * device/include/pic16/stdio.h: added prototypes for functions,
2465         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2466         prototypes for stdin and stdout, added macro PUTCHAR to
2467         automatically implement putchar function prototype,
2468         * device/include/pic16/usart.h: modified and updated USART library,
2469         * device/lib/pic16/libio/adc/,
2470         * device/lib/pic16/libio/i2c: some modifications to improve library
2471         performance,
2472         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2473         family of functions,
2474         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2475         family of functions and other sources,
2476         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2477         of the PIC18Fxx[28] devices,
2478         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2479         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2480         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2481         _do_cinit function, because the previous failed when local variables
2482         where not placed in the same memory bank,
2483         * device/lib/pic16/libsdcc/char/: various modifications to improve
2484         library performance,
2485         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2486         information on the new functions of the c library and more...
2487
2488 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2489
2490         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2491
2492 2005-03-26 Raphael Neider <rneider AT web.de>
2493
2494         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2495           if condition == CARRY)
2496         * (genCmp): adapted to new genSkipc semantics
2497         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2498           on rIfx (genCmp was broken)
2499
2500 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2501
2502         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2503         * src/z80/main.c (_keywords[]),
2504         * src/SDCCglobal.h (struct options),
2505         * src/SDCC.y,
2506         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2507         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2508         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2509         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2510         always available in leading double underscore form. The C99 support is
2511         mostly missing, but it's a start.
2512         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2513         reserved identifier "__data".
2514
2515 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2516
2517         * src/mcs51/peeph.def: fixed bug 1170013
2518
2519 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2520
2521         * device/include/mcs51reg.h: fixed bug 842007
2522
2523 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2524
2525         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2526         last time.
2527
2528 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2529
2530         * src/port.h (struct PORT),
2531         * src/avr/ralloc.c (avr_assignRegisters),
2532         * src/avr/main.c,
2533         * src/ds390/ralloc.c (ds390_assignRegisters),
2534         * src/ds390/main.c,
2535         * src/hc08/ralloc.c (hc08_assignRegisters),
2536         * src/hc08/main.c,
2537         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2538         * src/mcs51/main.c,
2539         * src/pic/ralloc.c (pic14_assignRegisters),
2540         * src/pic/main.c,
2541         * src/pic16/ralloc.c (pic16_assignRegisters),
2542         * src/pic16/main.c,
2543         * src/xa51/ralloc.c (xa51_assignRegisters),
2544         * src/xa51/main.c,
2545         * src/z80/ralloc.c (z80_assignRegisters),
2546         * src/z80/ralloc.h,
2547         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2548         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2549         * src/SDCCcse.h,
2550         * src/SDCCdflow.c (computeDataFlow),
2551         * src/SDCCdflow.h,
2552         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2553         * src/SDCCloop.h,
2554         * src/SDCCcflow.c (*),
2555         * src/SDCCcflow.h,
2556         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2557         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2558         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2559         immedDom() returning wrong block; probably fixes bug #1160833)
2560
2561 2005-03-20 Borut Razem <borut.razem AT siol.net>
2562
2563         * support/scripts/inc2h.pl: WIN32 port
2564
2565 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2566
2567         * device/lib/makefile.in: added abs.c and labs.c
2568
2569 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2570
2571         * device/include/stdint.h: added
2572         * device/lib/abs.c: added
2573         * device/lib/labs.c: added
2574         * device/include/stdlib.h: added abs() and labs() prototypes
2575         * device/lib/libsdcc.lib: added abs and labs
2576         * device/include/float.h,
2577         * device/lib/_fsmul.c,
2578         * device/lib/printf_fast.c,
2579         * device/lib/printf_tiny.c: updated comments
2580
2581 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2582
2583         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2584         bug #1164313
2585
2586 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2587
2588         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2589         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2590
2591 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2592
2593         * device/lib/printf_large.c: removed inline assembly for portability and
2594           readability. Use printf_fast if speed or size are more important.
2595         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2596         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2597
2598 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2599
2600         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2601         prevent compiler warning
2602
2603 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2604
2605         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2606         moved to level 0 and declared as static. Also they are explicit
2607         placed in access bank. This was necessery because some times they
2608         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2609         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2610         optimizations. Currently only compare to unsigned char is implemented,
2611         * src/pic16/gen.c: added fReturnIdx array,
2612         * (struct resolvedIfx) is moved to gen.h and made public,
2613         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2614         * (aopForSym): added an optimization to directly store in stack of
2615         the operand of a SEND iCode,
2616         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2617         but as registers instead (AOP_REG) using the fReturnIdx array,
2618         * (pic16_freeAsmop): remove the freed register from the
2619         _G.sregsAlloc field,
2620         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2621         a compare of 'WREG',
2622         * (pic16_popGetTempRegCond): changed function prototype, now
2623         function takes also a bitVector argument v which holds the current
2624         set of registers that are allocated for stack access by aopForSym,
2625         registers allocated in aopForSym for accessing stack symbols are not
2626         any more part of the functions usedRegs field,
2627         * (genCall): some times aopOp is called for a stack variable to be
2628         send, aopForSym might perform the push, if this is true make sure
2629         that genCall doesn't push the variable twice by testing _G.resDirect,
2630         * (genFunction): changed testing for unspecified interrupt number
2631         from 256 to INTNO_UNSPEC,
2632         * modified selection scheme of frame pointer generation. Previously
2633         if function did use local registers a frame pointer was generated,
2634         now a frame pointer is generated only if function has arguments
2635         (that need PLUSW2 register access), or has stack arguments, or the
2636         compiler is not instructed to omit the frame pointer,
2637         * (genEndFunction): before restoring local registers that were saved
2638         in the function preamble, also restore the registers that *might*
2639         have been allocated for stack access,
2640         * (genRet): removed some old comments,
2641         * (genCmp, the active (RN's) version): added a call to the
2642         pic16_genCmp_special function to perform the compare with a more
2643         robust and optimized way,
2644         * (genInline): a feature has been added in inline code generation,
2645         which allows a wildcard variable substitution when writing inline
2646         assembly. Code is incomplete and experimental therefore undocumented,
2647         * (genCast): changed order of aopOp for result and right to allow
2648         aopForSym to directly load the result if possible,
2649         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2650         perform an optimized compare on some selected special occasions,
2651         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2652         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2653         generate an IVT any more,
2654         * src/pic16/main.c (pic16_optionsTable): added command line option
2655         --optimize-cmp,
2656         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2657         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2658         macros,
2659         * src/pic16/NOTES: Raphael Neider added in list of active developers
2660         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2661         jumptable_end to prevent bug #,
2662         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2663         inCond and outCond fields,
2664         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2665         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2666         turn off register spilling,
2667         * (packRegsForOneUse): synced with other ports' versions although it
2668         is not used currently,
2669         * (pic16_packRegisters): added an optimization while reading
2670         structure bitfields, some registers may be saved (malloc code is
2671         decreased by 80 bytes)
2672
2673 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2674
2675         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2676         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2677         this can be optimized more?
2678
2679 2005-03-10 Raphael Neider <rneider AT web.de>
2680
2681         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2682           genNearPointerGet): (hopefully) fixed access to bitfields via
2683           pointers (p->bitN = x; and x = p->bitN; failed)
2684
2685 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2686
2687         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2688
2689 2005-03-09 Raphael Neider <rneider AT web.de>
2690
2691         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2692
2693 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2694
2695         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2696         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2697           (regTypeNum): set REG_BIT type if necessary
2698         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2699         * support/regression/tests/critical.c: check bug 1144613
2700
2701 2005-03-02 Raphael Neider <rneider AT web.de>
2702
2703         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2704
2705 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2706
2707         * src/avr/ralloc.c (serialRegAssign),
2708         * src/ds390/ralloc.c (serialRegAssign),
2709         * src/hc08/ralloc.c (serialRegAssign),
2710         * src/mcs51/ralloc.c (serialRegAssign),
2711         * src/pic/ralloc.c (serialRegAssign),
2712         * src/pic16/ralloc.c (serialRegAssign),
2713         * src/xa51/ralloc.c (serialRegAssign),
2714         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2715
2716 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2717
2718         * src/SDCCast.c (decorateType): fixed bug 1124787
2719
2720 2005-02-20 Hubert Sack <sack AT digiplan.de>
2721         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2722
2723         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2724         patch #1121755
2725
2726 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2727
2728         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2729         to keep the correct label reference count when adding/removing references
2730         to labels. A peephole file using this is appended to patch #1144962.
2731
2732 2005-02-14 Raphael Neider <rneider AT web.de>
2733
2734         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2735         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2736         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2737           retrievals of result operand's value on assignment
2738
2739 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2740
2741         * device/include/pic16/string.h: modified prototype for memccpy()
2742         to memccpy(void *, void *, char, size_t)
2743         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2744         check whether to omit frame pointer or not,
2745         * (genInline): convert all occurences of "\n" to LF in inline
2746         assembler blocks, this helps formatting the inline text,
2747         * (pic16_loadFSR0): modified prototype,
2748         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2749         removed some 8051 legacy code,
2750         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2751         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2752         before allocating temporary registers in functions,
2753
2754 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2755
2756         * support/regression/tests/bitvars.c: corrected the "fix"
2757
2758 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2759
2760         * support/regression/tests/bitvars.c,
2761         * support/regression/tests/bitwise.c,
2762         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2763
2764 2005-02-10 Raphael Neider <rneider AT web.de>
2765
2766         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2767           different size for Alpha
2768         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2769
2770 2005-02-09 Raphael Neider <rneider AT web.de>
2771
2772         * src/SDCC.lex(doPragma) : save and restore warning options as well
2773           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2774         * have #pragma less_pedantic set the errorlevel to WARNING
2775           (fixes #1117001)
2776         * (cloneOptimize) : fixed wrong malloc's size
2777         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2778           facilitate correct handling of #pragma (save|restore)
2779
2780 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2781
2782         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2783
2784 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2785
2786         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2787
2788 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2789
2790         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2791
2792 2005-02-02 Raphael Neider <rneider AT web.de>
2793
2794         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2795         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2796         * (pic16_storeForReturn): fixed to allow returning function pointers
2797         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2798         * device/include/pic16/{stddef.h,stdbool.h}: added
2799
2800 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2801
2802         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2803
2804 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2805
2806         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2807         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2808          appeared to be required
2809
2810 2005-01-31 Borut Razem <borut.razem AT siol.net>
2811
2812         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2813           include/mcs51 and include/z80 directories to the package
2814
2815 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2816
2817         * src/hc08/gen.c (genFunction): fixed bug #1112752
2818
2819 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2820
2821         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2822
2823 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2824
2825         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2826
2827 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2828
2829         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2830
2831 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2832
2833         * device/include/c8051fxxx.h: removed these 6 files
2834         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2835
2836 2005-01-26 Raphael Neider <rneider AT web.de>
2837
2838         * src/pic16/gen.c (genAssign): fixed assignment from longs
2839           in codespace (were cut to three bytes)
2840         * (genDummyRead): implemented (except for CODESPACE...),
2841           fixed bug #1108575
2842         * src/pic16/glue.c (emitStatistics): beautified
2843         * device/lib/pic16/libm/Makefile: added include path
2844
2845 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2846
2847         * src/z80/gen.c (aopPut): fixed bug #1103902
2848
2849 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2850
2851         * device/lib/expf.c: fixed bug #1095792
2852
2853 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2854
2855         * device/lib/pic16/libm: added Math library sources
2856
2857 2005-01-24 Raphael Neider <rneider AT web.de>
2858
2859         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2860           to enable upcast to pCodeOpReg2 (there is no type tag to
2861           differenciate the two and pic16_popGet2p cast into PCOR2)
2862         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2863           (sizeof(sectNames) changed to sizeof(sectName))
2864           Both patches fix segfaults under MinGW.
2865
2866 2005-01-23 Raphael Neider <rneider AT web.de>
2867
2868         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2869           Safe_[mc]?alloc()'ed variables
2870         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2871           of (byte sized) temporaries (assign them to WREG for now)
2872         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2873           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2874           this might fix SIGSEGVs on MinGW...
2875         * src/SDCCopt.c (killDeadCode): restored original behaviour
2876           (volatile operands might get thrown away though)
2877
2878 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2879
2880         * src/pic16/gen.c: fixed bug #1106975,
2881         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2882         pointer update, INTCON is saved, global interrupts are disabled and
2883         restored after updateing TOS.
2884         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2885         * added function attribute 'shadowregs' to take advantage of shadow
2886         registers,
2887         * added function attribute 'wparam' as an alternative to the wparam
2888         pragma,
2889         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2890         user declares a non-ISR function as 'shadowregs',
2891         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2892
2893 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2894
2895         * .version: bumped version number to 2.4.8
2896         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2897         pic16 port,
2898         * device/lib/pic16/libio/i2c/: I2C module support library,
2899         * device/include/pic16/i2c.h: I2C support library header,
2900         * device/lib/pic16/libc/stdio/: standard IO support sources,
2901         * (printf_small.c): printf_small() source, supports float print,
2902         * (printf_tiny.c): printf_tiny() source, does not support floats,
2903         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2904         enable global optimizations for entire library source, other
2905         Makefiles in the source tree are also modified to reflect this,
2906         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2907         function,
2908         * doc/sdccman.lyx: updated to reflect new changes,
2909         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2910         sym->onStack if-case,
2911         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2912         sbit, idata, _idata, xdata, _xdata,
2913         * added pragma library, to link an external library, (see doc),
2914         * removed command line options, --pomit-config-words, --pomit-ivt,
2915         --pleave-reset-vector,
2916         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2917         when calling assembler to reflect memory model used, also define
2918         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2919         reflect stack model used,
2920         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2921         on stack return NULL,
2922
2923 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2924
2925         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2926           of the operands is volatile. Fixes #1020220
2927
2928 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2929
2930         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2931         * (OptimizeRegUsage): make sure that there is really no other flow where
2932           the first pCode is used
2933
2934 2005-01-22 Raphael Neider <rneider AT web.de>
2935
2936         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2937           to fix #1106967 (pCode->seq are not set up correctly)
2938
2939 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2940
2941         * src/SDCCglue.c (glue): make sure code area is declared before the
2942         static initialization area.
2943
2944 2005-01-21 Raphael Neider <rneider AT web.de>
2945
2946         * device/lib/Makefile.in: fixed test for pic16 install dir
2947         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2948           optimizations
2949         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2950           added --optimize-goto compiler switch and pragma wparam documentation
2951         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2952         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2953           and PRODH closing bug #1071770 (peephole optimizer)
2954
2955 2005-01-19 Raphael Neider <rneider AT web.de>
2956
2957         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2958           cmdLine buffers (used when calling sdcpp...) are large enough
2959           (MAX_PATH=256 truncates arguments leading to system halts when
2960           used in MinGW...)
2961         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2962         * (genUminus): rewritten to for efficiency
2963         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2964           used uninitialized in some cases)
2965         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2966           copy the third byte from the int -- now assumes 0x80 (data memory)
2967         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2968           operands (genAddLit expects the iCode's operands to swapped as
2969           well), fixed leftover bytes (crashed for short left operands)
2970         * (pic16_genMinusDec): performance improvements, removed false
2971           PIC14 emitSKPNCs
2972         * (pic16_genMinus): fixed to cope with differently sized operands
2973         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2974           for --obanksel > 1
2975         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2976         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2977           new banksel optimization
2978         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2979           analysis for temporary registers (segfaults...)
2980         * src/pic16/peeph.def: added rule
2981
2982 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2983
2984         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2985         which converts a float number to its ASCII representation
2986         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2987         functions to convert the fractional and integer part of a float to ASCII,
2988         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2989         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2990         ram
2991         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2992         _STATMEM macros,
2993         * device/include/pic16/adc.h: added GPL info,
2994         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2995         a pCodeOp as tested operand,
2996         * (genNearPointerGet): optimized bit testing, does not use
2997         intermediate register for bit value, test directly instead with
2998         BTFSS, BTFSC, works only for single bits,
2999         * (genpic16Code): dump the name of the iCode in the asm,
3000         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3001         renamed to pic16_decodeOp,
3002         * (serialRegAssign): do not allocate a temporary register for iCode
3003         sequences that test a single bit for 1/0
3004
3005 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3006
3007         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3008         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3009         access stack and frame pointers. They are initially assigned to
3010         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3011         accessing SFRs. Updated all occurences of modification of stack or
3012         frame pointer in gen.c and pcode.c,
3013         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3014         assigning of a literal value to pointers,
3015         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3016         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3017         selected
3018
3019 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3020
3021         * doc/sdccman.lyx: update documentation about stack pragma, added
3022         some info for stack memory models
3023
3024 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3025
3026         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3027
3028 2005-01-08 Raphael Neider <rneider AT web.de>
3029
3030         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3031           udata sections to fix bug #1097823
3032
3033 2005-01-05 Raphael Neider <rneider AT web.de>
3034
3035         * src/pic16/gen.c (genGenericShift): added handling of differently
3036           sized left operand and result
3037
3038 2005-01-04 Raphael Neider <rneider AT web.de>
3039
3040         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3041         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3042           to hold the condition bit)
3043         * added new version of genCmp (old code available via #define)
3044         * added new version of genShiftLeft/genShiftRight in a generic
3045           way, now supports shifting by negative values
3046         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3047           shiftCount (expected by genGenericShift)
3048         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3049         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3050           dump
3051         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3052           is an invalid literal too...)
3053
3054 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3055
3056         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3057         from Raphael Neider,
3058         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3059         for 8-bit literals. This fixes some literal operands which are sign
3060         extended to 16-bits ints when instruction needs only 8-bits.
3061
3062 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3063
3064         * device/lib/logf.c: added mcs51 assembly version
3065         * device/lib/expf.c: added mcs51 assembly version
3066         * device/lib/_logexpf.c: new shared asm code for expf and logf
3067         * device/include/math.h: add defines for assembly math library
3068         * device/lib/Makefile.in: build new _logexpf.c
3069         * device/lib/libfloat.lib: use new _logexpf.c
3070
3071 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3072
3073         * src/pic/device.c
3074         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3075           device types which have less than 0x7f registers.
3076
3077 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3078
3079         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3080
3081 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3082
3083         * device/lib/printf_fast.c: only build on supported arch.
3084         * device/lib/printf_tiny.c: only build on supported arch.
3085         * device/lib/printf_fast_f.c: only build if asm float lib
3086         * device/lib/_fsget1arg.c: only build if asm float lib
3087         * device/lib/_fsget2args.c: only build if asm float lib
3088         * device/lib/_fsnormalize.c: only build if asm float lib
3089         * device/lib/_fsreturnval.c: only build if asm float lib
3090         * device/lib/_fsrshift.c: only build if asm float lib
3091         * device/lib/_fsswapargs.c: only build if asm float lib
3092         * device/include/stdio.h: don't provide print_fast,
3093           print_fast_f, print_tiny prototypes if --xstack used
3094
3095 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3096
3097         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3098         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3099           to the SOURCES
3100
3101 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3102
3103         * device/lib/printf_fast_f.c: same as printf_fast, but
3104           with floating point enabled
3105         * device/lib/printf_fast.c: minor tweaks
3106         * device/include/stdio.h: add printf_fast_f
3107
3108 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3109
3110         * src/SDCCmain.c: make --float-reent default for mcs51
3111         * device/lib/_fsadd.c: added mcs51 assembly version
3112         * device/lib/_fssub.c: added mcs51 assembly version
3113         * device/lib/_fsmul.c: added mcs51 assembly version
3114         * device/lib/_fsdiv.c: added mcs51 assembly version
3115         * device/lib/_fseq.c: added mcs51 assembly version
3116         * device/lib/_fsneq.c: added mcs51 assembly version
3117         * device/lib/_fsgt.c: added mcs51 assembly version
3118         * device/lib/_fslt.c: added mcs51 assembly version
3119         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3120         * device/lib/Makefile.in: add _fscmp to build
3121         * device/lib/libfloat.lib: add _fscmp to build
3122
3123 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3124
3125         * device/lib/_fs2slong.c: added mcs51 assembly version
3126         * device/lib/_fs2sint.c: added mcs51 assembly version
3127         * device/lib/_fs2schar.c: added mcs51 assembly version
3128         * device/lib/_fs2ulong.c: added mcs51 assembly version
3129         * device/lib/_fs2uint.c: added mcs51 assembly version
3130         * device/lib/_fs2uchar.c: added mcs51 assembly version
3131         * device/lib/_slong2fs.c: added mcs51 assembly version
3132         * device/lib/_sint2fs.c: added mcs51 assembly version
3133         * device/lib/_schar2fs.c: added mcs51 assembly version
3134         * device/lib/_ulong2fs.c: added mcs51 assembly version
3135         * device/lib/_uint2fs.c: added mcs51 assembly version
3136         * device/lib/_uchar2fs.c: added mcs51 assembly version
3137         * device/include/float.h: added #define to select asm vs c
3138
3139 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3140
3141         * device/lib/printf_fast.c: improvements to float output
3142         * device/include/float.h: add defines for assembly float library
3143         * device/lib/_fsget1arg.c: receive 1 float arg
3144         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3145         * device/lib/_fsnormalize.c: normalize a float
3146         * device/lib/_fsreturnval.c: return float, various helper routines
3147         * device/lib/_fsrshift.c: right shift a float's mantissa
3148         * device/lib/_fsswapargs.c: swap 2 floats
3149         * device/lib/Makefile.in: build these 6 new files for mcs51
3150         * device/lib/libfloat.lib: add these 6 files to the library
3151
3152 2004-12-26 Borut Razem <borut.razem AT siol.net>
3153
3154         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3155           built by gcc 3.4.2
3156
3157 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3158
3159         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3160           and fully reentrant and register bank neutral.
3161         * device/lib/printf_fast.c: added float (not enabled by default),
3162           added compact/slower integer (also not enabled by default),
3163           improved size/speed of fast integer code, other minor changes
3164         * device/include/stdio.h, device/lib/Makefile.in,
3165           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3166
3167 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3168
3169         * src/pic16/pcode.c: declaring variables other than at the start of a
3170           block is not supported in C by VC6.
3171
3172 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3173
3174         * applied a previous patch from Raphael Neider that wasn't included
3175         in the previous commits, which fixes infinite loops within jumptable
3176         improvements,
3177         * made some fixes that previous patches introduced
3178
3179 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3180
3181         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3182         that fixes an issue with AOP_PCODE asmop's offset,
3183         * (pic16_popCopyReg): update instance field too,
3184         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3185         function of pic port,
3186         * (genCmp, genAnd, genAssign),
3187         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3188
3189 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3190
3191         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3192         variables initial values to idata section,
3193         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3194         variables in some functions. This utilizes parmBytes field of iCode
3195         structure to hold the offset of the variable in stack. (might be
3196         able to use the stack field too?)
3197         * applied patch from Raphael Neider # ### , # ###
3198         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3199         variable initial values in idata section,
3200         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3201         for static variables with initial value
3202         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3203         applied fix in while loop from Raphael Neider.
3204
3205 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3206
3207         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3208         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3209         * src/ds390/ralloc.c (serialRegAssign): spill bits
3210         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3211         * support/Util/SDCCerr.c,
3212         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3213         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3214         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3215
3216 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3217
3218         * device/include/sdcc-lib.h: inserted LGPL, added includes
3219           asm/ds390/features.h and asm/mcs51/features.h
3220         * device/include/asm/default/features.h,
3221         * device/include/asm/gbz80/features.h,
3222         * device/include/asm/z80/features.h: added empty _AUTOMEM
3223           and _STATMEM
3224         * device/include/asm/ds390/features.h,
3225         * device/include/asm/mcs51/features.h: added files with defines for
3226           _AUTOMEM and _STATMEM indicating automatic and static storage class
3227         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3228         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3229         * src/SDCCicode.c (geniCodeCast),
3230         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3231         * src/SDCCloop.c (loopInduction): removed unused variable lr
3232         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3233           to convertToFcall to include char modulo (RFE 1065037), added check
3234           if left operand is unsigned and use abs of literal value
3235         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3236           as it doesn't work after conversion from peephole.def to peephole.rul
3237         * src/mcs51/gen.c (toBoolean): added check for size,
3238           (genModOneByte): optimized code for signed char modulo a literal
3239           power of 2 (thanks to Hubert Sack),
3240           (genRRC): removed unnecessary "clr c",
3241           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3242         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3243           jump optimization,
3244           swapped rules 256.c and 256.d,
3245           extended 256.d by using new multiple checks (thanks Erik),
3246           added rules 256.e and 256.f,
3247           updated rule 261.a and 261.b to new generated code
3248         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3249
3250 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3251
3252         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3253           induction related bugs, including first part of bug #1074377
3254
3255 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3256
3257         * applied patch from bug-report #1076292,
3258         * applied patches for genAnd and Goto-optimizations for Raphael
3259         Neider,
3260         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3261         dump a less iCode information,
3262         * src/pic16/device.h (pic16_options_t): added field debgen,
3263         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3264         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3265         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3266         puclic,
3267         * (various functions): added macros FENTRY and FENTRY2 to functions,
3268         to emit function prologue,
3269         * (various functions): fixed indentation,
3270         * (genNearPointerGet): fixed loading of FSR0,
3271         * (genPackBits): applied patch from Raphael Neider to fix updating
3272         of FSR0 and touching only the modified bits,
3273         * src/pic16/genarith.c (various functions): added macros FENTRY to
3274         emit function prologue in comments,
3275         * src/pic16/pcode.h: added functions debugf2, debugf3,
3276         * src/pic16/ralloc.c: partial fix for packForPush caused
3277         segmentation fault,
3278
3279 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3280
3281         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3282           <stsp AT users.sourceforge.net> with reversed byte order
3283         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3284
3285 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3286
3287         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3288           bug #1074377
3289         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3290         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3291
3292 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3293
3294         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3295
3296 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3297
3298         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3299           conditions,
3300           (setFromConditionArgs): friendly operand parser for peephole rules,
3301           (operandBaseName, operandsNotRelated): new peephole condition
3302           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3303           architecture specific register naming into account, handles n-way
3304           comparisons, and supports quoted literals
3305         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3306
3307 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3308
3309         * src/mcs51/peeph.def: fixed bug #1076940
3310
3311 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3312
3313         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3314
3315 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3316
3317         Adding support for replacing ljmps with sjmps in jumptables
3318         generated for switch statements. For now you need to set the
3319         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3320         Now 4 algorithms for mcs51 jumptable generation are used:
3321         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3322         addresses loaded pc-relative for up to 112 cases and stack-pushing
3323         target addresses loaded with offset from dptr for up to 256 cases.
3324
3325         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3326         * src/mcs51/main.c: adapted constants for switch table generation
3327         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3328
3329 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3330
3331         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3332         * support/regression/tests/bug1057979.c: added test for bug 1073386
3333
3334 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3335
3336         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3337         compilers
3338
3339 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3340
3341         * src/pic16/device.h,
3342         * src/pic16/genarith.c,
3343         * src/pic16/glue.c,
3344         * src/pic16/main.c,
3345         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3346
3347 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3348
3349         Large cummulative patch for pic16 port.
3350         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3351         to call when a stack overflow occurs,
3352         * (malloc.h): added CVS Id tag,
3353         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3354         variable,
3355         * added libc directory. The current version of LibC contains string
3356         functions, ctype functions and macros and some functions of the
3357         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3358         be extensively tested in the future. Standard disclaimer here.
3359         Library is not automatically build yet. But one can build it by
3360         invoking 'make' inside the libc directory.
3361         * added ADC library under libio. Preliminary version yet.
3362
3363         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3364         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3365         aopForRemat() now and not by pic16_aopOp(),
3366         * (pic16_popGetTempReg): removed warning messgae when allocating
3367         temporary registers, its a buggy feature and will be removed,
3368         * (pic16_popGet): set register instance field in AOP_CRY,
3369         * (pic16_outBitC): fixed for results in size greater than 1,
3370         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3371         * (pic16_storeForReturn): optimized return of 0,
3372         * (genCmp): experimental code for new genCmp which uses PIC18's
3373         special compare&skip instructions. Initial tests fail some times
3374         with variables grater than 1 byte in size, so new code is disabled,
3375         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3376         a single bit,
3377         * (genCast): began a fix to optimize the casting of a bit to another
3378         bit, now assigning a bitfield to another bitfield will fail, sorry,
3379         * src/pic16/main.c: disabled the use of lr-support feature,
3380         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3381         * added some function prototypes, added function _debugf prototype,
3382         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3383         bits with offset (case PO_GPR_BIT),
3384         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3385         command line,
3386         * (isBankInstruction): modified to return 0 for no banking instruction,
3387         and 1 for banking instruction,
3388         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3389         caused stop processing pCodes after a inline assembly block,
3390         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3391         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3392         registers when it shouldn't,
3393         * src/pic16/ralloc.c (allocReg): add preliminary support for
3394         supporting a limited set of temporary registers,
3395
3396 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3397
3398         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3399           genDataPointerSet): ensure assignments always copy in MSB to LSB
3400           order,
3401           (loadRegFromAop): recognize CLRH optimization,
3402           (genFunction): optimize RECEIVE iCodes in reentrant functions
3403
3404 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3405
3406         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3407           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3408           selected.
3409         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3410         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3411           contiguous with data
3412
3413 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3414
3415         * device/lib/_gptrget.c (_gptrget),
3416         * device/lib/_gptrgetc.c (_gptrgetc),
3417         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3418           instead of sjmp to ret
3419         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3420           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3421
3422 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3423
3424         * .version: bumped version to 2.4.7
3425         * device/lib/_gptrget.c (_gptrget): is now _naked
3426         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3427         * device/lib/_gptrput.c (_gptrput): is now _naked
3428         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3429           (createFunction): fixed xstack
3430         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3431         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3432           or bit either,
3433           (geniCodeCritical): store original interrupt state in an iTemp bit
3434           var unless stack-auto
3435         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3436         * src/SDCCmain.c (setIncludePath): added include/target to search path
3437         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3438         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3439           prototype,
3440           (processFuncArgs): put bit vars in bit area
3441         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3442           unsaveRBank): fixed xstack,
3443           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3444           (genFunction, genEndFunction): fixed xstack,
3445           (genAssign): optimization don't walk backwards through mem
3446         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3447         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3448         * support/regression/Makefile: also make library (for stack-auto) when
3449           making "all" and added "test-mcs51-xstack-auto"
3450         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3451         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3452         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3453         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3454         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3455           make-library by MAKE_LIBRARY
3456         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3457           regression tests for xstack
3458         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3459         * support/regression/tests/critical.c: test for critical on mcs51
3460
3461 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3462
3463         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3464           built version of sdcc instead of installed version
3465
3466 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3467
3468         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3469         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3470           vprintf.c now
3471         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3472         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3473           WARNING: remove device/lib/build/z80/printf.o by hand when
3474           updating from previous build!
3475         * device/lib/z80/printf.c: updated comment
3476         * support/regression/tests/bug1057979.c: test all ports now
3477         * support/regression/tests/bug1065458.c: file added
3478
3479 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3480
3481         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3482           *_start and *_end symbols for static functions
3483
3484 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3485
3486         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3487           and search crt0.o in all library paths,
3488           (setIncludePath): proper handling of --nostdinc,
3489           (setLibPath): proper handling of --nostdlib
3490         * support/regression/Makefile,
3491         * support/regression/ports/ds390/spec.mk,
3492         * support/regression/ports/gbz80/spec.mk,
3493         * support/regression/ports/hc08/spec.mk,
3494         * support/regression/ports/mcs51/spec.mk,
3495         * support/regression/ports/mcs51-large/spec.mk,
3496         * support/regression/ports/mcs51-stack-auto/spec.mk,
3497         * support/regression/ports/z80/spec.mk: use include and lib files from
3498           built version of sdcc instead of installed version
3499         * doc/sdccman.lyx: fixed typo in --nostdinc
3500
3501 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3502
3503         * src/pic/pcode.c,
3504         * src/pic/device.c,
3505         * src/pic/ralloc.c,
3506         * src/pic/gen.c : added support to generate code for struct bit fields.
3507
3508 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3509
3510         * as/xa51/xa_version.h,
3511         * device/include/errno.h,
3512         * device/include/regc515c.h,
3513         * device/lib/_itoa.c,
3514         * device/lib/_ltoa.c,
3515         * device/lib/ser_ir_cts_rts.c,
3516         * sim/ucsim/xa.src/glob.cc,
3517         * sim/ucsim/xa.src/inst_gen.cc,
3518         * sim/ucsim/xa.src/xa_bit.cc,
3519         * sim/ucsim/xa.src/xa_sfr.cc,
3520         * sim/ucsim/z80.src/inst_dd.cc,
3521         * sim/ucsim/z80.src/inst_fdcb.cc,
3522         * support/scripts/keil2sdcc.pl,
3523         * src/pic16/pic16.dsp,
3524         * src/pic16/pic16a.dsp: corrected cvs line endings
3525         * device/lib/printf_large.c: fixed bug 1057979
3526         * src/pic16/gen.c: fixed non-C standard code
3527         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3528         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3529         * support/regression/ports/mcs51/support.c: reload T1 asap
3530         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3531           pdata use and clear idata startup behaviour
3532         * support/regression/tests/bug1057979.c: added
3533
3534 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3535
3536         * device/examples/ds390/ow390/ad26.h,
3537         * device/examples/ds390/ow390/cnt1d.h,
3538         * device/examples/ds390/ow390/crcutil.c,
3539         * device/examples/ds390/ow390/ownet.h,
3540         * device/examples/ds390/ow390/owsesu.c,
3541         * device/examples/ds390/ow390/swt12.h,
3542         * device/examples/ds390/ow390/swtoper.c,
3543         * device/examples/ds390/ow390/temp10.h,
3544         * device/examples/ds390/ow390/thermodl.c,
3545         * device/examples/ds390/tinitalk/tinitalk.dsp,
3546         * device/examples/ds390/tinitalk/tinitalk.dsw,
3547         * device/examples/mcs51/clock/hw.h,
3548         * device/examples/mcs51/simple2/go.bat,
3549         * device/examples/serialcomm/windows/serial.h,
3550         * device/examples/xa51/dummy.c,
3551         * device/examples/xa51/hello.c,
3552         * device/include/80c51xa.h,
3553         * device/include/at89x051.h: corrected cvs line endings
3554
3555 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3556
3557         * src/pic16/main.c (options): added command line --gstack, to trace
3558         stack over/under flows,
3559         * added pragma 'wparam' to allow passing first byte of function
3560         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3561         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3562         call to __gstack_test function and sets up the symbol as extern,
3563         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3564         * popaop): added call to pic16_testStackOverflow,
3565         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3566         wparamList list,
3567         * (genCall, genPcall): now all parameters are passed via stack
3568         except in functions that are pass to wparam pragma in which WREG is
3569         used too,
3570         * (genPcall): REENTRANT flag is checked to see if variable prototype
3571         contains reentrant keyword, don't call a non-reentrant function, via
3572         a reentrant function pointer or vice versa, functions are never
3573         passed via WREG,
3574         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3575         D.Winkler,
3576         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3577         SIGSEGV when accessing a NULL register stucture,
3578         * (pic16_printGPointerType): modified to handle UPPER modifier for
3579         function initializers, changed prototype of function to simpler one,
3580         * (pic16_printIvalFuncPtr): check to see if function is already
3581         added in externs list,
3582         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3583         optimized a move from W to SFR with a move to the same register
3584         later after a CALL,
3585         * device/lib/pic16/debug: NEW directory, contains debug features
3586         which are enabled when linking with libdebug.lib, currently command
3587         line option --gstack enables stack pointer tracing for over/under
3588         flow, corresponding sources are in debug/gstack
3589
3590 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3591
3592         * doc/sdccman.lyx: updated SDCC version,
3593         * (PIC16 port): update list of command line options,
3594         * src/pic16/device.h (structure pic16_options_t): added field gstack
3595         to enable stack overflow tracing on push/pops,
3596         * src/pic16/device.c (statistics structure): added statistics
3597         structure,
3598         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3599         pic16_dump_int_registers): increase statistics counters for each
3600         * variable which is encountered
3601         * (pic16_dump_usection): emit each .udata variable to its own udata
3602         section,
3603         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3604         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3605         parameters via stack, otherwise use old scheme,
3606         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3607         assembler output file,
3608         * src/pic16/main.c: added command line options --gstack to enable
3609         push/pop tracing for stack overflow,
3610         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3611         instructions): added size of each instruction,
3612         * (pic16_countInstruction): estimate size of instructions in
3613         the_pFile list, inline assembly blocks are not counted,
3614         * (pic16_FixRegisterBanking): trace previous register usage, when
3615         banksel optimizations is greater than 0, don't emit a redudant
3616         banksel directive,
3617
3618 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3619
3620         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3621         * src/pic16/ralloc.c : applied same fix for pic16.
3622         * src/pic/gen.c : tidied it up a little.
3623
3624 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3625
3626         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3627         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3628
3629 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3630
3631         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3632
3633 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3634
3635         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3636         non-reentrant function __modsint in the interrupt function (thus
3637         corrupting math operations during serial I/O)
3638         * device/lib/ser_ir.c: as above, changed buffersize
3639         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3640         256.c,d for zeroing
3641         * doc/Makefile: added option -t for rsync
3642
3643 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3644
3645         * src/SDCCast.h (struct ast),
3646         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3647
3648 2004-10-20 Borut Razem <borut.razem AT siol.net>
3649
3650         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3651         package
3652
3653 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3654
3655         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3656         makefile targets,
3657         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3658         support functions to replace long sequences of MOVFF's from access
3659         bank registers to stack and vice versa,
3660         * src/pic16/device.h: added new field opt_flags, where optimization
3661         flags can be set to enable certain features,
3662         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3663         * pBlock, (genFunction, genEndFunction): surroung loop for
3664         saving/loading used registers in stack with PC_INFO pCodes,
3665         INF_LREGS. Code in between can then be optimized by pCode optimizer
3666         to support function calls,
3667         * (genDataPointerSet): fixed bug which loaded float fields in
3668         structures with corrupt data,
3669         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3670         in a standard way debug info on stderr. Feature used for developing
3671         and debugging only,
3672         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3673         obsolete chunks of code,
3674         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3675         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3676         * pic16/src/pcode.c (pic16_newpCodeInfo,
3677         * (pic16_newpCodeOpLocalRegs),
3678         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3679         feature,
3680         * (pic16_pCodeConstString): printing of the initial value of a
3681         symbol as a comment is inhibited since parsing was already done by
3682         copyStr and output is corrupt,
3683         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3684
3685 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3686
3687         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3688
3689 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3690
3691         * as/mcs51/lkarea.c: removed old K&R style,
3692           (lnksect): changed check on boundary error,
3693           (lnksect2): changed check on boundary error,
3694           (lnksect2): extend XSTK to end of page if size = 1
3695         * as/mcs51/lkmain.c: removed old K&R style,
3696           (Areas51): create l_IRAM symbol
3697         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3698         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3699           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3700         * device/lib/_mullong.c: added version to be compiled with xstack
3701         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3702         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3703         * device/lib/mcs51/crtxstack.asm: fixed comment
3704         * src/SDCCglue.c: maxInterrupts defaults to 0,
3705           (emitMaps): added pdata,
3706           (createInterruptVect): (re)moved default,
3707           (glue): added pdata,
3708           (glue): moved __start__xstack to XSTK with default size 1
3709         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3710           and options.float_rent when options.stackAuto is set,
3711           (linkEdit): only write XDATA_NAME if provided on command line
3712         * src/SDCCmem.h,
3713         * src/SDCCmem.c: added pdata
3714         * src/port.h: added pdata_name to PORT
3715         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3716           (saveRegisters, unsaveRegisters): removed usage of B,
3717           (genMinus): fixed accumulator clash,
3718           (genJumpTab): added comment, this needs another look
3719         * src/mcs51/gen.c: added check for "B in use" paranoia,
3720           added pushB() and popB()
3721         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3722           chance
3723         * src/avr/main.c,
3724         * src/ds390/main.c,
3725         * src/hc08/main.c,
3726         * src/mcs51/main.c,
3727         * src/pic/main.c,
3728         * src/pic16/main.c,
3729         * src/xa51/main.c,
3730         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3731           added PSEG (PAG,XDATA) or NULL to port specifier
3732         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3733         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3734           (_mcs51_genInitStartup): removed __start__xstack equ,
3735           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3736         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3737         * src/z80/gen.c (_rleAppend): fixed warnings
3738         * support/regression/tests/zeropad.c: added pdata test
3739         * .version: bumped to 2.4.6
3740
3741 2004-10-17 Borut Razem <borut.razem AT siol.net>
3742
3743         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3744         as a part of nightly build
3745
3746 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3747
3748         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3749         WREG holds the first byte function parameters,
3750         * (aopForSym): take special case for symbols which are in FARSPACE
3751         but in CODESPACE too,
3752         * (assignResultValue): modified to take into account _G.useWreg,
3753         * (genCall): don't use wreg for parameter passing when function is
3754         declared as reentrant, too, added optimization INCF to stack
3755         pointer when stack parameter count is 1,
3756         * (genFunction, genEndFunction): refurnished and fixed to not using
3757         wreg for passing parameters when function has varargs or is
3758         reentrant, fixed bug with symbol name compare for generating
3759         functions in absolute address,
3760         * (pic16_storeForReturn): refurnished,
3761         * (genCmp): began writing a new version of the function, not ready
3762         yet, therefore it is disabled,
3763         * (genAssign): do not read code memory when assigning a function to
3764         a pointer function,
3765         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3766         array of characters, not pointer,
3767         * (pic16initialComments): in debug mode emit an .ident directive for
3768         the assembler,
3769         * (_process_pragma): emit a new warning type (internal to pic16)
3770         when setting stack to default length, emit a similar warning when
3771         placing a function at absolute address and address is not word aligned
3772         * (_pic16_parseOptions): added 'return TRUE' statement,
3773         * (_pic16_linkEdit): if compiling a source, then add the source's
3774         file object, first in the list of objects to link,
3775
3776 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3777
3778         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3779         * src/pic/main.c : removed VC warning.
3780         * src/pic/gen.c : changed comment.
3781
3782 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3783
3784         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3785         reference to a deprecated symbol _GPTRREG was causing failure to
3786         link. Thanks G. M. Gallant for the info.
3787
3788 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3789
3790         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3791         comments for Bugs item #954788.
3792
3793 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3794
3795         * src/pic16/device.c (pic16_dump_gsection,
3796         * pic16_groupRegistersInSection): handle symbols declared to be in
3797         access bank differently,
3798         * src/pic16/gen.c (struct _G): added field resDirect,
3799         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3800         send values read from stack directly to result and don't allocate
3801         temporary values,
3802         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3803         same registers,
3804         * (pic16_sameRegsOfs): NEW,
3805         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3806         free because they were not allocated from temporary pool,
3807         * pic16_popRegFromString): workaround to fix a problem with
3808         allocating variables twice or never,
3809         * (genGenPointerGet): using PRODL instead of FSR0H,
3810         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3811         instead of FSR0H,
3812         * (genAssign): take advantage of the _G.resDirect flag,
3813         * (genCast): around line 11844, use mov2f instead of directly
3814         MOVFF'ing between operands to account for literal values,
3815         * src/pic16/genutils.c: some new debug functions for gpsim have been
3816         added,
3817         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3818         float with integer part only,
3819         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3820         place variables in access bank
3821         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3822         updated sources to reflect recent changes in gen.c
3823
3824 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3825
3826         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3827         sources that searched for headers in installation path, now the
3828         device/include/pic16 is used,
3829         * src/pic16/glue.c (pic16glue),
3830         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3831         .line directives if not in debug mode, this suppresses assembler's
3832         warnings for ignored directives
3833
3834 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3835
3836         * src/port.h: made reset_regparms prototype void parameter explicit.
3837         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3838         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3839         * doc/sdccman.lyx: documented warning disabling and how to use
3840           printf_large to make it print floats.
3841         * device/include/stdbool.h: NEW
3842         * device/lib/_atof.c,
3843         * device/lib/_divuint.c,
3844         * device/lib/_divulong.c,
3845         * device/lib/expf.c,
3846         * device/lib/printf_large.c,
3847         * device/lib/sincosf.c,
3848         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3849         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3850           a completely reentrant lib.
3851
3852 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3853
3854         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3855         * device/include/pic16/stdio.h: fixed bug with colon
3856
3857 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3858
3859         * device/include/pic16/stdio.h,
3860         * device/include/pic16/stdlib.h,
3861         * device/include/pic16/math.h: NEW
3862         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3863         declared as _naked to reduce overhead
3864         * device/lib/Makefile.in (target port-specific-objects-pic16):
3865         changed * to *.* so to ignore the CVS directory,
3866         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3867         stacked variables back in stack,
3868         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3869         corruption
3870
3871 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3872
3873         * .version: bumped version number to 2.4.5
3874         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3875         * support/Util/SDCCerr.c (messages structure): added entry for
3876         W_POSSBUG2
3877
3878         Large cumulative patch for pic16 port and libraries.
3879         * device/include/pic16/sdcc-lib.h,
3880         * device/include/pic16/stdarg.h,
3881         * device/include/asm/pic16/features.h,
3882         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3883         * device/include/pic16/float.h: changes reentrant keyword with
3884         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3885         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3886         updated target build-libraries to include objects from gptr,
3887         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3888         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3889         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3890         all function headings,
3891         * src/SDCCmain.c: added global parameter userIncDirsSet,
3892         * (parseCmdLine): when option -I is encountered add directory to
3893         userIncDirsSet too,
3894         * src/version.awk: added space between control and long,
3895         * src/pic16/NOTES: added some notes for the port,
3896         * src/pic16/gen.c: added prototype for mov2fp function,
3897         * (fReturnpic16[]): properly named return value registers,
3898         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3899         * (aopForSym): added code to handle symbols with onStack flag set,
3900         symbols onStack are allocated PTRSIZE bytes,
3901         * (aopFreeAsmop): handles special case where asmops are stack objects,
3902         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3903         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3904         added argument lock to trace flaws in allocating temporary registers
3905         when developing port,
3906         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3907         * (pic16_popRegFromString): reenabled allocating a direct register
3908         from string,
3909         * (assignResultValue): various beautifications,
3910         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3911         referenced function argument,
3912         * (genIpush): reenabled to allow stacked arguments, handles only
3913         ic->parmPush iCodes,
3914         * (genCall, genPcall): major changes to allow for variable argument
3915         functions, fixed a bug with falsely restoring stack pointer after
3916         returning from call,
3917         * (genFunction): pending code for critical function,
3918         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3919         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3920         * (genNearPointerGet): fixed bug with indirect reading, was always
3921         reading from INDF0
3922         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3923         pointers,
3924         * (genAddrOf): rewrote code to take address of a stacked function parameter
3925         * (genCast): fixed casting to generic pointer type,
3926         * src/pic16/gen.h: added AOP_STA,
3927         * (struct asmop): added field stk,
3928         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3929         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3930         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3931         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3932         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3933         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3934         generic pointers,
3935         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3936         and library paths,
3937         * (pic16_port structure): generic pointer size is set to 3,
3938         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3939         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3940         compiler warning,
3941         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3942         operand is an iTemp,
3943
3944 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3945
3946         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3947         * debugger/mcs51/simi.c: addapt new syntax of s51
3948
3949 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3950
3951         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3952         * src/pic16/pcode.c: commented out some calls to free() in order to
3953         fix bug #989576,
3954
3955 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3956
3957         * src/SDCCicode.h,
3958         * src/SDCCicode.c (isiCodeInFunctionCall),
3959         * src/avr/ralloc.c (selectSpil),
3960         * src/pic/ralloc.c (selectSpil),
3961         * src/pic16/ralloc.c (selectSpil),
3962         * src/ds390/ralloc.c (selectSpil),
3963         * src/hc08/ralloc.c (selectSpil),
3964         * src/xa51/ralloc.c (selectSpil),
3965         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3966         stack in the middle of a function call sequence (fixes bug #1020268)
3967         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3968         costs associated with the minimum switch case.
3969
3970 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3971
3972         * src/SDCC.lex: fixed bug #1030549
3973
3974 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3975
3976         * src/SDCCcse.h (struct cseDef),
3977         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3978         over a function call if the CSE is derived from a symbol whose
3979         address has been taken (fixes bug #1029883)
3980         * support/regression/tests/bug-1029883: a new regression test for
3981         this bug
3982
3983 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3984
3985         * src/hc08/gen.c (emitinline): fixed bug #1029778
3986         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3987         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3988         and starts toward RFE #905167)
3989
3990 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3991
3992         * src/pic16/gen.c (mov2f): New function to move an operand to
3993         another without considering if it is a literal or a register,
3994         * (pic16_sameRegs): don't check if they are both AOP_REG,
3995         * (AccRsh): removed andmask=0 lines,
3996         * (genLeftShift): duplicated to be improved in future versions,
3997         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3998         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3999         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4000         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4001         * (insertBankSwitch): fixed inserting banksel directives algorithm
4002         for instructions that follow a skip instruction, this fixes a report
4003         for broken subtraction code generation,
4004         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4005         iCode is a left op, just in case result and right share the same
4006         registers
4007
4008 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4009
4010         * src/hc08/main.c,
4011         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4012         preservation of HX
4013         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4014         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4015         on 2004-09-12; it was buggy
4016
4017 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4018
4019         * src/SDCCsymt.h: removed RESULT_CHECK
4020         * src/SDCCast.c,
4021         * src/SDCCglue.c,
4022         * src/SDCCval.c,
4023         * src/pic/glue.c,
4024         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4025
4026 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4027
4028         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4029         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4030         configuration values no more rejected by compiler, they are assigned
4031         to configuration registers with a warning message instead,
4032         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4033         the for-loop so last conf register is emitted too,
4034         * (_pic16_initPaths): link library libsdcc.lib by default,
4035         * (_hasNativeMulFor): modified test for multiplication according to
4036         Raphael Neider's remarks. Integer multiplication is also done with
4037         support functions,
4038         * device/include/pic16/pic18fregs.h: corrected type error in while
4039         testing and including 18f6720 header file
4040
4041 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4042
4043         * src/pic16/device.h (pic16_options): removed field use_crt,
4044         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4045         until an optimization to handle single bits is added,
4046         * (pic16_loadFSR0): moved before genUnpackBits,
4047         * (genAnd): some white lines removed,
4048         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4049         leave_reset flags in pic16_options when using crt modules,
4050
4051 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4052
4053         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4054           for bugs 898889 & 979599. Also used some safer print instructions.
4055
4056 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4057
4058         * src/pic16/device.h (pic16_options_t): added field use_crt,
4059         crt_name, no_crt,
4060         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4061         catch a probable future bug,
4062         * src/pic16/gen.c: aopIdx function commented out,
4063         * (genAssign): commented out old code which used aopIdx,
4064         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4065         code, added if conditionals to take into account the --use-crt
4066         command line options,
4067         * src/pic16/main.c (pic16_optionsTable): added new command line
4068         options, --use-crt= and --no-crt,
4069         * (_pic16_linkEdit): now the proper crt object is added in the
4070         linker command line except than when --no-crt is specified,
4071         * src/pic16/pcode.c,
4072         * src/pic16/pcode.h: added some structures and functions for a new
4073         optimization scheme to compansate for instruction overhead between
4074         same iCodes, this scheme is currently under development and is not
4075         working in any way,
4076         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4077         to && operator,
4078         * device/lib/pic16/startup/crt0i.c,
4079         * device/lib/pic16/startup/crt0iz.c: added global char variable
4080         __uflags to force the generation of an idata section
4081
4082 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4083
4084         * doc/Makefile,
4085         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4086         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4087
4088 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4089
4090         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4091         Frieder) and clarified the default code optimization mode
4092
4093 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4094
4095         * src/SDCC.lex (doPragma, process_pragma),
4096         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4097         "opt_code_size", and "opt_code_balanced"
4098         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4099         regrouped options by category, added support for category headers
4100         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4101         and "--opt-code-size"
4102         * doc/sdccman.lyx: documented these new options and pragmas
4103         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4104         preference into account
4105
4106 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4107
4108         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4109           geniCodePreDec): Fixed bug 904237 by generating a warning
4110         * src/SDCCerr.h,
4111         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4112
4113 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4114
4115         * src/pic/device.c : When no max ram set validate full memory range.
4116         * src/pic/pcode.c,
4117         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4118
4119 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4120
4121         * device/lib/_gptrget.c,
4122         * device/lib/_gptrput.c: updated comment
4123         * device/lib/calloc.c,
4124         * device/lib/free.c,
4125         * device/lib/malloc.c,
4126         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4127         * src/SDCCcse.c (cseBBlock),
4128         * src/SDCCicode.c (printOperand, geniCodeArray),
4129         * src/SDCCicode.h (struct operand): fixed bug 868103
4130         * support/regression/tests/bug-868103.c: added
4131         * src/SDCCast.c (searchLitOp),
4132         * src/SDCCcse.h (struct cseDef),
4133         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4134         * src/SDCCicode.h (struct operand),
4135         * src/SDCCsymt.h (struct sym_link),
4136         * src/avr/gen.c (hasInc),
4137         * src/ds390/gen.c (hasInc),
4138         * src/hc08/gen.c (genPlusIncr, hasInc),
4139         * src/mcs51/gen.c (hasInc),
4140         * src/pic16/glue.c (pic16_printIvalChar),
4141         * src/pic16/ralloc.c (regWithIdx),
4142         * src/xa51/gen.c (hasInc) : removed warnings
4143         * src/SDCCast.c (createBlock): added comment ???
4144         * src/hc08/ralloc.c: updated comments
4145
4146 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4147
4148         * doc/sdccman.lyx: updated section on switch statements, added
4149         section about semaphore locking
4150         * doc/Makefile: added option -info for latex2html
4151         * device/lib/_gptrget.c,
4152         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4153
4154 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4155
4156         * src/pic/device.h,
4157         * src/pic/device.c,
4158         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4159          maxram is less than 0x100.
4160
4161 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4162
4163         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4164
4165 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4166
4167         * src/port.h,
4168         * src/mcs51/main.c,
4169         * src/ds390/main.c,
4170         * src/z80/main.c,
4171         * src/hc08/main.c,
4172         * src/pic/main.c,
4173         * src/pic16/main.c,
4174         * src/avr/main.c,
4175         * src/xa51/main.c
4176         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4177         a jump table is the best form for a switch statement, including
4178         automatic insertion of missing cases to make the case range
4179         continuous. Developed in collaboration with Frieder Ferlemann.
4180
4181 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4182
4183         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4184         accumulator result if it needs sign extension
4185
4186 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4187
4188         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4189
4190 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4191
4192         * device/lib/gbz80/printf.c,
4193         * device/lib/z80/printf.c: removed define for NULL
4194
4195 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4196
4197         * as/xa51/xa_link.c,
4198         * device/examples/ds390/ow390/ad26.c,
4199         * device/examples/ds390/ow390/cnt1d.c,
4200         * device/examples/ds390/ow390/counter.c,
4201         * device/examples/ds390/ow390/ds2480.h,
4202         * device/examples/ds390/ow390/ds2480ut.c,
4203         * device/examples/ds390/ow390/findtype.c,
4204         * device/examples/ds390/ow390/gethumd.c,
4205         * device/examples/ds390/ow390/owllu.c,
4206         * device/examples/ds390/ow390/ownetu.c,
4207         * device/examples/ds390/ow390/swt12.c,
4208         * device/examples/ds390/ow390/swtloop.c,
4209         * device/examples/ds390/ow390/temp.c,
4210         * device/examples/ds390/ow390/temp10.c,
4211         * device/examples/ds390/ow390/thermo21.c,
4212         * device/examples/ds390/ow390/tinilnk.c,
4213         * device/examples/ds390/ow390/tstfind.c,
4214         * device/examples/serialcomm/windows/serial.cpp,
4215         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4216         * device/include/reg51.h: fixed line endings for cvs
4217
4218 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4219
4220         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4221         packRegsForAccUse, packRegisters): new accumulator register
4222         packing algorithm
4223         * support/regression/ports/hc08/support.c (_putchar): suppress
4224         warning of unused variable
4225         * src/SDCCicode.c: added SWAP entry to codeTable
4226
4227 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4228
4229         * device/lib/sprintf.c: forgot to add this file before previous commit
4230
4231 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4232
4233         * src/pic16/gen.c (genPackBits): added operand right in function
4234         parameters, load result directly if p_type is POINTER (that is
4235         called by genNearPointerSet)
4236         * (genUnPackBits): added operand left in function parameters,
4237         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4238         FSR0 if accessing bitfields,
4239
4240 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4241
4242         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4243           _print_format; updated printf, sprintf, vsprintf
4244         * device/include/asm/default/features.h: corrected comment/define
4245         * device/lib/Makefile.in: added sprintf.c
4246         * device/lib/libsdcc.lib: added sprintf module
4247         * device/lib/printf_large.c,
4248         * device/lib/vprintf.c,
4249         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4250           into these 3 files
4251         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4252         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4253         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4254           hc08 test
4255         * support/regression/tests/zeropad.c: define idata as data for hc08
4256
4257 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4258
4259         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4260         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4261         labels are referenced at least once (even if a reference is not found)
4262         * src/hc08/gen.c (emitcode): set isComment flag for comments
4263         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4264         loads), rules 6a..6b (optimize jumps to return)
4265
4266 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4267
4268         * device/lib/acosf.c (acosf),
4269         * device/lib/asinf.c (asinf),
4270         * device/lib/atanf.c (atanf),
4271         * device/lib/ceilf.c (ceilf),
4272         * device/lib/cosf.c (cosf),
4273         * device/lib/coshf.c (coshf),
4274         * device/lib/cotf.c (cotf),
4275         * device/lib/fabsf.c (fabsf),
4276         * device/lib/floorf.c (floorf),
4277         * device/lib/log10f.c (log10f),
4278         * device/lib/logf.c (logf),
4279         * device/lib/sinf.c (sinf),
4280         * device/lib/sinhf.c (sinhf),
4281         * device/lib/sqrtf.c (sqrtf),
4282         * device/lib/tanf.c (tanf),
4283         * device/lib/tanhf.c (tanhf),
4284         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4285         replaced all instances of "reentrant" in the library functions
4286         defined in math.h with this macro.
4287         * support/regression/tests/float_trans.c: reenabled test for hc08
4288
4289 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4290
4291         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4292         erroneously deleted
4293
4294 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4295
4296         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4297         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4298         multi-byte volatile operands are used
4299         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4300         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4301         initialization to area GSINIT0 so that it would always precede
4302         any static initializers in GSINIT
4303         * support/regression/tests/zeropad.c: fixed idata define for hc08
4304         * support/regression/tests/bug-927659.c,
4305         * support/regression/tests/float_trans.c: disabled tests for hc08
4306         pending missing library routines
4307         * .version: increased version number to 2.4.4 - hc08 port now passes
4308         regression tests
4309
4310
4311 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4312
4313         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4314         * Makefile.common.in,
4315         * as/Makefile,
4316         * as/hc08/Makefile.in,
4317         * as/mcs51/Makefile.in,
4318         * as/z80/Makefile.in,
4319         * debugger/mcs51/Makefile.in,
4320         * device/include/Makefile.in,
4321         * device/lib/Makefile.in,
4322         * doc/Makefile,
4323         * link/Makefile,
4324         * link/z80/Makefile.in,
4325         * packihx/Makefile.in,
4326         * sim/ucsim/main_in.mk,
4327         * sim/ucsim/avr.src/Makefile.in,
4328         * sim/ucsim/doc/Makefile.in,
4329         * sim/ucsim/gui.src/serio.src/Makefile.in,
4330         * sim/ucsim/hc08.src/Makefile.in,
4331         * sim/ucsim/s51.src/Makefile.in,
4332         * sim/ucsim/xa.src/Makefile.in,
4333         * sim/ucsim/z80.src/Makefile.in,
4334         * src/Makefile.in,
4335         * support/cpp2/Makefile.in,
4336         * support/librarian/Makefile,
4337         * support/makebin/Makefile: added DESTDIR to the install path proposed
4338         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4339         * doc/sdccman.lyx: added DESTDIR documentation
4340
4341 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4342
4343         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4344         instruction for interrupt handlers, use fast returns when returning
4345         from high priority interrupts
4346
4347 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4348
4349         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4350         code generation
4351         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4352         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4353         bugs, ported much of Bernhard's code from mcs51
4354         * src/mcs51/gen.c (genSend),
4355         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4356         than one when calling a reentrant function
4357         * device/lib/_mullong.c: defined an alternate struct layout for big
4358         endian ports (hc08)
4359
4360 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4361
4362         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4363         test
4364
4365 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4366
4367         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4368         are sane and complete before asking the port its prefered parameter
4369         passing method (fixes bug #1017633)
4370         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4371         and _ret3
4372
4373 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4374
4375         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4376         problem in bitfields >= 8 bits.
4377
4378 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4379
4380         * src/SDCCsymt.c: undid changes that were not meant to be committed
4381
4382 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4383
4384         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4385
4386 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4387
4388         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4389           copied and wrong bit got inverted
4390
4391 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4392
4393         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4394         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4395         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4396         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4397         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4398         assignments to bitfields at known addresses
4399         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4400         reads from bitfields at known addresses
4401         * src/hc08/ralloc.c (packRegisters),
4402         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4403         genhc08Code): optimize pointer get values used as conditionals
4404         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4405         and branch
4406
4407 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4408
4409         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4410         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4411         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4412         as conditionals
4413
4414 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4415
4416         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4417
4418 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4419
4420         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4421         related problems
4422
4423 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4424
4425         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4426
4427 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4428
4429         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4430         mcs51 port
4431
4432 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4433
4434         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4435
4436 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4437
4438         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4439         cases use more compact code.
4440
4441 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4442
4443         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4444
4445 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4446
4447         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4448
4449 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4450
4451         * src/SDCCsymt.h,
4452         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4453         parameter of changePointer() from symbol* to sym_link*
4454         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4455         * src/SDCCsymt.c (compareType): void* type is castable to other
4456         pointers, but not necesarily an exact match.
4457         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4458         is no longer blindly treated as an exact match.
4459         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4460
4461 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4462
4463         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4464
4465 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4466
4467         * src/pic/gen.c,
4468         * src/pic/pcode.c,
4469         * src/pic/ralloc.h,
4470         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4471
4472 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4473
4474         * src/pic/device.c,
4475         * src/pic/device.h,
4476         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4477
4478 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4479
4480         * src/mcs51/gen.c (emitcode): fixed bug #992819
4481
4482 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4483
4484         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4485           there's no need to make it worse
4486
4487 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4488
4489         * src/mcs51/ralloc.c (deassignLR),
4490         * src/ds390/ralloc.c (deassignLR),
4491         * src/hc08/ralloc.c (deassignLR),
4492         * src/z80/ralloc.c (deassignLR),
4493         * src/pic/ralloc.c (deassignLR),
4494         * src/pic16/ralloc.c (deassignLR),
4495         * src/avr/ralloc.c (deassignLR),
4496         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4497         rlivePoint): fixed another part of bug #971834
4498
4499 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4500
4501         * src/z80/main.c: enabled "critical" keyword
4502         * src/z80/mappings.i,
4503         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4504         functions (fixes bug #979646)
4505         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4506
4507 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4508
4509         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4510           such as c:\mydir.
4511
4512 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4513
4514         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4515           doesn't disable too much optimizations
4516
4517 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4518
4519         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4520
4521 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4522
4523         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4524
4525 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4526
4527         * src/pic/gen.c tidied up tabs
4528         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4529         * src/pic/main.c tidied up tabs
4530         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4531         * src/pic/pcoderegs.c tidied up tabs
4532         * src/pic/ralloc.c tidied up tabs
4533
4534 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4535
4536         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4537         to S_FIXED for pic16 port and when symbol is not in level 0,
4538         allocate for S_REGISTER storage class and pic16 port, too,
4539         * src/pic16/device.h: prototype for checkSym,
4540         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4541         * (pic16_assignConfigWordValue): test the value and the mask to
4542         validate that the value is suitable for the configuration word,
4543         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4544         collect extern declared symbols, don't emit symbol twice, check
4545         first if symbol is in publics set first,
4546         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4547         * added command line '--fstack' which enables an experimental
4548         feature for stack access, too buggy to be used yet...
4549         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4550         * (pic16_allocDirReg): when register has storage class S_REGISTER
4551         allocate in pic16_dynAccessRegs,
4552         * device/include/pic16/pic18f????.h: modified configuration word
4553         naming convention, words started as CONFIG0H but should be CONFIG1H
4554
4555 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4556
4557         * device/include/mcs51reg.h: fixed bug 970993
4558
4559 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4560
4561         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4562         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4563         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4564         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4565         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4566         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4567           error/warning numbers,
4568           added function setWarningDisabled()
4569         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4570         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4571           _memcmp.c _memmove.c calloc.c realloc.c free.c
4572         * support/regression/tests/malloc.c: added tests for new functionality
4573         * support/regression/tests/zeropad.c: added tests for truncated initializers
4574           and initialized char arrays starting with '\x0'
4575         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4576
4577 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4578
4579         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4580
4581 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4582
4583         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4584         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4585         peephole 177.e. Thanks to anonymous
4586
4587 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4588
4589         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4590         function isn't used in the source but referenced as a
4591         variable initializer then declare it as extern in .asm file
4592
4593 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4594
4595         * .version: increased version number to 2.4.3
4596
4597         Adding version extension according to ChangeLog CVS revision
4598         * src/Makefile.in (target all): added dependency 'version.h'
4599         * (rule version.h): added rule to create version.h from ChangeLog,
4600         * (rule dep): added dependency version.h,
4601         * src/version.awk: AWK script to create version.h
4602         * src/SDCCdwarf2.c (dwWriteModule),
4603         * src/SDCCglue.c (initialComments),
4604         * src/SDCCmain.c (printVersionInfo): modified to write after
4605         version string the version extension number,
4606         * src/SDCCutil.c: included "version.h"
4607         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4608         number,
4609         * src/SDCCutil.h: added prototype for getBuildNumber
4610
4611         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4612         includeDirsSet, too,
4613         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4614         const char [] is found in function prototype...
4615
4616         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4617         moving to WREG with source is already in WREG,
4618         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4619         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4620         * (aopForSym): stack'ed symbols are partially supported, added
4621         if-clause to support symbols in FARSPACE,
4622         * (sameRegs): added test for AOP_ACC to see if registers are same,
4623         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4624         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4625         * (pic16_popRegFromString): will not allocate a new register if it
4626         doesn't find one by name, bug may have introduced...
4627         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4628         * (genIpush): revived to use pic16 port's stack,
4629         * (genAddrOf): added incomplete case for stack'ed operand,
4630         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4631         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4632         can handle multibyte operands,
4633         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4634         * (pic16initialComments): added message for MPLAB compatibility
4635         mode enabled,
4636         * src/pic16/main.h: prototype for pic16_mplab_comp,
4637         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4638         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4639         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4640         because of increased complexity of procedure,
4641         * (_process_pragma): stack pragma changed to format 'stack pos len',
4642         emit symbol '_stack_end' to conform with gplink,
4643         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4644         to search for register,
4645         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4646         PO_GPR_REGISTER,
4647         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4648         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4649         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4650         case for PO_GPR_REGISTER,
4651         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4652         dies, the new era is ahead !...
4653         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4654         pic16_dynInternalRegs,
4655         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4656         * (pic16_allocDirReg): minor optimizations and bug fixes,
4657         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4658
4659         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4660         load stack and frame pointer with address of 'stack_end' symbol
4661
4662 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4663
4664         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4665         without source code but only variable initializers
4666
4667 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4668
4669         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4670         external are not declared as extern to reduce overhead while linking
4671
4672 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4673
4674         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4675
4676 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4677
4678         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4679           Yee Keat for the patch
4680         * src/SDCCast.c (decorateType): fixed bug #979599
4681         * src/ds390/gen.h: removed local fReturnSizeDS390
4682         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4683         * src/ds390/gen.c (genAnd, genOr, genXor),
4684         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4685
4686 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4687
4688         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4689         add relFilesSet to $3, manipulate $2 to handle linking of object
4690         files without source files in command line,
4691         * device/include/pic16 (all headers): added ID location macros,
4692         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4693         entries for ID location bytes,
4694         * (pic16_assignIdByteValue): NEW,
4695         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4696         added field dumpcalltree to pic16_options_t,
4697         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4698         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4699         emitting rFalseIfx label after check_carry label,
4700         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4701         pic16_emitDIRegs), NEW
4702         * (pic16glue): dump .calltree file when option --calltree found,
4703         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4704         * (_pic16_genAssemblerPreamble): emit ID locations after
4705         configuration registers,
4706         * (pic16_linkCmd): modifications of the link command,
4707         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4708         * (pic16_pCodeInitRegisters): don't init stack registers,
4709         * (pic16_findPrevInstruction): fixed bug,
4710         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4711         bug with immediate registers,
4712         * (buildCallTree): traces stack push and pop,
4713         * (pct2): dump also stack usage for each function,
4714         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4715         * (pic16_allocDirReg): various modifications,
4716         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4717         fixed to 1,
4718
4719 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4720
4721         * src/pic16/pcode.c: removed buggy double colon
4722
4723 2004-07-01 Borut Razem <borut.razem AT siol.net>
4724
4725         * support/scripts/sdcc.nsi: added include/pic16 to setup
4726
4727 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4728
4729         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4730         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4731         target 'clean',
4732         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4733         specific command line arguments. Also added sample lkr script
4734         for placing a variable at a specific memory bank.
4735         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4736         at a specific memory bank,
4737         * (pic16_dump_isection): fixed bug which caused string literals to
4738         be omitted when dumping idata section,
4739         * (pic16_groupRegistersInSection): added code to handle registers
4740         in specific memory banks,
4741         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4742         public, all references are renamed too,
4743         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4744         AOP_DPTR2,
4745         * (pic16_storeForReturn): added case to handle when dest is WREG,
4746         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4747         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4748         pic16_rel_udata, check to see if that register is marked as being
4749         a member of a specific memory bank,
4750         * (pic16_printIvalCharPtr): added code to add string literals either
4751         to code or the idata sections,
4752         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4753         also accept the 'udata' pragma,
4754         * src/pic16/main.h: new structure types sectName and sectSym
4755         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4756         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4757         * (pic16_findPrevInstruction): fixed, it returned nothing,
4758         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4759         instruction combinations,
4760         * (pic16_FixRegisterBanking): heavily reorganised,
4761         * (pic16_AnalyzeBanking): if generating banksel directives is
4762         disabled, then don't call FixRegisterBanking at all,
4763         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4764         completely removed,
4765         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4766
4767 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4768
4769         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4770         Phuah Yee Keat <yk.phuah AT nestac.com>
4771
4772 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4773
4774         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4775         correctly the IVT even if it is relocated to some other location
4776
4777 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4778
4779         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4780         * device/include/pic16/pic18f2220.h: NEW,
4781         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4782         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4783         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4784         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4785         nodefaultlibs, ivt_loc is the location of the interrupt vector
4786         table, and nodefaultlibs signs that default libraries should not be
4787         linked in link stage,
4788         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4789         according to --ivt-loc argument,
4790         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4791         when pragma stack is found,
4792
4793 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4794
4795         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4796         256 (range check), 257 (do while), 258.a-f (bit banging
4797         f.e. on 3-wire SPI bus)
4798
4799 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4800
4801         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4802         variables used exclusively within a loop
4803
4804 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4805
4806         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4807
4808 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4809
4810         * src/SDCClrange.c (computeClash): fixed bug #971834
4811
4812 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4813
4814         * src/mcs51/gen.c (genCmp): fixed bug #975903
4815         * src/hc08/gen.c (operandsEqu),
4816         * src/ds390/gen.c (operandsEqu),
4817         * src/z80/gen.c (operandsEqu),
4818         * src/pic/gen.c (operandsEqu),
4819         * src/pic16/gen.c (operandsEqu),
4820         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4821         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4822
4823 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4824
4825         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4826
4827 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4828
4829         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4830         default case in switch statement,
4831         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4832         to eliminate problem with initialisation of pointers, but problem
4833         still exists,
4834         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4835         * (emitStaticSegment): removed various lines emitting debug info,
4836         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4837         added processor registers for utilizing EEPROM,
4838         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4839         configurable and set 8
4840
4841 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4842
4843         * .version: increased version number to 2.4.2,
4844
4845         Cumulative patch for pic16 port
4846         * src/pic16/device.c: changed scheme to dump initial values for
4847         variables in idata segment, all print_idata* functions were removed,
4848         now the pic16_printIval* will be called,
4849         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4850         * _pic16_printPointerType, pic16_printPointerType,
4851         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4852         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4853         NEW, similar to the respective functions in SDCCglue.c,
4854         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4855         way, emitting hex bytes,
4856         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4857
4858 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4859
4860         * src/avr/ralloc.c (serialRegAssign),
4861         * src/xa51/ralloc.c (serialRegAssign),
4862         * src/pic/ralloc.c (serialRegAssign),
4863         * src/pic16/ralloc.c (serialRegAssign),
4864         * src/hc08/ralloc.c (serialRegAssign),
4865         * src/z80/ralloc.c (serialRegAssign),
4866         * src/ds390/ralloc.c (serialRegAssign),
4867         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4868
4869 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4870
4871         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4872         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4873
4874 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4875
4876         Cumulative patch for pic16 port:
4877         * src/pic16/device.h (typedef PIC16_device) modified fields for
4878         defining microcontrollers,
4879         * src/pic16/device.c: added new info for all devices in Pics16 array,
4880         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4881         to be optimised out by the pCode optimiser,
4882         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4883         specially, bug reported by G.M. Gallant,
4884         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4885         as force'd so that cannot be optimised out by pCode optimiser,
4886         * src/pic16/pcode.c,
4887         * src/pic16/pcodepeeph.c,
4888         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4889         they are disabled by default, but can be enabled explicit with
4890         command argument --denable-peeps, for testing,
4891         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4892         --pomit-ivt in COMPILE_FLAGS
4893
4894 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4895
4896         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4897           compilation on MSVC
4898
4899 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4900
4901         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4902
4903 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4904
4905         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4906         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4907
4908 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4909
4910         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4911         would only assign 0x300001 register.
4912
4913 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4914
4915         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4916         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4917
4918 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4919
4920         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4921         for ds80c400
4922         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4923         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4924         added peephole 254 (left shift), 255 (jump table)
4925
4926 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4927
4928         * device/lib/Makefile.in: removed comment line with model-pic16,
4929         * (target port-specific-objects-pic16): the libraries and objects
4930         are copied to the build directory form the device/lib/pic16/bin
4931         directory
4932
4933         Cumulative patch concerning pic16 port:
4934         * library directory has been re-organized,
4935         * added support for PIC18F1220,
4936         * added headers and library sources for chips 18f1220,18f6520,
4937         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4938
4939         * configuration registers setting has changed, now each supported
4940         device has a complete description of the registers it uses,
4941         * all initialisations are moved to idata sections, these section
4942         can be absolute or relocatable,
4943         * fixed initialisation of codespace variables,
4944         * fixed warning about PCLATU and gpsim,
4945         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4946         * (genAssign): use table reads when assigning from variables in codespace,
4947         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4948         char/int variables placed in codespace,
4949         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4950         registers set in .asm file, no need for --pomit-config-words anymore,
4951         * (pic16glue): some 8051 legacy segments are commented out
4952         (to be removed completely),
4953         * added support for alternative assembler and linker with --asm=
4954         and --link= command line arguments,
4955         * peepholes are disabled automatically in the port, no need to
4956         specify on command line,
4957         * port supports natively char/int/long multiplication, but converts
4958         all divisions to support functions,
4959         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4960         to the file set in variable $2,
4961         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4962         strings in ASCII format and not in hex,
4963         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4964         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4965         allocate proper register if iCodes aren't temporary,
4966
4967 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4968
4969         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4970
4971 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4972
4973         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4974         is commented out
4975
4976 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4977
4978         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4979         computed address is reused
4980         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4981         multi-byte bitfields
4982
4983 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4984
4985         * src/z80/gen.c: (genArrayInit): must check for pointers too
4986
4987 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4988
4989         * support/regression/tests/zeropad.c: never meant to commit the
4990           nestedstruct test: removed, added check for GCC version
4991
4992 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4993
4994         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4995         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4996         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4997           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4998           bugs 928906 and 954082 half-empty initializers
4999         * src/SDCCsymt.h,
5000         * src/SDCCsymt.c (getAllocSize): added for above fix
5001         * src/z80/gen.c (genArrayInit): fixed bug 741044
5002         * support/regression/tests/zeropad.c: added tests
5003
5004 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5005
5006         * src/pic16/device.c (pic16_dump_section): corrected bug which
5007         caused some symbols of the libraries to be misplaced
5008
5009 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5010
5011         * src/pic16/glue.c,
5012         * src/pic16/ralloc.h,
5013         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5014         to fix conflict with pic port
5015
5016 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5017
5018         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5019         externs configuration variables,
5020         * src/pic16/ralloc.h,
5021         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5022         prototype in header, commented out some debug messages
5023
5024 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5025
5026         * src/pic16/glue.c,
5027         * src/pic16/main.c,
5028         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5029         for gpasm COFF object generation. Thanks to D. Hawkins for
5030         his patch info
5031
5032 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5033
5034         * src/ds390/main.c,
5035         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5036         Brock for spotting this)
5037         * src/ds390/gen.c (genEndFunction),
5038         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5039         interrupt handler and critical. Disable push/pop optimizations when
5040         peephole optimizations disabled.
5041
5042 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5043
5044         Updated pic16 library sources and headers.
5045         * device/lib/pic16/pic18f*/ ,
5046         * device/include/pic16/*.h: modified to handle structured SFR
5047         definitions
5048
5049 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5050
5051         * src/port.h (PORT structure): added hook initPaths, now each
5052         port can declare its own default search paths,
5053         which can been seen with the --print-search-dirs option,
5054         see pic16 port for example,
5055         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5056         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5057         * (doPrintSearchDirs): NEW, replaces in a central manner the
5058         printing of search dirs which was split in set*Paths functions,
5059         * (main): added call to port->initPaths and doPrintSearchDirs,
5060         * src/avr/main.c,
5061         * src/ds390/main.c,
5062         * src/hc08/main.c,
5063         * src/izt/i186.c,
5064         * src/izt/tlcs900h.c,
5065         * src/mcs51/main.c,
5066         * src/pic/main.c,
5067         * src/pic16/main.c: modified port structures to reflect addition of
5068         initPaths hook,
5069
5070         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5071         * (pic16_dump_section): for registers in same address reserve memory once,
5072         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5073         to no_banksel,
5074         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5075         result is greater in size than right or left,
5076         * (pic16_genUMult8X8_8): there are some cases where the result can
5077         be 16 bits size, so handle these,
5078         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5079         * (pic16_outBitC): modified to emit pcodes,
5080         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5081         or not,
5082         * (genDivOneByte): implemented algorithm to divide 8-bits,
5083         * (genCmp): uncommented goto, but issues still exist,
5084         * (genAnd): fixed a bug with variables >8bits,
5085         * (genPackBits): optimization added that uses BCF/BSF to change a
5086         single bit,
5087         * (genAssign): fixed bug when assigning floating point literals,
5088         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5089         __sdcc_gsinit_startup label,
5090         * src/pic16/main.c (_pic16_init): removed search directory
5091         initialisations,
5092         * (_pic16_initPaths): NEW, used to initialise search directories,
5093         * (_hasNativeMulFor): support functions for all except char/int
5094         multiplication, and char division,
5095         * (PIC16_port struct): modified entry for native mul support,
5096         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5097         no_banksel option,
5098         * (buildCallTree): call to register_usage is ifdef'ed out,
5099
5100 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5101
5102         * device/include/string.h: applied Stas Sergeev's patch to make this
5103         header file compatible with the preprocessor -Wundef option
5104         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5105         failure (fixes bug #941458)
5106
5107 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5108
5109         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5110         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5111         that the variable, not the function, should be static
5112         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5113         to be consistent with non-literal case
5114
5115 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5116
5117         * src/SDCCast.c (isConformingBody): fixed bug #949967
5118         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5119         convilong): fixed bug #952086
5120
5121 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5122
5123         * src/SDCCmem.c (allocVariables): fixed bug #955321
5124
5125 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5126
5127         * src/hc08/main.c (_hc08_genAssemblerEnd),
5128         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5129         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5130         completely eliminated the use of a temporary file
5131         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5132         when more than one file linked
5133         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5134
5135 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5138         which fixes bug #543481
5139         * support/regression/tests/bug-751703.c: fixed comments left from a
5140         cut and paste error
5141         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5142         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5143         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5144         scopes
5145         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5146         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5147         are now changed to underscores in moduleName
5148
5149 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5150
5151         * as/mcs51/lkmem.c: better fix for bug #954173
5152
5153 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5154         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5155
5156         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5157         * device/include/c8051f000.h,
5158         * device/include/c8051f120.h,
5159         * device/include/c8051f300.h,
5160         * device/include/c8051f310.h,
5161         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5162         PWM16) and detab'ed
5163
5164 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5165
5166         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5167         and mailing lists, doc'ed --no-peep-comments, removed reference
5168         to knoppix (newest version has no LyX/LaTeX), other minor changes
5169         * src/SDCCglue.c (glue): save 2 bytes stack space with
5170         option --main-return. The ljmp could probably be avoided too
5171
5172 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5173
5174         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5175
5176 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5177
5178         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5179         * src/SDCCopt.c (isLocalWithoutDef),
5180         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5181         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5182         (credit to Maarten Brock for patch #949363, on which this is based)
5183         * support/regression/tests/bug-751703.c: some test cases of extern used
5184         within inner scopes.
5185
5186 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5187
5188         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5189         SPEC_STRUCT
5190         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5191         struct definitions
5192         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5193         dwWriteLabel): fix to create valid debugger symbols even when
5194         the module name has non-alphanumeric symbols in it
5195         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5196         when a variable's allocation has been optimized away
5197
5198
5199 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5200
5201         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5202         * src/hc08/main.c,
5203         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5204         * src/mcs51/main.c,
5205         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5206         * src/ds390/main.c,
5207         * src/z80/gen.c (z80_emitDebuggerSymbol),
5208         * src/z80/main.c,
5209         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5210         * src/pic/main.c,
5211         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5212         * src/pic16/main.c,
5213         * src/avr/gen.c (avr_emitDebuggerSymbol),
5214         * src/avr/main.c,
5215         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5216         * src/xa51/main.c,
5217         * src/SDCCdebug.c (emitDebuggerSymbol),
5218         * src/SDCCdebug.h,
5219         * src/port.h: added a debugger struct to the port struct. Added a
5220         callback for defining debugger symbols
5221
5222         * src/SDCCast.c (createLabel),
5223         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5224         with isitmp = 1
5225         * src/SDCCicode.h,
5226         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5227         iCode back to the ast for the function
5228
5229         * src/hc08/ralloc.c (hc08_assignRegisters),
5230         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5231         unneeded fields from the regs struct.
5232         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5233         pushReg() & pullReg() functions instead of emitcode()
5234
5235         * src/hc08/gen.c (genLabel, genhc08Code),
5236         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5237
5238         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5239         debugger hooks
5240
5241         * src/hc08/gen.c (genEndFunction, genhc08Code),
5242         * src/hc08/gen.h,
5243         * src/mcs51/gen.c (genEndFunction, gen51Code),
5244         * src/mcs51/gen.h,
5245         * src/ds390/gen.c (genEndFunction, gen390Code),
5246         * src/ds390/gen.h,
5247         * src/z80/gen.c (genEndFunction, genZ80Code),
5248         * src/z80/gen.h,
5249         * src/z80/z80.h,
5250         * src/pic/gen.c (genEndFunction, genpic14Code),
5251         * src/pic/gen.h,
5252         * src/pic16/gen.c (genEndFunction, genpic16Code),
5253         * src/pic16/gen.h,
5254         * src/avr/gen.c (genEndFunction, genAVRCode),
5255         * src/avr/gen.h,
5256         * src/xa51/gen.c (genEndFunction, genXA51Code),
5257         * src/xa51/gen.h,
5258         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5259         specific code to cdbFile.c and out of the backend code generators
5260
5261         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5262         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5263         starting address is now 0
5264
5265         * as/hc08/asm.h,
5266         * as/hc08/m08pst.c,
5267         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5268         assembler directive for DWARF support
5269         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5270
5271         * src/src.dsp,
5272         * src/Makefile.in,
5273         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5274
5275 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5276
5277         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5278         and inappropriate peephole optimization in jump tables
5279
5280 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5281
5282         * as/hc08/m08pst.c,
5283         * src/SDCCglue.c: sdccopt works for the hc08 port now
5284
5285 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5286
5287         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5288
5289 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5290
5291         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5292
5293 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5294
5295         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5296         rules
5297         * src/SDCCmain.c,
5298         * src/SDCCglobl.h,
5299         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5300         comments from the peephole optimizer replacement rules
5301         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5302         symbols
5303         * src/SDCCcse.c (updateSpillLocation),
5304         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5305         equivalents
5306         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5307         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5308         objects far pointers
5309
5310 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5311
5312         * src/SDCCsymt.h: a missing part of my last change
5313         * src/pic/ralloc.c (regTypeNum),
5314         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5315
5316 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5317
5318         * src/SDCCicode.h,
5319         * src/SDCCicode.c (aggrToPtrDclType),
5320         * src/SDCCptropt.h,
5321         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5322         ptrPseudoSymConvert),
5323         * src/pic/ralloc.c (regTypeNum),
5324         * src/pic16/ralloc.c (regTypeNum),
5325         * src/hc08/ralloc.c (regTypeNum),
5326         * src/ds390/ralloc.c (regTypeNum),
5327         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5328         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5329
5330 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5331
5332         * link/z80/lkmain.c (afile),
5333         * as/hc08/lkmain.c (afile),
5334         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5335         prevent a pointer problem when a filename has no directory and
5336         no extension specified.
5337
5338 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5339
5340         * link/z80/lkmain.c (afile): allow periods in directory names
5341         * link/z80/lkmain.c (afile),
5342         * as/mcs51/lkmain.c (afile),
5343         * as/hc08/lkmain.c (afile): allow linker script file to have an
5344         extension other than ".lnk"
5345         * link/z80/lklex.c (getfid),
5346         * link/z80/lkmain.c (parse),
5347         * as/mcs51/lklex.c (getfid),
5348         * as/mcs51/lkmain.c (parse),
5349         * as/hc08/lklex.c (getfid),
5350         * as/hc08/lkmain.c (parse): Support comments in the linker script
5351         file on lines by themselves and after filenames
5352
5353 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5354
5355         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5356
5357 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5358
5359         * src/z80/peeph-z80.def: removed some peephole rules that don't
5360         work with multibyte arithmetic (fixed bug #937126)
5361         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5362         to registers and not global variables
5363         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5364         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5365         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5366         checking for assignments not internally generated (fixed bug #931895)
5367         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5368         structure member (fixed bug #930072)
5369
5370 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5371
5372         * src/SDCCmain.c (linkEdit),
5373         * src/hc08/main.c (_hc08_parseOptions),
5374         * as/hc08/Makefile.in,
5375         * as/hc08/aslink.h,
5376         * as/hc08/asm.h,
5377         * as/hc08/m08pst.c,
5378         * as/hc08/lkrloc.c (relr, rele),
5379         * as/hc08/lkarea.c (lnkarea)
5380         * as/hc08/lkmain.c (afile, parse),
5381         * as/hc08/lkelf.c: support for ELF output
5382         * as/hc08/lks19.c (s19),
5383         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5384
5385 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5386
5387         * as/mcs51/lkihx.c: Fixed bug #899105.
5388
5389 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5390
5391         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5392         .dsp files from Unix to DOS.
5393
5394 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5395
5396         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5397         function pointers; we have been compliant for several months now.
5398         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5399         change that was accidently commented out
5400         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5401         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5402         bug #922319
5403
5404 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5405
5406         * src/hc08/gen.c: output of all of the internal debugging information
5407         is now controlled by the D() macro; it is disabled by default
5408
5409 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5410
5411         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5412         harder to keep the same registers during a CAST iCode
5413         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5414         long via int can be done in a single cast, if the signedness is
5415         correct.
5416         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5417         putchar() in tinibios.c in ds390's library
5418
5419 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5420
5421         * src/SDCCast.c (decorateType): fixed bug #898889,
5422         cast result of a literal complement too
5423         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5424         fixed check for bitfields
5425
5426 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5427
5428         * src/SDCCicode.c (geniCodeLogic): made it static,
5429         (geniCodeLogicAndOr): added in order to fix bug #905492,
5430         (ast2iCode): fixed bug #905492
5431         * support/regression/tests/bug-905492.c: added
5432         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5433         (processParms): fixed bug #927659: don't copy parms, this will clear
5434         decorated flag
5435         * support/regression/tests/bug-927659.c: added
5436
5437 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5438
5439         * src/SDCCast.c (addCast): don't cast float to char
5440         * device/lib/libsdcc.lib: added _memmove
5441
5442 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5443
5444         * device/lib/large/Makefile: fixed parallel execution by
5445         replacing `make` by `$(MAKE)`
5446
5447 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5448
5449         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5450         offsets (fixes bug #923936)
5451
5452 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5453
5454         * device/lib/small/Makefile: fixed parallel execution by
5455         replacing `make` by `$(MAKE)`
5456
5457 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5458
5459         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5460
5461 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5462
5463         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5464         * src/regression/Makefile: Regression test was not running.
5465
5466 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5467
5468         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5469         complement if possible
5470         * src/SDCCval.c (valComplement),
5471         * src/SDCCicode.c (operandOperation): fixed complement of literal
5472         * support/regression/tests/onebyte.c (testComplement): added
5473
5474 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5475
5476         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5477         return an optimized tree; actually replace actParm with the new tree
5478         * src/SDCCast.h: added some parantheses to remove side effects
5479         * support/regression/tests/bug-920866.c
5480
5481 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5482         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5483         Bit operands were not being handled properly in the pic14 port.
5484         (now src/regression/add.c passes again).
5485
5486 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5487
5488         * src/SDCC.y (labeled_statement): case and default no longer require
5489         a following statement (RFE #893037)
5490
5491 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5492
5493         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5494         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5495         disabled (fixes bug #916294)
5496         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5497         "mov a,acc"; patch provided by Lenny Story
5498         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5499
5500 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5501
5502         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5503         functions
5504         * src/ds390/gen.c (genFunction, genEndFunction),
5505         * src/ds390/ralloc.c (ds390_assignRegisters),
5506         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5507         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5508         pushed if there are parameters passed on the stack. Also, a cleaner
5509         way to decide if r0/r1 should be pushed/popped. (Together they fix
5510         bug #918693)
5511
5512 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5513
5514         * doc/sdccman.lyx,
5515         * device/lib/mcs51/crtpagesfr.asm,
5516         * device/lib/mcs51/crtxinit.asm,
5517         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5518         to avoid confusion with Si Lab's SFRPAGE register.
5519
5520 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5521
5522         * src/SDCCglue.c (emitMaps): allow public sfr variables
5523         * src/SDCCglue.c (initialComments): include compiler build date
5524         with compiler version and put the timestamp of the generated
5525         assembly file on a serperate line to be less confusing.
5526         * src/port.h: added genInitStartup hook
5527         * src/avr/main.c,
5528         * src/ds390/main.c,
5529         * src/hc08/main.c,
5530         * src/pic/main.c,
5531         * src/pic16/main.c,
5532         * src/xa51/main.c,
5533         * src/z80/main.c: genInitStartup initialize as NULL (default to
5534         historical behaviour)
5535         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5536         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5537         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5538         library instead of hard coding it into the compiler.
5539         * support/regression/ports/mcs51-stack-auto/spec.mk,
5540         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5541         * device/lib/mcs51/Makefile,
5542         * device/lib/small/Makefile,
5543         * device/lib/large/Makefile,
5544         * device/lib/mcs51/crtpagesfr.asm,
5545         * device/lib/mcs51/crtstart.asm,
5546         * device/lib/mcs51/crtxclear.asm,
5547         * device/lib/mcs51/crtxinit.asm,
5548         * device/lib/mcs51/crtclear.asm,
5549         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5550         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5551         and into user configurable files.
5552         * device/lib/clean.mk: clean mcs51 directory too
5553         * support/regression/tests/longlit.c: added static to T1 declaration
5554         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5555         accesses in the initialization code
5556
5557 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5558
5559         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5560         OSCTRIMVAL as noted in bug #916008
5561
5562 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5563
5564         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5565         in loops with multiple exits (reported as incorrect registers
5566         used by Martin Helmling in Sdcc-user list)
5567
5568 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5569
5570         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5571         made ds390 register extensions look less like error messages
5572
5573 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5574
5575         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5576         reported by Adam Wozniak in Sdcc-user list
5577
5578 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5579
5580         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5581         arithmetic optimizations, added debug output
5582
5583 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5584
5585         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5586         * sdcc.spec: updated and split sdcc into 3 rpms
5587         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5588         needed for literals of LEFT_OP and '+'
5589         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5590         introduced RESULT_TYPE_NOPROM
5591         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5592         left shift
5593         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5594         limited promotion to int only for '*'
5595         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5596
5597 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5598
5599         * src/pic16/gen.c (genSkip),
5600         (genc16bit2lit), (gencjneshort): commented out
5601         (is_LitOp): new helper function, checks operand type
5602         (genCmpEq): rewritten
5603
5604 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5605
5606         * support/regression/tests/bug-908454.c: added
5607
5608 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5609
5610         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5611         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5612         (geniCodeCast): cosmetic, don't preserve bit storage class
5613         (geniCodeLeftShift): added promotion
5614         (geniCodeLogic): fixed regression
5615         * src/SDCCsymt.c (computeTypeOr): accept bits too
5616         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5617
5618 2004-03-07  Borut Razem <borut.razem AT siol.net>
5619
5620         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5621
5622 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5623
5624         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5625         version of pic16_genPackRegisters which does not check if ic is a
5626         CAST operator,
5627         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5628         function cause string1.c regression test fails
5629
5630 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5631
5632         * sim/ucsim/configure.in,
5633         * sim/ucsim/configure,
5634         * sim/ucsim/doc/Makefile.in: use docdir
5635         * src/SDCC.y: fixed sbit atrributes
5636         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5637         * src/SDCCast.c (decorateType): |^& need special promotion handling
5638         * src/SDCCast.h,
5639         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5640         * src/SDCCsymt.h (computeType),
5641         * src/SDCCicode.c: computeType() needs op
5642         * src/SDCCsymt.c (checkTypeSanity),
5643         * doc/sddman.lyx: "plain" bitfields are unsigned
5644         * src/SDCCsymt.c (computeTypeOr): added
5645         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5646         |^& ops
5647         * src/SDCCval.c (val*): computeType() needs op
5648         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5649         * support/regression/tests/onebyte.c: added tests for |^&
5650
5651 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5652
5653         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5654         for writing icode into asm output.
5655
5656 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5657
5658         * src/pic16/device.c: added some debug lines enabled
5659         with macro DEBUG_CHECK,
5660         * src/pic16/genarith.c: more debug in genPlus,
5661         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5662         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5663         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5664         * (aopForSym): onStack symbols are re-placed in data memspace,
5665         and onStack flag is cleared,
5666         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5667         copy temporary pcodeop,
5668         * (genPcall): added warning for not updating PCLATU,
5669         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5670         always true for pic16 port,
5671         * (genMultOneWord): NEW, supports integer multiplication,
5672         * (genMult): modified to call genMultOneWord,
5673         * (ifxForOp): added warning when return NULL,
5674         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5675         flag is set before call to operandFromSymbol for implicit
5676         added structures,
5677         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5678         options.intlong_rent are set by default,
5679         * (_hasNativeMulFor): modified to allow port generation of integer
5680         multiplication,
5681         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5682         set regtype to REG_SFR for all registers, restricting seting the
5683         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5684
5685 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5686
5687         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5688         more than 500 times in the regression tests
5689
5690 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5691
5692         * support/Util/SDCCerr.h,
5693         * support/Util/SDCCerr.c,
5694         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5695         enumerator_list),
5696         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5697         for symbol conflicts.
5698         * support/valdiags/tests/enum.c,
5699         * support/valdiags/tests/tentdecl.c,
5700         * support/valdiags/tests/struct.c: expect possible error messages
5701         referring to original symbol definitions.
5702         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5703         * src/SDCCsymt.h,
5704         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5705
5706 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5707
5708         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5709
5710 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5711
5712         * src/pic16/ralloc.c (newReg): fixed bug #908929
5713
5714 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5715
5716         * src/ds390/gen.c: added missing #include "main.h"
5717
5718 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5719
5720         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5721         checking if symbol is already in set,
5722         * src/pic16/device.h: prototype for checkAddSym,
5723         * src/pic16/gen.c: (_G): added entry interruptvector,
5724         * (assignResultValue): removed some commented out lines,
5725         * (genFunction): check for ISR via sym->type, absolute section for
5726         interrupt code is created via a new pBlock, the goto instruction is
5727         placed now correctly at the interrupt vector position, changed all
5728         references from ivec to _G.interruptvector,
5729         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5730         is the interrupt is a high priority one, same for return from ISR,
5731         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5732         externs to calls of checkAddSym,
5733         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5734         pic16_pcode_verbose flag is set,
5735         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5736         * src/pic16/pcoderegs.c: message about how many registers are saved
5737         will only be emitted if pic16_pcode_verbose flag is set,
5738
5739 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5740
5741         * src/ds390/ralloc.h,
5742         * src/ds390/ralloc.c (ds390_regWithIdx),
5743         * src/ds390/gen.c (emitcode),
5744         * src/ds390/main.h,
5745         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5746         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5747         ds390operandCompare, getRegsRead, getRegsWritten,
5748         initializeAsmLineNode): customized instruction size calculation for
5749         ds390, started basis for some register optimizations
5750         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5751         corresponding assembly output
5752         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5753         missing push/pop of r0/r1. Optimized push/pops
5754
5755 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5756
5757         * src/mcs51/main.c (instructionSize): fixed ACALL size
5758         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5759
5760 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5761
5762         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5763         the sorting of rlist with NULL elements
5764         * (print_idataType, print_idata): NEW to create idata sections
5765         * src/pic16/device.h: idataSymSet new variable
5766         * src/pic16/gen.c (genFunction): fixed some bugs in string
5767         comparing, improved the absolute section creation for ISRs,
5768         added FSR0L/FSR0H in registers that are saved in an ISR,
5769         * (genInline): fixed the processing of inline snippets,
5770         now they undergo no process by the peephole optimizer
5771         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5772         are placed in idataSymSet,
5773         * (pic16emitStaticSeg): extern symbols are added in externs,
5774         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5775         switching when aboslute variables are placed in access bank memory
5776         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5777         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5778         commented out with #if,
5779         * (pic16_packRegisters): reintroduce the check for CAST because some
5780         symbols are not correctly handled,
5781         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5782         pCodeInstruction instead of pCode,
5783         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5784         pCodeAsmDir definition,
5785         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5786         directive, then the argument directive is emitted without the leading
5787         tab, hack for inline labels which must be in the first column,
5788         * (compareLabel,pic16_findNextInstruction),
5789         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5790         * (insertBankSwitch): modified for the new pCodeAsmDir,
5791
5792 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5793         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5794
5795         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5796         instance,
5797         * (pushSide): commented out with #if,
5798         * (assignResultValue): fixed some typos in saving
5799         registers,
5800         * (genPcall): FIXED and sync'ed with genCall,
5801         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5802         * (genNearPointerGet): fixed to handle some more cases,
5803         implementation scheme via table reads,
5804         * (genConstPointerGet): modified to access code memory correct,
5805         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5806         and improved to handle some cases
5807         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5808         instead of "RETLW" for init data
5809         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5810         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5811         variables are placed in access bank memory (<0x80 and >=0xf80),
5812         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5813         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5814         TBLWT_POSTDEC,TBLWT_PREINC
5815         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5816         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5817         directives
5818         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5819         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5820         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5821         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5822
5823 2004-02-29  Borut Razem <borut.razem AT siol.net>
5824
5825         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5826         support/Util/findme.h, support/Util/system.h: enhance binary relative
5827         search for lib and include by using findProgramPath()
5828
5829 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5830
5831         * src/SDCCpeeph.h,
5832         * src/SDCCpeeph.c (pcDistance),
5833         * src/port.h,
5834         * src/mcs51/ralloc.h,
5835         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5836         * src/mcs51/main.h,
5837         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5838         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5839         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5840         size calculation port specific, started basis for some register
5841         optimizations
5842         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5843         missing push/pop of r0/r1. Optimized push/pops
5844         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5845         * device/lib/_modsint.c (_modsint),
5846         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5847         and stack version so regression tests pass
5848
5849 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5850
5851         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5852         * src/SDCCast.c (decorateType): catch another small optimization
5853         with '?' operator
5854         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5855         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5856         modified to finally use computeType() all over SDCC,
5857         see Feature Request #877103
5858         * src/SDCCval.h: cosmetic
5859         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5860         valCompare(); regression tested in muldiv.c
5861         * support/regression/tests/muldiv.c (testMod): mod sign follows
5862         dividend only
5863
5864 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5865
5866         * src/SDCCast.c (decorateType): fixed bug #902362
5867         * doc/INSTALL.txt: fixed install instructions for win32
5868
5869 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5870
5871         * device/include/Makefile.in (install): fixed by replacing spaces
5872         by tabs
5873         * doc/README.txt,
5874         * doc/INSTALL.txt: updated for release
5875         * doc/sdccman.lyx: added warning for --xstack being buggy
5876
5877 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5878
5879         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5880         to eliminate build warnings.
5881         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5882
5883 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5884            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5885
5886         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5887         removed -penable-stack, added comment for stack pragma, added
5888         warning for not initializing the stack/frame registers, removed
5889         comment at interrupts section
5890
5891         Stack is made permanent, there is no ability to disable stack usage.
5892         * src/pic16/device.h,
5893         * src/pic16/device.c: removed all references to USE_STACK macro,
5894         * src/pic16/device.c (pic16_dump_section): when no elements in
5895         rlist, free rlist before return,
5896         * (pic16_dump_int_registers): NEW, internal registers are a new set
5897         of general purpose registers reused by each function,
5898         * (checkAddReg): returns 1 if registers is added to set,
5899         * (pic16_groupRegistersInSection): when a registers is of type
5900         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5901         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5902         SRCASECMP macro is moved here from device.c
5903         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5904         PO_PCLATU, PO_PRODL, PO_PRODH,
5905         * (pic16_pCodeOpType, genMinus,
5906         changed compares to "a" register, with AOP_ACC,
5907         * (pic16_genPlus): fixed some bugs and indented properly,
5908         * (pic16_addSign): changed size to size+offset in the MOVWF
5909         instruction,
5910         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5911         multiply 8-bit operand by literal, result is 8-bit,
5912         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5913         multiply 2 8-bit operand, result is 8-bit,
5914         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5915         genUMult8X*_16,
5916         * src/pic16/gen.c: changed accUse to contain WREG only,
5917         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5918         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5919         true, do not use immediate addressing any more unless sym is a
5920         pointer in codespace,
5921         * (aopForRemat): do not use immediate addressing when symbol not in
5922         codespace and when symbol's address is requested,
5923         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5924         accUse size (= 1),
5925         * (aopGet): added case for AOP_ACC and don't return "accumulator
5926         bug" but WREG instead,
5927         * (popGetTempReg): pushes contents of temporary register in stack,
5928         * (popReleaseTempReg): pops contents of temporary register from
5929         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5930         * (pic16_popGet): separated case AOP_ACC to return register WREG
5931         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5932         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5933         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5934         the use of immediate pointers to certain cases only.
5935
5936         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5937         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5938         * (assignResultValue, genCall, genRet): modified to use the new
5939         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5940         genPcall is still broken,
5941         * (genFunction): added code to create 'A' type pBlocks when
5942         interrupt functions are generated, code not extensively tested yet,
5943         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5944         * (genEndFunction): modified so ISRs pop stored registers from stack,
5945         * (genMultOneByte): cleanup,
5946         * (AccRsh): added flag andmask, to and result with appropriate mask,
5947         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5948         * (genDataPointerGet): fixed and reenabled its use,
5949         * (genNearDataPointerGet): bugs fixed,
5950         * (genDataPointerSet): bugs fixed,
5951         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5952         pic16_DumpSymbol, pic16_DumpOp,
5953         * src/pic16/genutils.h: function prototypes for the above functions,
5954         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5955         pointers,
5956         * (pic16emitRegularMap): many many many improvements, but needs a
5957         major cleanup,
5958         * src/pic16/main.c: enable_stack in pic16_options is removed,
5959         * (_pic16_parseOptions): removed command line options -penable-stack,
5960         * (_process_pragma): emit stack symbol only when stack pragma is
5961         processed,
5962         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5963         redirected to FSR0L/FSR0H pair,
5964         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5965         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5966         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5967         for immediates,
5968         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5969         * (dumpPicOptype): NEW,
5970         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5971         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5972         with movff instruction,
5973         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5974         added pic16_int_regs, some packRegsFor* functions are commented out,
5975         because produce errors,
5976         * src/pic16/NOTES: minor modifications
5977
5978 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5979
5980         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5981         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5982         --pack-iram.
5983         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5984         * as/mcs51/lkaomf51.c: fixed bug #895763
5985
5986 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5987
5988         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5989
5990 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5991
5992         * doc/sdccman.lyx: added details about the HC08 storage classes and
5993         interrupts, fixed the register usage info for z80 & gbz80
5994
5995 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5996
5997         * doc/sdccman.lyx: added more pic16 port documentation
5998         * device/include/pic16/: added header pic18fregs.h
5999
6000 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6001
6002         * doc/sdccman.lyx: added Vangelis' contribution
6003
6004 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6005
6006         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6007         extend to the next CALL or PCALL, not just to the next CALL.
6008
6009 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6010
6011         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6012
6013 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6014
6015         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6016         bug #895752 and a better fix for bug #716790
6017
6018 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6019
6020         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6021
6022 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6023
6024         * doc/sdccman.lyx: minor changes, minor changed
6025
6026 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6027
6028         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6029         which can't handle SDCC_NEWONEBYTEOPS,
6030         (geniCodeMultiply): removed conversion from mult to shift for pic14
6031         and pic16
6032
6033 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6034
6035         * src/hc08/gen.h,
6036         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6037         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6038         thus fixing bug #895406
6039
6040 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6041
6042         * device/lib/_modsint.c,
6043         * device/lib/_modslong.c: sign follows divisor only
6044         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6045         signs or signedness can be ignored
6046         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6047         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6048         added optimization for IFX,
6049         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6050         arguments;
6051         reenabled optimization for IFX, which was removed on 2004-01-11
6052         * src/SDCCast.h: added return type IFX
6053         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6054         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6055         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6056         SDCC_OLDONEBYTEOPS selects the old behaviour
6057         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6058         changed again and commented promotion rule
6059         * src/SDCCval.c (valDiv): promotion no longer necessary
6060         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6061         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6062         rewritten
6063         * support/regression/tests/onebyte.c: added
6064
6065 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6066
6067         * gen.c (genInline): reverted to old code for assemnling inline
6068         code because of bug reported James Chadd
6069
6070 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6071
6072         * ralloc.h: missing declarations from previous patch,
6073         seems that patch for ralloc.h was never applied, fixed
6074
6075 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6076            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6077
6078         * pcode.c,
6079         * pcode.h,
6080         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6081         indirect addressing. Marked FSR0 as deprecated
6082         * gen.c (pointerCode): commented out, not needed now
6083         (pic16_popGet2p): new MOVFF helper function
6084         (genGenPointerGet),
6085         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6086         (shiftRLong): removed duplicate debugging info
6087
6088 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6089
6090         * src/ds390/gen.c (genNearPointerGet),
6091         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6092         optimization with bits, but not bitfields.
6093         * src/ds390/ralloc.c (packRegisters),
6094         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6095
6096 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6097
6098         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6099
6100 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6101
6102         * src/SDCCsymt.h,
6103         * src/SDCCicode.c (operandFromSymbol),
6104         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6105         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6106         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6107         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6108         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6109         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6110         bug #892038
6111         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6112         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6113         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6114         * src/SDCCsymt.c (newSymbol),
6115         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6116         enumerator_list),
6117         * src/SDCCval.h,
6118         * src/SDCCval.c (newiList): fixed bug #885705
6119
6120 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6121
6122         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6123         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6124
6125 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6126
6127         * device/include/c8051f120.h,
6128         * device/include/c8051f300.h,
6129         * device/include/c8051f310.h: added/updated header files for Silicon
6130         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6131         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6132         in new section Submitting patches
6133
6134 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6135
6136         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6137         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6138         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6139         genGenPointerSet),
6140         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6141         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6142         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6143         genGenPointerSet),
6144         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6145         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6146         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6147         genGenPointerSet),
6148         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6149         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6150         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6151         genGenPointerSet): fixed bug #892400
6152         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6153         to eliminate build warnings.
6154         * src/SDCCast.c (processParms),
6155         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6156         fixed bug 751859
6157         * support/valdiag/valdiag.py: added GCC to the list of defines active
6158         when compiling with gcc
6159
6160 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6161
6162         * support/Util/SDCCerr.h,
6163         * support/Util/SDCCerr.c,
6164         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6165         with an incomplete type (fixed bug #883734)
6166         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6167
6168 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6169
6170         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6171
6172 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6173
6174         * src/SDCCast.c (decorateType),
6175         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6176         function pointer implementation
6177         * support/regression/tests/funptrs.c: added tests to verify both forms
6178         of function pointers work correctly. Added tests to verify parameters
6179         are passed in the correct order.
6180
6181 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6182
6183         * device.c (regCompare): registers are sorted by ascending
6184         address and increasing size,
6185         * main.c (_pic16_finaliseOptions): removed the declaration
6186         of compiler macro MCU. Now a macro of the format pic18fxxxx
6187         will be defined from the command line
6188
6189 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6190             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6191
6192         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6193         PCOP_RLCF was overwritten!
6194         * gen.c (genSkip): commented out calls to pic16_emitcode,
6195         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6196         * (genlshTwo),
6197         * (genRRC): added debugging info,
6198         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6199         overwritten while shifting,
6200         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6201         overwritten while shifting,
6202         * (AccLsh),
6203         * (AccRsh),
6204         * (shiftLLeftOrResult),
6205         * (shiftRLeftOrResult),
6206         * (shiftRLong),
6207         * (shiftLLong): Implemented with pic16_emitpcode
6208         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6209         * (genLeftShift): Fixed bug, operand for shift by variable always
6210         was "and"ed with 0x0f,
6211         * (genLeftShiftLiteral),
6212         * (genrshTwo),
6213         * (genRightShiftLiteral): added debugging info,
6214         * (genrshFour): added comment,
6215         * (genRightShift): determined signedness from operand "left"
6216         instead of "result"
6217
6218 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6219
6220         * src/SDCCicode.c (geniCodeParms),
6221         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6222         function pointers, fixed function pointer bugs #861242 and #861896
6223
6224 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6225
6226         * device/include/c8051f000.h,
6227         * device/include/c8051f120.h,
6228         * device/include/c8051f300.h: added header files for Silicon
6229         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6230
6231 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6232
6233         * src/SDCCast.c (processParams): added new type flow and restructured
6234         (gatherAutoInit): added new type flow
6235         (addCast): cosmetic changes
6236         (getLeftResultType): added new type flow for array indices, patch
6237         provided by Stas, see FR #877103
6238         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6239         array index patch by Stas
6240         * src/SDCCast.h: added prototype getResultTypeFromType()
6241         * src/SDCCval.h,
6242         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6243         * src/pic/glue.c (pic14emitStaticSeg),
6244         * src/pic16/glue.c (pic16emitStaticSeg),
6245         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6246         for initialization of symbols
6247         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6248         * support/Util/SDCCerr.h:
6249         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6250         * .version: bumped version number to 2.3.8
6251         * device/include/Makefile.in (install),
6252         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6253         avoid warnings
6254
6255 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6256
6257         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6258         Slade Rich fixed an optimization bug
6259         * src/pic/pcodepeep.c,
6260         * src/pic/pcoderegs.c
6261         * doc/Makefile (install): added test for directory
6262
6263 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6264
6265         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6266         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6267         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6268         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6269         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6270         * as/mcs51/asexpr.c (term),
6271         * as/hc08/asexpr.c (term): fixed bug #887146
6272
6273 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6274
6275         * src/z80/gen.c (genMult): handle single byte result product
6276         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6277         DUMMY_READ_VOLATILE (fixed bug #886367)
6278
6279 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6280
6281         * support/regression/tests/libmullong.c: fixed logic, on little endian
6282         hosts we ended without a mullong_wrapper()
6283
6284 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6285
6286         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6287         virus/worm forged address usage.
6288
6289 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6290
6291         Fixed promotion, it should be done on AST level:
6292         * src/SDCCast.c (addCast): added promotion to int
6293         (decorateType): updated call to upCast()
6294         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6295         usualUnaryConversions()
6296
6297 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6298
6299         * support/regression/tests/literalop.c (mulWrapper): Added a
6300         wrapper to remove integer overflow warnings.
6301
6302         * support/regression/tests/float_trans.c: Made work on host.
6303
6304         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6305         location of sz80.
6306
6307         * support/regression/generate-cases.py (main): Changed from inline
6308         to a main method.
6309
6310         * doc/Makefile (install): Changed to depth first to get rid of
6311         missing directory install warning.
6312
6313         * as/Makefile (install-doc): Made work on Mac.
6314
6315 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6316
6317         * src/SDCCast.c: added an additional type flow in decorateType() of
6318         opposite direction, see feature request #860006; it's enabled at runtime
6319         by setting the environment variable SDCC_NEWTYPEFLOW
6320         * src/SDCCast.h: changed prototype of decorateType()
6321         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6322         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6323         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6324         see feature request #877103
6325         * src/SDCCval.c: updated call of decorateType()
6326         (valBitwise): fixed bug #882876
6327         (valMinus): added promotion
6328         (valLogicAndOr): result is unsigned
6329         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6330         * src/SDCCsymt.c (computeType),
6331         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6332         must not cause an unsigned operation
6333         * src/pic/glue (pic14emitRegularMap),
6334         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6335
6336 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6337
6338         * src/pic/pcode.c (PCodeID): commented out left over debug code
6339
6340 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6341
6342         * support/valdiag/tests/overflow.c: added shift tests
6343         * src/pic/device.c,
6344         * src/pic/gen.c,
6345         * src/pic/gen.h,
6346         * src/pic/glue.c,
6347         * src/pic/main.c,
6348         * src/pic/pcode.c,
6349         * src/pic/pcode.h,
6350         * src/pic/pcodepeep.c,
6351         * src/pic/pcoderegs.c,
6352         * src/pic/ralloc.c,
6353         * src/pic/ralloc.h: applied patch from Slade Rich;
6354         added support for multiple code pages and multiple RAM banks on the
6355         PIC 14 port. The ASM files now no longer simply assume all the
6356         code / RAM are in the same page / bank. This means the linker can
6357         safely allocate code/RAM of separate ASM files to different pages/banks.
6358         * doc/sdccman.lyx: added Slade's tips
6359         * src/mcs51/peeph.def: fixed bug #880768
6360
6361 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6362
6363         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6364         * src/SDCCast.c (decorateType): fixed bug #880197
6365
6366 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6367
6368         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6369         getopt.h.
6370
6371         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6372         strtof is not part of C89 and isn't included with Mac OS X.
6373
6374 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6375
6376         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6377         shiftL2Left2Result): fixed bug #879326
6378         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6379         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6380         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6381         address fetch for clr instruction
6382         * device/lib/hc08/_mulint.c: created optimized assembly version
6383         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6384
6385 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6386
6387         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6388         proposed in FR #877103
6389
6390 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6391
6392         * src/SDCCval.c (cheapestVal): added missing checks
6393         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6394         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6395
6396 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6397
6398         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6399         equal operands
6400
6401 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6402
6403         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6404         loaded with the linker search paths (-L arguments) and the libraries
6405         to be linked with the current source (-l arguments). Changes
6406         currently will affect only the pic16 port.
6407         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6408         include path the port specific paths and port specific libraries,
6409         * gplink command now contains the $3 argument,
6410         * src/pic16/device.h,
6411         * src/pic16/device.c,: structure PIC_device is made public and
6412         renamed to PIC16_device, the same for variable Pics which is renamed
6413         to Pics16. Updated all references to them.
6414         * src/pic16/glue.c (pic16glue): corrected bug with code
6415         initialization which bypassed the variable initializations block.
6416
6417         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6418         COMPILE_FLAGS and added the --nostdinc option
6419
6420 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6421
6422         * device/include/mc68hc908jb8.h: Register defs for another member
6423         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6424
6425 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6426
6427         Documenting changes from previous commits.
6428         * configure.in (version 1.56),
6429         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6430         when generating output files to configure the pic16 library,
6431         but now I've commented it out, since gputils aren't installed in the
6432         SF compile farm, so library won't compile
6433
6434         * device/lib/Makefile.in (version 1.56): initially I've added in
6435         target 'all' the prerequestive 'model-pic16' so it compiled the
6436         pic16 library, but now I've commented it out for the same reasons
6437         above,
6438         * added targets 'model-pic16' and 'objects-pic16' to compile the
6439         library
6440         * added target 'port-specific-objects-pic16' to handle the
6441         generated libraries and copy them into the build/ directory
6442         * added target 'clean-intermediate-pic16' to clean intermediate
6443         files into pic16 directory
6444         * in target 'installdirs' added line to create directory pic16 in
6445         the installation path
6446
6447         * device/include/Makefile.in (version 1.11): in target 'install'
6448         added lines to copy all header files to installation path,
6449         * in target 'installdirs' added line create directory for pic16
6450         headers in the installation path
6451
6452 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6453
6454         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6455          a function call
6456
6457 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6458
6459         * configure,
6460         * device/lib/configure.in,
6461         * device/lib/configure: fixed for autoconf 2.57
6462
6463 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6464
6465         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6466         option so that it actually works. Made it specific to the z80, since
6467         the gbz80 doesn't have these kinds of I/O ports.
6468
6469 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6470
6471         * device/include/z180.h,
6472         * device/lib/_memcpy.c,
6473         * device/lib/_memmove.c,
6474         * device/lib/_mulint.c,
6475         * device/lib/ser_ir.c,
6476         * device/lib/ser_ir_cts_rts.c,
6477         * device/lib/_strcmp.c,
6478         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6479         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6480         portmode; added deprecation warning for bank= and protmode= forms.
6481         Also, guard against buffer overflow.
6482         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6483
6484 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6485
6486         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6487         changed interrupt vector table generation to only emit declared vectors.
6488         * device/include/Makefile.in: added missing backslash
6489         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6490
6491 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6492
6493         Mainly changes to support compilation of the device libraries
6494         * src/pic16/device.c: stack is allocated via symbol and not
6495         via literal number. The symbol is placed in the corresponding
6496         position of the data ram
6497         * (pic16_dump_section): relocatable and absolute uninitialized
6498         data are now emitted in sorted order to reduce section naming,
6499         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6500         weren't marked as being in the access bank,
6501
6502 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6503
6504         Added portion of GNU PIC Library under the directory
6505         device/include/pic16 and device/lib/pic16. These files
6506         contain the declarations of SFRs for the PIC18Fxx2 devices.
6507         The directory is initialized via configure from toplevel.
6508
6509 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6510
6511         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6512         the spilllocations to be compared correctly
6513
6514 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6515
6516         * src/SDCCast.c (decorateType): fixed bug introduced today
6517
6518 2004-01-12  Borut Razem <borut.razem AT siol.net>
6519
6520         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6521         doc/sdccman.lyx: upper case pragmas are deprecated
6522
6523 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6524
6525         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6526         in simpler and even better code
6527
6528 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6529
6530         * src/SDCCicode.c (operandOperation): fixed bug #874819
6531         * src/SDCCast.c (decorateType): fixed
6532         char foo (unsigned long ul) { return ul > 0; }
6533
6534 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6535
6536         * doc/sdccman.lyx: Moved and added some sections, small changes
6537         all over. Telling LaTeX to be less strict with word spacing
6538         to better keep the right margin. Changed some notes about
6539         maintainance of the ports in section 3.2.1 - is it OK like this?
6540
6541 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6542
6543         SDCC source changes:
6544         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6545         convilong): modified to inform the pic16 port that builtin functions
6546         are external
6547
6548         PIC16 PORT specific changes:
6549         * src/pic16/device.c pic16_dump_equates() added,
6550         processor registers declared internally by the port are emitted in
6551         the translation as equates,
6552         * src/pic16/gen.c: inline code is passed unprocessed to the
6553         translation,
6554         * (pic16_popGetLit2): fnuction modified to take second operand as
6555         pCodeOp pointer and not as literal,
6556         * (popRegFromIdx): prefixed with pic16_,
6557         * (pic16_popCombine2): modified to receive already allocated pCode
6558         operands,
6559         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6560         * (genFunction): initializes local stack frame and pushes on stack
6561         all the registers used by this function,
6562         * (genEndFunction): restores all registers from stack and restores
6563         stack frame,
6564         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6565         improvements,
6566         * (pic16glue): changed the program startup sequence,
6567         * added new dbName code 'A' for functions placed in absolute section
6568         * src/pic16/main.c: added function attribute _naked,
6569         * added pragma 'code' to place a fnuction at an absolute address,
6570         * added command line arguments --debug-ralloc and --pcode-verbose,
6571         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6572         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6573         * (pic16_newpCodeOpLit2): modified to take the second operand as
6574         pCodeOp pointer,
6575         * (pic16_printpBlock): modified to emit each function in a separate
6576         section,
6577         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6578         UPPER for immediate operands,
6579         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6580         instruction,
6581         * src/pic16/peeph.def: all peepholes with movff are commented out,
6582         because there is a problem in the pcode peep optimizer,
6583         * src/pic16/ralloc.c: the register allocator can now reuse local
6584         function symbols for another function. This saves register usage.
6585         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6586
6587         Added file src/pic16/NOTES with information about program writing on
6588         the current port version.
6589
6590 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6591
6592         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6593         and peephole 252 (array access)
6594
6595 2004-01-09  Borut Razem <borut.razem AT siol.net>
6596
6597         * src/SDCCmain.c : fixed #872250: -l command line defined library
6598           files are scanned before standard library files
6599
6600 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6601
6602         * src/SDCCast.c (decorateType): fixed bug #874046
6603
6604 2004-01-09  Borut Razem <borut.razem AT siol.net>
6605
6606         * support/scripts/sdcc.nsi: remove previous installation
6607
6608 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6609
6610         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6611         bytes for last interrupt vector (mcs51)
6612         * sdcc.spec: fixed typo
6613
6614 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6615
6616         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6617         gen51Code): more efficient parameter receive for --model-large
6618         ("bug" #845294)
6619
6620 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6621
6622         * src/ds390/main.c,
6623         * src/z80/main.c: added missed needLinkerScript flags (more than
6624         one port structure defined in these file)
6625         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6626         bug #795325
6627
6628 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6629
6630         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6631         * src/port.h: added flag needLinkerScript in port->linker
6632         structure to inform whether to create a .lnk file or not,
6633         * src/avr/main.c,
6634         * src/ds390/main.c,
6635         * src/hc08/main.c,
6636         * src/mcs51/main.c,
6637         * src/pic/main.c,
6638         * src/pic16/main.c,
6639         * src/xa51/main.c,
6640         * src/z80/main.c: changed appropriately to configure
6641         needLinkerScript flag
6642         * src/pic/gen.c,
6643         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6644         * src/pic/glue.c: added variable udata_section_name to
6645         override default uninitialized data segment definition for
6646         devices only with SHAREBANK memory (reported from Erik Epetrich)
6647         * (pic14emitOverlay): modified to emit a commented overlay segment
6648         directive when no overlay data exist
6649         * (picglue): modified to emit uninitialized data segment
6650         according to udata_section_name
6651         * src/pic/main.c (_pic14_parseOptions): added command line
6652         options --udata-section-name=[name] to override default
6653         udata definition name
6654         * modified _linkCmd and _asmCmd to include compiler passed
6655         arguments via -W option
6656         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6657         object file from '.rel' to '.o' in port->linker structure,
6658         changed size of fptr from 2 to 3 in port structure
6659
6660 2004-01-07  Borut Razem <borut.razem AT siol.net>
6661
6662         * support/scripts/sdcc.nsi: update PATH
6663         * support/scripts/sdcc.ico: craeted
6664
6665 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6666
6667         * device/include/Makefile.in: fix install
6668         * doc/Makefile: fix install
6669
6670 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6671
6672         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6673         in bug #860505
6674         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6675         how the function variable allocation summary is displayed; also
6676         include information about variables allocated to the overlay
6677         segment
6678
6679 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6680
6681         * as/mcs51/lkmain.c: Help about -Y option
6682         * as/mcs51/lkarea.c: Fixed gcc warnings
6683
6684 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6685
6686         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6687         fixed warning
6688         * support/valdiag/tests/overflow.c: added
6689         * src/SDCCast.c (decorateType),
6690         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6691         LEFT_OP (left shift)
6692
6693 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6694
6695         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6696         (default behaviour).
6697
6698 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6699
6700         A python script to validate compiler diagnostic messages. It can be
6701         used to verify that sdcc complains about bad c source code and
6702         gives a good location of the error.
6703         * support/valdiag/Makefile,
6704         * support/valdiag/valdiag.py,
6705         * support/valdiag/tests/*
6706
6707 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6708
6709         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6710         * src/SDCCsymt.c (newEnumType),
6711         * src/SDCCsymt.h
6712         * support/Util/SDCCerr.c,
6713         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6714         enum related bugs.
6715         * support/regression/tests/enum.c: added test for enum values that
6716         require at least 2 bytes of storage.
6717
6718 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6719
6720         * src/common.h: added ifndef/define/endif macros
6721         around the header file.
6722         Bug reported from Jesus Calvino-Fraga
6723
6724 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6725
6726         * sdcc.spec: updated
6727         * device/include/Makefile.in: don't install CVS directories
6728         * device/lib/Makefile.in: added removal of CVS directories after install
6729         * doc/Makefile: fixed install, added local_icons
6730         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6731         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6732         * src/ds390/gen.c (genRightShift): fixed bug #870788
6733         * src/SDCCast.c (decorateType): fixed bug #870781
6734
6735 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6736
6737         PIC16 port related changes:
6738         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6739         added variable stackPos,
6740
6741         * gen.c: genCall, assignResultValue: added support for
6742         pushing/retrieving function parameters to/from stack,
6743         genFunction,genEndFunction: setup stack frame for the
6744         generated function,
6745         genAddrOf: will be changed according to bug 863624
6746
6747         * added files genutils.c and genutils.h which contain gen*
6748         debugged and optimised functions extracted from gen.c
6749
6750         * glue.c: added variable 'externs' which holds extern symbols,
6751         pic16emitRegularMap: is modified to properly handle relocatable
6752          symbols under the new scheme,
6753         pic16createInterruptVect: is modified
6754         pic16printPublics: is modified to emit 'global' assembler directives,
6755         added pic16_printExterns to print extern symbols,
6756         pic16glue: initializes stack/frame pointer in the beginning of
6757         the assembly output. Temporary hack, will be corrected later,
6758         because gplink yet does not support stack and SDCC does not
6759         yet support a type of crt0.o object to create the final binary.
6760
6761         * Removed many lines that contain 8051 legacy code.
6762         * The code is finally placed under a 'code' directive.
6763         * Added port specific options.
6764
6765         * _process_pragma: simplified since now we do not need *special*
6766         include file to define SFR registers. But a separate header
6767         will be needed. This will be developed later.
6768         * _pic16_parseOptions: added, parses port specific options:
6769         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6770         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6771         --preplace-udata-with=
6772
6773         * _pic16_setDefaultOptions: modified to initialize section names,
6774         but hack is temporarly out of order since it needs improvement.
6775         * _pic16_genAssemblerPreamble: configuration words are emitted by
6776         their address instead of their name. This part is incomplete and
6777         supports only the 18Fxx2 devices. Other devices will emit an error
6778         during assembly since they do not contain the same set of config
6779         registers
6780         * _pic16_genIVT: is modified,
6781
6782         * pcode.c: added definitions for some hardware registers that are needed
6783         for stack support
6784         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6785         All PCI entries are updated. Now LFSR is supported.
6786         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6787         * added pic16_newpCodeOpLit2 to support instructions with
6788         two literal arguments
6789         * pic16_pCode2str: corrected code that emits assembler instructions
6790         with two literal operands and those that have an access bit modifier
6791         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6792         this fixes a bug which caused some labels to be lost, when an
6793         assembler directive was added, i.e. banksel,
6794         * pic16_FixRegisterBanking: improved logic that causes the insertion
6795         of bank switching,
6796         * InlineFunction: functions that are called once, are not any more
6797         inlined. This can be a port option in the future,
6798
6799         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6800
6801         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6802         hold the corresponding uninitialized symbols,
6803         * pic16_allocProcessorRegister: registers have explicit marked the
6804         accessBank field,
6805         * pic16_allocInternalRegister: registers are explicit marked as
6806         not used,
6807         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6808         processing list, so bit registers were lost,
6809         *
6810
6811         * ralloc.h: added field 'accessBank' and original symbol operand
6812         in register definition,
6813         * removed the field isMapped from register definition,
6814
6815         ** Several functions have been removed from various sources:
6816         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6817         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6818         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6819         pic16_assignRelocatableRegisters
6820
6821         ** others have been introduced:
6822         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6823         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6824
6825 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6826
6827         * support/scripts/inc2h.pl: changed definition of BIT_AT
6828         to emit 'sbit at' instead of 'bit at'. This was a request.
6829
6830         PIC16 port related preliminary changes:
6831         * gen.c: prefixed function popRegFromString with
6832         pic16_ and all references to it corrected
6833         * pcode.c: all pic16_pc_* hardware registers prefixed
6834         with underscore (_),
6835         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6836         * ralloc.c: newReg(): when register is REG_SFR then
6837         set address to rIdx,
6838         pic16_allocProcessorRegister(): marks register wasUsed=0
6839         pic16_writeUsedRegs(): added a call to assign processor
6840         registers via pic16_assignFixedRegisters
6841
6842 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6843
6844         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6845         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6846         variables in unused register banks.  Also the SSEG is placed
6847         wherever there is enough space for it, and IDATA can be anywhere
6848         in internal RAM.  For now compile using -Wl-Y[stack_size].
6849         The mem file is different for this option as well, since it
6850         makes no sense of talking about DSEG lenght.
6851
6852 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6853
6854         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6855         in certain cases, e.g. when ROM assignment, patch provided
6856         from Albert den Haan.
6857
6858 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6859
6860         Many signedness and type propagation fixes:
6861         * src/SDCCicode.c: made geniCodeCast() static
6862         replaced SPEC_ by IS_ (cosmetic)
6863         (operandOperation): fixed div and mod operation
6864         (usualBinaryConversions): added support for promotion of char
6865         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6866         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6867         (geniCodeAdd): an array index will stay unsigned, even if promoted
6868         from char to int
6869         (geniCodeArray): ditto
6870         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6871         * src/SDCCsymt.c (computeType): added more support for char;
6872         promotion of char is selectable by promoteCharToInt, fixed signedness
6873         for all cases
6874         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6875         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6876         * src/SDCCval (val*): replaced signedness calculation by
6877         computeType()
6878         rearranged if-branches (cosmetic)
6879         (valShift): added warning W_SHIFT_CHANGED
6880         (valCompare): fixed problem with different types
6881         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6882         * support/regression/tests/literalop.c: added many cases
6883         * support/regression/tests/ast_constant_folding.c: changed finally to
6884         'unsigned int'
6885         * .version: new year, new version: 2.3.7
6886         * src/SDCCmain.c (main): applied patch #866468
6887         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6888         provided by Scott Bronson
6889         * doc/sdccman.lyx: updated documentation for sdcdb
6890         updated and added chapter tips
6891
6892 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6893
6894         * src/SDCCsymt.h: missing from yesterday's commits
6895
6896 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6897
6898         * src/SDCC.y (struct_or_union_specifier),
6899         * support/Util/SDCCerr.c,
6900         * support/Util/SDCCerr.h: verify that struct & union tags are used
6901         as declared.
6902
6903 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6904
6905         * src/SDCCglobl.h: missing from yesterday's commits
6906
6907 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6908
6909         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6910         sft_attributes, struct_declaration, parameter_declaration,
6911         type_name, start_block, declaration_list),
6912         * src/SDCC.lex (check_type): support redefinition of typedef names
6913
6914 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6915
6916         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6917         aligned xdata arrays. Erik helped me with the if clause.
6918
6919 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6920
6921         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6922         warning
6923
6924 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6925
6926         * src/SDCCast.h,
6927         * src/SDCCast.c (newAst_),
6928         * src/SDCCicode.h,
6929         * src/SDCCicode.c (ast2iCode, newiCode),
6930         * src/SDCCglobl.h,
6931         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6932         expr, statement, expression_statement, selection_statement,
6933         iteration_statement, expr_opt, jump_statement): foundation for tracking
6934         sequence points
6935         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6936         point code too)
6937
6938 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6939
6940         * support/Util/SDCCerr.c,
6941         * src/SDCCast.h,
6942         * src/SDCCast.c (createCase, createDefault, decorateType),
6943         * src/SDCClabel.c (labelUnreach),
6944         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6945         to error messages.
6946         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6947         (with thanks to Stas Sergeev)
6948         * device/include/time.h,
6949         * device/lib/time.c (CheckTime): suppress unreachable code warning
6950
6951 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6952
6953         * src/SDCCast.c (createIvalCharPtr),
6954         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6955         bug #753752)
6956         * support/regression/tests/nullstring.c: tests for these two bugs
6957
6958 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6959
6960         * support/Util/SDCCerr.h,
6961         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6962         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6963         about storage class and 'at' used inside struct or union
6964         * src/SDCCBBlock.c (iCodeFromeBBlock),
6965         * src/SDCCcse.c (ifxOptimize),
6966         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6967         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6968         printIval, emitStaticSeg, emitOverlay),
6969         * src/SDCClabel.c (deleteIfx),
6970         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6971         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6972         gatherAutoInit, processParms),
6973         * support/Util/SDCCerr.h,
6974         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6975         reporting for post-parse errors.
6976
6977 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6978
6979         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6980         implicit casts via union; they don't work on big endian systems
6981         (possible fix for bug #861138)
6982
6983 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6984
6985         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6986         * src/mcs51/main.c: fixed the fix for bug #737001
6987
6988 2003-12-15  Borut Razem <borut.razem AT siol.net>
6989
6990         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6991
6992 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6993
6994         * support/makebin/makebin.c: put output in binary mode
6995
6996 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6997
6998         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6999         xdata and data memory on startup. Set the environment variable
7000         SDCC_NOGENRAMCLEAR to disable this.
7001         * src/mcs51/peephole.def,
7002         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7003         (allows non-interrupt and interrupt code to safely compete for a resource
7004         without the non-interrupt code having to disable interrupts)
7005
7006 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7007
7008         * src/SDCCicode.c (geniCodeAdd),
7009         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7010         with valFromType if type might be a pointer and host is big endian).
7011         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7012         types, not just integer types.
7013         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7014         multiply defined with mismatching "at" address.
7015
7016 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7017
7018         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7019         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7020         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7021         with embedded nulls (fixed bug #753752)
7022
7023 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7024
7025         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7026         Apparently this did not see much testing (endless loop)
7027
7028 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7031
7032 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7033
7034         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7035         gracefully handle NULL memmap pointers
7036
7037 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7038
7039         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7040         instead of deleting the iCode when an operand is volatile
7041         * src/z80/gen.c (genDummyRead),
7042         * src/mcs51/gen.c (genDummyRead),
7043         * src/ds390/gen.c (genDummyRead),
7044         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7045         not just IC_RIGHT
7046         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7047         * src/SDCC.y: fixed bug #850420
7048
7049 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7050
7051         Applied z80 i/o port patch from Peter Townson and fixed some operators
7052         to better handle operands in A register.
7053         * device/include/z180.h
7054         * src/SDCC.y
7055         * src/SDCCglue.c
7056         * src/z80/gen.c
7057         * src/z80/gen.h
7058         * src/z80/main.c
7059         * src/z80/peeph-z80.def
7060         * src/z80/peeph.def
7061         * src/z80/z80.h
7062
7063 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7064
7065         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7066
7067 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7068
7069         * device/lib/hc08/_mullong.c: Removed extra #endif
7070
7071 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7072
7073         * sim/ucsim/hc08.src/inst.cc,
7074         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7075         carries from x to h
7076         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7077         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7078         * device/include/stdarg.h: fixed varargs for hc08
7079         * device/lib/Makefile.in,
7080         * device/lib/hc08/Makefile,
7081         * device/lib/hc08/_mulint.c,
7082         * device/lib/hc08/_mullong.c: fixed some endian problems
7083
7084 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7085
7086         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7087         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7088         * device/lib/_gptrget.c,
7089         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7090
7091 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7092
7093         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7094         * src/SDCCast.c (astErrors): fixed bug #846007
7095         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7096
7097 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7098
7099         * src/SDCCast.c (decorateType): disabled a transformation I added in
7100         revision 1.188 (access to fields of a structure at an absolute address);
7101         it breaks with bitfields, extern declarations, and gcse analysis.
7102         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7103         could be assigned through a pointer, so don't complain.
7104         * src/SDCCast.c (astErrors),
7105         * src/SDCCast.h,
7106         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7107
7108 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7109
7110         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7111         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7112         output of __config directives, since gpasm now supports them
7113         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7114         pre-processor macro, i.e. -DMCU=p18f452
7115         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7116         and modified to handle 'cast' icode similarly to '=' icode
7117         * src/pic16/device.h (typedef struct PIC_device): added field
7118         'extMIface' to indicate that chip has external memory interface
7119         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7120         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7121         18F8720
7122
7123 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7124
7125         * src/SDCC.y (pointer): fixed bug #846006
7126         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7127         * src/SDCCast.c (decorateType): fixed bug #846009
7128         * src/ds390/peeph.def,
7129         * src/ds390/gen.c (genAnd, genOr),
7130         * src/mcs51/peeph.def,
7131         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7132
7133 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7134
7135         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7136         * src/SDCCdflow.c
7137         * src/SDCCcse.c
7138         * src/SDCCcse.h
7139         * src/SDCCBBlock.h
7140         * src/SDCCBBlock.c
7141
7142 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7143
7144         fixed bug #845089
7145         * src/SDCCbitv.h,
7146         * src/SDCCbitv.c: added function to free a bitvector
7147         * src/SDCClrange.h,
7148         * src/SDCClrange.c: added function to recompute the liveranges
7149         * src/avr/ralloc.c,
7150         * src/ds390/ralloc.c,
7151         * src/hc08/ralloc.c,
7152         * src/mcs51/ralloc.c,
7153         * src/pic/ralloc.c,
7154         * src/pic16/ralloc.c,
7155         * src/xa51/ralloc.c,
7156         * src/z80/ralloc.c: recompute the liveranges after register packing
7157
7158 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7159
7160         * src/SDCCloop.c (newInduction): fixed bug #845630
7161
7162 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7163
7164         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7165         inadvertantly left behind from my 2003-11-12 change
7166
7167 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7168
7169         Updated headers I neglected to commit yesterday.
7170         * src/SDCClrange.h,
7171         * src/SDCCicode.h
7172
7173 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7174
7175         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7176         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7177         * src/SDCCopt.c (eBBlockFromiCode),
7178         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7179         the creation of the key hash table from the sequencing so it can be used
7180         earlier (for some GCSE bug fixes still pending)
7181
7182 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7183
7184         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7185         * support/regression/tests/addsub.c: testing genPlus shortcut
7186
7187 2003-11-15  Borut Razem <borut.razem AT siol.net>
7188
7189         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7190
7191 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7192
7193         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7194         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7195         ordering is immaterial.
7196         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7197
7198 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7199
7200         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7201         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7202         (SIGSEV) of bug #840381
7203         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7204         unlink new file before rename if new and old filenames are the same)
7205
7206 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7207
7208         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7209         uninitialized variables) for the mcs51. Set environment variable
7210         SDCC_GENRAMCLEAR to test.
7211         xdata initialization slightly shorter
7212
7213 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7214
7215         * src/SDCCsymt.h,
7216         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7217         #838241 & 780691 (basicly the same bug)
7218         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7219         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7220
7221 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7222
7223         * src/SDCCmain.c (linkEdit): "fix" #834252
7224
7225 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7226
7227         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7228         * src/SDCCast.h,
7229         * src/SDCC.y: fixed bug #819403
7230
7231 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7232
7233         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7234         the reentrant attribute.
7235         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7236         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7237         simulation
7238         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7239         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7240         erroneously reduced to a literal.
7241         * src/hc08/ralloc.c (packRegisters, rematStr),
7242         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7243         some cases
7244
7245 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7246
7247         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7248         * doc/sdccman.lyx: changed from 'article' to 'book'
7249         * doc/Makefile: readded test_suite_spec and cdbfileformat
7250
7251 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7252
7253         * device/include/stdlib.h: include malloc.h to comply with ANSI
7254         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7255
7256 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7257
7258         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7259         * doc/clean.mk: also remove *.out files
7260         * doc/sdccman.lyx: some additions, larger top/bottom margins
7261
7262 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7263
7264         * src/SDCC.y: fixed bug #837365
7265         * support/regression/tests/bitopcse.c
7266         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7267         a symbol (might be valop instead)
7268         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7269         * device/lib/clean.mk: added hc08 to the cleaning list
7270
7271 2003-11-04  Borut Razem <borut.razem AT siol.net>
7272
7273         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7274           made 2003-11-04
7275         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7276           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7277           malloc is declared in standard stdlib.h
7278
7279 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7280
7281         * device/lib/hc08/Makefile: need to clean .rel not .o files
7282         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7283
7284 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7285
7286         * src/port.h,
7287         * src/hc08/main.c,
7288         * src/mcs51/main.c,
7289         * src/ds390/main.c,
7290         * src/z80/main.c,
7291         * src/avr/main.c,
7292         * src/pic/main.c,
7293         * src/pic16/main.c,
7294         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7295         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7296         tests (which uses the port's oclsExpense function)
7297         * src/SDCC.y,
7298         * src/SDCCast.c,
7299         * src/SDCCicode.c,
7300         * src/hc08/gen.c,
7301         * src/ds390/gen.c,
7302         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7303
7304 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7305
7306         * src/SDCCcse.c (ifxOptimize),
7307         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7308         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7309         deleting the IFX iCode.
7310         * src/hc08/ralloc.c: reduced unneeded slocs
7311         * src/hc08/gen.c: fixed bug in asmopToBoolean
7312
7313 2003-11-04  Borut Razem <borut.razem AT siol.net>
7314
7315         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7316           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7317           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7318           transferred to configure
7319
7320 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7321
7322         Use headers defined in the C[++] standards:
7323         * sim/ucsim/gui.src/serio.src/fileio.cc
7324         * sim/ucsim/gui.src/serio.src/frontend.cc
7325         * sim/ucsim/gui.src/serio.src/main.cc
7326         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7327         * support/Util/NewAlloc.c
7328         * as/hc08/lklibr.c
7329         * as/mcs51/lklibr.c
7330         * as/z80/aslist.c
7331         * as/z80/assym.c
7332
7333 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7334
7335         * Added MSVC projects for hc08 assembler and linker:
7336         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7337         /as/hc08/link_hc08.dsp
7338
7339 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7340
7341         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7342
7343 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7344
7345         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7346
7347 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7348
7349         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7350
7351 2003-10-31  Borut Razem <borut.razem AT siol.net>
7352
7353         * support/cpp2/cpplib.h,
7354           support/cpp2/cpplib.c,
7355           support/cpp2/cpplex.c,
7356           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7357           to switch _asm block preprocessing on / off. Default is
7358           #pragma preproc_asm +
7359
7360 2003-10-31  Borut Razem <borut.razem AT siol.net>
7361
7362         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7363           when outputting comment blocks (when executed with -C option) and
7364           _asm (SDCPP specific) blocks
7365
7366 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7367
7368         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7369
7370 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7371
7372         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7373
7374 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7375
7376         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7377         * src/SDCCast.c (decorateType): fixed bug #832664
7378
7379 2003-10-31  Borut Razem <borut.razem AT siol.net>
7380
7381         * support\cpp2\cpplex.c: fixed for SDCPP:
7382           comments(when executed with -C option) and _asm blocks
7383           were included even if they where in skipped #if block.
7384           Applied solution from GCC cpp 3.3.2
7385
7386 2003-10-31  Borut Razem <borut.razem AT siol.net>
7387
7388         * src/SDCC.lex: sdcc now understands both formats:
7389           '# <line_number> <file_name>' and
7390           '#line <line_number> <file_name>'
7391         * support/cpp2/cppmain.c: sdcpp now generates the standard
7392           '# <line_number> <file_name>' instead of former
7393           '#line <line_number> <file_name>'
7394
7395 2003-10-30  Borut Razem <borut.razem AT siol.net>
7396
7397         * support/cpp2/cpphash.h,
7398         * support/cpp2/cpplib.h
7399         * support/cpp2/cpplex.c,
7400         * support/cpp2/cppmain.c,
7401         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7402
7403 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7404
7405         Fixed a number of problems revealed by bug #827883.
7406         * src/SDCCloop.c (loopInvariants): Spill location of the
7407         result operand should be recomputed if extracted from
7408         a loop. Also, don't extract assignments of an iTemp
7409         from a literal.
7410         * src/SDCCast.c (isConformingBody): loop reversal should
7411         not occur if the control variable is involved with a
7412         relational operator.
7413
7414 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7415
7416         * .version: bumped to 2.3.6 to reflect the big improvements
7417         made by Erik and Klaus. Thanks!
7418
7419 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7420
7421         Replaced the livrange code.
7422         * src/SDCClrange.c: added new LR code
7423         * src/SDCCloop.c,
7424         * src/SDCCBBlock.h: removed remainig parts from old LR code
7425         * src/ds390/ralloc.c,
7426         * src/ds390/gen.c: minor fixes to make it work with new code
7427
7428 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7429
7430         * as/hc08/asm.h,
7431         * as/hc08/lkrloc.c,
7432         * src/hc08/gen.c,
7433         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7434         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7435         (tweaked fix for bug #818696)
7436
7437 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7438
7439         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7440
7441 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7442
7443         * src/SDCCmain.c,
7444         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7445         * src/mcs51/gen.c (gencjneshort),
7446         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7447         more efficient (per Scott Bronson's suggestion)
7448
7449 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7450
7451         Extended the semantics of the critical keyword to include
7452         individual statements. See RFE #827755 and #799831
7453         * src/SDCC.y
7454         * src/SDCCicode.c
7455         * src/SDCCopt.c
7456         * src/SDCCast.c
7457         * support/Util/SDCCerr.c
7458         * support/Util/SDCCerr.h
7459         * src/mcs51/gen.c
7460         * src/ds390/gen.c
7461         * src/hc08/gen.c
7462
7463 2003-10-19  Borut Razem <borut.razem AT siol.net>
7464
7465         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7466
7467 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7468
7469         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7470         Fixed bug #818696
7471         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7472         and predecrement operand is displayed
7473
7474 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7475
7476         * src/SDCCval.c (valMinus): fixed bug #826041
7477
7478 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7479
7480         Some hc08 related updates that I missed earlier
7481         * sim/ucsim/stypes.h
7482         * support/regression/ports/hc08/spec.mk
7483
7484 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7485
7486         New target "hc08" for the Motorola 68hc08 family of micros
7487
7488         * configure
7489         * configure.in
7490         * Makefile
7491         * src/hc08/*
7492         * src/SDCCmain.c
7493         * src/port.h
7494         * sim/ucsim/hc08.src/*
7495         * sim/ucsim/configure.in
7496         * src/ucsim/configure
7497         * sim/ucsim/packages_in.mk
7498         * as/hc08/*
7499         * as/Makefile
7500         * device/include/mc68hc908qy.h
7501         * device/lib/hc08/*
7502         * device/lib/Makefile.in
7503         * support/regression/ports/hc08/*
7504         * support/regression/Makefile
7505
7506 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7507
7508         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7509         regression test
7510         * src/ds390/gen.c (genCast): fixed bug #821957
7511
7512 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7513
7514         * device/lib/logf.c: "fixed" overlay bug
7515         * support/regression/ports/host/spec.mk: added m library
7516         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7517         * support/regression/tests/float_trans: added (for Eric)
7518
7519 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7520
7521         * src/mcs51/gen.c (genCpl): fixed bug
7522         http://sf.net/mailarchive/message.php?msg_id=6263915
7523
7524 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7525
7526         * src/SDCCast.c (decorateType): added extended constant folding
7527         * src/SDCCsymt.c (computeType): cleanup
7528         * src/SDCCval.c (valShift): minor optimization
7529         * support/regression/tests/ast_constant_folding.c: added
7530
7531 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7532
7533         * src/SDCCmain.c: removed some unintended changes
7534
7535 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7536
7537         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7538         * src/z80/gen.c: fixed part of bug #817589
7539         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7540
7541 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7542
7543         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7544         * src/SDCCcflow.c
7545         * src/SDCCcse.c
7546         * src/SDCCdflow.c
7547         * src/SDCClabel.c
7548         * src/SDCClrange.c
7549         * src/SDCCmem.c
7550         * src/SDCCopt.c
7551         * src/SDCCpeeph.c
7552         * src/SDCCset.c
7553         * src/avr/ralloc.c
7554         * src/ds390/ralloc.c
7555         * src/izt/ralloc.c
7556         * src/mcs51/ralloc.c
7557         * src/pic/ralloc.c
7558         * src/pic16/ralloc.c
7559         * src/xa51/ralloc.c
7560         * src/z80/ralloc.c
7561         * src/z80/gen.c: removed unused label "release:"
7562
7563 2003-10-06  Borut Razem <borut.razem AT siol.net>
7564
7565         * src/SDCC.lex: removed definition of unused variables
7566           save_optimize and save_options
7567
7568 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7569
7570         * clean.mk: removed '=' in "-maxdepth=1"
7571         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7572         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7573
7574 2003-10-06  Borut Razem <borut.razem AT siol.net>
7575
7576         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7577           my_unput() replaced by unput()
7578
7579 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7580
7581         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7582         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7583         type-punned pointer will break strict-aliasing rules"
7584         Old LR behaviour is again default; Klaus' LR can be choosen by
7585         defining the environment variable LRKLAUS
7586         * src/SDCCBBlock.h
7587         * src/SDCCloop.c
7588         * src/SDCClrange.c
7589         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7590         * clean.mk: fixed removal of files in bin/CVS/
7591         * device/lib/clean.mk: fixed removal of directories small and large
7592         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7593         * src/SDCCicode.c,
7594         * src/SDCCval.c: removed superflous test for pedantic
7595
7596 2003-10-05  Borut Razem <borut.razem AT siol.net>
7597
7598         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7599           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7600           message "unmatched #pragma SAVE and #pragma RESTORE"
7601
7602 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7603
7604         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7605           assembly, critical functions, atomic, nojtbound)
7606
7607 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7608
7609         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7610         * src/SDCCBBlock.h
7611         * src/SDCCloop.c
7612         * src/SDCCloop.h
7613         * src/SDCClrange.c
7614
7615 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7616
7617         * src/z80/gen.h,
7618         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7619         * src/mcs51/gen.h
7620         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7621         * src/ds390/gen.h
7622         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7623         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7624         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7625
7626 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7627
7628         * src/z80/gen.c (genRet): fixed bug #524753
7629         * src/z80/gen.c (genCast): fixed internal error on cast from
7630         pointer to long
7631         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7632         fix for bug #477835 to the z80
7633         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7634         for tracking iCodes in the peephole optimizer for z80
7635
7636 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7637
7638         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7639         the other part of bug #814548
7640         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7641
7642 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7643
7644         * src/SDCCcse.c: fixed part of bug #814548
7645
7646 2003-09-28  Borut Razem <borut.razem AT siol.net>
7647
7648         * src/asm.c: rewrite of printILine() to use temporary file instead
7649           a pipe
7650         * src/xa51/main.c: commented out declaration of int rewinds
7651
7652 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7653
7654         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7655
7656 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7657
7658         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7659         * src/asm.c (printILine): Fixed bug #811015
7660
7661 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7662
7663         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7664         freeing.
7665
7666 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7667
7668         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7669         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7670         to correctly handle general case of AOP_PAIRPTR
7671         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7672
7673 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7674
7675         * src/mcs51/ralloc.c (fillGaps),
7676         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7677         register positioning bug)
7678
7679 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7680
7681         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7682
7683 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7684
7685         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7686         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7687         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7688         (ralloc doesn't intentionally do this now, but perhaps later)
7689         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7690         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7691         register positioning bugs (Fixed bug #762602 and #795325)
7692         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7693         (Fixed bug #808779)
7694         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7695         lines that --i-code-in-asm generates
7696
7697 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7698
7699         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7700         trying to fclose a FILE* that was already closed.
7701
7702 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7703
7704         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7705         of const struct should be treated as if const themselves)
7706
7707 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7708
7709         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7710
7711 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7712
7713         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7714         Unix (/n) and DOS (/r/n) line terminations.
7715
7716 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7717
7718         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7719         bug #613775
7720
7721 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7722
7723         * src/mcs51/gen.c (genFunction, genEndFunction),
7724         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7725         and restore of EA so that stack offsets to parameters are
7726         correct when using both critical and reentrant/stack-auto.
7727         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7728         size (can be triggered in error if sloc is shared between
7729         different sized objects)
7730         * device/include/float.h: fixed macros to explicitly use
7731         unsigned long where needed
7732
7733 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7734
7735         Feature req. 799831: added code to allow nesting of critical functions
7736         * src/mcs51/gen.c (genFunction, genEndFunction)
7737         * src/ds390/gen.c (genFunction, genEndFunction)
7738
7739 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7740
7741         * src/SDCCsymt.c (sclsFromPtr),
7742         * src/SDCCsymt.h,
7743         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7744         support for standard C idiom of memory mapped variables; for
7745         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7746         to xdata int at 0x1234 tempvar = 1.
7747         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7748         provided by Akiya ISHIDA
7749
7750 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7751
7752         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7753         * src/SDCCval.c (constVal): added reduction from int to char
7754         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7755         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7756         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7757         to ignore the sign
7758         * support/regression/tests/shifts.c: fixed
7759
7760 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7761
7762         * src/z80/gen.c (genXor): Fixed bug #805445
7763
7764 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7765
7766         Fixed bug #621531 (const & volatile confusion in the type chain).
7767         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7768         refer to the const or volatile state of the pointer itself.
7769
7770         * src/SDCCast.c
7771         * src/SDCCglue.c
7772         * src/SDCCicode.c
7773         * src/SDCCsymt.c
7774         * src/SDCCval.c
7775         * src/SDCC.y
7776         * src/SDCCsymt.h
7777         * src/pic/gen.c
7778         * src/pic/ralloc.c
7779         * src/pic16/gen.c
7780         * src/pic16/ralloc.c
7781         * support/regression/tests/const.c
7782
7783 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7784
7785         When checking for duplicated modules, use absolute paths
7786         instead of relative paths.  Files changed:
7787
7788         * as/mcs51/lklib.c
7789         * link/z80/lklib.c
7790
7791 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7792
7793         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7794
7795 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7796
7797         * device/include/string.h: added size_t typedef, changed
7798         prototypes to use size_t, eliminated separate reentrant and
7799         non-reentrant declarations, added _memmove declaration
7800         * device/lib/_memcpy.c: changed to use size_t instead of int,
7801         changed /4 to >>2 to avoid division library call
7802         * device/lib/_memcmp.c,
7803         * device/lib/_memset.c,
7804         * device/lib/_strncat.c,
7805         * device/lib/_strncpy.c,
7806         * device/lib/_strncmp.c: changed to use size_t instead of int
7807         * device/lib/_memmove.c: new file (fixed bug #772294)
7808         * device/lib/Makefile.in: added _memmove.c
7809         * device/lib/z80/asm_strings.s: fixed bug #772290
7810         * support/regression/tests/bitfields.c: attempt to fix host assertion
7811         failure on amd64-unknown-linux2.2
7812
7813 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7814
7815         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7816         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7817         * as/z80/asmain.c (main): fixed bug #801766
7818
7819 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7820
7821         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7822         compilers
7823
7824 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7825
7826         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7827         reported in bug #800609
7828
7829 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7830
7831         * Top header beautifications in src/pic16 directory:
7832           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7833           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7834           pcoderegs.h, ralloc.c, ralloc.h
7835         * main.c: added top header and GPL license notice
7836         * pcode.c: fixed the if-conditional warning
7837
7838 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7839
7840         * device/lib/_mullong.c: replaced int by short for gcc
7841
7842 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7843
7844         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7845         and JUMPTABLE iCodes properly now (worked by accident before)
7846         * src/mcs51/gen.c (leftRightUseAcc),
7847         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7848         iCode properly now. Use getSize instead of nRegs since a & b
7849         aren't part of the nRegs tally.
7850
7851 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7852
7853         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7854         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7855           before instructions that use the _STATUS register
7856
7857 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7858
7859         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7860         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7861         fetching of the pointer
7862         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7863         copied from genNearPointerSet()
7864         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7865         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7866         If they pop r0/r1 they must be called in the opposite order than aopOp().
7867         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7868         (resp. --stack-auto), prepared for --xstack
7869
7870 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7871
7872         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7873
7874 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7875
7876         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7877         these ports have their own __sdcc_external_start()
7878
7879 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7880
7881         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7882         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7883         type for bits was changed. It resulted in bit variables becoming
7884         global, which is not permitted in PIC 14 assembly output.
7885
7886 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7887
7888         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7889
7890 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7891
7892         Z80 and MCS51 linkers complaint if a public symbol is defined
7893         in more than one library module:
7894
7895         * as/mcs51/lklib.c
7896         * link/z80/lklib.c
7897         * as/mcs51/Makefile.in
7898
7899 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7900
7901         A few small changes that speed up the peephole optimizer.
7902
7903         * src/SDCCpeeph.c
7904
7905 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7906
7907         Try to make the peephole optimizer smarter by maintaining
7908         an association between the assembly source code and the
7909         iCodes that originated them. Put this information to use
7910         with a new peephole rule condition "notVolatile" so that
7911         the rules can be aggressive yet still safe.
7912
7913         * src/SDCCpeeph.c
7914         * src/SDCCpeeph.h
7915         * src/mcs51/gen.c
7916         * src/mcs51/peeph.def
7917
7918 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7919
7920         Fixed bug #741761
7921
7922         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7923         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7924         if the left or right operand symbols have the accuse flag set.
7925
7926 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7927
7928         Changed the type of the result of the ! (NOT) operator to char;
7929         previously it returned the same type as the source. This allows
7930         us to eliminate all the genFloatNot functions (all of its target
7931         implementations were very buggy) since !float can use the same
7932         code as !long now.
7933
7934         * src/SDCCicode.c (ast2iCode): ! returns char
7935         * src/mcs51/gen.c (genNot, genNotFloat),
7936         * src/ds390/gen.c (genNot, genNotFloat),
7937         * src/z80/gen.c (genNot, genNotFloat),
7938         * src/pic/gen.c (genNot, genNotFloat),
7939         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7940
7941 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7942
7943         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7944         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7945            during interrupts. Ensure WSAVE is located at a shared bank address.
7946         2. Fixed page selection in some places
7947         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7948            the registers name strings.
7949         4. Fixed "signed / unsigned compare" compiler warnings.
7950         5. The PIC port manages its own allocation of the general purpose
7951            registers, but makes no attempt to reuse them. As a result when
7952            compiling it soon runs out of general purpose registers. Some
7953            additional code was added to the files pcode.c and device.c to walk
7954            through the function call tree and rename the registers so that they
7955            get reused.
7956
7957         * src/pic/device.c
7958         * src/pic/gen.c
7959         * src/pic/glue.c
7960         * src/pic/pcode.c
7961         * src/pic/pcode.h
7962         * src/pic/ralloc.c
7963         * src/pic/ralloc.h
7964         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7965         genPlus() & genMinus() when the result is the same as left or right
7966
7967 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7968
7969         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7970
7971 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7972
7973         Made bitfield a distinct type from bit so that bitfields
7974         convert as per ANSI C and bits retain their traditional
7975         boolean style behaviour. Implemented bitfield support in
7976         the z80 port.
7977
7978         * src/SDCCsymt.h,
7979         * src/SDCCsymt.c,
7980         * src/SDCCast.c,
7981         * src/cdbFile.c,
7982         * src/mcs51/gen.c,
7983         * src/ds390/gen.c: bit v bitfield split
7984         * src/z80/gen.c: New support for bitfields
7985         * support/regression/tests/bitfields.c: reenabled z80,
7986         added more tests
7987
7988 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7989
7990         Rules 246.x, 247.x relate to bitfields, the others speed up
7991         access to xdata mapped I/O devices.
7992
7993         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7994
7995 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7996
7997         Cleaned up genPackBits and genUnpackBits and added two helper
7998         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7999         for literal assignments in genPackBits (thanks to Frieder for
8000         reminding me).
8001
8002         * src/mcs51/gen.c
8003         * src/ds390/gen.c
8004
8005 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8006
8007         Fixed bug #748310 (pointer to function type mishandled when the
8008         function name is omitted). Also fixed a SIGSEGV when a function
8009         attribute (reentrant, etc) is used on a non-function or on a
8010         function but misplaced before the parameter list.
8011
8012         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8013         bug #748310
8014         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8015         * support/Util/SDCCerr.h,
8016         * support/Util/SDCCerr.c: Added func attr misuse error msg
8017
8018 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8019
8020         Fixed bug #787649 by anonymous
8021         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8022         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8023
8024 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8025
8026         Fixed numerous bitfield problems.
8027
8028         * src/SDCC.y: More bitfield related error checking
8029         * src/SDCCsymt.h,
8030         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8031         * support/Util/SDCCerr.h,
8032         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8033         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8034         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8035         * support/regression/tests/bitfields.c: tests added
8036
8037 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8038
8039         Made the constant following the "interrupt" keyword optional. If
8040         omitted, the function will not automatically be given an entry
8041         in the interrupt vector table (similar to #pragma NOIV, but
8042         less syntacticly kludgy). The interrupt number is also now
8043         range checked. Also fixed a bug in the high order bit example
8044         in the manual.
8045
8046         * src/SDCC.y
8047         * src/SDCCmem.c
8048         * src/SDCCglue.c
8049         * src/SDCCsymt.h
8050         * support/Util/SDCCerr.c
8051         * support/Util/SDCCerr.h
8052         * doc/sdccman.lyx
8053
8054 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8055
8056         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8057         * src/SDCCicode.c (operandOperation): rewritten some ops
8058         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8059         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8060         other type
8061         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8062         be re-activated by defining REDUCE_LITERALS)
8063         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8064         unsigned, but are signed by default
8065         * src/SDCCval.c (constVal): rearranged
8066         * src/SDCCval.c (valMod): preliminary fix
8067         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8068         * support/regression/literalop.c: added, work in progress
8069
8070 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8071
8072         Generate warnings for useless declarations like "char data;"
8073         that don't do what new users expect.
8074
8075         * src/SDCC.y
8076         * support/Util/SDCCerr.h
8077         * support/Util/SDCCerr.c
8078
8079 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8080
8081         * src/SDCCval.c (valMult): fix overflow detection of negative int
8082
8083 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8084
8085         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8086
8087         Changes to support big endian targets:
8088
8089         * src/ports.h
8090         * src/SDCCglue.c
8091         * src/avr/main.c
8092         * src/ds390/main.c
8093         * src/izt/i186.c
8094         * src/mcs51/main.c
8095         * src/pic/main.c
8096         * src/pic16/main.c
8097         * src/xa51/main.c
8098         * src/z80/main.c
8099
8100 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8101
8102         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8103         * device/lib/time.c: fixed warning "integer overflow in expression"
8104
8105 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8106
8107         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8108         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8109         constants are unsigned; added recognition of "u" flag for unsigned
8110         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8111         * src/SDCCval.c (valDiv, valMod): fixed signdness
8112         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8113         signedness of modulo, left and right shift
8114         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8115         * support/Util/SDCCerr.h: added warning W_INT_OVL
8116         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8117         * src/SDCCast.c (ast_print): improved output of constants
8118
8119 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8120
8121         Fixed some warnings when building with MSVC:
8122
8123         * as\mcs51\asdata.c
8124         * as\z80\asdata.c
8125         * as\mcs51\asm.h
8126         * as\z80\asm.h
8127         * link\z80\aslink.h
8128         * link\z80\lkdata.c
8129         * link\z80\lkeval.c
8130         * link\z80\lkgb.c
8131         * link\z80\lkihx.c
8132         * link\z80\lks19.c
8133         * link\z80\lksym.c
8134         * support\cpp2\cpplib.c
8135         * src\ds390\gen.c
8136         * src\mcs51\gen.c
8137
8138 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8139
8140         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8141
8142 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8143
8144         * support\librarian\clean.mk: Do not remove Makefile.
8145         * support\librarian\Makefile: added.
8146
8147 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8148
8149         Added librarian to MSVC build:
8150         * all.dsp
8151         * sdcc.dsw
8152         * support\librarian\librarian.dsp
8153
8154         'configure' not needed for librarian, removed:
8155         * support\librarian\configure
8156         * support\librarian\configure.in
8157         * support\librarian\config_in.h
8158         * support\librarian\Makefile.in
8159
8160         Hopefully these ones built the librarian and the rest of sdcc properly:
8161         * Makefile
8162         * Makefile.common.in
8163
8164         Messed up 'configure', so revert to previous version:
8165         * configure
8166         * configure.in
8167
8168 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8169
8170         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8171         there, while the mantissa of a double is "only" 53 bits wide.
8172
8173 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8174
8175         Adding sdcclib to the build.  MSVC project coming soon.
8176         Files added/changed:
8177
8178         * support\librarian\clean.mk
8179         * support\librarian\configure
8180         * support\librarian\configure.in
8181         * support\librarian\config_in.h
8182         * support\librarian\Makefile.bcc
8183         * support\librarian\Makefile.in
8184         * support\librarian\sdcclib.c
8185         * Makefile.bcc
8186         * Makefile
8187         * Makefile.common.in
8188         * configure
8189         * configure.in
8190
8191 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8192
8193         Linker now complaints if linked modules have conflicting options, for
8194         example, one compiled using --model-large and another one compiled with
8195         --model-small.  The following files were modified:
8196
8197         * as\mcs51\asdata.c
8198         * as\mcs51\aslink.h
8199         * as\mcs51\asm.h
8200         * as\mcs51\asmain.c
8201         * as\mcs51\asout.c
8202         * as\mcs51\i51pst.c
8203         * as\mcs51\lkdata.c
8204         * as\mcs51\lklibr.c
8205         * as\mcs51\lkmain.c
8206         * as\z80\asdata.c
8207         * as\z80\asm.h
8208         * as\z80\asmain.c
8209         * as\z80\asout.c
8210         * as\z80\z80pst.c
8211         * link\z80\aslink.h
8212         * link\z80\lkdata.c
8213         * link\z80\lklibr.c
8214         * link\z80\lkmain.c
8215         * src\SDCCglue.c
8216
8217 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8218
8219         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8220         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8221
8222 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8223
8224         * src/z80/mappings.i: fix _mul[us][int,long] entries
8225
8226 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8227
8228         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8229
8230 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8231
8232         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8233         * support/regression/tests/bitopcse.c: added
8234         fixed warning:
8235         * src/avr/gen.c:
8236         * src/pic/gen.c:
8237         * src/pic16/gen.c:
8238         * src/z80/gen.c:
8239         * src/xa51/gen.c:
8240
8241 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8242
8243         added support for new library format to z80, gbz80 linkers:
8244         *link/z80/aslink.h
8245         *link/z80/lklex.c
8246         *link/z80/lklib.c
8247         *link/z80/lklist.c
8248
8249 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8250
8251         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8252         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8253
8254 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8255
8256         added DUMMY_READ_VOLATILE:
8257         * src/SDCC.y:
8258         * src/avr/gen.c:
8259         * src/xa51/gen.c:
8260         * src/z80/gen.c:
8261         * src/pic/gen.c:
8262         * src/pic16/gen.c:
8263         * src/mcs51/gen.c:
8264         * src/ds390/gen.c:
8265         * src/SDCCcse.c (algebraicOpts): many improvements
8266         * src/SDCCcse.h: removed algebraicOpts()
8267         * src/SDCCicode.c (picDummyRead): added
8268
8269 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8270
8271         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8272         "Insufficient space in data memory".
8273
8274 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8275
8276         * src/mcs51/gen.c: fixed bug #771358
8277         * src/z80/gen.c: fixed bug #759087
8278
8279 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8280
8281         * src/pic16/glue.c: minor cleanup by Vangelis
8282
8283 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8284
8285         * device/include/regc515c.h: fixed #758477
8286         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8287         * device/lib/_gptrput.c: saved a few bytes
8288         * my tab spacing is 8, yours too?)
8289         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8290         * device/lib/serial.c: process RX bytes earlier than TX bytes
8291         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8292
8293 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8294
8295         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8296
8297 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8298
8299     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8300
8301 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8302
8303         * device/lib/Makefile.in: bad fix, reverted to 1.43
8304
8305 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8306
8307         * device/lib/Makefile.in: added missing z80 object files
8308
8309 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8310
8311         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8312         pic16 progress by Vangelis:
8313         * src/SDCCglobl.h:
8314         * src/SDCCmain.c:
8315         * src/pic/Makefile:
8316         * src/pic:
8317         * pic/Makefile:
8318         * pic16/device.c:
8319         * pic16/device.h:
8320         * pic16/gen.c:
8321         * pic16/gen.h:
8322         * pic16/genarith.c:
8323         * pic16/glue.c:
8324         * pic16/main.c:
8325         * pic16/pcode.c:
8326         * pic16/pcode.h:
8327         * pic16/pcodepeep.c:
8328         * pic16/peeph.def:
8329
8330 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8331
8332     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8333
8334 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8335
8336     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8337     added gbz80 build to MSVC project.
8338     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8339     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8340     from 8051 stuff and setup so it links using a .lnk file.
8341
8342 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8343
8344     * support/librarian/sdcclib.c: sdcc librarian.
8345     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8346     with sdcclib.
8347
8348 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8349
8350     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8351
8352 2003-07-02  Borut Razem <borut.razem AT siol.net>
8353
8354         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8355         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8356         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8357         src/xa51/main.c, src/z80/main.c:
8358         virtualization of glue() function: each port has it's own glue function,
8359         which is accessed by do_glue function pointer in PORT.general structure
8360
8361 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8362
8363         * DS800C400 fun, improved ROM interface and tinibios.
8364
8365 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8366
8367         * More support for DS80C400. Now includes beginning of interface to ROM.
8368
8369 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8370
8371         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8372
8373 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8374
8375         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8376
8377 2003-06-19  Borut Razem <borut.razem AT siol.net>
8378
8379         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8380
8381 2003-06-19  Borut Razem <borut.razem AT siol.net>
8382
8383         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8384         fixed Z80 port - crt0.o: cannot open.
8385
8386 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8387
8388         * support/Util/MySystem.c (merge_command): revert bad fix
8389
8390 2003-06-18  Borut Razem <borut.razem AT siol.net>
8391
8392         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8393
8394 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8395
8396         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8397         option --use-stdout sends errors to stdout instead of stderr.
8398
8399 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8400
8401         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8402
8403 2003-06-15  Borut Razem <borut.razem AT siol.net>
8404
8405         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8406         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8407         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8408         fixed width array of pointers replaced with sets;
8409         multiple include and lib paths ared transferred to preprocessor and linker
8410         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8411         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8412         fixed width array of pointers
8413         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8414         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8415         fixupPath(), getPathDifference()
8416         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8417         fixed width array of pointers
8418
8419 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8420
8421         * src/pic16/ralloc.c: fix warnings
8422         * src/pic16/pcode.c: fix warning
8423
8424 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8425
8426          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8427         know all the details, but essentially this set of changes enable
8428         the pic16 port to generate movff instructions and generate assembler
8429         directives,
8430         * src/SDCCmain.c:
8431         * src/pic16/gen.c:
8432         * src/pic16/glue.c:
8433         * src/pic16/pcode.c:
8434         * src/pic16/device.c:
8435         * src/pic16/main.c:
8436         * src/pic16/pcode.h:
8437         * src/pic16/pcoderegs.c:
8438         * src/pic16/ralloc.c:
8439         * src/pic16/ralloc.h:
8440
8441 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8442
8443         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8444         added option --vc, so sdcc errors and warnings are compatible with
8445         Microsoft Visual Studio.
8446
8447 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8448
8449         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8450           device/lib/libfloat.lib: added atof function.
8451
8452 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8453
8454         * doc/sdccman.lyx: updated to Lyx 1.3
8455         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8456         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8457         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8458
8459 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8460
8461         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8462
8463 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8464
8465         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8466           additions to the "related tools/documentation" section
8467
8468 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8469
8470         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8471
8472 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8473
8474         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8475         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8476
8477 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8478
8479         * doc/sdccman.lyx: fix double dash and other minor things
8480         * doc/Makefile: fix double dash
8481
8482 2003-05-28  Karl Bongers(patches from Martin Helmling)
8483         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8484           condition and ignore commands.
8485
8486 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8487
8488         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8489           is in parts still quite out of date, I did changes as far as I felt makes sense
8490           for a non-native english speaker.
8491           Please feel free to add to the manual or to correct my changes.
8492         * doc/Makefile: undid touching the date of intermediate tex files.
8493
8494 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8495
8496         * doc/sdccman.lyx: Manual has an index now
8497
8498 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8499
8500         Finalize muluint/mulsint and mululong/mulslong merging:
8501         * device/lib/_mulint.c
8502         * device/lib/_mullong.c
8503         * device/lib/gbz80/mul.s
8504         * device/lib/gbz80/stubs.s
8505         * device/lib/z80/mul.s
8506         * device/lib/z80/stubs.s
8507         * src/SDCCsymt.c (initCSupport)
8508
8509 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8510
8511         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8512         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8513           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8514           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8515           instead of /Zm500.
8516
8517 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8518
8519         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8520           the regression tests I'm not brave enough to enable 245.b, 245.c
8521         * doc/sdccman.lyx: added latex preamble for hyperref package.
8522           Using pdflatex this will give you a hyperlinked pdf file with
8523           bookmarks. (prepend '%' before /usepackage if this breaks something)
8524
8525 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8526
8527          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8528
8529 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8530
8531         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8532
8533 2003-05-21    <johan AT balder>
8534
8535         * src/SDCCglue.c (printIval): fixed bug #739934
8536
8537 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8538
8539         Applied patch from bug 737905 (renamed yylineo to mylineno):
8540         * src/altlex.c
8541         * src/SDCCast.c
8542         * src/SDCglobl.h
8543         * src/SDCC.lex
8544         * src/SDCCsymt.c
8545         * src/SDCCval.c
8546         * src/pic16/pcode.c: Cleaned warnings
8547         * src/pic16/pcodeflow.c: Cleaned warnings
8548         * src/pic16/pcoderegs.c: Cleaned warnings
8549
8550 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8551
8552         * src/pic16/pcode.c: Cleaned warnings
8553         * src/pic16/pcodepeep.c: Cleaned warnings
8554         * src/pic16/ralloc.c: Cleaned warnings
8555
8556 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8557
8558         * doc/sdccman.lyx: fixed bug 739745
8559         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8560
8561 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8562
8563         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8564         it can be defined with CFLAGS when running configure
8565         * src/SDCCmain.c: fixed compiling + linking with object files
8566
8567 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8568
8569         * configure.in: configure for pic16 port,
8570             added --disable-pic16-port
8571         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8572         * src/SDCCmain.c: linkOptions is changed to set *,
8573             added if/endif conditional macros to remove options help
8574             messages from optionsTable when a port is not configured, added
8575             support for the PIc16 port in the ports table, when executing
8576             the compiler with no port specified on command line, a default
8577             port is selected with the new macro DEFAULT_PORT which is
8578             defined in port.h, in setDefaultOptions() linkOptions is removed
8579             from initialization assignment, since now it is a set,
8580             parseCmdLine uses setParseWithComma for linkOptions, in
8581             linkEdit() linkOptions are accessed with new function indexSet()
8582             which returns the i'th item of a set variable. See SDCCset.c, in
8583             linkEdit() when calling buildCmdLine(), added linkOptions as
8584             last argument. Now users can pass arguments to gplink via the
8585             -Wl option, main() uses pic16glue() to glue up pic16 programs
8586         * src/SDCCpeeph.c: various changes to support pic16
8587         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8588             return the i'th item of the set
8589         * src/SDCCset.h: added function prototype for indexSet()
8590         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8591         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8592         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8593             added macro DEFAULT_PORT
8594         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8595         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8596             generated
8597         * src/pic16/glue.c: commented out some error producing lines
8598         * src/pic16/main.c: __config directives are commented out to stop
8599             gpasm complaining and test the linkage with gplink, _linkCmd and
8600             _asmCmd changed to be more gplink and gpasm friendly
8601         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8602             produced an error when parsed, peep rule 12 is added to utilize
8603             movff, but it is commented out since the pCode does not support
8604             yet a command with 2 address arguments
8605
8606 2003-05-18    <johan AT balder>
8607
8608         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8609         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8610 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8611
8612         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8613   Added feature to script commands from file.
8614
8615 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8616
8617         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8618         * src/SDCCutil.c: include ctype.h for win32
8619
8620 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8621
8622         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8623
8624 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8625
8626         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8627   Fixed so you can set breakpoints prior to run, run does not stop
8628   on entry now.  Add tbreak.  Other enhancements and fixes for use
8629   with ddd.
8630
8631 2003-05-12  Borut Razem <borut.razem AT siol.net>
8632
8633         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8634
8635 2003-05-11  Borut Razem <borut.razem AT siol.net>
8636
8637         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8638         the path of bin directory, so that PATH is the only env. variable, which has to be set
8639         in case of standard installation.
8640         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8641         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8642         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8643
8644 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8645
8646         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8647         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8648         temp files are in the port dir; clean the gen/test directory when
8649         generating new test.c
8650         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8651         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8652         * support/regression/tests/zeropad.c: added
8653
8654 2003-05-09    <johan AT balder>
8655
8656         * src/SDCCglue.c: fixed bug #597940
8657
8658 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8659
8660         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8661   cache sfr, optimize next,step, fix off by one sourceline,
8662   support ddd list function.
8663         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8664
8665 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8666
8667         * support/regression/HTMLgen.py: added compare_s2f()
8668         * support/regression/Makefile: redo 1.27
8669         * support/regression/generate-cases.py: redo 1.5
8670
8671 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8672
8673         * support/regression/tests/float.c: workaround 33 bit hex constant
8674         * support/regression/tests/simplefloat.c: fix division for host
8675
8676 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8677
8678         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8679         that tame's the PIC's over-aggressive optimizer.
8680
8681 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8682
8683          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8684          support for MSVC.
8685
8686 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8687
8688         Initial support for DS80C400. "Hello world" runs on TINIm400
8689         (with polled I/O).
8690
8691 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8692
8693          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8694          * Some notes on ddd usage added in debugger/README
8695          Martin Helmling adding more features and fixes for ddd GUI debugger.
8696          Code added for nexti, stepi, up, down, and other adjustments.
8697
8698 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8699
8700         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8701         * src/pic/peeph.def Added two rules to optimize carry manipulation
8702         * src/pic/* removed debug printfs
8703
8704 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8705
8706         * debugger/mcs51/cmd.c: added header newalloc.h
8707
8708 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8709
8710         * as/Makefile: new EXEEXT
8711         * as/z80/Makefile: remove trailing slash of BUILDIR
8712         * as/z80/clean.mk: new EXEEXT
8713         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8714         * support/cpp2/Makefile.in: new EXEEXT
8715         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8716
8717 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8718
8719         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8720         EXEEXT was introduced to fix all related problems with targets
8721         "clean", "install" and "uninstall"; a couple of further flaws
8722         especially with "clean" have been fixed too
8723         * as/mcs51/Makefile.in
8724         * as/mcs51/clean.mk
8725         * as/z80/Makefile
8726         * Makefile
8727         * clean.mk
8728         * debugger/mcs51/Makefile.in
8729         * debugger/mcs51/clean.mk
8730         * link/z80/Makefile
8731         * link/z80/Makefile.in
8732         * link/z80/clean.mk
8733         * link/Makefile
8734         * packihx/Makefile.in
8735         * packihx/clean.mk
8736         * sim/ucsim/Makefile
8737         * sim/ucsim/clean.mk
8738         * sim/ucsim/avr.src/Makefile.in
8739         * sim/ucsim/avr.src/clean.mk
8740         * sim/ucsim/s51.src/Makefile.in
8741         * sim/ucsim/s51.src/clean.mk
8742         * sim/ucsim/xa.src/Makefile.in
8743         * sim/ucsim/xa.src/clean.mk
8744         * sim/ucsim/z80.src/Makefile.in
8745         * sim/ucsim/z80.src/clean.mk
8746         * sim/ucsim/main_in.mk
8747         * sim/ucsim/packages_in.mk
8748         * sim/ucsim/gui.src/Makefile.in
8749         * sim/ucsim/gui.src/serio.src/Makefile.in
8750         * sim/ucsim/gui.src/serio.src/clean.mk
8751         * src/Makefile.in
8752         * src/clean.mk
8753         * support/cpp2/Makefile.in
8754         * support/cpp2/clean.mk
8755         * support/makebin/Makefile
8756         * support/makebin/clean.mk
8757         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8758         * doc/sdccman.lyx: --program-suffix no longer needed
8759
8760 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8761
8762          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8763          Martin Helmling added support for ddd GUI debugger.
8764          Code added to display assembly, set variables, and other commands
8765          to interface to ddd.
8766
8767 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8768
8769         * as/Makefile: fix target clean
8770         * as/clean.mk: fix target clean
8771         * as/z80/clean.mk: fix target clean
8772
8773 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8774
8775         * Makefile.common.in: added  AT EXEEXT AT
8776         * configure.in: removed all mingw32 stuff
8777         * configure: rebuilt from configure.in
8778         * doc/sdccman.lyx: updated section "installation"
8779         * support/scripts/sdcc_mingw32: adapted to configure
8780         * support/scripts/sdcc_cygwin_mingw32: added
8781
8782 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8783
8784         * src/pic Added object file support for the PIC port
8785         * src/pic Applied patch from Craig Franklin (this started the object file support)
8786         * src/regression Updated the PIC regression tests for object files
8787
8788 2003-04-20  Borut Razem <borut.razem AT siol.net>
8789
8790         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8791           lklex.c: In function `getfid':
8792           lklex.c:203: warning: array subscript has type `char'
8793         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8794           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8795         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8796           stack handling macros
8797
8798 2003-04-19  Borut Razem <borut.razem AT siol.net>
8799
8800         * "handling space characters in file path" task:
8801         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8802         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8803         * support/Util/MySystem.h: make it self-sufficient
8804         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8805           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8806           handling space characters in file path
8807         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8808           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8809         * support/Util/MySystem.c: handling space characters in executable's path
8810
8811 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8812
8813         * as/z80/Makefile: fix permanent rebuild of z80
8814         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8815         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8816
8817 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8818
8819         * src/SDCCopt.c: add special case optimization to replace modulo by
8820           a power of two with a bitwise AND.
8821
8822 2003-04-18    <johan AT balder>
8823
8824         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8825
8826 2003-04-17    <johan AT balder>
8827
8828         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8829         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8830
8831 2003-04-13  Borut Razem <borut.razem AT siol.net>
8832
8833         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8834         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8835           fixed mingw problem in adl_NORMALIZE_PATH
8836
8837 2003-04-12  Borut Razem <borut.razem AT siol.net>
8838
8839         * fixed "#pragma SAVE/RESTORE can not be nested":
8840         * src/SDCC.lex: reworked pragma handling functions
8841         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8842         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8843
8844 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8845
8846         * src/SDCCutil.c (pathEquivalent): defined but not used
8847         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8848         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8849         * configure: rebuilt from configure.in
8850         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8851         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8852         * device/include/Makefile.in: replace sdcc_datadir
8853         * device/lib/Makefile.in: replace sdcc_datadir
8854         * Makefile.common.in: add LDFLAGS from configure
8855         * packihx/Makefile.in: use LDFLAGS
8856         * src/Makefile.in: use LDFLAGS
8857         * support/cpp2/Makefile.in: add LDFLAGS from configure
8858         * support/makebin/Makefile: use LDFLAGS
8859         * .version: bumped version number to 2.3.5
8860
8861 2003-04-12  Borut Razem <borut.razem AT siol.net>
8862
8863         * completed "different paths" task:
8864         * src/SDCCmacro.c: fixed bug in handling quotes
8865         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8866         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8867
8868 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8869
8870         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8871
8872 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8873
8874         * ds390/gen.c ds390/peeph.def: fix bug 706781
8875
8876 2003-04-11  Borut Razem <borut.razem AT siol.net>
8877
8878         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8879
8880 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8881
8882         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8883         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8884          set - this bit used to not be set...).
8885         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8886           bad code in PIC Port
8887         * src/regression/and2.c added to test bug 609268
8888         * src/regression/Makefile added and2.c to regression test
8889
8890
8891 2003-04-08    <johan AT CP255758-A>
8892
8893         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8894         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8895         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8896
8897 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8898
8899         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8900         fix bug #487815
8901         * support/cpp2/Makefile.in: fix bug #487815
8902         * configure: rebuilt from configure.in
8903         * Makefile.common.in: docdir changed, new path suffixes
8904         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8905         * sdcc_vc_in.h: reflect changes from sdccconf.h
8906         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8907         * src/SDCCutil.h: remove BINDIR hack
8908         * doc/sdccman.lyx: update new path hierarchy
8909
8910 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8911
8912         * src/SDCCpeeph.c: added okToRemoveSLOC test
8913
8914 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8915
8916         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8917
8918 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8919
8920         * src/SDCCpeeph.c: added labelIsReturnOnly test
8921         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8922
8923 2003-04-05    <johan AT balder>
8924
8925         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8926         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8927         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8928         * src/SDCCast.c: fixed a warning
8929         * src/SDCCast.h: fixed a warning
8930         * src/SDCCicode.c (operandFromAst): fixed a warning
8931
8932 2003-04-04    <johan AT balder>
8933
8934         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8935         * src/SDCCast.c (decorateType): fixed bug #715076
8936         * src/SDCC.y: fixed bug #702907
8937
8938 2003-04-03    <johan AT balder>
8939
8940         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8941         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8942         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8943         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8944         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8945
8946 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8947
8948         * _decdptr.c: fix return values
8949         * _gptrget.c: fix return values
8950         * _gptrgetc.c: fix return values
8951         * _gptrput.c: fix return values
8952         * _mulint.c: fix return values
8953         * as/z80/Makefile: fix 'make -j' problem
8954
8955 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8956
8957         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8958         * configure.in: big cleanup, updated to autoconf 2.5x
8959         * configure: rebuilt from configure.in
8960         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8961         * sdcc_vc_in.h: reflect changes from sdccconf.h
8962         * doc/Makefile: fixed a flaw in "make install"
8963
8964 2003-04-02    <johan AT balder>
8965
8966         * src/ds390/gen.c (genCmp): no comments
8967         * src/mcs51/gen.c (genCmp): no comments
8968         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8969         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8970
8971 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8972
8973         * support/regression/generate-cases.py: place generated file in given sub directory
8974         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8975         * support/regression/Makefile: improvements for 'make -j';
8976         side effect: it's simpler and faster now
8977
8978 2003-03-31  Borut Razem <borut.razem AT siol.net>
8979
8980         * src/z80/main.c: link-{port} and as-{port} defined without path
8981         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8982
8983 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8984
8985         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8986
8987 2003-03-30  Borut Razem <borut.razem AT siol.net>
8988
8989         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8990           changed type of list parameter to set
8991         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8992         * src/port.h: changed type of do_assemble() parameter to set
8993         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8994           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8995           definition of "cppoutfilename" macro with NULL value in preProcess()
8996         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8997         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8998         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8999           replaced with set *binPathSet
9000         * shash_add() deallocates the item, if allready exsists, before adding the new one
9001         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9002
9003 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9004
9005         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9006           a nested for loop bug in the PIC port
9007         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9008           for loops
9009
9010 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9011
9012         * support/Util/dbuf.h: remove C++ stuff to make it portable
9013
9014 2003-03-28  Borut Razem <borut.razem AT siol.net>
9015
9016         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9017           literal strings in stringLiteral()
9018         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9019         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9020           to the project
9021
9022 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9023
9024         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9025
9026 2003-03-26    <johan AT balder>
9027
9028         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9029         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9030         * src/SDCCast.c (decorateType): fixed " -v < 3"
9031
9032 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9033
9034         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9035         Added Lenny Story's debug infrastructure changes:
9036         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9037         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9038         * src/cdbFile.c: added
9039         * src/SDCCdebug.c: added
9040         * src/SDCCdebug.h: added
9041         * src/SDCCast.c (createFunction)
9042         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9043         * src/SDCCmain.c (parseCmdLine, main)
9044         * src/SDCCmem.c (redoStackOffsets)
9045         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9046         * src/SDCCsymt.h
9047         * src/common.h
9048         * src/avr/gen.c (genAVRCode)
9049         * src/ds390/gen.c (gen390Code)
9050         * src/mcs51/gen.c (gen51Code)
9051         * src/pic/gen.c (genpic14Code)
9052         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9053         * src/xa51/gen.c (genXA51Code)
9054         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9055
9056 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9057
9058         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9059         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9060
9061 2003-03-22    <johan AT balder>
9062
9063         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9064
9065 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9066
9067         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9068         * doc/cdbfileformat.lyx: added, written by Lenny Story
9069         * doc/Makefile: added cdbfileformat.lyx
9070         * doc/clean.mk: added cdbfileformat.lyx
9071
9072 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9073
9074         * src/mcs51/peeph.def: fix bug #705773
9075
9076 2003-03-20    <johan AT balder>
9077
9078         An sfr/sbit can have an "at #" AND an initializer
9079         * src/SDCCsymt.c (checkSClass):
9080         * src/SDCCmem.c (allocGlobal):
9081         * src/SDCCmem.c (allocLocal):
9082         * src/SDCCast.c (createBlock):
9083
9084 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9085
9086         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9087
9088 2003-03-16    <johan AT balder>
9089
9090         Undid the hackup of const and volatile, the problem is much bigger
9091         * src/SDCC.y:1.65
9092         * src/SDCCast.c:1.171
9093         * src/SDCCglue.c:1.138
9094         * src/SDCCicode.c:1.146
9095         * src/SDCCsymt.c:1.150
9096         * src/SDCCval.c:1.65
9097
9098 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9099
9100         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9101         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9102
9103 2003-03-13    <johan AT balder>
9104
9105         Hackup const and volatile modifiers in type chains a bit:
9106         * src/SDCC.y:1.63
9107         * src/SDCCast.c:1.169
9108         * src/SDCCglue.c:1.136
9109         * src/SDCCicode.c:1.143
9110         * src/SDCCsymt.c1.146
9111         * src/SDCCsymt.h1.59
9112         * src/SDCCval.c:1.63
9113
9114 2003-03-12    <johan AT balder>
9115
9116         * src/SDCCBBlock.h: more LRH debugging junk
9117         * src/SDCCcflow.h: more LRH debugging junk
9118         * src/SDCCloop.c: more LRH debugging junk
9119         * src/SDCC.y (struct_declaration): fixed bug #697590
9120         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9121         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9122         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9123
9124 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9125         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9126         test function names must now match exactly).
9127         * src/SDCCcse.c: added special case in findCheaperOp to allow
9128         extending a short integer. Makes less awful code for bug 700121 test case.
9129
9130 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9131
9132         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9133         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9134
9135 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9136
9137         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9138         actually called (operandsNotEqual() was called for all
9139         operandsNotEqualX tests).
9140
9141 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9142
9143         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9144         with shorter literals. Fixes bug 700121.
9145
9146 2003-03-11    <johan AT balder>
9147
9148         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9149
9150 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9151
9152         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9153         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9154
9155 2003-03-10  Borut Razem <borut.razem AT siol.net>
9156
9157         * src/SDCCmain.c: pipe preprocessor's output
9158         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9159         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9160         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9161         which closes all pipes in pipeSet set
9162         * src/SDCCset.c: free deleted item in function deleteSetItem()
9163         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9164         moved from z80 to src subproject
9165         * .version: increased version number to 2.3.4
9166
9167 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9168
9169         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9170         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9171         * support/regression/ports/xa51/spec.mk: fix typo
9172
9173 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9174
9175         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9176
9177 2003-03-09  Borut Razem <borut.razem AT siol.net>
9178
9179         * src/SDCCmain.c: pipe preprocessor's output
9180         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9181         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9182         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9183         which closes all pipes in pipeSet set
9184         * src/SDCCset.c: free deleted item in function deleteSetItem()
9185         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9186         moved from z80 to src subproject
9187
9188 2003-03-09  Borut Razem <borut.razem AT siol.net>
9189
9190         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9191         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9192         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9193         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9194         * src/SDCCglobl.h: unification of WIN32 native definitions
9195
9196 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9197
9198         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9199
9200 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9201
9202         * src/configure.in:   check for endianess (even while cross-compiling)
9203         * src/configure:      check for endianess (even while cross-compiling)
9204         * src/configure_in.h: check for endianess (even while cross-compiling)
9205         * src/avr/gen.c:        remove old endianess stuff
9206         * src/mcs51/gen.c:      remove old endianess stuff
9207         * src/ds390/gen.c:      remove old endianess stuff
9208         * src/pic/gen.c:        remove old endianess stuff
9209         * src/pic/genarith.c:   remove old endianess stuff
9210         * src/pic/glue.c:       fix endianess check
9211         * src/pic16/gen.c:      remove old endianess stuff
9212         * src/pic16/genarith.c: remove old endianess stuff
9213         * src/pic16/glue.c:     fix endianess check
9214         * src/xa51/gen.c:       remove old endianess stuff
9215         * src/z80/gen.c:        fix endianess check
9216         * src/SDCCglue.c:       fix endianess check
9217         * src/ds390/peeph.def: fix bug 700036
9218
9219 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9220
9221         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9222         * src/configure: find appropriate data-types on host for SDCC's int and long
9223         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9224         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9225         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9226
9227 2003-03-07    <johan AT balder>
9228
9229         Just a big NOOP:
9230                 some minor cleanups before the big shot
9231                 OP_DEFS and OP_USES now use Kevin's protection
9232                 new option --nolabelopt
9233
9234         * src/SDCCBBlock.c:
9235         * src/SDCCast.c,:
9236         * src/SDCCcflow.c:
9237         * src/SDCCcse.c:
9238         * src/SDCCicode.c:
9239         * src/SDCCicode.h:
9240         * src/SDCClabel.c:
9241         * src/SDCCloop.c:
9242         * src/SDCCmain.c:
9243         * src/ds390/ralloc.c:
9244         * src/mcs51/ralloc.c:
9245         * src/pic/ralloc.c:
9246         * src/xa51/ralloc.c:
9247         * src/z80/ralloc.c:
9248
9249 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9250
9251         * src/pic/pcode.c (get_op): fix 64 bit warnings
9252         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9253         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9254         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9255         * support/regression/tests/malloc.c: fix 64 bit warnings
9256
9257 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9258
9259         * src/mcs51/gen.c (genMinus): fixed bug 696436
9260
9261 2003-03-02  Borut Razem <borut.razem AT siol.net>
9262
9263         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9264
9265 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9266
9267         * configure.in: test for mkstemp
9268         * sdccconf_in.h: add HAVE_MKSTEMP
9269
9270 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9271
9272         * device/include/ctype.h: removed warning while using --stack-auto
9273         * device/include/malloc.h: removed warning while using --stack-auto
9274         * device/include/string.h: removed warning while using --stack-auto
9275
9276 2003-02-23  Borut Razem <borut.razem AT siol.net>
9277
9278         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9279         because NDEBUG is defined (see man assert)
9280         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9281
9282 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9283
9284         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9285         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9286
9287 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9288
9289         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9290         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9291
9292 2003-02-18    <johan AT balder>
9293
9294         * as/mcs51/asmain.c (asmbl): module can start with a digit
9295         * as/z80/asmain.c (asmbl): module can start with a digit
9296
9297 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9298
9299         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9300         * src/asm.c: fix pipe() for Mingw32
9301
9302 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9303
9304         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9305         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9306         make -V work again; --c1mode reads now from stdin
9307         * doc/sdccman.lyx: added --c1mode
9308         * support/Util/SDCCerr.c: new messages for c1 mode
9309         * support/Util/SDCCerr.h: new messages for c1 mode
9310         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9311
9312 2003-02-15    <johan AT balder>
9313
9314         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9315
9316 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9317
9318         * doc/sdccman.lyx: Environment variables, -o and other minor things
9319
9320 2003-02-14    <johan AT balder>
9321
9322         * src/xa51/main.c: before anyone really tries to use it :)
9323
9324         * Install doc's in share/sdcc/doc
9325         * removed some obsolete files
9326         * Do a proper make distclean and uninstall
9327         M Makefile.common.in
9328         R sdccbuild.sh
9329         M as/Makefile
9330         M device/include/Makefile.in
9331         M device/lib/Makefile.in
9332         M doc/sdccman.lyx
9333         M link/Makefile
9334         M sim/ucsim/doc/Makefile.in
9335         M src/clean.mk
9336         R src/avr/peeph.rul
9337         R src/xa51/peeph.rul
9338         M support/cpp2/Makefile.in
9339         M support/makebin/Makefile
9340
9341
9342 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9343
9344         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9345
9346 2003-02-10  Borut Razem <borut.razem AT siol.net>
9347
9348         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9349         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9350         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9351         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9352         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9353         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9354         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9355         src/z80/Makefile.bcc: Borland Makefile cleanup
9356         * as/z80/Makefile.bcc: Added Borland Makefile
9357         * support/cpp2/borland.h: Removed
9358
9359 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9360
9361         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9362         * src/SDCC.lex: new pragma NOIV
9363         * src/SDCCglobl.h: new pragma NOIV
9364         * src/SDCCmem.c: new pragma NOIV
9365
9366 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9367
9368         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9369
9370 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9371
9372         * src/SDCCmain.c: signal handling is switched off by --debug
9373         * doc/Makefile: small fix for install; use clean.mk again
9374         * doc/clean.mk: clean *.pdf and *.html too
9375
9376 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9377
9378         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9379         * device/lib/printfl.c: fix a ds390 bug by making it portable
9380         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9381         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9382         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9383         * debugger/mcs51/cmd.c: converted multi-line string literals
9384         * sim/ucsim/globals.cc: converted multi-line string literals
9385         * src/SDCCmain.c: introduced signal handler to remove temp files
9386         * doc/Makefile: small tweaks, implement clean
9387         * doc: removed generated files
9388
9389 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9390
9391         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9392         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9393         Address Record is not correctly generated for DS390."
9394
9395 2003-02-02  Borut Razem <borut.razem AT siol.net>
9396
9397         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9398         * as/mcs51/asm.h: fixed compilation with Borland C
9399         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9400         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9401         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9402         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9403         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9404         src/z80/Makefile.bcc: delete $(LIB) only if exist
9405         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9406
9407 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9408
9409         * device/include/malloc.h: introduced NULL
9410         * device/include/string.h: introduced NULL
9411         * device/include/stdlib.h: introduced NULL
9412         * device/lib/_memcpy.c: removed NULL
9413         * device/lib/_strcat.c: removed NULL
9414         * device/lib/_strchr.c: removed NULL
9415         * device/lib/_strcmp.c: removed NULL
9416         * device/lib/_strcpy.c: removed NULL
9417         * device/lib/_strcspn.c: removed NULL
9418         * device/lib/_strlen.c: removed NULL
9419         * device/lib/_strncat.c: removed NULL
9420         * device/lib/_strncmp.c: removed NULL
9421         * device/lib/_strncpy.c: removed NULL
9422         * device/lib/_strpbrk.c: removed NULL
9423         * device/lib/_strrchr.c: removed NULL
9424         * device/lib/_strspn.c: removed NULL
9425         * device/lib/_strstr.c: removed NULL
9426         * device/lib/_strtok.c: removed NULL
9427         * device/lib/malloc.c: removed NULL, include own header
9428
9429 2003-02-02    <johan AT balder>
9430
9431         * 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
9432         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9433         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9434         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9435         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9436         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9437
9438 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9439
9440         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9441         area 'DATA'"
9442
9443 2003-02-01    <johan AT balder>
9444
9445         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9446
9447 2003-01-31    <johan AT CP255758-A>
9448
9449         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9450
9451 2003-01-30    <johan AT balder>
9452
9453         * src/SDCCBBlock.c: automatic bug detection
9454         * src/SDCCicode.c: automatic bug detection
9455
9456 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9457
9458         * src/SDCCglobl.h:   now --xram-size 0 works
9459         * src/SDCCmain.c:    now --xram-size 0 works
9460
9461 2003-01-29    <johan AT balder>
9462
9463         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9464
9465 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9466
9467         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9468         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9469         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9470         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9471         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9472         * src/SDCCmain.c:    Added options --xram-size and --code-size
9473
9474 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9475
9476         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9477         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9478
9479 2003-01-27    <johan AT balder>
9480
9481         * src/SDCC.y: fixed bug #613764
9482
9483 2003-01-26    <johan AT balder>
9484
9485         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9486         * src/SDCCsymt.h: fixed bug #673374
9487         * src/SDCCglue.c: fixed bug #661910
9488         * src/SDCCast.c: fixed bug #458099 and 673374
9489
9490 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9491
9492         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9493         * as/mcs51/strcmpi.h: added
9494         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9495         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9496         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9497         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9498         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9499         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9500         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9501         * as/mcs51/Makefile.aslink: new module strcmpi
9502         * as/mcs51/Makefile.asx8051: new module strcmpi
9503         * as/mcs51/Makefil.bcc: new module strcmpi
9504         * as/mcs51/Makefile.in: new module strcmpi
9505         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9506
9507 2003-01-26    <johan AT balder>
9508
9509         * src/SDCCglue.c: reverted back to 1.124
9510         * src/SDCCast.c: reverted back to 1.156
9511         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9512
9513 2003-01-25    <johan AT balder>
9514
9515         * src/SDCCglue.c: A better fix for bug #661910
9516         * src/SDCCast.c: A better fix for bug #661910
9517         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9518
9519 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9520
9521         * src/Makefile.in: remove spawn.o
9522         * src/SDCCmain.c: remove spawn.h
9523         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9524         * src/spawn.c: removed
9525         * src/spawn.h: removed
9526         * support/regression/ports/ds390/spec.mk: link with -r
9527
9528 2003-01-24    <johan AT CP255758-A>
9529
9530         * src/ds390/gen.c (aopOp): fixed bug #667458
9531         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9532         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9533         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9534
9535 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9536
9537         * src/mcs51/peeph.def: better assembler identation by Frieder
9538         * src/mcs51/gen.c: better assembler identation by Frieder
9539
9540 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9541
9542         * as/z80/string.h: removed for gcc 3.2
9543         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9544         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9545
9546 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9547
9548         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9549         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9550         * support/regression/Makefile: separate temp files for ports
9551         * support/regression/generate-cases.py: separate temp files for ports
9552         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9553         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9554
9555 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9556
9557         * moved tinitalk to device/examples/ds390
9558
9559 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9560
9561         * as/mcs51/lkmem.c: rflag is for DS390
9562         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9563         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9564                          (linkEdit): move mem- and map-files the same way as ihx-files
9565         * src/z80/main.c (_setDefaultOptions): removed --generic
9566         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9567         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9568         * src/pic/glue.c (picglue): --c1mode works again
9569         * src/pic16/glue.c (pic16glue): --c1mode works again
9570         * src/asm.c (printCLine): fix #660034
9571
9572 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9573
9574         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9575         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9576         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9577         * as/mcs51/lkmem (summary): better fix for sp problem
9578         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9579         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9580         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9581                                               remove --stack-after-data
9582
9583 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9584
9585         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9586         * src/SDCCutil.c (join): ugly bug: missing '\0'
9587         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9588
9589 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9590
9591         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9592         * src/port.h: typo
9593         * src/pic/main.c (_asmCmd): gpasm supports -o
9594         * src/z80/main.c: more general macros
9595         * device/lib/Makefile.in: remove intermediate files
9596
9597 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9598
9599         * .version: Bumped version number to 2.3.3
9600         * src/SDCCBBlock.c: new option -o
9601         * src/SDCCglobl.h: new option -o
9602         * src/SDCCglue.c: new option -o
9603         * src/SDCCmain.c: new option -o
9604         * src/asm.c: new option -o
9605         * src/ds390/main.c: new option -o
9606         * src/pic/glue.c: new option -o
9607         * src/pic/pcode.c: new option -o
9608         * src/pic/ralloc.c: new option -o
9609         * src/pic16/glue.c: new option -o
9610         * src/pic16/pcode.c: new option -o
9611         * src/pic16/ralloc.c: new option -o
9612         * src/z80/main.c: new option -o
9613         * device/lib/Makefile.in: use -o
9614         * support/regression/ports/ds390/spec.mk: use -o
9615         * support/regression/ports/gbz80/spec.mk: use -o
9616         * support/regression/ports/mcs51/spec.mk: use -o
9617         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9618         * support/regression/ports/z80/spec.mk: use -o
9619         * support/regression/ports/ucz80/spec.mk: use -o
9620         * support/regression/ports/xa51/spec.mk: use -o
9621         * support/regression/fwk/lib/timeout.c: fix usage string
9622
9623 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9624         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9625
9626 2003-01-07    <johan AT balder>
9627
9628         * src/SDCCast.c (decorateType): fixed bug #600035
9629
9630 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9631         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9632         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9633         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9634         * src/pic/pcode.c: outcommented unused variable to remove warnings
9635         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9636
9637 2003-01-06    <karl AT turbobit.com>
9638         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9639    regression tests.
9640
9641 2003-01-06    <johan AT balder>
9642
9643         * src/SDCCicode.c: fixed array add
9644
9645 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9646         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9647         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9648
9649 2003-01-04    <johan AT balder>
9650
9651         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9652
9653 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9654         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9655
9656 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9657         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9658         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9659
9660 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9661         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9662
9663 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9664         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9665
9666 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9667         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9668
9669 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9670
9671     * in \sdcc\as\mcs51\ changed these files in order to create an
9672     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9673     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9674     following files to include the previous two files: aslink.dsp,
9675     Makefile.aslink, Makefile.bcc, and Makefile.in.
9676
9677     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9678     .adb instead of .cdb
9679
9680 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9681
9682         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9683         value from option --iram-size.
9684
9685 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9686
9687         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9688         dram[] array.
9689
9690 2002-09-18    <wiml AT hhhh.org>
9691
9692         * SDCClrange.h: exposed setFromRange() and setToRange()
9693         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9694           packRegsForAccUse() (bug 542397)
9695         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9696           multiple times and emitting the fetch operations more than once
9697           added aopGetUsesAcc() function to allow binary operators to
9698           fetch their operands in the correct order; made genMinus() emit
9699           compact code for X = LITERAL - Y
9700
9701 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9702         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9703         sprintf() in line 1267.
9704
9705 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9706         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9707         like ports.
9708
9709 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9710         Changes to aslink (All the changes are marked with 'JCF'):
9711
9712         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9713         summary().
9714
9715         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9716         area BSEG.  Also moves, if possible, the DATA area down into the internal
9717         ram so more space is available.
9718
9719         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9720         sflag.
9721
9722         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9723         not bytes.  Function summary() which creates a memory usage summary
9724         file with extension .mem.  Reports of overlaping stack and small stack
9725         size.  If the space for the stack is less than 16 bytes aslink trows a
9726         warning.
9727
9728         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9729         the 8051.  Option 'y' for memory summary output file.
9730
9731         Changes to sdcc (All the changes are marked with 'JCF'):
9732
9733         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9734
9735         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9736         overlaying area for it (uses RegBankUsed[4]).
9737
9738         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9739         bank zero as used by default.  By default aslink locates the stack
9740         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9741         the creation of the .mem file.  Delegates the allocation of data area
9742         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9743         the begining of the stack area to aslink.
9744
9745         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9746         glue() in SDCCglue.c creates an area for it.
9747
9748 2002-09-03  Borut Razem <borut.razem AT siol.net>
9749         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9750         sdcc/src/pic/glue.c:
9751         introduced atexit() handler for teporay files removal in case of
9752         errors, assertions, ...
9753
9754 2002-08-29  Borut Razem <borut.razem AT siol.net>
9755         * sdcc/support/cpp2/auto-host_vc_in.h:
9756         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9757         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9758         Maybe there is a similar problem with BORLANDC? It should be checked!
9759
9760         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9761         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9762         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9763         was not executed, and the compiler (cl) launched a warning:
9764         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9765
9766 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9767         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9768
9769 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9770         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9771
9772         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9773           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9774           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9775           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9776           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9777           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9778           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9779         - added Release configuration in VS projects
9780         - review of compiler an linker options
9781         - VC .exe files are generated in bin_vc directory, not to interfere
9782           with binaries generated from other projects (cygwin, mingw, bcc ...)
9783
9784         * sdcc/src/yacc.dsp: added
9785
9786         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9787         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9788         and insert the version number definitions from .version
9789
9790         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9791
9792         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9793         added - genarate auto-host.h using auto-host_vc_in.h as template
9794
9795         * sdcc/sdcc_vc.h,
9796         removed from CVS, generated automatically
9797
9798 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9799         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9800
9801 2002-08-11  Borut Razem <borut.razem AT siol.net>
9802         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9803
9804 2002-08-10  Borut Razem <borut.razem AT siol.net>
9805         * src/SDCCmain.c (main):
9806         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9807         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9808         The consequence was that some temporary files were not removed.
9809
9810         * src/SDCCglue.c:
9811         unification of code in functions tempfilename() and tempfile():
9812         function tempnam() is defined in Visual Studio 6.0 and .NET
9813
9814         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9815
9816         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9817           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9818         - removed compiler command line option /WX: Treats all warnings as errors
9819         - update a list of source files, included into the project
9820
9821         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9822           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9823         changed project type to Generic Project so that can be correcly converted to VS.NET project
9824
9825         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9826
9827         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9828
9829         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9830
9831         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9832         added return 0 statements after assert() to make compiler happy
9833
9834         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9835         added newline in the def file to keep MSC compiler satisfied
9836
9837         * sdcc/src/z80/gen.c:
9838         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9839           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9840         - solved MSC error in function aopDump()
9841
9842         * sdcc_vc.h: define PREFIX as "\\sdcc"
9843
9844 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9845         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9846
9847 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9848         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9849         - Rewrote the register banking algorithm.
9850         - Added pCode live-range analysis to registers (for now, only non-used and
9851         singly-used registers optimized away)
9852
9853         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9854
9855         * 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.
9856
9857 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9858         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9859
9860 2002-04-22  Michael Hope  <michaelh AT vroom>
9861
9862         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9863
9864         * configure.in (DD_COPT): Added include support required for gbdk.
9865
9866         * .version: Bumped version number just to increase it.
9867
9868         * src/SDCCmain.c: Added -nostdinc to the default options.
9869
9870 2002-04-15  Michael Hope  <michaelh AT vroom>
9871
9872         * device/lib/z80/printf.c (sprintf): Added.
9873
9874         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9875
9876         * src/z80/peeph.def: Added transpose redundent load rule.
9877
9878         * src/z80/main.c: Added force callee saves for jaune.
9879
9880         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9881
9882         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9883
9884 2002-03-28  Johan Knol  <johan AT balder>
9885
9886         * src/SDCCval.c: fixed bug #532436
9887
9888 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9889         * /src/port.h:
9890         Added "char *Processor" field to the port structure.
9891
9892         * /src/SDCCmain.c:
9893         Added -p option. Allows port dependent processor to be specified.
9894
9895         * all ports:
9896         Initialized the new field char *Processor field to NULL in all ports
9897
9898         * /src/pic/*:
9899         Compiler generated registers for interrupt context saving
9900         were not getting allocated.
9901
9902 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9903
9904         * /src/SDCCast.c:
9905         Fixed left shift. Will promote the left side of a left shift
9906         if a) left shifting more than size of operand or b) when assigned
9907         to something size > size of left side
9908
9909 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9910         * src/pic/*
9911         tons of changes. Register allocation has been
9912         rewritten. Added customization for the various PICs. Flow
9913         analysis is restructured. ...
9914
9915         * src/pic/device.h:
9916         Added
9917
9918         * src/pic/device.c:
9919         Added. device.c is a PIC port hack to accomodate variations
9920         in PIC devices.
9921
9922 2002-03-13  Michael Hope  <michaelh AT vroom>
9923
9924         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9925
9926 2002-03-04  johanknol  <johanknol AT manik>
9927
9928         * /src/SDCCval.c: fixed
9929
9930         const unsigned char arr[][2] = { { 0, 1 } };
9931         t18.c:1: error: Initializer element is not constant
9932
9933 2002-03-04  bela  <bela AT manik>
9934
9935         * /device/include/mcs51reg.h:
9936         ds89c420 register definition update
9937
9938 2002-03-03    <johan AT FRIJA>
9939
9940         * support/Util/SDCCerr.c: did something, but don't no why anymore
9941
9942         * support/regression/tests/bug-524691.c: made it a little less shy
9943
9944         * src/SDCCast.c (decorateType): fixed bug #524697
9945
9946         * src/SDCCast.c: made some lineno improvements
9947
9948         * src/SDCCval.c (getNelements): changed warning to error
9949
9950         * src/SDCCglue.c (printIvalArray): changed warning to error
9951
9952         * src/SDCCicode.c: fixed a warning for mingw
9953
9954         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9955
9956         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9957
9958 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9959
9960         * src/ds390/peeph.def:
9961         Added some more peephole rules
9962
9963         * src/ds390/gen.c: Various fixes & enhancements
9964
9965         * src/SDCClrange.c, src/SDCClrange.h:
9966         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9967
9968         * src/ds390/ralloc.c:
9969         various fixes & enhancements (ds390) specific
9970
9971         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9972         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9973         from rallocs.
9974
9975         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9976
9977 2002-03-02    <johan AT FRIJA>
9978
9979         * src/SDCCast.c (decorateType): fixed bug #524708
9980
9981         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9982
9983         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9984
9985 2002-03-01  Michael Hope  <michaelh AT vroom>
9986
9987         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9988
9989         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9990
9991 2002-03-01    <johan AT FRIJA>
9992
9993         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9994
9995         * src/SDCCast.c (decorateType): fixed bug #524209
9996
9997         * src/SDCCval.c (valNot): fixed bug #524195
9998
9999 2002-02-26    <johan AT balder>
10000
10001         * src/xa51/gen.c: fixed a warning
10002
10003         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10004
10005         * src/SDCCast.c (decorateType): fixed bug #522534
10006
10007 2002-02-23    <johan AT balder>
10008
10009         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10010
10011 2002-02-22    <johan AT balder>
10012
10013         * src/SDCCast.c: fixed bug #514865
10014
10015         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10016
10017 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10018
10019         * sdcc/src/SDCCloop.c:
10020         Previous fix was not good. basic blocks that have "break" or "return" are
10021         not really partof a loop , but live ranges used in these blocks should
10022         be live thru the entire loop, so set partOfLoop but don't add them to
10023         loop region
10024
10025 2002-02-21    <johan AT FRIJA>
10026
10027         * src/SDCCcse.c: fixed bug #514308
10028
10029 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10030
10031         * src/SDCCloop.c:
10032         Fixed BUG #519583. If a conditional block ended in a return/break
10033         statement inside a loop, it was not being considered part of the loop.
10034
10035         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10036
10037 2002-02-10  Karl Bongers <karl AT turbobit.com>
10038
10039         * debugger/*:
10040         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10041         with lots of comments and notes.
10042
10043         * device/examples/test2.c:
10044         Fix bug, "red" variable not being initialized(compiler complained).
10045
10046         * device/examples/Makefile, examples/test3.c:
10047         Add Makefile in device/examples folder, compiles test3.c
10048         for use as a multiple module SDCDB test case.
10049
10050         * sim/ucsim/cmd.src/cmdset.cc:
10051         Took out debug printfs in ucsim "next" command.
10052
10053         * sim/ucsim/xa.src:
10054         Karl and Johan start ucsim XA support.  Most dissassembly working,
10055         about 75% emulation done(plenty of work remaining).
10056
10057         * sim/ucsim/z80.src:
10058         Add Z80 support to ucsim, add test-ucz80 regression test,
10059         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10060         Notice z80 compiler fails on examples/test3.c/crc code.
10061
10062 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10063
10064         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10065         Added support for --parms-in-bank1
10066
10067         * src/ds390/peeph.def:
10068         added a few more peephole optimzations
10069
10070         * src/ds390/main.c:
10071         1) added __builtin_inp & __builtin_outp used to read in data of given length
10072            from a memory mapped port
10073         2) added __builtin_memcmp
10074         3) added __builtin_swapw swap bytes of a short
10075
10076         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10077         1) handle multiple send & receives from register bank1
10078         2) ralloc can now allocate DPTR1 to some liveRanges
10079
10080         * src/SDCCsymt.c, src/SDCCsymt.h:
10081         changes to handle multiple sends & receives
10082
10083         * src/SDCCptropt.h:
10084         added some pointer arithmetic optimization
10085
10086         * src/SDCCptropt.c:
10087         added some pointer arithmetic optimizations but not stable yet so not
10088         called from anywhere (will get this working shortly)
10089
10090         * src/SDCCopt.c: fixed for multiple sends & receives
10091
10092         * src/SDCCmain.c:
10093         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10094         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10095            set preprocessor defines (depending on options)
10096
10097         * src/SDCCicode.c, src/SDCCicode.h:
10098         changes made to handle multiple sends & receives
10099
10100         * src/SDCCglobl.h:
10101         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10102
10103         * src/SDCCcse.c, src/SDCCcse.h:
10104         added function findbackward def (to be used in upcoming optimization)
10105
10106         * src/SDCCcflow.c, src/SDCCcflow.h:
10107         added function returnAtEnd - to determine if a basic block terminates with
10108         a RETURN iCode
10109
10110         * src/SDCCast.c, src/SDCCast.h:
10111         added option parms-in-bank1
10112
10113         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10114         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10115         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10116         adjusted for --parms-in-bank1 option
10117
10118         * device/include/string.h:
10119         donot redefine "reentrant" keyword
10120
10121         * device/include/ds80c390.h: Added some more SFRs
10122
10123 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10124
10125         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10126
10127 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10128
10129         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10130
10131 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10132
10133         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10134
10135 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10136
10137         * Added --xram-movc option
10138
10139 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10140
10141         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10142
10143 2002-01-11  Johan Knol
10144
10145         * Added math lib of Jesus Calvino-Fraga
10146
10147 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10148
10149         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10150         * support/regression/Makefile: new target test-mcs51-stack-auto
10151         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10152
10153 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10154
10155         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10156
10157 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10158
10159         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10160
10161 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10162
10163         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10164
10165         * src/SDCCglue.h: add definition for printIvalChar()
10166
10167 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10168
10169         * src/SDCCast.c: fix #498138 by Johan
10170
10171         * src/SDCCglue.c: fix #498138 by Johan
10172
10173 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10174
10175         * support/regression/Makefile: fix clean
10176
10177         * support/regression/ports/ds390/support.c: fix transmission of last character
10178
10179 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10180
10181         * /sdcc/src/ds390/gen.c:
10182         a) improved computing address of stack variable
10183         b) took out some #if 0 code
10184         c) improved parmBytes adjustment
10185         d) improved genPlusIncr & genMinusIncr
10186         e) genCmp could generate bad code (when left assigned to DPTR)
10187         f) Fixed bug in hasInc
10188
10189         * /sdcc/src/ds390/ralloc.c:
10190         a) packRegsForSupport could mess up live information (Fixed)
10191         b) packRegsDPTRuse could be incorrect for left & right shift
10192
10193         * /sdcc/src/mcs51/ralloc.c:
10194         packRegsForSupport could mess up the live information (Fixed)
10195
10196         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10197
10198         * /sdcc/src/SDCCast.c:
10199         can reverse a loop even if function call is present as long
10200         as the loop control variable is local & is not passed as parameter
10201
10202 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10203
10204         * /sdcc/ChangeLog: *** empty log message ***
10205
10206         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10207         More builtin function additions for TININative
10208
10209         * /sdcc/src/ds390/ralloc.c:
10210         Had broken the regression testsuite
10211
10212         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10213
10214         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10215         Added funcattr hasStackParms will be set for reentrant functions when there
10216         are paramteres on the stack, this helps in minimizing frame pointer generation
10217         typeFromStr can handle function pointers now
10218
10219         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10220         *** empty log message ***
10221
10222 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10223
10224         * /src/ds390/gen.c, /src/ds390/main.c:
10225         More builtin function additions for TININative
10226
10227         * /src/ds390/ralloc.c:
10228         Had broken the regression testsuite
10229
10230         * /src/SDCCast.c: Fixed a bug in dumptree
10231
10232         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10233         Added funcattr hasStackParms will be set for reentrant functions when there
10234         are paramteres on the stack, this helps in minimizing frame pointer generation
10235         typeFromStr can handle function pointers now
10236
10237         * /doc/builtins.txt, /doc/TININative.txt:
10238         *** empty log message ***
10239
10240
10241 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10242
10243         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10244         ALPHA version for -mTININative
10245
10246         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10247         updated to reflect changes in the port structure
10248
10249         * /src/port.h:
10250         added function do_assemble (similar to do_link) if non-null this function
10251         will be called to do assembly (-mTININative) requires a multi command
10252         assembly
10253         added function genAssemblerEnd will be called to generate assembler Epilogue
10254
10255         * /src/SDCCsymt.c:
10256         added _JavaNative to debug info printing
10257
10258         * /src/SDCCmain.c: added option --tini-libid
10259         added port->do_assemble function (-mTININative) has a multi command assemble
10260
10261         * /src/SDCCglue.c: Disabled "constExpr" check
10262         added port->genAssemblerEnd function
10263
10264         * /src/SDCCglobl.h: Added option --tini-libid value
10265
10266         * /src/SDCCast.h:
10267         tookout optimizeCompare from the header (has no external references)
10268
10269         * /src/SDCCast.c: made one more function "static"
10270
10271 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10272
10273         * src/z80/mappings.i: Added z80asm support.
10274
10275         * src/z80/main.c: Added z80asm support on --asm=z80asm
10276
10277         * src/z80/gen.c: Fixed asm portability issues.
10278
10279         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10280
10281         * src/SDCCglue.c (printExterns): Added global/extern split.
10282
10283 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10284
10285         * support/regression/Makefile: added test for mcs51 model large
10286
10287         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10288
10289         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10290
10291 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10292
10293         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10294
10295 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10296
10297         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10298
10299         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10300
10301 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10302
10303         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10304
10305         * support/regression/tests/simplefloat.c: Port to mcs51.
10306
10307 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10308         * support/regression/tests/bug-485362.c: Added.
10309
10310         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10311
10312         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10313
10314         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10315
10316         * src/z80/gen.c (aopDump): Added a dump function.
10317
10318 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10319         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10320
10321         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10322
10323         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10324
10325         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10326
10327         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10328
10329         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10330
10331         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10332
10333         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10334
10335         * support/regression/ports/ds390/support.c: Use tinibios.
10336
10337         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10338
10339 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10340
10341         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10342         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10343
10344         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10345
10346         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10347
10348 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10349
10350         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10351
10352         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10353         (packRegsForIYUse): Created and optimised.
10354
10355 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10356
10357         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10358 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10359
10360         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10361
10362         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10363
10364         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10365
10366 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10367
10368         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10369
10370         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10371
10372 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10373
10374         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10375
10376         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10377
10378         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10379
10380 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10381
10382         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10383         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10384         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10385
10386         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10387
10388         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10389         (genNotFloat): Added.
10390         (genUminusFloat): Added.
10391
10392         * device/lib/z80/Makefile: Added floating pt stubs.
10393
10394         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10395
10396         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10397
10398         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10399
10400 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10401
10402         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10403
10404         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10405
10406         * sdcc/support/regression/Makefile: Add port ds390.
10407
10408         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10409
10410         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10411
10412         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10413
10414         * sdcc/support/regression/ports/ds390/support.c: Added.
10415
10416         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10417
10418         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10419
10420         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10421
10422 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10423
10424         * device/include/malloc.h: Added z80 and gbz80 support.
10425
10426         * device/lib/gbz80/heap.s: Added.
10427
10428         * device/lib/z80/heap.s: Added.
10429
10430         * device/lib/malloc.c: Added z80 and gbz80 support.
10431
10432         * support/regression/tests/malloc.c (testMalloc): Added.
10433
10434         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10435
10436         * support/regression/tests/bug-478094.c: Added.
10437
10438         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10439
10440 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10441
10442         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10443
10444         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10445
10446         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10447
10448         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10449
10450         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10451
10452 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10453
10454         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10455
10456 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10457
10458         * support/regression/tests/bug-477927.c: Added.
10459
10460         * src/z80/peeph.def: Added minor rules.
10461
10462         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10463
10464         * src/z80/peeph.def: Added jump optimisation modification.
10465
10466 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10467
10468         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10469
10470 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10471
10472         * support/regression/tests/funptrs.c: Added.
10473
10474 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10475
10476         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10477
10478 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10479
10480         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10481
10482         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10483
10484         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10485         (movLeft2ResultLong): Created.
10486
10487         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10488         (joinPushes): Added.  Joins two char pushes into a word push.
10489
10490 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10491
10492         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10493
10494         * support/makebin/Makefile (install): Added creation of dest dir.
10495
10496 2001-10-24 Karl Bongers <karl AT turbobit.com>
10497
10498         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10499
10500 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10501
10502         * src/z80/ralloc.c: Turned off faulty pack for one use.
10503
10504         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10505
10506         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10507
10508 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10509
10510         * support/regression/Makefile: Improved clean
10511
10512         * support/regression/ports/gbz80/spec.mk: Added clean
10513
10514         * support/regression/ports/host/spec.mk: Added clean
10515
10516         * support/regression/ports/z80/spec.mk: Added clean
10517
10518         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10519
10520         * support/regression/ports/mcs51/timeout.c: little improvements
10521
10522 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10523
10524         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10525
10526         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10527
10528         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10529
10530 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10531
10532         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10533
10534         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10535
10536 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10537         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10538
10539         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10540
10541         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10542
10543         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10544
10545         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10546
10547         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10548
10549         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10550
10551         * support/regression/tests/longor.c: Added.
10552
10553 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10554
10555         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10556
10557         * as/mcs51/aslink.h: define PATH_MAX
10558
10559         * as/mcs51/asm.h: define PATH_MAX
10560
10561         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10562
10563         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10564
10565         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10566
10567         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10568
10569         * src/SDCCglobl.h: define PATH_MAX
10570
10571         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10572
10573         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10574
10575 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10576
10577         * src/z80/gen.c (gencjneshort): Fixed
10578
10579         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10580
10581 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10582
10583         * support/regression/tests/bug-469671.c: Added.
10584
10585         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10586
10587 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10588
10589         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10590
10591         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10592
10593 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10594
10595         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10596
10597         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10598
10599         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10600
10601         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10602
10603         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10604
10605         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10606
10607         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10608
10609 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10610
10611         * 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.
10612
10613         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10614
10615         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10616
10617 2001-10-07    <johan AT FRIJA>
10618
10619         * device/lib/gets.c (gets): fixed the return value.
10620
10621 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10622         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10623
10624         * 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.
10625
10626         * 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.
10627
10628         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10629
10630         * src/pic/gen.c: Removed Safe_strdup.
10631
10632         * configure.in: Added option to enable libgc support.
10633
10634         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10635         (bitVectUnion): Optimised.
10636         (bitVectIntersect): Optimised.
10637         (bitVectBitsInCommon): Optimised.
10638         (bitVectCplAnd): Optimised.
10639
10640         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10641
10642 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10643
10644         * src/SDCCmain.c: distinguish between assembler debug and plain options
10645
10646         * src/avr/main.c:   remove standard assembler options
10647
10648         * src/ds390/main.c: remove standard assembler options
10649
10650         * src/mcs51/main.c: remove standard assembler options
10651
10652         * src/port.h: removed "PENDING" comment
10653
10654 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10655
10656         * src/device/lib/_mulint.c  : new, with assember functions
10657
10658         * src/device/lib/_mullong.c : new, with assember functions
10659
10660         * src/device/lib/_divuint.c : with assember functions
10661
10662         * src/device/lib/_divsint.c : with assember functions
10663
10664         * src/device/lib/_divulong.c: with assember functions
10665
10666         * src/device/lib/_divslong.c: with assember functions
10667
10668         * src/device/lib/_moduint.c : with assember functions
10669
10670         * src/device/lib/_modsint.c : with assember functions
10671
10672         * src/device/lib/_modulong.c: with assember functions
10673
10674         * src/device/lib/_modslong.c: with assember functions
10675
10676         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10677
10678         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10679
10680         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10681                                       replaced _mululong.c and _mulslong.c by _mullong.c
10682
10683 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10684
10685         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10686
10687 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10688
10689         * src/SDCCglue.c: test, if win32api is available for MINGW
10690
10691 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10692
10693         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10694         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10695         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10696         * support/regression/ports/host/spec.mk: removed GENERIC
10697         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10698         * support/regression/ports/z80/spec.mk: removed GENERIC
10699
10700 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10701
10702         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10703
10704         * support/regression/tests/bug-467035.c: Created.
10705
10706 2001-10-01    <johan AT FRIJA>
10707
10708         * src/SDCC.y: fixed bug #466586 part 1
10709
10710 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10711
10712         * SDCCicode.c: z80 has no generic pointers
10713         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10714
10715 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10716
10717         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10718
10719 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10720
10721         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10722
10723         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10724
10725 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10726
10727         * configure.in: Fixed up so that ucsim is only configured once.
10728
10729         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10730
10731         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10732         (getPathDifference): As above.
10733
10734         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10735
10736         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10737
10738 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10739         * .version: Updated to 2.3.1
10740
10741         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10742         Added copyright header.
10743
10744         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10745         (assemble): Added support for macro based assembler commands.
10746         (linkEdit): Added support for macro based linker commands.
10747         (preProcess): Changed the pre-processor to use macros.
10748         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10749         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10750
10751         * device/lib/z80/crt0.s: Added module name for debugging.
10752
10753 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10754
10755         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10756
10757         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10758
10759         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10760
10761         * src/Makefile.in: Added SDCCmacro and SDCCutil
10762
10763 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10764
10765         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10766
10767 2001-09-16    <johan AT FRIJA>
10768
10769         * 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.
10770
10771 2001-09-15    <johan AT FRIJA>
10772
10773         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10774         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10775
10776 2001-09-11    <johan AT FRIJA>
10777
10778         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10779
10780 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10781
10782         * support/regression/tests/bug-460444.c: Added test case.
10783
10784         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10785         (genCast): Added justification for all of the asserts.
10786
10787 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10788
10789         * support/regression/support.c: _xdata replaced by xdata
10790
10791         * support/regression/spec.mk: removed _generic
10792
10793 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10794
10795         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10796
10797         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10798         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10799
10800         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10801
10802         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10803
10804         * support/regression/tests/bug-460010.c: Added test case.
10805
10806         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10807
10808 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10809
10810         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10811
10812         * support/regression/testfwk.c: removed workaround for bug #436344
10813
10814         * support/regression/tests/bp.c: use less memory with mcs51
10815
10816         * support/regression/tests/bug-441448.c: use less memory
10817
10818         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10819
10820         * support/regression/collate-results.py: typo
10821
10822 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10823
10824         * support/regression/tests/fetchoverlap.c: Added new test case.
10825
10826         * support/regression/tests/bp.c: Added new test case.
10827
10828         * support/regression/tests/bug-448984.c: Added new test case.
10829
10830         * support/regression/tests/pow2shifts.c: Added new test case.
10831
10832         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10833         (genlshTwo): Fixed right shift for count > 8.
10834
10835         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10836
10837 2001-09-08    <johan AT FRIJA>
10838
10839         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10840
10841 2001-09-07    <johan AT FRIJA>
10842
10843         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10844
10845         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10846
10847 2001-09-06    <johan AT FRIJA>
10848
10849         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10850         * bernhard noted me at this: "() equals to (void)" (1.38)
10851
10852 2001-09-05    <johan AT FRIJA>
10853
10854         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10855
10856 2001-09-04    <johan AT FRIJA>
10857
10858         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10859
10860
10861 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10862
10863         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10864
10865 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10866
10867         * link/z80/aslink.h: Fixed path for PATH_MAX
10868
10869 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10870
10871         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10872
10873         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10874
10875         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10876
10877         * 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.
10878
10879 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10880
10881         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10882         (genCmp): Fixed up genCmp for the GB with longs.
10883
10884         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10885
10886         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10887
10888         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10889
10890         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10891
10892 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10893
10894         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10895
10896 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10897
10898         * 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.
10899
10900         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10901
10902 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10903
10904         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10905
10906         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10907
10908 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10909
10910   * sim/ucsim/configure:    little improvement of Cygwin-detection
10911   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10912   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10913   * support/regression/tests/bug-221100.c: small changes for mcs51
10914   * support/regression/tests/bug-221168.c: small changes for mcs51
10915   * support/regression/tests/bug-227710.c: small changes for mcs51
10916   * support/regression/tests/staticinit.c: small changes for mcs51
10917   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10918   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10919   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10920
10921 $Revision$